pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/mit-krb5



Module Name:    pkgsrc
Committed By:   hauke
Date:           Fri Jun 22 09:16:07 UTC 2018

Modified Files:
        pkgsrc/security/mit-krb5: Makefile

Log Message:
The SunOS (OmniOS) yacc(1) breaks the build with

making generate-files-mac in kadmin...
making generate-files-mac in kadmin/cli...
../../util/ss/mk_cmds kadmin_ct.ct
/usr/bin/yacc  getdate.y
"getdate.y", line 180: fatal: invalid escape, or illegal reserved word: expect
*** Error code 1

-- use bison(1) instead.


To generate a diff of this commit:
cvs rdiff -u -r1.96 -r1.97 pkgsrc/security/mit-krb5/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/security/mit-krb5/Makefile
diff -u pkgsrc/security/mit-krb5/Makefile:1.96 pkgsrc/security/mit-krb5/Makefile:1.97
--- pkgsrc/security/mit-krb5/Makefile:1.96      Fri Jun 15 20:46:01 2018
+++ pkgsrc/security/mit-krb5/Makefile   Fri Jun 22 09:16:07 2018
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.96 2018/06/15 20:46:01 tez Exp $
+# $NetBSD: Makefile,v 1.97 2018/06/22 09:16:07 hauke Exp $
 
 DISTNAME=      krb5-1.16.1
 PKGNAME=       mit-${DISTNAME}
+PKGREVISION=   1
 CATEGORIES=    security
 MASTER_SITES=  http://web.mit.edu/kerberos/dist/krb5/${PKGVERSION_NOREV:R}/
 EXTRACT_SUFX=  .tar.gz
@@ -27,8 +28,13 @@ CONFLICTS+=  kth-krb4-[0-9]*
 
 USE_LANGUAGES=         c c++
 USE_LIBTOOL=           yes
-USE_TOOLS+=            autoconf gzip m4 perl yacc msgfmt
 GNU_CONFIGURE=         yes
+USE_TOOLS+=            autoconf gzip m4 perl msgfmt
+.if ${OPSYS} == "SunOS"
+USE_TOOLS+=            bison
+.else
+USE_TOOLS+=            yacc
+.endif
 
 # The actual KDC databases are stored in ${MIT_KRB5_STATEDIR}/krb5kdc.
 MIT_KRB5_STATEDIR?=    ${VARBASE}



Home | Main Index | Thread Index | Old Index