diff options
author | jperkin <jperkin@pkgsrc.org> | 2014-08-21 16:10:10 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2014-08-21 16:10:10 +0000 |
commit | bef1a42aeca13614102e66337ff7c5a1b1a45db8 (patch) | |
tree | a453283db3195309f5f05105bd73588ca0ccffc6 | |
parent | a89cef878906af698ae0359e066542bf44c90639 (diff) | |
download | pkgsrc-bef1a42aeca13614102e66337ff7c5a1b1a45db8.tar.gz |
Fix build on SunOS (needs explicit -lXrender).
-rw-r--r-- | time/xonclock/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/time/xonclock/Makefile b/time/xonclock/Makefile index 09856e3346e..acc405ea08d 100644 --- a/time/xonclock/Makefile +++ b/time/xonclock/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2013/06/06 12:55:08 wiz Exp $ +# $NetBSD: Makefile,v 1.22 2014/08/21 16:10:10 jperkin Exp $ # DISTNAME= xonclock-0.0.9.4 @@ -14,7 +14,7 @@ LICENSE= gnu-gpl-v2 GNU_CONFIGURE= yes LDFLAGS.DragonFly= -lm -lXrender -LDFLAGS.SunOS+= -lm -lrt +LDFLAGS.SunOS+= -lm -lXrender -lrt .include "../../graphics/freetype2/buildlink3.mk" .include "../../graphics/png/buildlink3.mk" |