pkgsrc-Changes archive

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

CVS commit: pkgsrc/print/podofo



Module Name:    pkgsrc
Committed By:   nia
Date:           Wed Jul 12 21:05:30 UTC 2023

Modified Files:
        pkgsrc/print/podofo: Makefile

Log Message:
podofo: Force the use of -std=c++11 through wrappers due to thread_local
usage.


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 pkgsrc/print/podofo/Makefile

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

Modified files:

Index: pkgsrc/print/podofo/Makefile
diff -u pkgsrc/print/podofo/Makefile:1.42 pkgsrc/print/podofo/Makefile:1.43
--- pkgsrc/print/podofo/Makefile:1.42   Sun Jan 29 21:17:37 2023
+++ pkgsrc/print/podofo/Makefile        Wed Jul 12 21:05:30 2023
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.42 2023/01/29 21:17:37 ryoon Exp $
+# $NetBSD: Makefile,v 1.43 2023/07/12 21:05:30 nia Exp $
 
 DISTNAME=      podofo-0.9.8
-#PKGREVISION=  0
 PKGREVISION=   1
 CATEGORIES=    print
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=podofo/}
@@ -11,7 +10,10 @@ HOMEPAGE=    http://podofo.sourceforge.net/
 COMMENT=       Library to work with the PDF file format
 LICENSE=       gnu-lgpl-v2 AND gnu-gpl-v2
 
-USE_LANGUAGES= c c++
+# Podofo uses thread_local, which is a C++11 feature, but does not
+# appropriately set -std=c++11.
+USE_LANGUAGES= c c++11
+
 USE_TOOLS+=    pkg-config
 
 CMAKE_ARGS+=   -DPODOFO_BUILD_SHARED=ON



Home | Main Index | Thread Index | Old Index