diff options
author | ryoon <ryoon> | 2013-10-14 09:55:52 +0000 |
---|---|---|
committer | ryoon <ryoon> | 2013-10-14 09:55:52 +0000 |
commit | 971a61bcc7350d23f9404b134cd7675911fad23d (patch) | |
tree | 27bb804496f72d9010d754ae72728ed4985d56d4 | |
parent | a4d72c7477950aabd6ce1907e595c6a3821bdf76 (diff) | |
download | pkgsrc-971a61bcc7350d23f9404b134cd7675911fad23d.tar.gz |
Fix pakaging on Linux.
vis.h and glob.h are installed on Linux
(Debian GNU/Linux 7.1 and CentOS 6.4 at least)
* Makefile of Rev 1.100 removes vis.h and glob.h hack. My two Linux
environments require vis.h and glob.h entries for PLIST.
Set PLIST.vis and PLIST.glob for Linux.
-rw-r--r-- | security/heimdal/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/security/heimdal/Makefile b/security/heimdal/Makefile index ee1a6528763..09d6ee0b294 100644 --- a/security/heimdal/Makefile +++ b/security/heimdal/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.104 2013/10/11 16:21:40 roy Exp $ +# $NetBSD: Makefile,v 1.105 2013/10/14 09:55:52 ryoon Exp $ DISTNAME= heimdal-1.5.3 PKGREVISION= 2 @@ -70,6 +70,12 @@ PLIST.vis= yes PLIST.glob= yes .endif +# Linux does not have include/vis.h and expected include/glob.h. +.if ${OPSYS} == "Linux" +PLIST.vis= yes +PLIST.glob= yes +.endif + PLIST_VARS+= afskauth hcrypto .if ${OPSYS} == "IRIX" PLIST.afskauth= yes |