diff options
author | Jeff Garzik <jgarzik@src.gnome.org> | 1998-11-24 05:58:53 +0000 |
---|---|---|
committer | Jeff Garzik <jgarzik@src.gnome.org> | 1998-11-24 05:58:53 +0000 |
commit | 91d99f89037cc1fc06a5f985aa08133590d7943e (patch) | |
tree | 5f4b89333667356890667bb91fdb99e4d4dc2da7 /tests | |
parent | 5a5fb5635f854442509f0dc78167108f3e88d81d (diff) | |
download | gtk+-91d99f89037cc1fc06a5f985aa08133590d7943e.tar.gz |
Removed DEFS "+=" mess that breaks recent automakes. INCLUDES is the
* gdk/Makefile.am, gtk/Makefile.am:
Removed DEFS "+=" mess that breaks recent automakes.
INCLUDES is the correct way to add to CFLAGS from Makefile.am.
* gdk/gdk.c, gdk/gdkglobals.c, gdk/gdkimage.c, gdk/gdkinput.c,
gdk/gdkpixmap.c, gdk/gdkthreads.c, gdk/gdkwindow.c,
gdk/gxid_lib.c, gtk/fnmatch.c, gtk/gtkclist.c, gtk/gtkmain.c,
gtk/testthreads.c:
Include "config.h" instead of "../config.h".
Now that DEFS works again, automake will automatically pass us
the location of config.h in -I.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testthreads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testthreads.c b/tests/testthreads.c index 4d02a06435..27e0753f31 100644 --- a/tests/testthreads.c +++ b/tests/testthreads.c @@ -19,7 +19,7 @@ #include <stdio.h> #include <unistd.h> #include <gtk/gtk.h> -#include "../config.h" +#include "config.h" #ifdef USE_PTHREADS #include <pthread.h> |