pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/objfw



Module Name:    pkgsrc
Committed By:   js
Date:           Fri Oct 24 21:18:21 UTC 2025

Modified Files:
        pkgsrc/devel/objfw: Makefile

Log Message:
devel/objfw: Set STACK_CHECK_SUPPORTED=no to avoid GCC bugs


To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 pkgsrc/devel/objfw/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/objfw/Makefile
diff -u pkgsrc/devel/objfw/Makefile:1.54 pkgsrc/devel/objfw/Makefile:1.55
--- pkgsrc/devel/objfw/Makefile:1.54    Fri Oct 24 20:05:04 2025
+++ pkgsrc/devel/objfw/Makefile Fri Oct 24 21:18:21 2025
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.54 2025/10/24 20:05:04 js Exp $
+# $NetBSD: Makefile,v 1.55 2025/10/24 21:18:21 js Exp $
 
 DISTNAME=      objfw-1.4.2
-PKGREVISION=   1
+PKGREVISION=   2
 CATEGORIES=    devel
 MASTER_SITES=  https://objfw.nil.im/downloads/
 
@@ -16,6 +16,14 @@ USE_TOOLS+=          pkg-config
 CONFIGURE_ARGS+=       OBJCFLAGS=${CFLAGS:M*:Q}
 CONFIGURE_ARGS+=       LDFLAGS=${LDFLAGS:M*:Q}
 
+# Breaks exceptions in some rare cases with GCC on NetBSD 10 on AMD64 (e.g. on
+# my system ofhttp would fail because an exception could not be caught, but the
+# entire test suite would pass).
+# Unfortunately, we cannot check if we are using Clang or GCC here, as this
+# needs to be set before including bsd.prefs.mk, and hence also before
+# options.mk.
+STACK_CHECK_SUPPORTED= no
+
 .include "../../mk/bsd.prefs.mk"
 
 PLIST_SRC=     PLIST



Home | Main Index | Thread Index | Old Index