From: Matthias Clasen Date: Wed, 17 Nov 2004 03:38:39 +0000 (+0000) Subject: Support gmodule-no-export. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=51af5833f7afbe58ab473a729865c122dc553a52;p=dana%2Fcg-glib.git Support gmodule-no-export. 2004-11-16 Matthias Clasen * m4macros/glib-2.0.m4 (AM_PATH_GLIB_2_0): Support gmodule-no-export. --- diff --git a/ChangeLog b/ChangeLog index 90d52dae..838b7304 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2004-11-16 Matthias Clasen + + * m4macros/glib-2.0.m4 (AM_PATH_GLIB_2_0): Support gmodule-no-export. + + * Makefile.am (EXTRA_DIST): + * configure.in (AC_CONFIG_FILES): Add gmodule-no-export-2.0.pc.in + + * gmodule-no-export-2.0.pc.in: Add a variants of gmodule-2.0.pc.in + which doesn't add -Wl,--export-dynamic, since Pango or GTK+ don't + need it. (#125627, Owen Taylor) + 2004-11-17 Matthias Clasen * glib/gkeyfile.c: Define S_ISREG() on windows, since it diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 90d52dae..838b7304 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,14 @@ +2004-11-16 Matthias Clasen + + * m4macros/glib-2.0.m4 (AM_PATH_GLIB_2_0): Support gmodule-no-export. + + * Makefile.am (EXTRA_DIST): + * configure.in (AC_CONFIG_FILES): Add gmodule-no-export-2.0.pc.in + + * gmodule-no-export-2.0.pc.in: Add a variants of gmodule-2.0.pc.in + which doesn't add -Wl,--export-dynamic, since Pango or GTK+ don't + need it. (#125627, Owen Taylor) + 2004-11-17 Matthias Clasen * glib/gkeyfile.c: Define S_ISREG() on windows, since it diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 90d52dae..838b7304 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,14 @@ +2004-11-16 Matthias Clasen + + * m4macros/glib-2.0.m4 (AM_PATH_GLIB_2_0): Support gmodule-no-export. + + * Makefile.am (EXTRA_DIST): + * configure.in (AC_CONFIG_FILES): Add gmodule-no-export-2.0.pc.in + + * gmodule-no-export-2.0.pc.in: Add a variants of gmodule-2.0.pc.in + which doesn't add -Wl,--export-dynamic, since Pango or GTK+ don't + need it. (#125627, Owen Taylor) + 2004-11-17 Matthias Clasen * glib/gkeyfile.c: Define S_ISREG() on windows, since it diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 90d52dae..838b7304 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,14 @@ +2004-11-16 Matthias Clasen + + * m4macros/glib-2.0.m4 (AM_PATH_GLIB_2_0): Support gmodule-no-export. + + * Makefile.am (EXTRA_DIST): + * configure.in (AC_CONFIG_FILES): Add gmodule-no-export-2.0.pc.in + + * gmodule-no-export-2.0.pc.in: Add a variants of gmodule-2.0.pc.in + which doesn't add -Wl,--export-dynamic, since Pango or GTK+ don't + need it. (#125627, Owen Taylor) + 2004-11-17 Matthias Clasen * glib/gkeyfile.c: Define S_ISREG() on windows, since it diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 90d52dae..838b7304 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,14 @@ +2004-11-16 Matthias Clasen + + * m4macros/glib-2.0.m4 (AM_PATH_GLIB_2_0): Support gmodule-no-export. + + * Makefile.am (EXTRA_DIST): + * configure.in (AC_CONFIG_FILES): Add gmodule-no-export-2.0.pc.in + + * gmodule-no-export-2.0.pc.in: Add a variants of gmodule-2.0.pc.in + which doesn't add -Wl,--export-dynamic, since Pango or GTK+ don't + need it. (#125627, Owen Taylor) + 2004-11-17 Matthias Clasen * glib/gkeyfile.c: Define S_ISREG() on windows, since it diff --git a/m4macros/glib-2.0.m4 b/m4macros/glib-2.0.m4 index 13a3ce68..d6413ff7 100644 --- a/m4macros/glib-2.0.m4 +++ b/m4macros/glib-2.0.m4 @@ -19,6 +19,9 @@ AC_ARG_ENABLE(glibtest, [ --disable-glibtest do not try to compile and run gmodule) pkg_config_args="$pkg_config_args gmodule-2.0" ;; + gmodule-no-export) + pkg_config_args="$pkg_config_args gmodule-no-export-2.0" + ;; gobject) pkg_config_args="$pkg_config_args gobject-2.0" ;;