pkgsrc-Changes archive

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

CVS commit: pkgsrc/misc/libreoffice



Module Name:    pkgsrc
Committed By:   ryoon
Date:           Thu Apr 27 14:10:39 UTC 2017

Modified Files:
        pkgsrc/misc/libreoffice: Makefile

Log Message:
devel/cppunit/buildlink3.mk provides -std=c++11, however misc/libreoffice
uses -std=gnu++14 and build fails. Add workaround.


To generate a diff of this commit:
cvs rdiff -u -r1.107 -r1.108 pkgsrc/misc/libreoffice/Makefile

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

Modified files:

Index: pkgsrc/misc/libreoffice/Makefile
diff -u pkgsrc/misc/libreoffice/Makefile:1.107 pkgsrc/misc/libreoffice/Makefile:1.108
--- pkgsrc/misc/libreoffice/Makefile:1.107      Sat Apr 22 21:03:44 2017
+++ pkgsrc/misc/libreoffice/Makefile    Thu Apr 27 14:10:39 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.107 2017/04/22 21:03:44 adam Exp $
+# $NetBSD: Makefile,v 1.108 2017/04/27 14:10:39 ryoon Exp $
 
 VERREL=                5.3.2
 VERRC=         2
@@ -14,6 +14,9 @@ HOMEPAGE=     http://www.libreoffice.org/
 COMMENT=       Office productivity suite from The Document Foundation
 LICENSE=       gnu-lgpl-v3
 
+# devel/cppunit/buildlink3.mk defined -std=c++11 and build fails
+BUILDLINK_TRANSFORM+=          opt:-std=c++11:-std=gnu++14
+
 SUBST_CLASSES+=                        use-bash
 SUBST_STAGE.use-bash=          pre-configure
 SUBST_MESSAGE.use-bash=                Using bash for configure script



Home | Main Index | Thread Index | Old Index