diff options
author | hans <hans@pkgsrc.org> | 2012-04-13 22:59:16 +0000 |
---|---|---|
committer | hans <hans@pkgsrc.org> | 2012-04-13 22:59:16 +0000 |
commit | af2c3ff08c6d6bb11d854ab8dae3cfefbce6ab0d (patch) | |
tree | e8ecb63fe7b4621aea0f57d4e34d22161b53fd27 /net | |
parent | 56b53e87fdb28ad4c8c348de5a316381c32fb37b (diff) | |
download | pkgsrc-af2c3ff08c6d6bb11d854ab8dae3cfefbce6ab0d.tar.gz |
Always set RT_LIB_SCHED=-lrt on SunOS. Now it builds but then breaks on
some destdir issue.
Diffstat (limited to 'net')
-rw-r--r-- | net/kiax/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/kiax/Makefile b/net/kiax/Makefile index c91ceb805c0..2814bdeb1a4 100644 --- a/net/kiax/Makefile +++ b/net/kiax/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2011/11/01 06:02:19 sbd Exp $ +# $NetBSD: Makefile,v 1.20 2012/04/13 22:59:16 hans Exp $ DISTNAME= kiax-0.8.51-src PKGNAME= ${DISTNAME:S/-src//} @@ -36,7 +36,8 @@ SUBST_FILES.path= src/src.pro bin/Makefile SUBST_SED.path= -e 's:/usr/local:${PREFIX}:g' .include "../../mk/bsd.prefs.mk" -.if ${OPSYS} == "NetBSD" && exists(/usr/include/sys/pset.h) +.if ${OPSYS} == "NetBSD" && exists(/usr/include/sys/pset.h) || \ + ${OPSYS} == "SunOS" RT_LIB_SCHED= -lrt .else RT_LIB_SCHED= # empty |