Index: config.h.in =================================================================== RCS file: /projects/cvsroot/python/dist/src/config.h.in,v retrieving revision 2.34 diff -c -r2.34 config.h.in *** config.h.in 1998/04/10 19:17:15 2.34 --- config.h.in 1998/05/01 16:47:39 *************** *** 396,398 **** --- 396,401 ---- /* Define if you have the ieee library (-lieee). */ #undef HAVE_LIBIEEE + + /* Define if you have the m library (-lm). */ + #undef HAVE_LIBM Index: configure =================================================================== RCS file: /projects/cvsroot/python/dist/src/configure,v retrieving revision 1.77 diff -c -r1.77 configure *** configure 1998/04/20 18:51:49 1.77 --- configure 1998/05/01 16:54:17 *************** *** 1989,2012 **** echo "$ac_t""no" 1>&6 fi # Dynamic linking for HP-UX ! echo $ac_n "checking for getpwnam in -lsun""... $ac_c" 1>&6 ! echo "configure:1994: checking for getpwnam in -lsun" >&5 ! ac_lib_var=`echo sun'_'getpwnam | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_save_LIBS="$LIBS" ! LIBS="-lsun $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest; then --- 1989,2012 ---- echo "$ac_t""no" 1>&6 fi # Dynamic linking for HP-UX ! echo $ac_n "checking for pow in -lm""... $ac_c" 1>&6 ! echo "configure:1994: checking for pow in -lm" >&5 ! ac_lib_var=`echo m'_'pow | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_save_LIBS="$LIBS" ! LIBS="-lm $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest; then *************** *** 2024,2041 **** fi if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 ! ac_tr_lib=HAVE_LIB`echo sun | sed -e 's/[^a-zA-Z0-9_]/_/g' \ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` cat >> confdefs.h <&6 fi ! # NIS (== YP) interface for IRIX 4 # Most SVR4 platforms (e.g. Solaris) need -lsocket and -lnsl. # However on SGI IRIX, these exist but are broken. if test "$ac_sys_system" != IRIX --- 2024,2041 ---- fi if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 ! ac_tr_lib=HAVE_LIB`echo m | sed -e 's/[^a-zA-Z0-9_]/_/g' \ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` cat >> confdefs.h <&6 fi ! # Std math lib -- assume needed if it exists # Most SVR4 platforms (e.g. Solaris) need -lsocket and -lnsl. # However on SGI IRIX, these exist but are broken. if test "$ac_sys_system" != IRIX Index: configure.in =================================================================== RCS file: /projects/cvsroot/python/dist/src/configure.in,v retrieving revision 1.84 diff -c -r1.84 configure.in *** configure.in 1998/04/20 18:51:54 1.84 --- configure.in 1998/05/01 16:54:12 *************** *** 345,351 **** # checks for libraries AC_CHECK_LIB(dl, dlopen) # Dynamic linking for SunOS/Solaris and SYSV AC_CHECK_LIB(dld, shl_load) # Dynamic linking for HP-UX ! AC_CHECK_LIB(sun, getpwnam) # NIS (== YP) interface for IRIX 4 # Most SVR4 platforms (e.g. Solaris) need -lsocket and -lnsl. # However on SGI IRIX, these exist but are broken. if test "$ac_sys_system" != IRIX --- 345,351 ---- # checks for libraries AC_CHECK_LIB(dl, dlopen) # Dynamic linking for SunOS/Solaris and SYSV AC_CHECK_LIB(dld, shl_load) # Dynamic linking for HP-UX ! AC_CHECK_LIB(m, pow) # Std math lib -- assume needed if it exists # Most SVR4 platforms (e.g. Solaris) need -lsocket and -lnsl. # However on SGI IRIX, these exist but are broken. if test "$ac_sys_system" != IRIX