diff options
author | jperkin <jperkin@pkgsrc.org> | 2013-10-24 09:30:40 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2013-10-24 09:30:40 +0000 |
commit | aabaf151e7e5f156abec9175a93a131ad6768109 (patch) | |
tree | 36eb6e97ba6912c064abc40a60568a98e8ab3b27 | |
parent | b1266bf4a62dfde9c6f4efc46ff480ee7b31b859 (diff) | |
download | pkgsrc-aabaf151e7e5f156abec9175a93a131ad6768109.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 |