pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/opensp



Module Name:    pkgsrc
Committed By:   gutteridge
Date:           Thu Sep 12 22:31:17 UTC 2024

Modified Files:
        pkgsrc/textproc/opensp: Makefile

Log Message:
opensp: fix builds on some Linux distros, like Fedora 40

Avoid a bogus error with GCC 14.


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 pkgsrc/textproc/opensp/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/opensp/Makefile
diff -u pkgsrc/textproc/opensp/Makefile:1.53 pkgsrc/textproc/opensp/Makefile:1.54
--- pkgsrc/textproc/opensp/Makefile:1.53        Tue Jun  6 12:42:26 2023
+++ pkgsrc/textproc/opensp/Makefile     Thu Sep 12 22:31:17 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.53 2023/06/06 12:42:26 riastradh Exp $
+# $NetBSD: Makefile,v 1.54 2024/09/12 22:31:17 gutteridge Exp $
 #
 
 DISTNAME=      OpenSP-1.5.2
@@ -26,6 +26,9 @@ CONFIGURE_ARGS+=      --enable-http \
                        --enable-default-catalog=${PREFIX}/share/sgml/catalog
 REPLACE_PERL+=         unicode/gensyntax.pl
 
+# Avoid bogus error with GCC 14 on some Linux distros.
+CFLAGS.Linux+=         -fpermissive
+
 TEST_TARGET=           check
 
 .include "../../devel/gettext-lib/buildlink3.mk"



Home | Main Index | Thread Index | Old Index