2001-05-09 03:00:13 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
AM_CPPFLAGS = \
|
2006-04-29 08:47:53 +08:00
|
|
|
-DGIMP_APP_VERSION=\"$(GIMP_APP_VERSION)\" \
|
2007-06-25 20:41:59 +08:00
|
|
|
-DG_LOG_DOMAIN=\"Gimp-Core\"
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
INCLUDES = \
|
2005-02-27 21:22:01 +08:00
|
|
|
-I$(top_builddir) \
|
2002-06-08 07:00:46 +08:00
|
|
|
-I$(top_srcdir) \
|
2005-02-27 21:22:01 +08:00
|
|
|
-I$(top_builddir)/app \
|
2002-06-08 07:00:46 +08:00
|
|
|
-I$(top_srcdir)/app \
|
2008-05-09 07:35:53 +08:00
|
|
|
$(CAIRO_CFLAGS) \
|
2007-12-30 23:39:35 +08:00
|
|
|
$(GEGL_CFLAGS) \
|
2008-10-07 19:58:14 +08:00
|
|
|
$(GDK_PIXBUF_CFLAGS) \
|
2002-06-08 07:00:46 +08:00
|
|
|
-I$(includedir)
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
|
2001-06-06 00:14:47 +08:00
|
|
|
noinst_LIBRARIES = libappcore.a
|
2001-05-09 03:00:13 +08:00
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
libappcore_a_sources = \
|
2008-02-04 19:26:23 +08:00
|
|
|
core-enums.h \
|
|
|
|
core-types.h \
|
|
|
|
gimp.c \
|
|
|
|
gimp.h \
|
|
|
|
gimp-contexts.c \
|
|
|
|
gimp-contexts.h \
|
|
|
|
gimp-edit.c \
|
|
|
|
gimp-edit.h \
|
|
|
|
gimp-gradients.c \
|
|
|
|
gimp-gradients.h \
|
|
|
|
gimp-gui.c \
|
|
|
|
gimp-gui.h \
|
|
|
|
gimp-modules.c \
|
|
|
|
gimp-modules.h \
|
|
|
|
gimp-parasites.c \
|
|
|
|
gimp-parasites.h \
|
|
|
|
gimp-templates.c \
|
|
|
|
gimp-templates.h \
|
|
|
|
gimp-transform-region.c \
|
|
|
|
gimp-transform-region.h \
|
|
|
|
gimp-transform-resize.c \
|
|
|
|
gimp-transform-resize.h \
|
|
|
|
gimp-transform-utils.c \
|
|
|
|
gimp-transform-utils.h \
|
|
|
|
gimp-units.c \
|
|
|
|
gimp-units.h \
|
|
|
|
gimp-user-install.c \
|
|
|
|
gimp-user-install.h \
|
|
|
|
gimp-utils.c \
|
|
|
|
gimp-utils.h \
|
|
|
|
gimparea.c \
|
|
|
|
gimparea.h \
|
|
|
|
gimpbrush.c \
|
|
|
|
gimpbrush.h \
|
|
|
|
gimpbrush-header.h \
|
|
|
|
gimpbrush-load.c \
|
|
|
|
gimpbrush-load.h \
|
|
|
|
gimpbrush-scale.c \
|
|
|
|
gimpbrush-scale.h \
|
|
|
|
gimpbrushclipboard.c \
|
|
|
|
gimpbrushclipboard.h \
|
|
|
|
gimpbrushgenerated.c \
|
|
|
|
gimpbrushgenerated.h \
|
|
|
|
gimpbrushgenerated-load.c \
|
|
|
|
gimpbrushgenerated-load.h \
|
|
|
|
gimpbrushgenerated-save.c \
|
|
|
|
gimpbrushgenerated-save.h \
|
|
|
|
gimpbrushpipe.c \
|
|
|
|
gimpbrushpipe.h \
|
|
|
|
gimpbrushpipe-load.c \
|
|
|
|
gimpbrushpipe-load.h \
|
|
|
|
gimpbuffer.c \
|
|
|
|
gimpbuffer.h \
|
|
|
|
gimpchannel.c \
|
|
|
|
gimpchannel.h \
|
|
|
|
gimpchannel-combine.c \
|
|
|
|
gimpchannel-combine.h \
|
2008-11-08 08:16:40 +08:00
|
|
|
gimpchannel-project.c \
|
|
|
|
gimpchannel-project.h \
|
2008-02-04 19:26:23 +08:00
|
|
|
gimpchannel-select.c \
|
|
|
|
gimpchannel-select.h \
|
|
|
|
gimpchannelpropundo.c \
|
|
|
|
gimpchannelpropundo.h \
|
|
|
|
gimpchannelundo.c \
|
|
|
|
gimpchannelundo.h \
|
|
|
|
gimpcontainer.c \
|
|
|
|
gimpcontainer.h \
|
|
|
|
gimpcontainer-filter.c \
|
|
|
|
gimpcontainer-filter.h \
|
|
|
|
gimpcontext.c \
|
|
|
|
gimpcontext.h \
|
|
|
|
gimpcoords.c \
|
|
|
|
gimpcoords.h \
|
2008-10-19 02:46:15 +08:00
|
|
|
gimpcoords-interpolate.c \
|
|
|
|
gimpcoords-interpolate.h \
|
2008-02-04 19:26:23 +08:00
|
|
|
gimpcurve.c \
|
|
|
|
gimpcurve.h \
|
|
|
|
gimpcurve-load.c \
|
|
|
|
gimpcurve-load.h \
|
2008-05-11 22:56:57 +08:00
|
|
|
gimpcurve-map.c \
|
|
|
|
gimpcurve-map.h \
|
2008-02-04 19:26:23 +08:00
|
|
|
gimpcurve-save.c \
|
|
|
|
gimpcurve-save.h \
|
|
|
|
gimpdashpattern.c \
|
|
|
|
gimpdashpattern.h \
|
|
|
|
gimpdata.c \
|
|
|
|
gimpdata.h \
|
|
|
|
gimpdatafactory.c \
|
|
|
|
gimpdatafactory.h \
|
|
|
|
gimpdocumentlist.c \
|
|
|
|
gimpdocumentlist.h \
|
|
|
|
gimpdrawable.c \
|
|
|
|
gimpdrawable.h \
|
|
|
|
gimpdrawable-blend.c \
|
|
|
|
gimpdrawable-blend.h \
|
|
|
|
gimpdrawable-brightness-contrast.c \
|
|
|
|
gimpdrawable-brightness-contrast.h \
|
|
|
|
gimpdrawable-bucket-fill.c \
|
|
|
|
gimpdrawable-bucket-fill.h \
|
|
|
|
gimpdrawable-color-balance.c \
|
|
|
|
gimpdrawable-color-balance.h \
|
|
|
|
gimpdrawable-colorize.c \
|
|
|
|
gimpdrawable-colorize.h \
|
|
|
|
gimpdrawable-combine.c \
|
|
|
|
gimpdrawable-combine.h \
|
|
|
|
gimpdrawable-convert.c \
|
|
|
|
gimpdrawable-convert.h \
|
|
|
|
gimpdrawable-curves.c \
|
|
|
|
gimpdrawable-curves.h \
|
|
|
|
gimpdrawable-desaturate.c \
|
|
|
|
gimpdrawable-desaturate.h \
|
|
|
|
gimpdrawable-equalize.c \
|
|
|
|
gimpdrawable-equalize.h \
|
|
|
|
gimpdrawable-foreground-extract.c \
|
|
|
|
gimpdrawable-foreground-extract.h \
|
|
|
|
gimpdrawable-histogram.c \
|
|
|
|
gimpdrawable-histogram.h \
|
|
|
|
gimpdrawable-hue-saturation.c \
|
|
|
|
gimpdrawable-hue-saturation.h \
|
|
|
|
gimpdrawable-invert.c \
|
|
|
|
gimpdrawable-invert.h \
|
|
|
|
gimpdrawable-levels.c \
|
|
|
|
gimpdrawable-levels.h \
|
|
|
|
gimpdrawable-offset.c \
|
|
|
|
gimpdrawable-offset.h \
|
|
|
|
gimpdrawable-operation.c \
|
|
|
|
gimpdrawable-operation.h \
|
|
|
|
gimpdrawable-posterize.c \
|
|
|
|
gimpdrawable-posterize.h \
|
|
|
|
gimpdrawable-preview.c \
|
|
|
|
gimpdrawable-preview.h \
|
2008-05-22 00:45:44 +08:00
|
|
|
gimpdrawable-process.c \
|
|
|
|
gimpdrawable-process.h \
|
2008-04-22 01:20:51 +08:00
|
|
|
gimpdrawable-shadow.c \
|
|
|
|
gimpdrawable-shadow.h \
|
2008-02-04 19:26:23 +08:00
|
|
|
gimpdrawable-stroke.c \
|
|
|
|
gimpdrawable-stroke.h \
|
|
|
|
gimpdrawable-threshold.c \
|
|
|
|
gimpdrawable-threshold.h \
|
|
|
|
gimpdrawable-transform.c \
|
|
|
|
gimpdrawable-transform.h \
|
|
|
|
gimpdrawablemodundo.c \
|
|
|
|
gimpdrawablemodundo.h \
|
2008-10-11 04:04:03 +08:00
|
|
|
gimpdrawablestack.c \
|
|
|
|
gimpdrawablestack.h \
|
2008-02-04 19:26:23 +08:00
|
|
|
gimpdrawableundo.c \
|
|
|
|
gimpdrawableundo.h \
|
2008-11-12 18:56:06 +08:00
|
|
|
gimperror.c \
|
|
|
|
gimperror.h \
|
2008-10-24 05:18:39 +08:00
|
|
|
gimpfilloptions.c \
|
|
|
|
gimpfilloptions.h \
|
2008-12-20 22:46:54 +08:00
|
|
|
gimpfilteredcontainer.c \
|
|
|
|
gimpfilteredcontainer.h \
|
2008-02-04 19:26:23 +08:00
|
|
|
gimpfloatingselundo.c \
|
|
|
|
gimpfloatingselundo.h \
|
|
|
|
gimpgradient.c \
|
|
|
|
gimpgradient.h \
|
|
|
|
gimpgradient-load.c \
|
|
|
|
gimpgradient-load.h \
|
|
|
|
gimpgradient-save.c \
|
|
|
|
gimpgradient-save.h \
|
|
|
|
gimpgrid.c \
|
|
|
|
gimpgrid.h \
|
|
|
|
gimpguide.c \
|
|
|
|
gimpguide.h \
|
|
|
|
gimpguideundo.c \
|
|
|
|
gimpguideundo.h \
|
|
|
|
gimpimage.c \
|
|
|
|
gimpimage.h \
|
|
|
|
gimpimage-arrange.c \
|
|
|
|
gimpimage-arrange.h \
|
|
|
|
gimpimage-colorhash.c \
|
|
|
|
gimpimage-colorhash.h \
|
|
|
|
gimpimage-colormap.c \
|
|
|
|
gimpimage-colormap.h \
|
|
|
|
gimpimage-contiguous-region.c \
|
|
|
|
gimpimage-contiguous-region.h \
|
|
|
|
gimpimage-convert.c \
|
|
|
|
gimpimage-convert.h \
|
|
|
|
gimpimage-convert-fsdither.h \
|
|
|
|
gimpimage-convert-data.h \
|
|
|
|
gimpimage-crop.c \
|
|
|
|
gimpimage-crop.h \
|
|
|
|
gimpimage-duplicate.c \
|
|
|
|
gimpimage-duplicate.h \
|
|
|
|
gimpimage-flip.c \
|
|
|
|
gimpimage-flip.h \
|
|
|
|
gimpimage-grid.h \
|
|
|
|
gimpimage-grid.c \
|
|
|
|
gimpimage-guides.c \
|
|
|
|
gimpimage-guides.h \
|
|
|
|
gimpimage-item-list.c \
|
|
|
|
gimpimage-item-list.h \
|
|
|
|
gimpimage-merge.c \
|
|
|
|
gimpimage-merge.h \
|
|
|
|
gimpimage-new.c \
|
|
|
|
gimpimage-new.h \
|
|
|
|
gimpimage-pick-color.c \
|
|
|
|
gimpimage-pick-color.h \
|
|
|
|
gimpimage-preview.c \
|
|
|
|
gimpimage-preview.h \
|
|
|
|
gimpimage-quick-mask.c \
|
|
|
|
gimpimage-quick-mask.h \
|
|
|
|
gimpimage-resize.c \
|
|
|
|
gimpimage-resize.h \
|
|
|
|
gimpimage-rotate.c \
|
|
|
|
gimpimage-rotate.h \
|
|
|
|
gimpimage-sample-points.c \
|
|
|
|
gimpimage-sample-points.h \
|
|
|
|
gimpimage-scale.c \
|
|
|
|
gimpimage-scale.h \
|
|
|
|
gimpimage-snap.c \
|
|
|
|
gimpimage-snap.h \
|
|
|
|
gimpimage-undo.c \
|
|
|
|
gimpimage-undo.h \
|
|
|
|
gimpimage-undo-push.c \
|
|
|
|
gimpimage-undo-push.h \
|
|
|
|
gimpimageundo.c \
|
|
|
|
gimpimageundo.h \
|
|
|
|
gimpimagefile.c \
|
|
|
|
gimpimagefile.h \
|
|
|
|
gimpimagemap.c \
|
|
|
|
gimpimagemap.h \
|
2008-05-21 05:41:47 +08:00
|
|
|
gimpimagemapconfig.c \
|
|
|
|
gimpimagemapconfig.h \
|
2008-02-04 19:26:23 +08:00
|
|
|
gimpitem.c \
|
|
|
|
gimpitem.h \
|
|
|
|
gimpitem-linked.c \
|
|
|
|
gimpitem-linked.h \
|
|
|
|
gimpitem-preview.c \
|
|
|
|
gimpitem-preview.h \
|
|
|
|
gimpitempropundo.c \
|
|
|
|
gimpitempropundo.h \
|
2008-11-07 03:09:59 +08:00
|
|
|
gimpitemstack.c \
|
|
|
|
gimpitemstack.h \
|
2008-02-04 19:26:23 +08:00
|
|
|
gimpitemundo.c \
|
|
|
|
gimpitemundo.h \
|
|
|
|
gimplayer.c \
|
|
|
|
gimplayer.h \
|
|
|
|
gimplayer-floating-sel.c \
|
|
|
|
gimplayer-floating-sel.h \
|
2008-11-08 08:16:40 +08:00
|
|
|
gimplayer-project.c \
|
|
|
|
gimplayer-project.h \
|
2008-02-04 19:26:23 +08:00
|
|
|
gimplayermask.c \
|
|
|
|
gimplayermask.h \
|
|
|
|
gimplayermaskpropundo.c \
|
|
|
|
gimplayermaskpropundo.h \
|
|
|
|
gimplayermaskundo.c \
|
|
|
|
gimplayermaskundo.h \
|
|
|
|
gimplayerpropundo.c \
|
|
|
|
gimplayerpropundo.h \
|
|
|
|
gimplayerundo.c \
|
|
|
|
gimplayerundo.h \
|
|
|
|
gimplist.c \
|
|
|
|
gimplist.h \
|
|
|
|
gimpmaskundo.c \
|
|
|
|
gimpmaskundo.h \
|
|
|
|
gimpobject.c \
|
|
|
|
gimpobject.h \
|
|
|
|
gimppaintinfo.c \
|
|
|
|
gimppaintinfo.h \
|
|
|
|
gimppattern.c \
|
|
|
|
gimppattern.h \
|
|
|
|
gimppattern-header.h \
|
|
|
|
gimppattern-load.c \
|
|
|
|
gimppattern-load.h \
|
|
|
|
gimppatternclipboard.c \
|
|
|
|
gimppatternclipboard.h \
|
|
|
|
gimppalette.c \
|
|
|
|
gimppalette.h \
|
|
|
|
gimppalette-import.c \
|
|
|
|
gimppalette-import.h \
|
|
|
|
gimppalette-load.c \
|
|
|
|
gimppalette-load.h \
|
|
|
|
gimppalette-save.c \
|
|
|
|
gimppalette-save.h \
|
|
|
|
gimpparamspecs.c \
|
|
|
|
gimpparamspecs.h \
|
|
|
|
gimpparamspecs-desc.c \
|
|
|
|
gimpparamspecs-desc.h \
|
|
|
|
gimpparasitelist.c \
|
|
|
|
gimpparasitelist.h \
|
|
|
|
gimppdbprogress.c \
|
|
|
|
gimppdbprogress.h \
|
|
|
|
gimppickable.c \
|
|
|
|
gimppickable.h \
|
|
|
|
gimppreviewcache.c \
|
|
|
|
gimppreviewcache.h \
|
|
|
|
gimpprogress.c \
|
|
|
|
gimpprogress.h \
|
2008-11-05 02:06:36 +08:00
|
|
|
gimpprojectable.c \
|
|
|
|
gimpprojectable.h \
|
2008-02-04 19:26:23 +08:00
|
|
|
gimpprojection.c \
|
|
|
|
gimpprojection.h \
|
|
|
|
gimpprojection-construct.c \
|
|
|
|
gimpprojection-construct.h \
|
|
|
|
gimpsamplepoint.c \
|
|
|
|
gimpsamplepoint.h \
|
|
|
|
gimpsamplepointundo.c \
|
|
|
|
gimpsamplepointundo.h \
|
|
|
|
gimpscanconvert.c \
|
|
|
|
gimpscanconvert.h \
|
|
|
|
gimpselection.c \
|
|
|
|
gimpselection.h \
|
|
|
|
gimpstrokeoptions.c \
|
|
|
|
gimpstrokeoptions.h \
|
|
|
|
gimpsubprogress.c \
|
|
|
|
gimpsubprogress.h \
|
2008-12-12 06:04:05 +08:00
|
|
|
gimptag.c \
|
|
|
|
gimptag.h \
|
2008-12-20 22:46:54 +08:00
|
|
|
gimptagcache.c \
|
|
|
|
gimptagcache.h \
|
2008-02-04 19:26:23 +08:00
|
|
|
gimptagged.c \
|
|
|
|
gimptagged.h \
|
|
|
|
gimptemplate.c \
|
|
|
|
gimptemplate.h \
|
|
|
|
gimptoolinfo.c \
|
|
|
|
gimptoolinfo.h \
|
|
|
|
gimptooloptions.c \
|
|
|
|
gimptooloptions.h \
|
|
|
|
gimptoolpresets.c \
|
|
|
|
gimptoolpresets.h \
|
|
|
|
gimpunit.c \
|
|
|
|
gimpunit.h \
|
|
|
|
gimpundo.c \
|
|
|
|
gimpundo.h \
|
|
|
|
gimpundostack.c \
|
|
|
|
gimpundostack.h \
|
|
|
|
gimpviewable.c \
|
2002-06-08 07:00:46 +08:00
|
|
|
gimpviewable.h
|
2001-05-09 03:00:13 +08:00
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
libappcore_a_built_sources = \
|
|
|
|
core-enums.c \
|
|
|
|
gimpmarshal.c \
|
|
|
|
gimpmarshal.h
|
2001-05-09 03:00:13 +08:00
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
libappcore_a_extra_sources = \
|
|
|
|
gimpmarshal.list
|
2001-05-09 03:00:13 +08:00
|
|
|
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
libappcore_a_SOURCES = $(libappcore_a_built_sources) $(libappcore_a_sources)
|
|
|
|
|
2001-11-13 10:44:16 +08:00
|
|
|
EXTRA_DIST = \
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
makefile.msc \
|
|
|
|
$(libappcore_a_extra_sources)
|
|
|
|
|
|
|
|
#
|
|
|
|
# rules to generate built sources
|
|
|
|
#
|
2003-02-03 21:39:55 +08:00
|
|
|
# setup autogeneration dependencies
|
2001-12-09 07:12:59 +08:00
|
|
|
gen_sources = xgen-gmh xgen-gmc xgen-cec
|
2001-12-01 23:54:57 +08:00
|
|
|
CLEANFILES = $(gen_sources)
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
|
2007-06-07 21:19:44 +08:00
|
|
|
gimpmarshal.h: $(srcdir)/gimpmarshal.list
|
2001-12-10 20:44:31 +08:00
|
|
|
$(GLIB_GENMARSHAL) --prefix=gimp_marshal $(srcdir)/gimpmarshal.list --header >> xgen-gmh \
|
2001-12-30 23:35:27 +08:00
|
|
|
&& (cmp -s xgen-gmh $(@F) || cp xgen-gmh $(@F)) \
|
2001-12-09 01:30:28 +08:00
|
|
|
&& rm -f xgen-gmh xgen-gmh~
|
2001-12-30 23:35:27 +08:00
|
|
|
|
2007-06-07 21:19:44 +08:00
|
|
|
gimpmarshal.c: gimpmarshal.h
|
2001-12-30 23:35:27 +08:00
|
|
|
echo "#include \"gimpmarshal.h\"" >> xgen-gmc \
|
2001-12-10 20:44:31 +08:00
|
|
|
&& $(GLIB_GENMARSHAL) --prefix=gimp_marshal $(srcdir)/gimpmarshal.list --body >> xgen-gmc \
|
2001-12-30 23:35:27 +08:00
|
|
|
&& cp xgen-gmc $(@F) \
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
&& rm -f xgen-gmc xgen-gmc~
|
2001-12-09 07:12:59 +08:00
|
|
|
|
2007-06-07 21:19:44 +08:00
|
|
|
core-enums.c: $(srcdir)/core-enums.h $(GIMP_MKENUMS)
|
2002-03-18 00:35:05 +08:00
|
|
|
$(GIMP_MKENUMS) \
|
2004-10-26 01:55:25 +08:00
|
|
|
--fhead "#include \"config.h\"\n#include <glib-object.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"core-enums.h\"\n#include \"gimp-intl.h\"" \
|
2001-12-09 07:12:59 +08:00
|
|
|
--fprod "\n/* enumerations from \"@filename@\" */" \
|
2004-07-28 19:50:20 +08:00
|
|
|
--vhead "GType\n@enum_name@_get_type (void)\n{\n static const G@Type@Value values[] =\n {" \
|
2004-10-26 01:55:25 +08:00
|
|
|
--vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
|
|
|
|
--vtail " { 0, NULL, NULL }\n };\n" \
|
|
|
|
--dhead " static const Gimp@Type@Desc descs[] =\n {" \
|
|
|
|
--dprod " { @VALUENAME@, @valuedesc@, @valuehelp@ }," \
|
2008-11-06 16:28:28 +08:00
|
|
|
--dtail " { 0, NULL, NULL }\n };\n\n static GType type = 0;\n\n if (G_UNLIKELY (! type))\n {\n type = g_@type@_register_static (\"@EnumName@\", values);\n gimp_type_set_translation_context (type, \"@enumnick@\");\n gimp_@type@_set_value_descriptions (type, descs);\n }\n\n return type;\n}\n" \
|
2001-12-09 07:12:59 +08:00
|
|
|
$(srcdir)/core-enums.h > xgen-cec \
|
|
|
|
&& cp xgen-cec $(@F) \
|
|
|
|
&& rm -f xgen-cec
|