pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/aiksaurus



Module Name:    pkgsrc
Committed By:   gutteridge
Date:           Fri Aug  4 00:48:33 UTC 2023

Modified Files:
        pkgsrc/textproc/aiksaurus: Makefile

Log Message:
aiksaurus: move C++03 from USE_LANGUAGES to FORCE_CXX_STD


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 pkgsrc/textproc/aiksaurus/Makefile

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

Modified files:

Index: pkgsrc/textproc/aiksaurus/Makefile
diff -u pkgsrc/textproc/aiksaurus/Makefile:1.38 pkgsrc/textproc/aiksaurus/Makefile:1.39
--- pkgsrc/textproc/aiksaurus/Makefile:1.38     Mon Jul 10 00:49:40 2023
+++ pkgsrc/textproc/aiksaurus/Makefile  Fri Aug  4 00:48:33 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.38 2023/07/10 00:49:40 gutteridge Exp $
+# $NetBSD: Makefile,v 1.39 2023/08/04 00:48:33 gutteridge Exp $
 
 DISTNAME=      aiksaurus-1.2.1
 PKGREVISION=   15
@@ -12,10 +12,14 @@ LICENSE=    gnu-gpl-v2
 
 USE_LIBTOOL=           YES
 USE_TOOLS+=            pkg-config
-USE_LANGUAGES=         c c++03
+USE_LANGUAGES=         c c++
 GNU_CONFIGURE=         YES
 PKGCONFIG_OVERRIDE=    base/aiksaurus-1.0.pc.in
 
+# Fails with C++17 default in GCC 13.
+# "error: ISO C++17 does not allow dynamic exception specifications"
+FORCE_CXX_STD= c++03
+
 .include "options.mk"
 
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index