pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/geography/gdal-lib
Module Name: pkgsrc
Committed By: gdt
Date: Fri Jun 7 14:00:20 UTC 2024
Modified Files:
pkgsrc/geography/gdal-lib: Makefile
Log Message:
geography/gdal-lib: Tweak CXX requirements
gdal is documented to require C++17. It uses <charconv>, which they
don't document, probably because it is part of C++17 :-) Add that.
Roll back the requirement for c17. Upstream documents c99.
This still builds on NetBSD 9 amd64.
To generate a diff of this commit:
cvs rdiff -u -r1.169 -r1.170 pkgsrc/geography/gdal-lib/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/geography/gdal-lib/Makefile
diff -u pkgsrc/geography/gdal-lib/Makefile:1.169 pkgsrc/geography/gdal-lib/Makefile:1.170
--- pkgsrc/geography/gdal-lib/Makefile:1.169 Thu Jun 6 14:40:20 2024
+++ pkgsrc/geography/gdal-lib/Makefile Fri Jun 7 14:00:20 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.169 2024/06/06 14:40:20 mef Exp $
+# $NetBSD: Makefile,v 1.170 2024/06/07 14:00:20 gdt Exp $
PKGREVISION= 2
.include "../../geography/gdal-lib/Makefile.common"
@@ -8,8 +8,8 @@ PKGNAME= ${DISTNAME:S/gdal/gdal-lib/}
COMMENT= Translator library for raster geospatial data formats
USE_LANGUAGES+= c c++
-USE_CC_FEATURES+= c17
-USE_CXX_FEATURES+= c++17
+USE_CC_FEATURES+= c99
+USE_CXX_FEATURES+= c++17 charconv
USE_TOOLS+= gmake
USE_TOOLS+= pkg-config
Home |
Main Index |
Thread Index |
Old Index