diff options
author | wiz <wiz@pkgsrc.org> | 2004-12-04 12:01:39 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2004-12-04 12:01:39 +0000 |
commit | 25f7836d55c56d97f5cc5ae8955745094ef9d94c (patch) | |
tree | cf6340e1f2c7df82bda33203c8d01cc087320e86 /net/userppp/Makefile | |
parent | 32ae32d22e0a506672682a13d06a2388cbdc7db2 (diff) | |
download | pkgsrc-25f7836d55c56d97f5cc5ae8955745094ef9d94c.tar.gz |
USE_BUILDLINK3, and remove -Werror from compiler flags so
this builds on -current.
Diffstat (limited to 'net/userppp/Makefile')
-rw-r--r-- | net/userppp/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/userppp/Makefile b/net/userppp/Makefile index ad10078e007..74e9f9cb940 100644 --- a/net/userppp/Makefile +++ b/net/userppp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2004/05/07 11:54:35 wiz Exp $ +# $NetBSD: Makefile,v 1.16 2004/12/04 12:01:39 wiz Exp $ DISTNAME= ppp-001107.src PKGNAME= userppp-001107 @@ -12,10 +12,13 @@ COMMENT= User-PPP package as found in FreeBSD and OpenBSD ONLY_FOR_PLATFORM= NetBSD-*-* +USE_BUILDLINK3= YES WRKSRC= ${WRKDIR}/${DISTNAME:S/.src//} MANCOMPRESSED_IF_MANZ= YES CFLAGS+= -fno-strict-aliasing +# fix build on -current for wrong is* arguments (char instead of unsigned char) +BUILDLINK_TRANSFORM+= rm:-Werror post-patch: (cd ${WRKSRC}; \ |