@@ -11263,159 +11263,6 @@ LIBOBJS="$LIBOBJS dirmod.$ac_objext"
11263
11263
LIBOBJS=" $LIBOBJS opendir.$ac_objext " ;;
11264
11264
esac
11265
11265
11266
- # Now that rint() is /port, I am not sure this still works, bjm 2003-05-09
11267
- # On HPUX 9, rint() is not in regular libm.a but in /lib/pa1.1/libm.a;
11268
- # this hackery with HPUXMATHLIB allows us to cope.
11269
- HPUXMATHLIB=" "
11270
- case $host_cpu in
11271
- hppa1.1)
11272
- if test -r /lib/pa1.1/libm.a ; then
11273
- HPUXMATHLIB=" -L /lib/pa1.1 -lm"
11274
- fi ;;
11275
- esac
11276
-
11277
-
11278
-
11279
- for ac_func in rint
11280
- do
11281
- as_ac_var=` echo " ac_cv_func_$ac_func " | $as_tr_sh `
11282
- echo " $as_me :$LINENO : checking for $ac_func " >&5
11283
- echo $ECHO_N " checking for $ac_func ... $ECHO_C " >&6
11284
- if eval " test \"\$ {$as_ac_var +set}\" = set" ; then
11285
- echo $ECHO_N " (cached) $ECHO_C " >&6
11286
- else
11287
- cat > conftest.$ac_ext << _ACEOF
11288
- #line $LINENO "configure"
11289
- #include "confdefs.h"
11290
- /* System header to define __stub macros and hopefully few prototypes,
11291
- which can conflict with char $ac_func (); below. */
11292
- #include <assert.h>
11293
- /* Override any gcc2 internal prototype to avoid an error. */
11294
- #ifdef __cplusplus
11295
- extern "C"
11296
- #endif
11297
- /* We use char because int might match the return type of a gcc2
11298
- builtin and then its argument prototype would still apply. */
11299
- char $ac_func ();
11300
- char (*f) ();
11301
-
11302
- #ifdef F77_DUMMY_MAIN
11303
- # ifdef __cplusplus
11304
- extern "C"
11305
- # endif
11306
- int F77_DUMMY_MAIN() { return 1; }
11307
- #endif
11308
- int
11309
- main ()
11310
- {
11311
- /* The GNU C library defines this for functions which it implements
11312
- to always fail with ENOSYS. Some functions are actually named
11313
- something starting with __ and the normal name is an alias. */
11314
- #if defined (__stub_$ac_func ) || defined (__stub___$ac_func )
11315
- choke me
11316
- #else
11317
- f = $ac_func ;
11318
- #endif
11319
-
11320
- ;
11321
- return 0;
11322
- }
11323
- _ACEOF
11324
- rm -f conftest.$ac_objext conftest$ac_exeext
11325
- if { (eval echo " $as_me :$LINENO : \" $ac_link \" " ) >&5
11326
- (eval $ac_link ) 2>&5
11327
- ac_status=$?
11328
- echo " $as_me :$LINENO : \$ ? = $ac_status " >&5
11329
- (exit $ac_status ); } &&
11330
- { ac_try=' test -s conftest$ac_exeext'
11331
- { (eval echo " $as_me :$LINENO : \" $ac_try \" " ) >&5
11332
- (eval $ac_try ) 2>&5
11333
- ac_status=$?
11334
- echo " $as_me :$LINENO : \$ ? = $ac_status " >&5
11335
- (exit $ac_status ); }; }; then
11336
- eval " $as_ac_var =yes"
11337
- else
11338
- echo " $as_me : failed program was:" >&5
11339
- cat conftest.$ac_ext >&5
11340
- eval " $as_ac_var =no"
11341
- fi
11342
- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
11343
- fi
11344
- echo " $as_me :$LINENO : result: ` eval echo ' ${' $as_ac_var ' }' ` " >&5
11345
- echo " ${ECHO_T} ` eval echo ' ${' $as_ac_var ' }' ` " >&6
11346
- if test ` eval echo ' ${' $as_ac_var ' }' ` = yes; then
11347
- cat >> confdefs.h << _ACEOF
11348
- #define ` echo " HAVE_$ac_func " | $as_tr_cpp ` 1
11349
- _ACEOF
11350
-
11351
- else
11352
- echo " $as_me :$LINENO : checking for rint in -lm" >&5
11353
- echo $ECHO_N " checking for rint in -lm... $ECHO_C " >&6
11354
- if test " ${ac_cv_lib_m_rint+set} " = set ; then
11355
- echo $ECHO_N " (cached) $ECHO_C " >&6
11356
- else
11357
- ac_check_lib_save_LIBS=$LIBS
11358
- LIBS=" -lm $HPUXMATHLIB $LIBS "
11359
- cat > conftest.$ac_ext << _ACEOF
11360
- #line $LINENO "configure"
11361
- #include "confdefs.h"
11362
-
11363
- /* Override any gcc2 internal prototype to avoid an error. */
11364
- #ifdef __cplusplus
11365
- extern "C"
11366
- #endif
11367
- /* We use char because int might match the return type of a gcc2
11368
- builtin and then its argument prototype would still apply. */
11369
- char rint ();
11370
- #ifdef F77_DUMMY_MAIN
11371
- # ifdef __cplusplus
11372
- extern "C"
11373
- # endif
11374
- int F77_DUMMY_MAIN() { return 1; }
11375
- #endif
11376
- int
11377
- main ()
11378
- {
11379
- rint ();
11380
- ;
11381
- return 0;
11382
- }
11383
- _ACEOF
11384
- rm -f conftest.$ac_objext conftest$ac_exeext
11385
- if { (eval echo " $as_me :$LINENO : \" $ac_link \" " ) >&5
11386
- (eval $ac_link ) 2>&5
11387
- ac_status=$?
11388
- echo " $as_me :$LINENO : \$ ? = $ac_status " >&5
11389
- (exit $ac_status ); } &&
11390
- { ac_try=' test -s conftest$ac_exeext'
11391
- { (eval echo " $as_me :$LINENO : \" $ac_try \" " ) >&5
11392
- (eval $ac_try ) 2>&5
11393
- ac_status=$?
11394
- echo " $as_me :$LINENO : \$ ? = $ac_status " >&5
11395
- (exit $ac_status ); }; }; then
11396
- ac_cv_lib_m_rint=yes
11397
- else
11398
- echo " $as_me : failed program was:" >&5
11399
- cat conftest.$ac_ext >&5
11400
- ac_cv_lib_m_rint=no
11401
- fi
11402
- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
11403
- LIBS=$ac_check_lib_save_LIBS
11404
- fi
11405
- echo " $as_me :$LINENO : result: $ac_cv_lib_m_rint " >&5
11406
- echo " ${ECHO_T} $ac_cv_lib_m_rint " >&6
11407
- if test $ac_cv_lib_m_rint = yes; then
11408
- cat >> confdefs.h << \_ACEOF
11409
- #define HAVE_RINT 1
11410
- _ACEOF
11411
-
11412
- fi
11413
-
11414
- fi
11415
- done
11416
-
11417
-
11418
-
11419
11266
if test " $with_readline " = yes; then
11420
11267
echo " $as_me :$LINENO : checking for rl_completion_append_character" >&5
11421
11268
echo $ECHO_N " checking for rl_completion_append_character... $ECHO_C " >&6
@@ -17230,7 +17077,6 @@ s,@python_moduleexecdir@,$python_moduleexecdir,;t t
17230
17077
s,@python_includespec@,$python_includespec ,;t t
17231
17078
s,@python_libspec@,$python_libspec ,;t t
17232
17079
s,@LIBOBJS@,$LIBOBJS ,;t t
17233
- s,@HPUXMATHLIB@,$HPUXMATHLIB ,;t t
17234
17080
s,@HAVE_POSIX_SIGNALS@,$HAVE_POSIX_SIGNALS ,;t t
17235
17081
s,@MSGFMT@,$MSGFMT ,;t t
17236
17082
s,@MSGMERGE@,$MSGMERGE ,;t t
0 commit comments