pkgsrc-Changes archive

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

CVS commit: pkgsrc/x11/xedit



Module Name:    pkgsrc
Committed By:   tnn
Date:           Sun Sep 12 00:05:51 UTC 2021

Modified Files:
        pkgsrc/x11/xedit: Makefile

Log Message:
xedit: finite(3) was deprecated on macOS aarch64. Use isfinite(3) instead.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/x11/xedit/Makefile

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

Modified files:

Index: pkgsrc/x11/xedit/Makefile
diff -u pkgsrc/x11/xedit/Makefile:1.4 pkgsrc/x11/xedit/Makefile:1.5
--- pkgsrc/x11/xedit/Makefile:1.4       Sat Jan 18 23:36:00 2020
+++ pkgsrc/x11/xedit/Makefile   Sun Sep 12 00:05:50 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2020/01/18 23:36:00 rillig Exp $
+# $NetBSD: Makefile,v 1.5 2021/09/12 00:05:50 tnn Exp $
 
 DISTNAME=      xedit-1.2.2
 CATEGORIES=    editors x11
@@ -15,6 +15,9 @@ USE_TOOLS+=   pkg-config
 
 MAKE_FLAGS+=   appdefaultdir=${PREFIX}/lib/X11/app-defaults
 
+# finite(3) was deprecated on macOS aarch64
+CFLAGS.Darwin+=        -Dfinite\(d\)=isfinite\(d\)
+
 .include "../../x11/libXt/buildlink3.mk"
 .include "../../x11/libXmu/buildlink3.mk"
 .include "../../x11/libXaw/buildlink3.mk"



Home | Main Index | Thread Index | Old Index