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@.
27 lines
485 B
Makefile
27 lines
485 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LIBRARIES = libappfile.a
|
|
|
|
libappfile_a_SOURCES = \
|
|
file-open.c \
|
|
file-open.h \
|
|
file-save.c \
|
|
file-save.h \
|
|
file-utils.c \
|
|
file-utils.h \
|
|
gimprecentitem.c \
|
|
gimprecentitem.h \
|
|
gimprecentlist.c \
|
|
gimprecentlist.h
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-File\" \
|
|
@GTHREAD_CFLAGS@
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app \
|
|
$(GDK_PIXBUF_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
EXTRA_DIST = makefile.msc
|