diff options
author | Anders Carlsson <andersca@imendio.com> | 2006-03-06 07:53:24 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@src.gnome.org> | 2006-03-06 07:53:24 +0000 |
commit | c57fc7b6fd49091588bd2ec6d74953b5d765db8d (patch) | |
tree | 0d7a5f520d99f5bbb1840b894192c64ec1fc5a78 | |
parent | 01b288becc6bf1abfcc5a32b3197e6212e131948 (diff) |
Skip checking thread flags on Darwin. Fix suggested by Manish Singh.
2006-03-06 Anders Carlsson <andersca@imendio.com>
* configure.in:
Skip checking thread flags on Darwin. Fix suggested by Manish Singh.
(#314794, Gregor Riepl)
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-12 | 6 | ||||
-rw-r--r-- | configure.in | 4 |
4 files changed, 20 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2006-03-06 Anders Carlsson <andersca@imendio.com> + + * configure.in: + Skip checking thread flags on Darwin. Fix suggested by Manish Singh. + (#314794, Gregor Riepl) + 2006-03-01 Tor Lillqvist <tml@novell.com> * glib/gutils.c (g_listenv): Separate implementation on Win32: Use diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index a33c43c39..f53d809f5 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +2006-03-06 Anders Carlsson <andersca@imendio.com> + + * configure.in: + Skip checking thread flags on Darwin. Fix suggested by Manish Singh. + (#314794, Gregor Riepl) + 2006-03-01 Tor Lillqvist <tml@novell.com> * glib/gutils.c (g_listenv): Separate implementation on Win32: Use diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index a33c43c39..f53d809f5 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,9 @@ +2006-03-06 Anders Carlsson <andersca@imendio.com> + + * configure.in: + Skip checking thread flags on Darwin. Fix suggested by Manish Singh. + (#314794, Gregor Riepl) + 2006-03-01 Tor Lillqvist <tml@novell.com> * glib/gutils.c (g_listenv): Separate implementation on Win32: Use diff --git a/configure.in b/configure.in index dc5eeaba4..da6753bd2 100644 --- a/configure.in +++ b/configure.in @@ -1568,8 +1568,8 @@ if test x"$have_threads" != xno; then # 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 + *-*-cygwin*|*-*-darwin*) + # skip cygwin and darwin -pthread or -pthreads test ;; *) for flag in pthread pthreads mt; do |