pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/openjade



Module Name:    pkgsrc
Committed By:   joerg
Date:           Sat May  9 15:16:30 UTC 2020

Modified Files:
        pkgsrc/textproc/openjade: Makefile

Log Message:
Still needs to disable null pointer checks with clang


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 pkgsrc/textproc/openjade/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/openjade/Makefile
diff -u pkgsrc/textproc/openjade/Makefile:1.38 pkgsrc/textproc/openjade/Makefile:1.39
--- pkgsrc/textproc/openjade/Makefile:1.38      Thu Apr 30 23:46:13 2020
+++ pkgsrc/textproc/openjade/Makefile   Sat May  9 15:16:30 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.38 2020/04/30 23:46:13 joerg Exp $
+# $NetBSD: Makefile,v 1.39 2020/05/09 15:16:30 joerg Exp $
 
 DISTNAME=      openjade-1.3.2
 PKGREVISION=   16
@@ -51,6 +51,8 @@ INSTALLATION_DIRS=    ${OPENJADE_DATA_DIR}/
 .include "../../mk/compiler.mk"
 .if !empty(PKGSRC_COMPILER:Mgcc)
 CFLAGS+=       -fno-tree-dse
+.elif !empty(PKGSRC_COMPILER:Mclang)
+CFLAGS+=       -fno-delete-null-pointer-checks
 .endif
 
 post-install:



Home | Main Index | Thread Index | Old Index