diff --git a/config/configure b/config/configure index a3387324..e10c664b 100755 --- a/config/configure +++ b/config/configure @@ -10460,6 +10460,12 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu +case "$SYSTEM" in + cygwin) + PTHREAD_CFLAGS="" + ;; +esac + # On linux plaforms, we will have to check that includes from kernel are # available. glibc version test was shamelessly taken from # http://public.activestate.com/gsar/APC/perl-5.8.x/Configure diff --git a/config/configure.in b/config/configure.in index c1599153..baabb1c9 100644 --- a/config/configure.in +++ b/config/configure.in @@ -931,6 +931,12 @@ fi echo "----- checking pthread support" AX_PTHREAD +case "$SYSTEM" in + cygwin) + PTHREAD_CFLAGS="" + ;; +esac + # On linux plaforms, we will have to check that includes from kernel are # available. glibc version test was shamelessly taken from # http://public.activestate.com/gsar/APC/perl-5.8.x/Configure