[Python-checkins] CVS: python/dist/src configure.in,1.138,1.139

Jeremy Hylton python-dev@python.org
Thu, 27 Jul 2000 13:59:01 -0700


Update of /cvsroot/python/python/dist/src
In directory slayer.i.sourceforge.net:/tmp/cvs-serv22111

Modified Files:
	configure.in 
Log Message:
Gregor Hoffleit: Don't link with the libieee library if it's not necessary


Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.138
retrieving revision 1.139
diff -C2 -r1.138 -r1.139
*** configure.in	2000/07/14 14:28:32	1.138
--- configure.in	2000/07/27 20:58:58	1.139
***************
*** 1012,1016 ****
  
  # Linux requires this for correct f.p. operations
! AC_CHECK_LIB(ieee, __fpu_control)
  
  # Check for --with-fpectl
--- 1012,1019 ----
  
  # Linux requires this for correct f.p. operations
! AC_CHECK_FUNC(__fpu_control,
!   [],
!   [AC_CHECK_LIB(ieee, __fpu_control)
! ])
  
  # Check for --with-fpectl