summaryrefslogtreecommitdiff
path: root/devel/gdbus-codegen/hacks.mk
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2012-11-13 21:23:07 +0000
committeradam <adam@pkgsrc.org>2012-11-13 21:23:07 +0000
commit063c0a87219c15a7a6628d89fe52311f8126cfee (patch)
treec6875f4501ba3bc39829b6a5f5f76e80a0acc548 /devel/gdbus-codegen/hacks.mk
parenta8a58eb6cfb231c0826450cd2cc38d9146cbd46d (diff)
downloadpkgsrc-063c0a87219c15a7a6628d89fe52311f8126cfee.tar.gz
Changes 2.34.2:
* Bug fixes: 649302 Add support for GNU/FreeBSD 672924 Add annotations for g_filename_from_uri() 685995 Crash in g_menu_exporter_name_vanished 686091 Invalid reads in g_bytes_unref_to_data 686185 g_date_time_format Transcoding Fails on OSX 686213 Half open TCP sockets remain open after soup... 686662 introduce explicitly-sized enum types, depre... 686786 g_socket_get_available_bytes() returns wrong... 687089 g_dbus_connection_export_menu_model(): fix a... 687540 In Trash folder, Nautilus misinterprets "\n"... 687541 GSignalQuery param_types field needs array a... 687600 gfileutils.c performs invalid cast of (varar... 687801 tests/buffered-input-stream: Fix size of par...
Diffstat (limited to 'devel/gdbus-codegen/hacks.mk')
-rw-r--r--devel/gdbus-codegen/hacks.mk18
1 files changed, 18 insertions, 0 deletions
diff --git a/devel/gdbus-codegen/hacks.mk b/devel/gdbus-codegen/hacks.mk
new file mode 100644
index 00000000000..a35002fcc9e
--- /dev/null
+++ b/devel/gdbus-codegen/hacks.mk
@@ -0,0 +1,18 @@
+# $NetBSD: hacks.mk,v 1.1 2012/11/13 21:23:07 adam Exp $
+
+.if !defined(GDBUS_CODEGEN_HACKS_MK)
+GDBUS_CODEGEN_HACKS_MK= # defined
+
+.if ${OPSYS} == "Darwin"
+CHECK_BUILTIN.libiconv:= yes
+. include "../../converters/libiconv/builtin.mk"
+CHECK_BUILTIN.libiconv:= no
+PKG_HACKS+= darwin-iconv
+SUBST_CLASSES+= iconv
+SUBST_STAGE.iconv= pre-configure
+SUBST_MESSAGE.iconv= Changing libiconv_open to iconv_open.
+SUBST_FILES.iconv= configure
+SUBST_SED.iconv= -e 's,libiconv_open,iconv_open,g'
+.endif
+
+.endif