diff options
author | agc <agc@pkgsrc.org> | 1999-04-07 09:49:33 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1999-04-07 09:49:33 +0000 |
commit | f657ebf2ed48a60347604d70934cea0e543a848a (patch) | |
tree | 86863c06eee5d87db4f4e565491546a4d71fd040 | |
parent | 06177b67d991bf200cd17172fe1f95d370019b58 (diff) | |
download | pkgsrc-f657ebf2ed48a60347604d70934cea0e543a848a.tar.gz |
Make this package work on Solaris.
-rw-r--r-- | graphics/xv/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/graphics/xv/Makefile b/graphics/xv/Makefile index 1e24cee007a..2e1cfdff163 100644 --- a/graphics/xv/Makefile +++ b/graphics/xv/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 1999/01/04 23:29:46 frueauf Exp $ +# $NetBSD: Makefile,v 1.17 1999/04/07 09:49:33 agc Exp $ # FreeBSD Id: Makefile,v 1.14 1997/07/03 07:37:08 asami Exp # @@ -41,4 +41,9 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/docs/xvdocs.ps ${PREFIX}/share/doc/xv .endif +.if ${OPSYS} == "SunOS" +MAKE_ENV+= CPPFLAGS= +LDFLAGS+= -Wl,-R${X11BASE}/lib +.endif + .include "../../mk/bsd.pkg.mk" |