2006-10-27 Sven Neumann <sven@gimp.org> * libgimpconfig/gimpcolorconfig-enums.[ch] * libgimpconfig/gimpcolorconfig.c * libgimpconfig/gimpconfig.def: removed unused enum GimpColorFileOpenBehaviour. * app/core/core-enums.[ch]: added enum GimpColorProfilePolicy. * app/config/gimpcoreconfig.[ch] * app/config/gimprc-blurbs.h: added property "color-profile-policy". * app/plug-in/Makefile.am * app/plug-in/plug-in-icc-profile.[ch]: new files that wrap usage of the lcms plug-in. * app/file/file-open.c: implement the user-configured policy for embedded color profiles. * app/widgets/gimpimageprofileview.c: use the wrapper to call the plug-in-icc-profile-info procedure. * app/widgets/gimptoolbox-dnd.c: pass TRUE for "attach_comment" parameter to gimp_create_image(). * app/core/gimptemplate.c * app/file/Makefile.am: cosmetic changes. * app/Makefile.am: some resorting to make the beast link again.
29 lines
531 B
Makefile
29 lines
531 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LIBRARIES = libappfile.a
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-File\" \
|
|
@GTHREAD_CFLAGS@
|
|
|
|
INCLUDES = \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/app \
|
|
-I$(top_srcdir)/app \
|
|
$(GDK_PIXBUF_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
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
|
|
|
|
EXTRA_DIST = makefile.msc
|