diff options
author | obache <obache@pkgsrc.org> | 2014-05-18 10:13:59 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2014-05-18 10:13:59 +0000 |
commit | e45371fb756d4b4216b802f62a647f4e09455e5a (patch) | |
tree | 882b03838f8e7efc633a6c4ae50682bb2ac0f202 /mk | |
parent | 58e9ab4417938104ade237c2969f790b7b0705dd (diff) | |
download | pkgsrc-e45371fb756d4b4216b802f62a647f4e09455e5a.tar.gz |
catch up to /boot/common removal, adust header/library location.
noticed by diger in pkgsrc-users@.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/platform/Haiku.mk | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/mk/platform/Haiku.mk b/mk/platform/Haiku.mk index c14bde5d9c1..5828da5a6fa 100644 --- a/mk/platform/Haiku.mk +++ b/mk/platform/Haiku.mk @@ -1,4 +1,4 @@ -# $NetBSD: Haiku.mk,v 1.11 2014/05/18 09:45:40 obache Exp $ +# $NetBSD: Haiku.mk,v 1.12 2014/05/18 10:13:59 obache Exp $ # # Variable definitions for the Haiku operating system. @@ -33,11 +33,18 @@ USERADD?= /bin/useradd GROUPADD?= /bin/groupadd .endif +.if exists(/boot/system/develop) +_OPSYS_SYSTEM_RPATH?= /boot/system/lib +_OPSYS_LIB_DIRS?= /boot/system/develop/lib /boot/system/lib +_OPSYS_INCLUDE_DIRS?= /boot/system/develop/headers \ + /boot/system/develop/headers/posix +.else _OPSYS_SYSTEM_RPATH?= /boot/common/lib:/boot/system/lib _OPSYS_LIB_DIRS?= /boot/common/lib /boot/system/lib _OPSYS_INCLUDE_DIRS?= /boot/common/include \ /boot/develop/headers/posix \ /boot/develop/headers/3rdparty +.endif _OPSYS_HAS_INET6= yes # IPv6 is standard _OPSYS_HAS_JAVA= no # Java is not standard |