Patch from Joseph Prostko to fix the build with GCC 4.4 (ticket #4204).

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36954 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2010-05-27 19:58:28 +00:00
parent 31a3c4e885
commit 533119eab0
2 changed files with 2 additions and 2 deletions

View File

@ -22,6 +22,6 @@ Application Haiku3d :
BitmapTexture.cpp
VideoFileTexture.cpp
: be game GL media translation $(TARGET_LIBSUPC++)
: be game GL media translation $(TARGET_LIBSTDC++)
: Haiku3d.rdef
;

View File

@ -27,7 +27,7 @@ __libc_lock_define_recursive (typedef, _IO_lock_t)
/* 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