pkgsrc-Changes archive

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

CVS commit: pkgsrc/geography/geos



Module Name:    pkgsrc
Committed By:   gdt
Date:           Fri Sep 18 16:39:11 UTC 2026

Modified Files:
        pkgsrc/geography/geos: Makefile

Log Message:
geography/geos: Add filesystem to USE_CXX_FEATURES

After a report on pkgsrc-users, and observing that the sources
#include <filesystem>.    Should resolve failure to build on whatever
very old system was used to detect the problem.


To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 pkgsrc/geography/geos/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/geos/Makefile
diff -u pkgsrc/geography/geos/Makefile:1.55 pkgsrc/geography/geos/Makefile:1.56
--- pkgsrc/geography/geos/Makefile:1.55 Tue Sep  1 16:57:32 2026
+++ pkgsrc/geography/geos/Makefile      Fri Sep 18 16:39:11 2026
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.55 2026/09/01 16:57:32 gdt Exp $
+# $NetBSD: Makefile,v 1.56 2026/09/18 16:39:11 gdt Exp $
 
 VERSION_BASE=  3.15.0
 # Accomodate testing unreleased versions.
@@ -15,7 +15,10 @@ COMMENT=     C++ port of the Java Topology S
 LICENSE=       gnu-lgpl-v2.1
 
 USE_LANGUAGES=         c c++
-USE_CXX_FEATURES+=     c++17
+# CMakeLists.txt requires C++17.  The code also uses filesystem, which
+# unsurprisingly is not documented because filesystem is part of
+# C++17, and it's only pkgsrc that considers it separate.
+USE_CXX_FEATURES+=     c++17 filesystem
 
 .include "../../devel/cmake/build.mk"
 # cmake hides what it is doing; ask it to be like traditional builds.



Home | Main Index | Thread Index | Old Index