From 705168dab0ecc0293ba3e7602107a153fad963f3 Mon Sep 17 00:00:00 2001 From: George Lebl Date: Tue, 16 Nov 1999 01:18:53 +0000 Subject: [PATCH] use includes from the current directory rather then from the system Mon Nov 15 17:18:28 1999 George Lebl * src/testpixbuf-drawable.c: use includes from the current directory rather then from the system include directory as gdk-pixbuf includes are not yet installed when this is compiled. --- demos/testpixbuf-drawable.c | 4 ++-- gdk-pixbuf/ChangeLog | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/demos/testpixbuf-drawable.c b/demos/testpixbuf-drawable.c index d7a941e4ea..0521ad91ec 100644 --- a/demos/testpixbuf-drawable.c +++ b/demos/testpixbuf-drawable.c @@ -1,7 +1,7 @@ #include #include -#include -#include +#include "gdk-pixbuf.h" +#include "gdk-pixbuf-drawable.h" void close_app(GtkWidget *widget, gpointer data) { diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog index 162ecd5af8..2c74443620 100644 --- a/gdk-pixbuf/ChangeLog +++ b/gdk-pixbuf/ChangeLog @@ -1,3 +1,9 @@ +Mon Nov 15 17:18:28 1999 George Lebl + + * src/testpixbuf-drawable.c: use includes from the current directory + rather then from the system include directory as gdk-pixbuf + includes are not yet installed when this is compiled. + 1999-11-13 Cody Russell * src/testpixbuf-drawable.c: Added a test program for drawable code.