pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/libxml2



Module Name:    pkgsrc
Committed By:   maya
Date:           Wed Mar 14 10:49:00 UTC 2018

Modified Files:
        pkgsrc/textproc/libxml2: Makefile

Log Message:
libxml2: fix compilation on Solaris 11.3

We use INFINITY which is available on C99 and later, so be explicit
that we compile C99 code.

Also tested as compiling fine on netbsd-current.

Fixes PR pkg/53098


To generate a diff of this commit:
cvs rdiff -u -r1.146 -r1.147 pkgsrc/textproc/libxml2/Makefile

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

Modified files:

Index: pkgsrc/textproc/libxml2/Makefile
diff -u pkgsrc/textproc/libxml2/Makefile:1.146 pkgsrc/textproc/libxml2/Makefile:1.147
--- pkgsrc/textproc/libxml2/Makefile:1.146      Sun Sep 10 20:49:20 2017
+++ pkgsrc/textproc/libxml2/Makefile    Wed Mar 14 10:49:00 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.146 2017/09/10 20:49:20 wiz Exp $
+# $NetBSD: Makefile,v 1.147 2018/03/14 10:49:00 maya Exp $
 
 .include "../../textproc/libxml2/Makefile.common"
 
@@ -17,6 +17,8 @@ CONFIGURE_ARGS+=      --without-python
 
 PKGCONFIG_OVERRIDE=    libxml-2.0.pc.in
 
+USE_LANGUAGES+=                c99
+
 .include "options.mk"
 
 # allow thread-awareness, but make sure the library is not



Home | Main Index | Thread Index | Old Index