pkgsrc-Changes archive

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

CVS commit: pkgsrc/security/gpgme



Module Name:    pkgsrc
Committed By:   maya
Date:           Mon Sep  9 11:19:33 UTC 2019

Modified Files:
        pkgsrc/security/gpgme: Makefile

Log Message:
gpgme: fix for older GCC.

Remove unrecognized flag (GCC 4.8.5), default to -std=gnu99, since we have
loop initial declarations.

tested on SmartOS and CentOS 7.


To generate a diff of this commit:
cvs rdiff -u -r1.94 -r1.95 pkgsrc/security/gpgme/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/gpgme/Makefile
diff -u pkgsrc/security/gpgme/Makefile:1.94 pkgsrc/security/gpgme/Makefile:1.95
--- pkgsrc/security/gpgme/Makefile:1.94 Wed Jul  3 20:29:54 2019
+++ pkgsrc/security/gpgme/Makefile      Mon Sep  9 11:19:33 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.94 2019/07/03 20:29:54 adam Exp $
+# $NetBSD: Makefile,v 1.95 2019/09/09 11:19:33 maya Exp $
 
 DISTNAME=      gpgme-1.13.1
 CATEGORIES=    security
@@ -10,7 +10,7 @@ HOMEPAGE=     http://www.gnupg.org/related_s
 COMMENT=       GnuPG Made Easy
 LICENSE=       gnu-gpl-v2
 
-USE_LANGUAGES+=                c c++
+USE_LANGUAGES+=                c99 c++
 USE_LIBTOOL=           yes
 USE_TOOLS+=            gmake
 GNU_CONFIGURE=         yes
@@ -26,6 +26,8 @@ SUBST_STAGE.pthread=  pre-configure
 CPPFLAGS.Darwin=       -D_POSIX_C_SOURCE=200809L
 LIBS.SunOS+=           -lnsl -lsocket
 
+BUILDLINK_TRANSFORM+=  rm:-Wsuggest-override
+
 TEST_TARGET=           check
 
 .include "options.mk"



Home | Main Index | Thread Index | Old Index