diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 260cf6eba..227df838e 100644 --- a/configure.ac +++ b/configure.ac @@ -170,6 +170,9 @@ case "${target}" in *-*-mingw32*) disallowed_modules="rndunix rndlinux rndegd" ;; + *-*-cygwin*) + disallowed_modules="rndunix rndlinux rndegd tiger" + ;; *) disallowed_modules="rndw32" ;; @@ -200,7 +203,7 @@ MPI_OPT_FLAGS="" try_gettext=yes case "${target}" in - *-*-mingw32*) + *-*-mingw32*|*-*-cygwin*) # special stuff for Windoze NT ac_cv_have_dev_random=no AC_DEFINE(USE_ONLY_8DOT3,1, @@ -294,6 +297,9 @@ case "${target}" in *-*-mingw32*) PRINTABLE_OS_NAME="MingW32" ;; + *-*-cygwin*) + PRINTABLE_OS_NAME="Cygwin32" + ;; i?86-emx-os2 | i?86-*-os2*emx ) PRINTABLE_OS_NAME="OS/2" ;; @@ -608,7 +614,7 @@ if test "$use_static_rnd" = default; then static_random_module="rndlinux" else case "${target}" in - *-*-mingw32*) + *-*-mingw32*|*-*-cygwin*) static_random_module="rndw32" AC_DEFINE(USE_STATIC_RNDW32,1, [At some point in the code we need to know that |