mirror of https://github.com/GNOME/gimp.git
app/makefile.msc adapted to current state of file renaming/restructuring.
2001-03-16 Hans Breuer <hans@breuer.org> * app/makefile.msc * app/tools/makefile.msc : adapted to current state of file renaming/restructuring. Probably will break again soon ... * app/context_manager.c : needs register_tools () prototype * app/gimplist.c * app/gimppalette-import.c : #include <string.h> for memcpy, strcmp and friends * app/pdb/fileops_cmds.c : #include <process.h> /* for _getpid() */ (Yes I know that this is not the right place to change it, but hacking pdbgen.pl to get platform specific headers is out of my scope) * app/test_commands.c : explicit casts to (GimpSetDrawableFunc) make it compile even with strict checks turned on. * app/undo.c (undo_pop_paint) : return a value even if the function does nothing at the moment (makes it compile) * libgimp/gimp.def : updated * libgimp/gimpcolorselector.h : include <gmodule.h> to make gimp_color_selector_(un)register prototypes conform to their implementation * libgimp/gimpfeatures.h : reflect 1.3 version * libgimpmath/gimpmatrix.c * libgimpwidgets/gimpdialog.c : more <string.h> inclusion * libgimp/makefile.msc : moved gimpadativesupersample.c to libgimpcolor, which makes it reusable from the core, too. * libgimp/gimp.def : updated * libgimp/gimpproceduraledb.c : #include <string.h> * libgimpcolor/gimpcolor.def * libgimpcolor/makefile.msc : added gimpadaptivesupersample * libgimpmath/gimpmatrix.c : #include <string.h> for memcmp * libgimpwidgets/gimpdialog.c - " - for strcmp
This commit is contained in:
parent
47fd26dd26
commit
787ffe3e93
47
ChangeLog
47
ChangeLog
|
@ -1,3 +1,50 @@
|
|||
2001-03-16 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* app/makefile.msc
|
||||
* app/tools/makefile.msc : adapted to current state of file
|
||||
renaming/restructuring. Probably will break again soon ...
|
||||
|
||||
* app/context_manager.c : needs register_tools () prototype
|
||||
|
||||
* app/gimplist.c
|
||||
* app/gimppalette-import.c : #include <string.h> for memcpy, strcmp
|
||||
and friends
|
||||
|
||||
* app/pdb/fileops_cmds.c : #include <process.h> /* for _getpid() */
|
||||
(Yes I know that this is not the right place to change it, but hacking
|
||||
pdbgen.pl to get platform specific headers is out of my scope)
|
||||
|
||||
* app/test_commands.c : explicit casts to (GimpSetDrawableFunc) make
|
||||
it compile even with strict checks turned on.
|
||||
|
||||
* app/undo.c (undo_pop_paint) : return a value even if the function
|
||||
does nothing at the moment (makes it compile)
|
||||
|
||||
* libgimp/gimp.def : updated
|
||||
|
||||
* libgimp/gimpcolorselector.h : include <gmodule.h> to make
|
||||
gimp_color_selector_(un)register prototypes conform to their
|
||||
implementation
|
||||
|
||||
* libgimp/gimpfeatures.h : reflect 1.3 version
|
||||
|
||||
* libgimpmath/gimpmatrix.c
|
||||
* libgimpwidgets/gimpdialog.c : more <string.h> inclusion
|
||||
|
||||
* libgimp/makefile.msc : moved gimpadativesupersample.c to
|
||||
libgimpcolor, which makes it reusable from the core, too.
|
||||
|
||||
* libgimp/gimp.def : updated
|
||||
|
||||
* libgimp/gimpproceduraledb.c : #include <string.h>
|
||||
|
||||
* libgimpcolor/gimpcolor.def
|
||||
* libgimpcolor/makefile.msc : added gimpadaptivesupersample
|
||||
|
||||
* libgimpmath/gimpmatrix.c : #include <string.h> for memcmp
|
||||
* libgimpwidgets/gimpdialog.c - " - for strcmp
|
||||
|
||||
|
||||
2001-03-15 14:51:59Z Marc Lehmann <pcg@goof.com>
|
||||
|
||||
* gimptool-1.4.in: Fix --libs-noui so that plug-ins link against
|
||||
|
|
|
@ -50,6 +50,8 @@
|
|||
#define PAINT_OPTIONS_MASK GIMP_CONTEXT_OPACITY_MASK | \
|
||||
GIMP_CONTEXT_PAINT_MODE_MASK
|
||||
|
||||
/* HACK: provide prototype without tools/tools.h */
|
||||
extern void register_tools (void);
|
||||
|
||||
/*
|
||||
* the list of all images
|
||||
|
|
|
@ -1399,6 +1399,8 @@ undo_pop_paint (GimpImage *gimage,
|
|||
pu->lastytilt = tmp;
|
||||
|
||||
return TRUE;
|
||||
#else
|
||||
return FALSE;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#include <string.h> /* strcmp */
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "apptypes.h"
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#include <string.h> /* memcpy */
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#include <string.h> /* strcmp */
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "apptypes.h"
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#include <string.h> /* memcpy */
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
|
|
|
@ -45,17 +45,16 @@ gimpim_OBJECTS = \
|
|||
|
||||
gimpim.lib : $(gimpim_OBJECTS)
|
||||
lib /out:gimpim.lib $(gimpim_OBJECTS)
|
||||
|
||||
|
||||
gimp_OBJECTS = \
|
||||
about_dialog.obj \
|
||||
app_procs.obj \
|
||||
asupsample.obj \
|
||||
#lgc asupsample.obj \
|
||||
batch.obj \
|
||||
boundary.obj \
|
||||
brush_edit.obj \
|
||||
brush_scale.obj \
|
||||
brush_select.obj \
|
||||
brushes.obj \
|
||||
channel_ops.obj \
|
||||
channels_dialog.obj \
|
||||
color_area.obj \
|
||||
|
@ -75,7 +74,6 @@ gimp_OBJECTS = \
|
|||
dialog_handler.obj \
|
||||
disp_callbacks.obj \
|
||||
docindex.obj \
|
||||
draw_core.obj \
|
||||
drawable.obj \
|
||||
equalize.obj \
|
||||
errorconsole.obj \
|
||||
|
@ -91,6 +89,7 @@ gimp_OBJECTS = \
|
|||
gimpbrush.obj \
|
||||
gimpbrushgenerated.obj \
|
||||
gimpbrushpipe.obj \
|
||||
gimpbrushpreview.obj \
|
||||
gimpchannel.obj \
|
||||
gimpconstrainedhwrapbox.obj \
|
||||
gimpcontainer.obj \
|
||||
|
@ -98,32 +97,51 @@ gimp_OBJECTS = \
|
|||
gimpcontainerlistview.obj \
|
||||
gimpcontainerview.obj \
|
||||
gimpcontext.obj \
|
||||
gimpcontextpreview.obj \
|
||||
# gimpcontextpreview.obj \
|
||||
gimpdata.obj \
|
||||
gimpdatalist.obj \
|
||||
gimpdatafactory.obj \
|
||||
gimpdatafactoryview.obj \
|
||||
gimpdnd.obj \
|
||||
gimpdrawable.obj \
|
||||
gimpdrawablelistitem.obj \
|
||||
gimpdrawablelistview.obj \
|
||||
gimpdrawablepreview.obj \
|
||||
gimpdrawable-preview.obj \
|
||||
gimpgradientpreview.obj \
|
||||
gimphelp.obj \
|
||||
gimphistogram.obj \
|
||||
gimpimage.obj \
|
||||
gimpimagepreview.obj \
|
||||
gimpimage-undo.obj \
|
||||
gimplayer.obj \
|
||||
gimplayerlistitem.obj \
|
||||
gimplayerlistview.obj \
|
||||
gimplayermask.obj \
|
||||
gimplist.obj \
|
||||
gimplistitem.obj \
|
||||
gimplut.obj \
|
||||
gimpmarshal.obj \
|
||||
gimpobject.obj \
|
||||
gimppalette.obj \
|
||||
gimppalettepreview.obj \
|
||||
gimppalette-import.obj \
|
||||
gimpparasite.obj \
|
||||
gimppattern.obj \
|
||||
gimppatternpreview.obj \
|
||||
gimppreview.obj \
|
||||
gimppreviewcache.obj \
|
||||
gimpprogress.obj \
|
||||
gimprc.obj \
|
||||
gimptoolinfopreview.obj \
|
||||
gimpui.obj \
|
||||
gimpundo.obj \
|
||||
gimpundostack.obj \
|
||||
gimpunit.obj \
|
||||
gimpviewable.obj \
|
||||
global_edit.obj \
|
||||
gradient.obj \
|
||||
gimpgradient.obj \
|
||||
gradient_editor.obj \
|
||||
gradient_select.obj \
|
||||
gtkhwrapbox.obj \
|
||||
gtkvwrapbox.obj \
|
||||
|
@ -154,9 +172,8 @@ gimp_OBJECTS = \
|
|||
palette_select.obj \
|
||||
parasitelist.obj \
|
||||
path.obj \
|
||||
paths_dialog.obj \
|
||||
# paths_dialog.obj \
|
||||
pattern_select.obj \
|
||||
patterns.obj \
|
||||
pixel_processor.obj \
|
||||
pixel_region.obj \
|
||||
plug_in.obj \
|
||||
|
@ -171,6 +188,7 @@ gimp_OBJECTS = \
|
|||
selection.obj \
|
||||
session.obj \
|
||||
temp_buf.obj \
|
||||
test_commands.obj \
|
||||
tile.obj \
|
||||
tile_cache.obj \
|
||||
tile_manager.obj \
|
||||
|
@ -183,7 +201,6 @@ gimp_OBJECTS = \
|
|||
xcf.obj \
|
||||
# gdisplay_color.obj \
|
||||
# gdisplay_color_ui.obj \
|
||||
# gimpbrushlist.obj \
|
||||
# path_bezier.obj \
|
||||
# path_curves.obj \
|
||||
|
||||
|
|
|
@ -30,6 +30,10 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
#include <process.h> /* For _getpid() */
|
||||
#endif
|
||||
|
||||
#include "apptypes.h"
|
||||
#include "procedural_db.h"
|
||||
|
||||
|
|
|
@ -1399,6 +1399,8 @@ undo_pop_paint (GimpImage *gimage,
|
|||
pu->lastytilt = tmp;
|
||||
|
||||
return TRUE;
|
||||
#else
|
||||
return FALSE;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
@ -203,13 +203,13 @@ EXPORTS
|
|||
gimp_layer_copy
|
||||
gimp_layer_create_mask
|
||||
gimp_layer_delete
|
||||
gimp_layer_get_apply_mask
|
||||
gimp_layer_get_edit_mask
|
||||
; gimp_layer_get_apply_mask
|
||||
; gimp_layer_get_edit_mask
|
||||
gimp_layer_get_mode
|
||||
gimp_layer_get_name
|
||||
gimp_layer_get_opacity
|
||||
gimp_layer_get_preserve_trans
|
||||
gimp_layer_get_show_mask
|
||||
; gimp_layer_get_show_mask
|
||||
gimp_layer_get_tattoo
|
||||
gimp_layer_get_visible
|
||||
gimp_layer_is_floating_sel
|
||||
|
@ -217,14 +217,14 @@ EXPORTS
|
|||
gimp_layer_new
|
||||
gimp_layer_resize
|
||||
gimp_layer_scale
|
||||
gimp_layer_set_apply_mask
|
||||
gimp_layer_set_edit_mask
|
||||
; gimp_layer_set_apply_mask
|
||||
; gimp_layer_set_edit_mask
|
||||
gimp_layer_set_mode
|
||||
gimp_layer_set_name
|
||||
gimp_layer_set_offsets
|
||||
gimp_layer_set_opacity
|
||||
gimp_layer_set_preserve_trans
|
||||
gimp_layer_set_show_mask
|
||||
; gimp_layer_set_show_mask
|
||||
gimp_layer_set_visible
|
||||
gimp_layer_translate
|
||||
gimp_main
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
|
||||
/* NOTE: This file is autogenerated by pdbgen.pl */
|
||||
#include <string.h> /* memcmp */
|
||||
|
||||
#include "gimp.h"
|
||||
|
||||
|
|
|
@ -90,7 +90,6 @@ gimp_OBJECTS = \
|
|||
gimp.obj \
|
||||
$(PDB_WRAPPERS_O) \
|
||||
$(gimpi_OBJECTS) \
|
||||
gimpadaptivesupersample.obj \
|
||||
gimpbilinear.obj \
|
||||
gimpchannel.obj \
|
||||
gimpdrawable.obj \
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
EXPORTS
|
||||
gimp_adaptive_supersample_area
|
||||
gimp_hls_to_rgb_int
|
||||
gimp_hsv_clamp
|
||||
gimp_hsv_to_rgb
|
||||
|
|
|
@ -34,9 +34,10 @@ install : all
|
|||
$(INSTALL) gimpcolor-$(GIMP_VER).dll $(BIN)
|
||||
|
||||
OBJECTS = \
|
||||
gimpcolorspace.obj \
|
||||
gimphsv.obj \
|
||||
gimprgb.obj
|
||||
gimpadaptivesupersample.obj \
|
||||
gimpcolorspace.obj \
|
||||
gimphsv.obj \
|
||||
gimprgb.obj
|
||||
|
||||
gimpcolor-$(GIMP_VER).dll : $(OBJECTS) gimpcolor.def
|
||||
$(CC) $(CFLAGS) -LD -Fegimpcolor-$(GIMP_VER).dll $(OBJECTS) $(DEPLIBS) $(LDFLAGS) user32.lib /def:gimpcolor.def
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <string.h> /* memcmp */
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
#include "gimpmath.h"
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#include <string.h> /* strcmp */
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "gimpwidgetstypes.h"
|
||||
|
|
Loading…
Reference in New Issue