2005-02-13 Sven Neumann <sven@gimp.org> * configure.in: check for gthread-2.0 unless the --disable-mp option is given. * app/app_procs.c (app_libs_init): call g_thread_init(). * app/base/pixel-processor.c: ported to GThread. * app/Makefile.am * app/*/Makefile.am: use @GTHREAD_CFLAGS@.
30 lines
483 B
Makefile
30 lines
483 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LIBRARIES = libappxcf.a
|
|
|
|
libappxcf_a_SOURCES = \
|
|
xcf.c \
|
|
xcf.h \
|
|
xcf-load.c \
|
|
xcf-load.h \
|
|
xcf-read.c \
|
|
xcf-read.h \
|
|
xcf-private.h \
|
|
xcf-save.c \
|
|
xcf-save.h \
|
|
xcf-seek.c \
|
|
xcf-seek.h \
|
|
xcf-write.c \
|
|
xcf-write.h
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-XCF\" \
|
|
@GTHREAD_CFLAGS@
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app \
|
|
$(GDK_PIXBUF_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
EXTRA_DIST = makefile.msc
|