diff options
author | joerg <joerg@pkgsrc.org> | 2007-01-09 10:16:19 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-01-09 10:16:19 +0000 |
commit | 72cbd1a98bb50b789dd94050ce15b08bee899236 (patch) | |
tree | 42b7dd0fe96342906b869a530d345097ebf408c6 /x11/xflame | |
parent | 7bbc414b1b74aec74ae1e572d6fdbb5c342ef5c4 (diff) | |
download | pkgsrc-72cbd1a98bb50b789dd94050ce15b08bee899236.tar.gz |
nanosleep needs -lrt on Solaris. From Gilles Dauphin.
Diffstat (limited to 'x11/xflame')
-rw-r--r-- | x11/xflame/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/x11/xflame/Makefile b/x11/xflame/Makefile index 8b1fc18b6e9..56e62ad1268 100644 --- a/x11/xflame/Makefile +++ b/x11/xflame/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2006/12/27 13:37:45 joerg Exp $ +# $NetBSD: Makefile,v 1.9 2007/01/09 10:16:19 joerg Exp $ # DISTNAME= xflame-1.1.1 @@ -11,6 +11,12 @@ COMMENT= Draws a flame on the screen USE_IMAKE= yes +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} == "SunOS" +MAKE_FLAGS+= EXTRA_LOAD_FLAGS=-lrt +.endif + .include "../../x11/libX11/buildlink3.mk" .include "../../x11/libXext/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |