diff options
author | jperkin <jperkin@pkgsrc.org> | 2014-08-21 16:26:20 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2014-08-21 16:26:20 +0000 |
commit | c9b3ba83fea015466eb2807e15d2161650b7def6 (patch) | |
tree | 2eb39b839b7dbbbfbc992a7d100e0f44918762bd /security | |
parent | dad4765f385806636ef87c26fb2128ed50aa074e (diff) | |
download | pkgsrc-c9b3ba83fea015466eb2807e15d2161650b7def6.tar.gz |
Fix build on SunOS (needs explicit -lnsl -lresolv).
Diffstat (limited to 'security')
-rw-r--r-- | security/qident/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/security/qident/Makefile b/security/qident/Makefile index a01af4fd7b1..8c90e8efe1c 100644 --- a/security/qident/Makefile +++ b/security/qident/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2012/10/23 18:16:56 asau Exp $ +# $NetBSD: Makefile,v 1.12 2014/08/21 16:26:20 jperkin Exp $ DISTNAME= qident-1.2 CATEGORIES= security net @@ -11,6 +11,8 @@ COMMENT= Small program to query an ident protocol server (rfc1413) USE_BSD_MAKEFILE= YES USE_TOOLS+= groff nroff +LDFLAGS.SunOS+= -lnsl -lresolv + MANCOMPRESSED_IF_MANZ= YES INSTALLATION_DIRS= bin ${PKGMANDIR}/cat1 ${PKGMANDIR}/man1 |