diff options
author | Elliot Lee <sopwith@src.gnome.org> | 1999-12-16 16:35:23 +0000 |
---|---|---|
committer | Elliot Lee <sopwith@src.gnome.org> | 1999-12-16 16:35:23 +0000 |
commit | 24c7df792f9bb155b4113f5cb9e370e26889ce72 (patch) | |
tree | 876549e405bcb2af5cd6a6c704025410c0bb3917 /gdk-pixbuf | |
parent | 73fc0b0ecd48d617c80ad19c998fd0f621ae8fd4 (diff) | |
download | gtk+-24c7df792f9bb155b4113f5cb9e370e26889ce72.tar.gz |
make it build when gdk-pixbuf is not already installed
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r-- | gdk-pixbuf/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
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) |