pkgsrc-Changes archive

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

CVS commit: pkgsrc/security/gnutls



Module Name:    pkgsrc
Committed By:   gutteridge
Date:           Sun Dec 26 23:03:54 UTC 2021

Modified Files:
        pkgsrc/security/gnutls: Makefile

Log Message:
gnutls: fix builds on Solaris 10

Addresses PR pkg/56500 from Claes Nästén.


To generate a diff of this commit:
cvs rdiff -u -r1.224 -r1.225 pkgsrc/security/gnutls/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/gnutls/Makefile
diff -u pkgsrc/security/gnutls/Makefile:1.224 pkgsrc/security/gnutls/Makefile:1.225
--- pkgsrc/security/gnutls/Makefile:1.224       Wed Dec  8 16:02:33 2021
+++ pkgsrc/security/gnutls/Makefile     Sun Dec 26 23:03:54 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.224 2021/12/08 16:02:33 adam Exp $
+# $NetBSD: Makefile,v 1.225 2021/12/26 23:03:54 gutteridge Exp $
 
 DISTNAME=      gnutls-3.7.2
 PKGREVISION=   2
@@ -91,6 +91,11 @@ CONFIGURE_ARGS+=     --disable-hardware-acce
 .  endif
 .endif
 
+# Tests fail due to missing strndup for Solaris < 5.11, disable for now
+.if ${OPSYS} == "SunOS" && ${OPSYS_VERSION} < 051100
+CONFIGURE_ARGS.SunOS+= --disable-tests
+.endif
+
 post-install:
        cd ${WRKSRC}/doc/examples && ${INSTALL_DATA} *.c ${DESTDIR}${EGDIR}
 



Home | Main Index | Thread Index | Old Index