summaryrefslogtreecommitdiff
path: root/gdk-pixbuf
diff options
context:
space:
mode:
authorMatthias Clasen <maclas@gmx.de>2003-12-22 00:37:04 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2003-12-22 00:37:04 +0000
commit661542ccea84bab5ff2f4716232386ca8872d791 (patch)
tree9a0457667e3904d292060f5d6ff2f9f35994e678 /gdk-pixbuf
parent5bacfe393661cc4f8e9b5480f5d33bb094da0f47 (diff)
downloadgdk-pixbuf-661542ccea84bab5ff2f4716232386ca8872d791.tar.gz
Fix building with --disable-modules --with-included-loaders, create an
Mon Dec 22 01:35:36 2003 Matthias Clasen <maclas@gmx.de> * Makefile.am (gdk-pixbuf.loaders): Fix building with --disable-modules --with-included-loaders, create an empty gdk-pixbuf.loaders file. (#124496, Arno Charlet, fix proposed by Owen Taylor)
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r--gdk-pixbuf/ChangeLog9
-rw-r--r--gdk-pixbuf/Makefile.am7
2 files changed, 14 insertions, 2 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog
index f9ff08314..b24edaabe 100644
--- a/gdk-pixbuf/ChangeLog
+++ b/gdk-pixbuf/ChangeLog
@@ -1,8 +1,15 @@
+Mon Dec 22 01:35:36 2003 Matthias Clasen <maclas@gmx.de>
+
+ * Makefile.am (gdk-pixbuf.loaders): Fix building with
+ --disable-modules --with-included-loaders, create an
+ empty gdk-pixbuf.loaders file. (#124496, Arno Charlet, fix
+ proposed by Owen Taylor)
+
Thu Dec 11 01:57:05 2003 Matthias Clasen <maclas@gmx.de>
* gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init): Move
the documentation for signals inline, to get proper parameter
- documentation. (#128977)
+ documentation. (#128977)
Sat Nov 15 00:26:19 2003 Matthias Clasen <maclas@gmx.de>
diff --git a/gdk-pixbuf/Makefile.am b/gdk-pixbuf/Makefile.am
index 1666a2610..9b1d5b512 100644
--- a/gdk-pixbuf/Makefile.am
+++ b/gdk-pixbuf/Makefile.am
@@ -451,6 +451,7 @@ else
all-local: gdk-pixbuf.loaders
endif
+if BUILD_DYNAMIC_MODULES
gdk-pixbuf.loaders: $(loader_LTLIBRARIES) gdk-pixbuf-query-loaders
LOADERS=`echo libpixbufloader-*.la` ; \
if test "x$$LOADERS" != 'xlibpixbufloader-*.la' ; then \
@@ -460,4 +461,8 @@ gdk-pixbuf.loaders: $(loader_LTLIBRARIES) gdk-pixbuf-query-loaders
echo "No dynamic modules found; will use only static modules for uninstalled example programs."; \
touch gdk-pixbuf.loaders; \
fi
-
+else
+gdk-pixbuf.loaders:
+ echo "No dynamic modules found; will use only static modules for uninstalled example programs."; \
+ touch gdk-pixbuf.loaders;
+endif