Remove AC_CYGWIN, obsolete. Don't let pthreads be found on Cygwin, they

2004-04-03  Tor Lillqvist  <tml@iki.fi>

	* configure.in: Remove AC_CYGWIN, obsolete. Don't let pthreads be
	found on Cygwin, they don't work. (#138401, Roger Leigh)
This commit is contained in:
Tor Lillqvist 2004-04-03 04:46:41 +00:00 committed by Tor Lillqvist
parent d305cff8b5
commit ffe52d70b2
7 changed files with 52 additions and 16 deletions

View File

@ -1,3 +1,8 @@
2004-04-03 Tor Lillqvist <tml@iki.fi>
* configure.in: Remove AC_CYGWIN, obsolete. Don't let pthreads be
found on Cygwin, they don't work. (#138401, Roger Leigh)
2004-03-31 Tor Lillqvist <tml@iki.fi>
* tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger

View File

@ -1,3 +1,8 @@
2004-04-03 Tor Lillqvist <tml@iki.fi>
* configure.in: Remove AC_CYGWIN, obsolete. Don't let pthreads be
found on Cygwin, they don't work. (#138401, Roger Leigh)
2004-03-31 Tor Lillqvist <tml@iki.fi>
* tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger

View File

@ -1,3 +1,8 @@
2004-04-03 Tor Lillqvist <tml@iki.fi>
* configure.in: Remove AC_CYGWIN, obsolete. Don't let pthreads be
found on Cygwin, they don't work. (#138401, Roger Leigh)
2004-03-31 Tor Lillqvist <tml@iki.fi>
* tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger

View File

@ -1,3 +1,8 @@
2004-04-03 Tor Lillqvist <tml@iki.fi>
* configure.in: Remove AC_CYGWIN, obsolete. Don't let pthreads be
found on Cygwin, they don't work. (#138401, Roger Leigh)
2004-03-31 Tor Lillqvist <tml@iki.fi>
* tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger

View File

@ -1,3 +1,8 @@
2004-04-03 Tor Lillqvist <tml@iki.fi>
* configure.in: Remove AC_CYGWIN, obsolete. Don't let pthreads be
found on Cygwin, they don't work. (#138401, Roger Leigh)
2004-03-31 Tor Lillqvist <tml@iki.fi>
* tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger

View File

@ -1,3 +1,8 @@
2004-04-03 Tor Lillqvist <tml@iki.fi>
* configure.in: Remove AC_CYGWIN, obsolete. Don't let pthreads be
found on Cygwin, they don't work. (#138401, Roger Leigh)
2004-03-31 Tor Lillqvist <tml@iki.fi>
* tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger

View File

@ -310,7 +310,6 @@ if test x"$glib_native_win32" = xyes; then
fi
fi
AC_CYGWIN
AC_EXEEXT
# define a MAINT-like variable REBUILD which is set if Perl
@ -1394,6 +1393,11 @@ if test x"$have_threads" != xno; then
# both CPPFLAG and LIBS.
# One of them does for most gcc versions and some other platforms/compilers
# too and could be considered as the canonical way to go.
case $host in
*-*-cygwin*)
# skip cygwin -pthread or -pthreads test
;;
*)
for flag in pthread pthreads; do
glib_save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -$flag"
@ -1409,6 +1413,8 @@ if test x"$have_threads" != xno; then
G_THREAD_LIBS=-$flag
fi
done
;;
esac
fi
if test x"$G_THREAD_CFLAGS" = x; then