mirror of
https://github.com/postgres/postgres.git
synced 2025-05-03 22:24:49 +03:00
Add a --with-compiler switch that allows someone to specify:
--with-compiler=xlc Requested by: Darren King <aixssd!darrenk@abs.net>
This commit is contained in:
parent
49153540da
commit
fd8e90a848
378
src/configure
vendored
378
src/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -228,11 +228,19 @@ else
|
|||||||
fi
|
fi
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
|
dnl We use the default value of 5432 for the DEF_PGPORT value. If
|
||||||
|
dnl we over-ride it with --with-pgport=port then we bypass this piece
|
||||||
|
if test "X$with_compiler" != "X"
|
||||||
|
then
|
||||||
|
CC=$with_compiler
|
||||||
|
else
|
||||||
|
AC_PROG_CC
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
AC_CONFIG_HEADER(include/config.h)
|
AC_CONFIG_HEADER(include/config.h)
|
||||||
|
|
||||||
dnl Checks for programs.
|
dnl Checks for programs.
|
||||||
AC_PROG_CC
|
|
||||||
AC_PROG_CPP
|
AC_PROG_CPP
|
||||||
|
|
||||||
AC_LINK_FILES(include/port/${PORTNAME}.h, include/os.h)
|
AC_LINK_FILES(include/port/${PORTNAME}.h, include/os.h)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user