diff options
author | agc <agc@pkgsrc.org> | 1999-07-08 13:03:45 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1999-07-08 13:03:45 +0000 |
commit | cb45f2d39ec6d3678c094f089561c426d910d3c2 (patch) | |
tree | 238f78da2e9d783460ebf9806ea98900e6676e88 | |
parent | 1985bb5824f42e1f8206a43d26cac94430975e76 (diff) | |
download | pkgsrc-cb45f2d39ec6d3678c094f089561c426d910d3c2.tar.gz |
Work around a <stdarg.h> problem for just now.
-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 1082b9152c8..0d281163d49 100644 --- a/graphics/xv/Makefile +++ b/graphics/xv/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 1999/06/20 19:45:44 tron Exp $ +# $NetBSD: Makefile,v 1.22 1999/07/08 13:03:45 agc Exp $ # FreeBSD Id: Makefile,v 1.14 1997/07/03 07:37:08 asami Exp # @@ -35,6 +35,11 @@ post-patch: ${SED} -e 's|@LOCALBASE@|${LOCALBASE}|g' < ${WRKSRC}/config.h.bak \ > ${WRKSRC}/config.h +.if ${OPSYS} == "SunOS" +pre-build: + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} xvinfo.o CC=cc +.endif + post-install: ${MKDIR} ${PREFIX}/share/doc/xv ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xv |