mirror of https://github.com/GNOME/gimp.git
check for gmodule-no-export-2.0, not for gmodule-2.0. Also removed
2006-05-12 Michael Natterer <mitch@gimp.org> * configure.in: check for gmodule-no-export-2.0, not for gmodule-2.0. Also removed gobject-2.0 from the gmodule check, i have no idea why it was there. * libgimpmodule/Makefile.am: s/GMODULE/GMODULE_NO_EXPORT/ because we only want to import modules here, not export our own symbols. (note that this change is actually useless, because libgimpmodule exports its symbols anyway, but it's more correct this way).
This commit is contained in:
parent
edd8f6275b
commit
f94ec804a4
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
|||
2006-05-12 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* configure.in: check for gmodule-no-export-2.0, not for
|
||||
gmodule-2.0. Also removed gobject-2.0 from the gmodule check, i
|
||||
have no idea why it was there.
|
||||
|
||||
* libgimpmodule/Makefile.am: s/GMODULE/GMODULE_NO_EXPORT/ because
|
||||
we only want to import modules here, not export our own symbols.
|
||||
|
||||
(note that this change is actually useless, because libgimpmodule
|
||||
exports its symbols anyway, but it's more correct this way).
|
||||
|
||||
2006-05-12 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/config/Makefile.am: make test-config link again.
|
||||
|
|
|
@ -405,7 +405,7 @@ AM_PATH_GLIB_2_0(glib_required_version, :,
|
|||
AC_MSG_ERROR(Test for GLIB failed. See the file 'INSTALL' for help.),
|
||||
gobject)
|
||||
|
||||
PKG_CHECK_MODULES(GMODULE, gmodule-2.0 gobject-2.0)
|
||||
PKG_CHECK_MODULES(GMODULE_NO_EXPORT, gmodule-no-export-2.0)
|
||||
|
||||
AC_MSG_CHECKING([if GLib is version 2.11.0 or newer])
|
||||
if $PKG_CONFIG --atleast-version=2.11.0 glib-2.0; then
|
||||
|
|
|
@ -46,9 +46,9 @@ AM_CPPFLAGS = \
|
|||
@GTHREAD_CFLAGS@
|
||||
|
||||
INCLUDES = \
|
||||
-I$(top_srcdir) \
|
||||
$(GLIB_CFLAGS) \
|
||||
$(GMODULE_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
$(GLIB_CFLAGS) \
|
||||
$(GMODULE_NO_EXPORT_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
EXTRA_DIST = \
|
||||
|
@ -77,8 +77,8 @@ libgimpmodule_2_0_la_LDFLAGS = \
|
|||
libgimpmodule_2_0_la_DEPENDENCIES = $(gimpmodule_def)
|
||||
|
||||
libgimpmodule_2_0_la_LIBADD = \
|
||||
$(libgimpbase) \
|
||||
$(GMODULE_LIBS)
|
||||
$(libgimpbase) \
|
||||
$(GMODULE_NO_EXPORT_LIBS)
|
||||
|
||||
install-data-local: install-ms-lib install-libtool-import-lib
|
||||
|
||||
|
|
Loading…
Reference in New Issue