From: Tor Lillqvist Date: Fri, 26 Oct 2001 05:38:32 +0000 (+0000) Subject: Don't default to win32 thread implementation on Cygwin. The gthread-win32 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=982edff615554cb02a2ae38f83c9acd165bd09e4;p=dana%2Fcg-glib.git Don't default to win32 thread implementation on Cygwin. The gthread-win32 2001-10-26 Tor Lillqvist * configure.in: Don't default to win32 thread implementation on Cygwin. The gthread-win32 implementation really is for Win32 with MS runtime only. Let configure find pthreads when configuring for Cygwin. --- diff --git a/ChangeLog b/ChangeLog index 2bfa76fb..ff8b07ce 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2001-10-26 Tor Lillqvist + * configure.in: Don't default to win32 thread implementation on + Cygwin. The gthread-win32 implementation really is for Win32 with + MS runtime only. Let configure find pthreads when configuring for + Cygwin. + * README.win32: Updates. * glib/glib.def: Update. diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 2bfa76fb..ff8b07ce 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,5 +1,10 @@ 2001-10-26 Tor Lillqvist + * configure.in: Don't default to win32 thread implementation on + Cygwin. The gthread-win32 implementation really is for Win32 with + MS runtime only. Let configure find pthreads when configuring for + Cygwin. + * README.win32: Updates. * glib/glib.def: Update. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 2bfa76fb..ff8b07ce 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,10 @@ 2001-10-26 Tor Lillqvist + * configure.in: Don't default to win32 thread implementation on + Cygwin. The gthread-win32 implementation really is for Win32 with + MS runtime only. Let configure find pthreads when configuring for + Cygwin. + * README.win32: Updates. * glib/glib.def: Update. diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 2bfa76fb..ff8b07ce 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,5 +1,10 @@ 2001-10-26 Tor Lillqvist + * configure.in: Don't default to win32 thread implementation on + Cygwin. The gthread-win32 implementation really is for Win32 with + MS runtime only. Let configure find pthreads when configuring for + Cygwin. + * README.win32: Updates. * glib/glib.def: Update. diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 2bfa76fb..ff8b07ce 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,5 +1,10 @@ 2001-10-26 Tor Lillqvist + * configure.in: Don't default to win32 thread implementation on + Cygwin. The gthread-win32 implementation really is for Win32 with + MS runtime only. Let configure find pthreads when configuring for + Cygwin. + * README.win32: Updates. * glib/glib.def: Update. diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 2bfa76fb..ff8b07ce 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,5 +1,10 @@ 2001-10-26 Tor Lillqvist + * configure.in: Don't default to win32 thread implementation on + Cygwin. The gthread-win32 implementation really is for Win32 with + MS runtime only. Let configure find pthreads when configuring for + Cygwin. + * README.win32: Updates. * glib/glib.def: Update. diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 2bfa76fb..ff8b07ce 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,5 +1,10 @@ 2001-10-26 Tor Lillqvist + * configure.in: Don't default to win32 thread implementation on + Cygwin. The gthread-win32 implementation really is for Win32 with + MS runtime only. Let configure find pthreads when configuring for + Cygwin. + * README.win32: Updates. * glib/glib.def: Update. diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 2bfa76fb..ff8b07ce 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,5 +1,10 @@ 2001-10-26 Tor Lillqvist + * configure.in: Don't default to win32 thread implementation on + Cygwin. The gthread-win32 implementation really is for Win32 with + MS runtime only. Let configure find pthreads when configuring for + Cygwin. + * README.win32: Updates. * glib/glib.def: Update. diff --git a/configure.in b/configure.in index ac0ee352..d9d44a68 100644 --- a/configure.in +++ b/configure.in @@ -1086,7 +1086,7 @@ if test "x$want_threads" = xyes || test "x$want_threads" = xposix \ fi if test "x$want_threads" = xyes || test "x$want_threads" = xwin32; then case $host in - *-*-mingw*|*-*-cygwin*) + *-*-mingw*) have_threads=win32 ;; esac