]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Removing -lbsd for AIX
authorwessels <>
Thu, 17 Oct 1996 10:13:30 +0000 (10:13 +0000)
committerwessels <>
Thu, 17 Oct 1996 10:13:30 +0000 (10:13 +0000)
configure
configure.in

index 5ce7277eb4210b15e8e9d1b51e2aee4240a9e2c2..b5840971c5e2836dc6e15d67a7ed6ec1861d35fa 100755 (executable)
--- a/configure
+++ b/configure
@@ -517,7 +517,7 @@ fi
 
 
 
-# From configure.in Revision: 1.37 
+# From configure.in Revision: 1.38 
 ac_aux_dir=
 for ac_dir in aux $srcdir/aux; do
   if test -f $ac_dir/install-sh; then
@@ -2265,6 +2265,10 @@ case "$host" in
                echo "Removing -lbsd for IRIX..."
                LIBS=`echo $LIBS | sed -e s/-lbsd//`
                ;;
+       *-ibm-aix*)
+               echo "Removing -lbsd for AIX..."
+               LIBS=`echo $LIBS | sed -e s/-lbsd//`
+               ;;
        *m88k*)
                CFLAGS="$CFLAGS -D_SQUID_MOTOROLA_"
                cat >> confdefs.h <<\EOF
@@ -2313,7 +2317,7 @@ if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 2317 "configure"
+#line 2321 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -2367,7 +2371,7 @@ if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 2371 "configure"
+#line 2375 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -2415,7 +2419,7 @@ if test "$cross_compiling" = yes; then
   SQUID_FD_SETSIZE=256
 else
 cat > conftest.$ac_ext <<EOF
-#line 2419 "configure"
+#line 2423 "configure"
 #include "confdefs.h"
 
 #include <unistd.h>
@@ -2485,7 +2489,7 @@ if test "$cross_compiling" = yes; then
   SQUID_UDP_SO_SNDBUF=16384
 else
 cat > conftest.$ac_ext <<EOF
-#line 2489 "configure"
+#line 2493 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -2521,7 +2525,7 @@ if test "$cross_compiling" = yes; then
   SQUID_UDP_SO_RCVBUF=16384
 else
 cat > conftest.$ac_ext <<EOF
-#line 2525 "configure"
+#line 2529 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -2557,7 +2561,7 @@ if test "$cross_compiling" = yes; then
   SQUID_TCP_SO_SNDBUF=16384
 else
 cat > conftest.$ac_ext <<EOF
-#line 2561 "configure"
+#line 2565 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -2593,7 +2597,7 @@ if test "$cross_compiling" = yes; then
   SQUID_TCP_SO_RCVBUF=16384
 else
 cat > conftest.$ac_ext <<EOF
-#line 2597 "configure"
+#line 2601 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -2626,7 +2630,7 @@ EOF
 
 echo $ac_n "checking if sys_errlist is already defined""... $ac_c" 1>&6
 cat > conftest.$ac_ext <<EOF
-#line 2630 "configure"
+#line 2634 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int main() { return 0; }
@@ -2650,7 +2654,7 @@ rm -f conftest*
 
 echo $ac_n "checking for libresolv _dns_ttl_ hack""... $ac_c" 1>&6
 cat > conftest.$ac_ext <<EOF
-#line 2654 "configure"
+#line 2658 "configure"
 #include "confdefs.h"
 extern int _dns_ttl_;
 int main() { return 0; }
index 66fea9a41031d4cec8913f9fa77d89e43c0acc92..20f76ff7b10edbe91c7992cbb32e29568a9b55ef 100644 (file)
@@ -3,13 +3,13 @@ dnl  Configuration input file for Squid
 dnl
 dnl  Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9)
 dnl
-dnl  $Id: configure.in,v 1.38 1996/10/15 23:27:26 wessels Exp $
+dnl  $Id: configure.in,v 1.39 1996/10/17 04:13:30 wessels Exp $
 dnl
 dnl
 dnl
 AC_INIT(src/main.c)
 AC_CONFIG_HEADER(include/autoconf.h)
-AC_REVISION($Revision: 1.38 $)dnl
+AC_REVISION($Revision: 1.39 $)dnl
 AC_PREFIX_DEFAULT(/usr/local/squid)
 AC_CONFIG_AUX_DIR(aux)
 
@@ -271,6 +271,13 @@ case "$host" in
                echo "Removing -lbsd for IRIX..."
                LIBS=`echo $LIBS | sed -e s/-lbsd//`
                ;;
+dnl From: c0032033@ws.rz.tu-bs.de (Joerg Schumacher)
+dnl Date: Thu, 17 Oct 1996 04:09:30 +0200
+dnl Please change your configure script.  AIX doesn't need -lbsd.
+       *-ibm-aix*)
+               echo "Removing -lbsd for AIX..."
+               LIBS=`echo $LIBS | sed -e s/-lbsd//`
+               ;;
        *m88k*)
                CFLAGS="$CFLAGS -D_SQUID_MOTOROLA_"
                AC_DEFINE(GETTIMEOFDAY_NO_TZP)