pixman: Branch 'master'

Siarhei Siamashka siamashka at kemper.freedesktop.org
Mon Nov 1 16:44:51 PDT 2010


 configure.ac |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 56748ea9a698daec8f445d2bebbbaed5515380af
Author: Siarhei Siamashka <siarhei.siamashka at nokia.com>
Date:   Sat Oct 30 15:51:30 2010 +0300

    Fixed broken configure check for __thread support
    
    Somehow the patch from [1] was not applied correctly, fixing that.
    
    1. http://lists.cairographics.org/archives/cairo/2010-September/020826.html

diff --git a/configure.ac b/configure.ac
index b80cc5f..8193898 100644
--- a/configure.ac
+++ b/configure.ac
@@ -652,10 +652,9 @@ support_for__thread=no
 
 AC_MSG_CHECKING(for __thread)
 AC_LINK_IFELSE([
-#ifdef defined __MINGW32__ && !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5))
+#if defined(__MINGW32__) && !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5))
 #error This MinGW version has broken __thread support
 #endif
-#endif
 #ifdef __OpenBSD__
 #error OpenBSD has broken __thread support
 #endif


More information about the xorg-commit mailing list