1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

configure.in: additional note suggested by Greg Troxel

This commit is contained in:
Neil Jerram 2008-02-12 20:58:59 +00:00
parent bc5d49d9c8
commit 809624f345

View file

@ -716,8 +716,11 @@ AC_SEARCH_LIBS(crypt, crypt,
[AC_DEFINE(HAVE_CRYPT,1, [AC_DEFINE(HAVE_CRYPT,1,
[Define to 1 if you have the `crypt' function.])]) [Define to 1 if you have the `crypt' function.])])
# When compiling with GCC on some OSs (Solaris, AIX), _Complex_I doesn't work; # When compiling with GCC on some OSs (Solaris, AIX), _Complex_I doesn't
# in the reported cases so far, 1.0fi works well instead. # work; in the reported cases so far, 1.0fi works well instead. According
# to the C99 spec, the complex.h header must provide a working definition
# of _Complex_I, so we always try _Complex_I first. The 1.0fi fallback
# is a workaround for the failure of some systems to conform to C99.
if test "$ac_cv_type_complex_double" = yes; then if test "$ac_cv_type_complex_double" = yes; then
AC_MSG_CHECKING([for i]) AC_MSG_CHECKING([for i])
AC_TRY_COMPILE([ AC_TRY_COMPILE([