[haiku-commits] r36954 - in haiku/trunk/src: apps/haiku3d system/libroot/posix/glibc/include/bits

  • From: korli@xxxxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Thu, 27 May 2010 21:58:28 +0200 (CEST)

Author: korli
Date: 2010-05-27 21:58:28 +0200 (Thu, 27 May 2010)
New Revision: 36954
Changeset: http://dev.haiku-os.org/changeset/36954/haiku
Ticket: http://dev.haiku-os.org/ticket/4204

Modified:
   haiku/trunk/src/apps/haiku3d/Jamfile
   haiku/trunk/src/system/libroot/posix/glibc/include/bits/stdio-lock.h
Log:
Patch from Joseph Prostko to fix the build with GCC 4.4 (ticket #4204).


Modified: haiku/trunk/src/apps/haiku3d/Jamfile
===================================================================
--- haiku/trunk/src/apps/haiku3d/Jamfile        2010-05-27 18:55:28 UTC (rev 
36953)
+++ haiku/trunk/src/apps/haiku3d/Jamfile        2010-05-27 19:58:28 UTC (rev 
36954)
@@ -22,6 +22,6 @@
        BitmapTexture.cpp
        VideoFileTexture.cpp
 
-       : be game GL media translation $(TARGET_LIBSUPC++)
+       : be game GL media translation $(TARGET_LIBSTDC++)
        : Haiku3d.rdef
 ;

Modified: haiku/trunk/src/system/libroot/posix/glibc/include/bits/stdio-lock.h
===================================================================
--- haiku/trunk/src/system/libroot/posix/glibc/include/bits/stdio-lock.h        
2010-05-27 18:55:28 UTC (rev 36953)
+++ haiku/trunk/src/system/libroot/posix/glibc/include/bits/stdio-lock.h        
2010-05-27 19:58:28 UTC (rev 36954)
@@ -27,7 +27,7 @@
 /* We need recursive (counting) mutexes.  */
 #ifdef _LIBC_LOCK_RECURSIVE_INITIALIZER
 # define _IO_lock_initializer _LIBC_LOCK_RECURSIVE_INITIALIZER
-#elif _IO_MTSAFE_IO
+#elif defined _IO_MTSAFE_IO
  #error libio needs recursive mutexes for _IO_MTSAFE_IO
 #endif
 


Other related posts:

  • » [haiku-commits] r36954 - in haiku/trunk/src: apps/haiku3d system/libroot/posix/glibc/include/bits - korli