pkgsrc-Changes archive

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

CVS commit: pkgsrc/ham/trustedQSL



Module Name:    pkgsrc
Committed By:   gdt
Date:           Mon May 13 00:21:34 UTC 2019

Modified Files:
        pkgsrc/ham/trustedQSL: Makefile

Log Message:
ham/tqsl: Require C++11

While the package is not documented to use C++11, it uses std::string
constructs added in C++11, and fails compilation with g++ 5.5.0
without --std=c++11.  Add todo markings to file upstream bugs;
upstream does not adequately document prereqs.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 pkgsrc/ham/trustedQSL/Makefile

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

Modified files:

Index: pkgsrc/ham/trustedQSL/Makefile
diff -u pkgsrc/ham/trustedQSL/Makefile:1.36 pkgsrc/ham/trustedQSL/Makefile:1.37
--- pkgsrc/ham/trustedQSL/Makefile:1.36 Tue Apr 30 13:22:09 2019
+++ pkgsrc/ham/trustedQSL/Makefile      Mon May 13 00:21:34 2019
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.36 2019/04/30 13:22:09 mef Exp $
+# $NetBSD: Makefile,v 1.37 2019/05/13 00:21:34 gdt Exp $
 
 DISTNAME=              tqsl-2.4.2
+PKGREVISION=           1
 CATEGORIES=            ham
 MASTER_SITES=          https://sourceforge.net/projects/trustedqsl/files/TrustedQSL/v${PKGVERSION_NOREV}/
 
@@ -13,7 +14,9 @@ LICENSE=              arrl-license
 # NOT_FOR_PLATFORM+=   NetBSD-5.*
 
 USE_TOOLS+=            perl gmake cmake
-USE_LANGUAGES+=                c c++
+# \todo tqsl is not documented to require c++11, but uses c++11 constructs
+# \todo tqsl does not add --std=c++11
+USE_LANGUAGES+=                c c++11
 USE_LIBTOOL=           yes
 USE_CMAKE=             yes
 



Home | Main Index | Thread Index | Old Index