pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/lmdbg



Module Name:    pkgsrc
Committed By:   nia
Date:           Wed Jul 19 15:24:27 UTC 2023

Modified Files:
        pkgsrc/devel/lmdbg: Makefile

Log Message:
lmdbg: Disable FORTIFY on Linux only


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 pkgsrc/devel/lmdbg/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/lmdbg/Makefile
diff -u pkgsrc/devel/lmdbg/Makefile:1.20 pkgsrc/devel/lmdbg/Makefile:1.21
--- pkgsrc/devel/lmdbg/Makefile:1.20    Tue Jun  6 12:40:40 2023
+++ pkgsrc/devel/lmdbg/Makefile Wed Jul 19 15:24:27 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.20 2023/06/06 12:40:40 riastradh Exp $
+# $NetBSD: Makefile,v 1.21 2023/07/19 15:24:27 nia Exp $
 #
 
 DISTNAME=      lmdbg-1.3.0
@@ -19,6 +19,13 @@ DEPENDS+=            runawk>=1.3.1:../../lang/runa
 ONLY_FOR_COMPILER=     gcc icc clang
 BROKEN_ON_PLATFORM=    Darwin-*-*
 
+.include "../../mk/bsd.prefs.mk"
+.if ${OPSYS} == "Linux"
+# Fairly intrusive used of -O0, which is incompatible with
+# glibc FORTIFY.
+FORTIFY_SUPPORTED=     no
+.endif
+
 TEST_TARGET=           test
 
 REPLACE_SH=            scripts/lmdbg*.in test/test.sh



Home | Main Index | Thread Index | Old Index