Ported to Haiku.

git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@24623 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2008-03-28 14:14:44 +00:00
parent dc17bbe506
commit 7b6de8037d
4 changed files with 9 additions and 3 deletions

View File

@ -396,7 +396,7 @@ else if $(OS) = BEOS && $(OSPLAT) = PPC
YACCFILES ?= y.tab ;
YACCFLAGS ?= -d ;
}
else if $(OS) = BEOS
else if $(OS) = BEOS || $(OS) = HAIKU
{
BINDIR ?= /boot/home/config/bin ;
CC ?= gcc ;

View File

@ -86,6 +86,7 @@ struct ar_hdr /* archive file member header - printable ascii */
# if defined( OS_QNX ) || \
defined( OS_BEOS ) || \
defined( OS_HAIKU ) || \
defined( OS_MPEIX )
# define NO_AR
# define HAVE_AR

View File

@ -208,7 +208,7 @@
# define OSMINOR "OS=AMIGA"
# define OS_AMIGA
# endif
# ifdef __BEOS__
# if defined(__BEOS__) && !defined(__HAIKU__)
# define unix
# define OSMINOR "OS=BEOS"
# define OS_BEOS
@ -235,6 +235,11 @@
# define OSMINOR "OS=DGUX"
# define OS_DGUX
# endif
# ifdef __HAIKU__
# define unix
# define OSMINOR "OS=HAIKU"
# define OS_HAIKU
# endif
# ifdef __hpux
# define OSMINOR "OS=HPUX"
# define OS_HPUX

View File

@ -1,5 +1,5 @@
/* Keep JAMVERSYM in sync with VERSION. */
/* It can be accessed as $(JAMVERSION) in the Jamfile. */
#define VERSION "2.5-haiku-20060813"
#define VERSION "2.5-haiku-20080327"
#define JAMVERSYM "JAMVERSION=2.5"