diff options
author | Guido van Rossum <guido@python.org> | 1995-01-17 16:46:14 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-17 16:46:14 (GMT) |
commit | 0ddb02844465fb0465bc00226d59e6c6e3919759 (patch) | |
tree | 73b756f02377129ffa5efcd8668715f1c1dd54f0 /configure | |
parent | d09119e889cc48ea628edf9e06a995d2500ea6bd (diff) | |
download | cpython-0ddb02844465fb0465bc00226d59e6c6e3919759.zip cpython-0ddb02844465fb0465bc00226d59e6c6e3919759.tar.gz cpython-0ddb02844465fb0465bc00226d59e6c6e3919759.tar.bz2 |
the usual
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,6 +1,6 @@ #!/bin/sh -# From configure.in Revision: 1.14 +# From configure.in Revision: 1.15 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.0 @@ -1415,7 +1415,7 @@ cat > conftest.$ac_ext <<EOF int main() { return 0; } int t() { -gethostbyname() +t_open() ; return 0; } EOF if eval $ac_link; then @@ -1435,20 +1435,20 @@ if eval "test \"`echo '$ac_cv_lib_'nsl`\" = yes"; then else echo "$ac_t""no" 1>&4 fi - # hosts db interface + # SVR4 echo $ac_n "checking for -linet""... $ac_c" 1>&4 if eval "test \"`echo '${'ac_cv_lib_inet'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&4 else ac_save_LIBS="$LIBS" -LIBS="$LIBS -linet " +LIBS="$LIBS -linet -lnsl" cat > conftest.$ac_ext <<EOF #line 1447 "configure" #include "confdefs.h" int main() { return 0; } int t() { -???() +gethostbyname() ; return 0; } EOF if eval $ac_link; then @@ -1468,13 +1468,13 @@ if eval "test \"`echo '$ac_cv_lib_'inet`\" = yes"; then else echo "$ac_t""no" 1>&4 fi - # SVR4 internet??? + # Sequent echo $ac_n "checking for -lsocket""... $ac_c" 1>&4 if eval "test \"`echo '${'ac_cv_lib_socket'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&4 else ac_save_LIBS="$LIBS" -LIBS="$LIBS -lsocket " +LIBS="$LIBS -lsocket $LIBS" cat > conftest.$ac_ext <<EOF #line 1480 "configure" #include "confdefs.h" |