951630c602
Overview of changes in GLib 2.60.7 * Bugs fixed: - Invalid characters in Open Location dialog crashes GIMP - Setting GLIB_VERSION_{MIN_REQUIRED, MAX_ALLOWED} to before 2.56 triggers warnings - Backport !1009 “gapplication: remove inactivity_timeout source on finalize” to glib-2-60 - Backport !1008 “gmessages: Only use structured logs if GLIB_VERSION_MAX_ALLOWED is ≥2.56” to glib-2-60 - Backport !966 “Resolve "Invalid characters in Open Location dialog crashes GIMP"” to glib-2-60 - Backport !1040 “GSettingsBackend - Fix thread-safety during destruction of GSettings instances...” to glib-2-60 - Backport !1017 “gdatetime: Avoid an assertion failure when parsing some ISO 8601 dates” to glib-2-60
28 lines
579 B
Makefile
28 lines
579 B
Makefile
# $NetBSD: options.mk,v 1.22 2019/10/29 09:22:24 adam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.glib2
|
|
PKG_SUPPORTED_OPTIONS= fam
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.if ${OPSYS} == "Darwin"
|
|
PKG_SUPPORTED_OPTIONS+= cocoa
|
|
.endif
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= cocoa nococoa
|
|
|
|
# if this options is enabled, use quartz for gtk{2,3}
|
|
.if !empty(PKG_OPTIONS:Mcocoa)
|
|
MESON_ARGS+= -Duse_cocoa=true
|
|
PLIST.cocoa= yes
|
|
.else
|
|
PLIST.nococoa= yes
|
|
.endif
|
|
|
|
PLIST_VARS+= fam
|
|
.if !empty(PKG_OPTIONS:Mfam)
|
|
MESON_ARGS+= -Dfam=true
|
|
PLIST.fam= yes
|
|
.include "../../mk/fam.buildlink3.mk"
|
|
.endif
|