pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/glib2
Module Name: pkgsrc
Committed By: triaxx
Date: Wed Apr 22 06:45:43 UTC 2020
Modified Files:
pkgsrc/devel/glib2: Makefile
Log Message:
glib2: fix PR pkg/54752
pkgsrc changes:
---------------
* Disallow undefined symbols when linking on FreeBSD. This solution was
chosen because (1) the FreeBSD CI machine of the glib developpers use it
and (2) it avoids to maintain a patch.
* Bump revision.
To generate a diff of this commit:
cvs rdiff -u -r1.272 -r1.273 pkgsrc/devel/glib2/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/glib2/Makefile
diff -u pkgsrc/devel/glib2/Makefile:1.272 pkgsrc/devel/glib2/Makefile:1.273
--- pkgsrc/devel/glib2/Makefile:1.272 Sun Apr 12 10:39:31 2020
+++ pkgsrc/devel/glib2/Makefile Wed Apr 22 06:45:43 2020
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.272 2020/04/12 10:39:31 adam Exp $
+# $NetBSD: Makefile,v 1.273 2020/04/22 06:45:43 triaxx Exp $
.include "Makefile.common"
+PKGREVISION= 1
CATEGORIES= devel gnome
COMMENT= Some useful routines for C programming (glib2)
@@ -10,6 +11,9 @@ COMMENT= Some useful routines for C prog
MESON_ARGS+= -Dinstalled_tests=false
# Avoid linux dependency on libmount-dev
MESON_ARGS+= -Dlibmount=disabled
+.if ${OPSYS} == "FreeBSD"
+MESON_ARGS+= -Db_lundef=false
+.endif
MAKE_ENV+= LD_LIBRARY_PATH=${WRKSRC}/output/gio:${WRKSRC}/output/glib:${WRKSRC}/output/gobject:${WRKSRC}/output/gmodule
Home |
Main Index |
Thread Index |
Old Index