BeOS tweaks from Begasus.

This commit is contained in:
William Kendrick 2008-05-27 21:10:31 +00:00
parent 2a8af287ce
commit 4a4aa92cc0
3 changed files with 11 additions and 6 deletions

View file

@ -4,7 +4,7 @@
# bill@newbreedsoftware.com # bill@newbreedsoftware.com
# http://www.tuxpaint.org/ # http://www.tuxpaint.org/
# June 14, 2002 - April 3, 2008 # June 14, 2002 - May 27, 2008
# The version number, for release: # The version number, for release:
@ -87,7 +87,7 @@ ARCH_HEADERS:=$($(OS)_ARCH_HEADERS)
# Where things will go when ultimately installed: # Where things will go when ultimately installed:
windows_PREFIX:=/usr/local windows_PREFIX:=/usr/local
osx_PREFIX:=/usr/local osx_PREFIX:=/usr/local
beos_PREFIX:=/boot/apps/Games beos_PREFIX:=/boot/apps/Games/TuxPaint
linux_PREFIX:=/usr/local linux_PREFIX:=/usr/local
PREFIX:=$($(OS)_PREFIX) PREFIX:=$($(OS)_PREFIX)

View file

@ -25,7 +25,7 @@
$Id$ $Id$
June 14, 2002 - April 28, 2008 June 14, 2002 - May 27, 2008
*/ */
#include <stdio.h> #include <stdio.h>
@ -56,8 +56,11 @@
#ifndef OLD_UPPERCASE_CODE #ifndef OLD_UPPERCASE_CODE
#include <wctype.h> #include <wctype.h>
#elif __BEOS__ #else
#if defined (__BEOS__) && !defined (__HAIKU__)
#include <wchar.h> #include <wchar.h>
#else
#endif
#endif #endif

View file

@ -22,7 +22,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
(See COPYING.txt) (See COPYING.txt)
June 14, 2002 - March 4, 2008 June 14, 2002 - May 27, 2008
$Id$ $Id$
*/ */
@ -223,9 +223,11 @@ char *strcasestr(const char *haystack, const char *needle)
#ifndef OLD_UPPERCASE_CODE #ifndef OLD_UPPERCASE_CODE
#include <wctype.h> #include <wctype.h>
#elif __BEOS__ #else
#if defined (__BEOS__) && !defined (__HAIKU__)
#include <wchar.h> #include <wchar.h>
#endif #endif
#endif
#include <libintl.h> #include <libintl.h>
#ifndef gettext_noop #ifndef gettext_noop