diff options
author | jperkin <jperkin> | 2013-10-24 09:30:40 +0000 |
---|---|---|
committer | jperkin <jperkin> | 2013-10-24 09:30:40 +0000 |
commit | 4eeed2bb8128afca74b0d9ae2d457de81c7d4411 (patch) | |
tree | 36eb6e97ba6912c064abc40a60568a98e8ab3b27 | |
parent | 7995a3a4f766b3db7e2b5930cbace4105d6a9dec (diff) | |
download | pkgsrc-4eeed2bb8128afca74b0d9ae2d457de81c7d4411.tar.gz |
Fix CFLAGS and LDFLAGS on SunOS. Fix from Sebastian Wiedenroth.
-rw-r--r-- | mail/pulsar/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/pulsar/Makefile b/mail/pulsar/Makefile index 3ff427d867a..a0fd69d6439 100644 --- a/mail/pulsar/Makefile +++ b/mail/pulsar/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2013/02/06 23:22:48 jperkin Exp $ +# $NetBSD: Makefile,v 1.17 2013/10/24 09:30:40 jperkin Exp $ # DISTNAME= pulsar-0.1.1 @@ -18,6 +18,9 @@ USE_TOOLS+= autoconf gmake MANCOMPRESSED= yes +CFLAGS.SunOS+= -Du_int32_t=uint32_t +LDFLAGS.SunOS+= -lsocket -lnsl + pre-configure: cd ${WRKSRC}; autoconf |