include config.h so we can tell if we're doing threads. (GIMP's includes

include config.h so we can tell if we're doing threads.  (GIMP's
includes are f*ck*d.)  --sg
This commit is contained in:
scott 1998-06-20 18:34:38 +00:00
parent 33f5dcc92d
commit 255d684379
3 changed files with 9 additions and 0 deletions

View file

@ -1,5 +1,8 @@
Sat Jun 20 12:04:41 1998 Scott Goehring <scott@poverty.bloomington.in.us>
* app/tile.h: #include config.h so we can tell if we're doing
threads. (GIMP's includes are f*ck*d.)
* app/tile_cache.c app/tile.c app/tile.h app/tile_swap.c: modified
tile swapping to preswap dirty tiles, using a thread if threads
are enabled in configure or a gtk_timeout if they're not. The

View file

@ -9,6 +9,9 @@
#include <sys/types.h>
#include <glib.h>
#include "config.h"
#ifdef USE_PTHREADS
#include <pthread.h>
#endif

View file

@ -9,6 +9,9 @@
#include <sys/types.h>
#include <glib.h>
#include "config.h"
#ifdef USE_PTHREADS
#include <pthread.h>
#endif