diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | tests/Makefile.am | 5 | ||||
-rw-r--r-- | tests/test-init-ipod.c | 2 |
3 files changed, 11 insertions, 3 deletions
@@ -1,3 +1,10 @@ +2006-10-02 Jorg Schuler <jcsjcs at users.sourceforge.net> + + * tests/Makefile.am + tests/test-init-ipod.c: fix compilation error when building with + --disable-gdk-pixbuf. Thanks to David Philippi and Christophe + Fergeau. + 2006-09-26 Jorg Schuler <jcsjcs at users.sourceforge.net> * po/sv.po: updated version by Stefan Asserhall diff --git a/tests/Makefile.am b/tests/Makefile.am index 4aa7bc5..bb8dfa5 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -23,6 +23,9 @@ test_itdb_LDADD = test_ls_SOURCES = test-ls.c test_ls_LDADD = +test_init_ipod_SOURCES = test-init-ipod.c +test_init_ipod_LDADD = + if HAVE_TAGLIB test_rebuild_db_SOURCES = test-rebuild-db.cc test_rebuild_db_LDADD = $(TAGLIB_LIBS) @@ -36,8 +39,6 @@ test_thumbnails_CFLAGS = $(AM_CFLAGS) test_photos_SOURCES = test-photos.c test_photos_CFLAGS = $(AM_CFLAGS) -test_init_ipod_SOURCES = test-init-ipod.c - test_write_thumbnails_SOURCES = test-write-covers.c test_write_thumbnails_CFLAGS = $(AM_CFLAGS) endif diff --git a/tests/test-init-ipod.c b/tests/test-init-ipod.c index 809afcd..0bd6647 100644 --- a/tests/test-init-ipod.c +++ b/tests/test-init-ipod.c @@ -26,7 +26,7 @@ #include "itdb.h" #include <locale.h> -#include <gdk-pixbuf/gdk-pixbuf.h> +#include <glib-object.h> #include <glib/gi18n-lib.h> |