pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/doxygen



Module Name:    pkgsrc
Committed By:   nia
Date:           Sun Oct 25 04:42:43 UTC 2020

Modified Files:
        pkgsrc/devel/doxygen: Makefile

Log Message:
doxygen: CMakeLists sets -std=c++14 so we don't need it in USE_LANGUAGES

Just set a minimum GCC_REQD to 5 for c++14 support so the correct
compiler gets picked


To generate a diff of this commit:
cvs rdiff -u -r1.150 -r1.151 pkgsrc/devel/doxygen/Makefile

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

Modified files:

Index: pkgsrc/devel/doxygen/Makefile
diff -u pkgsrc/devel/doxygen/Makefile:1.150 pkgsrc/devel/doxygen/Makefile:1.151
--- pkgsrc/devel/doxygen/Makefile:1.150 Sun Oct  4 09:45:26 2020
+++ pkgsrc/devel/doxygen/Makefile       Sun Oct 25 04:42:43 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.150 2020/10/04 09:45:26 ryoon Exp $
+# $NetBSD: Makefile,v 1.151 2020/10/25 04:42:43 nia Exp $
 
 DISTNAME=      doxygen-1.8.20.src
 PKGNAME=       ${DISTNAME:S/.src//}
@@ -16,8 +16,10 @@ WRKSRC=                      ${WRKDIR}/${PKGNAME_NOREV}
 UNLIMIT_RESOURCES+=    datasize
 # doxygen upstream uses this version of flex
 FLEX_REQD=             2.5.35
+# Uses -std=c++14
+GCC_REQD+=             5
 USE_CMAKE=             yes
-USE_LANGUAGES=         c c++14
+USE_LANGUAGES=         c c++
 USE_TOOLS+=            gmake gs:run perl:run bison flex
 MAKE_ENV+=             PKGSRC_CFLAGS=${CFLAGS:Q}
 MAKE_FLAGS+=           MAN1DIR=${PKGMANDIR}/man1



Home | Main Index | Thread Index | Old Index