aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-03-20 18:47:15 +0000
committerBruce Momjian <bruce@momjian.us>1998-03-20 18:47:15 +0000
commit55c235b266de1dd37e5091f21a752490d758634a (patch)
tree6f32330f1bfc1ea0ed83097b65be90d934afda02 /src
parentee85fda2ad9a71a148b0e984a50811e1607eeb20 (diff)
downloadpostgresql-55c235b266de1dd37e5091f21a752490d758634a.tar.gz
postgresql-55c235b266de1dd37e5091f21a752490d758634a.zip
Disable -lbsd on alpha.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/configure4
-rw-r--r--src/configure.in4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/configure b/src/configure
index 56d4bf5b198..cb2a5b48715 100755
--- a/src/configure
+++ b/src/configure
@@ -1909,7 +1909,7 @@ else
echo "$ac_t""no" 1>&6
fi
-if test "$PORTNAME" != "aix"
+if test "$PORTNAME" != "aix" -a "$PORTNAME" != "alpha"
then
echo $ac_n "checking for main in -lbsd""... $ac_c" 1>&6
echo "configure:1916: checking for main in -lbsd" >&5
@@ -3316,7 +3316,7 @@ else
fi
rm -f conftest*
-if test x$ac_cv_prog_gcc = xyes; then
+if test $ac_cv_prog_gcc = yes; then
echo $ac_n "checking whether ${CC-cc} needs -traditional""... $ac_c" 1>&6
echo "configure:3322: checking whether ${CC-cc} needs -traditional" >&5
if eval "test \"`echo '$''{'ac_cv_prog_gcc_traditional'+set}'`\" = set"; then
diff --git a/src/configure.in b/src/configure.in
index b5233efebb5..0804b3a010d 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -1,4 +1,4 @@
-dnl Process this file with autoconf to produce a configure script.
+ dnl Process this file with autoconf to produce a configure script.
AC_INIT(backend/access/common/heaptuple.c)
AC_PREFIX_DEFAULT(/usr/local/pgsql)
@@ -405,7 +405,7 @@ AC_CHECK_LIB(termcap, main)
AC_CHECK_LIB(history, main)
AC_CHECK_LIB(readline, main)
AC_CHECK_LIB(readline, write_history, AC_DEFINE(HAVE_HISTORY))
-if test "$PORTNAME" != "aix"
+if test "$PORTNAME" != "aix" -a "$PORTNAME" != "alpha"
then
AC_CHECK_LIB(bsd, main)
fi