diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-08-11 07:14:34 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-08-11 07:14:34 +0000 |
commit | 5ab9d72e45e00b7631f86d2cfa0086b87aaa9ea8 (patch) | |
tree | dfca2e20630a96092f20942369172b806ec3bdc1 | |
parent | 6060e7ed961ab6af1845389075ddfce011adfe54 (diff) |
fixed the default result for xopen and mimpure to work better
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index dbc59bae0..00633e242 100644 --- a/configure.ac +++ b/configure.ac @@ -102,6 +102,7 @@ AC_MSG_RESULT($need_no_undefined) AM_CONDITIONAL(NO_UNDEFINED, test x$need_no_undefined = xyes) AC_MSG_CHECKING([if we need -mimpure-text]) +mimpure=no case $host in *-*-solaris2*) if test "$GCC" = "yes"; then @@ -109,13 +110,13 @@ case $host in fi ;; *) - mimpure=no ;; esac AC_MSG_RESULT($mimpure) AM_CONDITIONAL(MIMPURE, test x$mimpure = xyes) AC_MSG_CHECKING([if we need _XOPEN_SOURCE defined to 500]) +xopen=no case $host in mips-sgi-irix*) if test "$GCC" != "yes"; then @@ -124,7 +125,6 @@ case $host in fi ;; *) - xopen=no ;; esac AC_MSG_RESULT($xopen) |