From 24c7df792f9bb155b4113f5cb9e370e26889ce72 Mon Sep 17 00:00:00 2001 From: Elliot Lee Date: Thu, 16 Dec 1999 16:35:23 +0000 Subject: [PATCH] make it build when gdk-pixbuf is not already installed --- gdk-pixbuf/Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gdk-pixbuf/Makefile.am b/gdk-pixbuf/Makefile.am index 23586177ca..0d8e6ff5ed 100644 --- a/gdk-pixbuf/Makefile.am +++ b/gdk-pixbuf/Makefile.am @@ -41,7 +41,10 @@ libexec_LTLIBRARIES = \ noinst_PROGRAMS = testpixbuf testpixbuf-drawable DEPS = libgdk_pixbuf.la -INCLUDES = -I$(top_builddir)/gdk-pixbuf $(GLIB_CFLAGS) $(LIBART_CFLAGS) $(GTK_CFLAGS) +INCLUDES = -I$(top_srcdir) -I$(top_builddir) \ + -I$(top_srcdir)/gdk-pixbuf \ + -I$(top_builddir)/gdk-pixbuf \ + $(GLIB_CFLAGS) $(LIBART_CFLAGS) $(GTK_CFLAGS) AM_CPPFLAGS = "-DPIXBUF_LIBDIR=\"$(libexecdir)\"" LDADDS = libgdk_pixbuf.la $(LIBART_LIBS) $(GLIB_LIBS) $(GTK_LIBS)