mirror of
https://review.haiku-os.org/buildtools
synced 2024-11-23 07:18:49 +01:00
* should now be able to build jam on Zeta, too.
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@18504 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
c4d9c2df99
commit
742ec4efee
10
jam/Jamfile
10
jam/Jamfile
@ -133,7 +133,6 @@ if $(VMS)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if $(OS) = BEOS {
|
if $(OS) = BEOS {
|
||||||
DEFINES += _ZETA_USING_DEPRECATED_API_=1 ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -145,7 +144,14 @@ LinkLibraries jam : libjam.a ;
|
|||||||
GenFile jambase.c : mkjambase Jambase ;
|
GenFile jambase.c : mkjambase Jambase ;
|
||||||
|
|
||||||
if $(OS) = BEOS {
|
if $(OS) = BEOS {
|
||||||
LINKLIBS on jam += -lnet ;
|
local haveBone = [ GLOB /boot/develop/headers/be/bone/arpa : inet.h ] ;
|
||||||
|
if ! $(haveBone) {
|
||||||
|
LINKLIBS on jam += -lnet ;
|
||||||
|
}
|
||||||
|
local haveZeta = [ GLOB /boot/beos/system/lib : libzeta.so ] ;
|
||||||
|
if $(haveZeta) {
|
||||||
|
DEFINES += _ZETA_USING_DEPRECATED_API_=1 ;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Library libjam.a :
|
Library libjam.a :
|
||||||
|
Loading…
Reference in New Issue
Block a user