diff options
author | nia <nia@pkgsrc.org> | 2018-10-03 22:37:09 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2018-10-03 22:37:09 +0000 |
commit | 512c97dd1739cd01f65cf157a000a3c60215b2e4 (patch) | |
tree | 041bd9aa713e5e43362b2ea91c4f6eca2414bb7d /net/miniupnpc | |
parent | cbdc06610d6a9a7302690ae9f880fb9e3fc46f6c (diff) | |
download | pkgsrc-512c97dd1739cd01f65cf157a000a3c60215b2e4.tar.gz |
net/miniupnpc: add -lsocket -lnsl on SunOS.
Diffstat (limited to 'net/miniupnpc')
-rw-r--r-- | net/miniupnpc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/miniupnpc/Makefile b/net/miniupnpc/Makefile index 0fde087e5cc..2d428c53ee3 100644 --- a/net/miniupnpc/Makefile +++ b/net/miniupnpc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2018/10/03 22:27:05 nia Exp $ +# $NetBSD: Makefile,v 1.4 2018/10/03 22:37:09 nia Exp $ DISTNAME= miniupnpc-2.1 CATEGORIES= net @@ -13,5 +13,6 @@ USE_TOOLS+= gmake USE_LANGUAGES= c99 CPPFLAGS.SunOS+= -D__EXTENSIONS__ +LDFLAGS.SunOS+= -lsocket -lnsl .include "../../mk/bsd.pkg.mk" |