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@.
28 lines
522 B
Makefile
28 lines
522 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LIBRARIES = libapppaint-funcs.a
|
|
|
|
libapppaint_funcs_a_SOURCES = \
|
|
paint-funcs-types.h \
|
|
paint-funcs.c \
|
|
paint-funcs.h \
|
|
paint-funcs-generic.h \
|
|
scale-funcs.c \
|
|
scale-funcs.h
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app \
|
|
$(GLIB_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-Paint-Funcs\" \
|
|
@GTHREAD_CFLAGS@
|
|
|
|
AM_CCASFLAGS = \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app
|
|
|
|
EXTRA_DIST = makefile.msc
|