reset binary age because of struct changes below. require GIMP 1.3.26.
2004-01-29 Michael Natterer <mitch@gimp.org> * configure.in: reset binary age because of struct changes below. * m4macros/gimp-2.0.m4: require GIMP 1.3.26. * libgimpmodule/gimpmodule.h * libgimpmodule/gimpmoduledb.h * libgimpthumb/gimpthumbnail.h * libgimpwidgets/gimpbutton.h * libgimpwidgets/gimpchainbutton.h * libgimpwidgets/gimpcolorarea.h * libgimpwidgets/gimpcolorbutton.h * libgimpwidgets/gimpcolordisplay.h * libgimpwidgets/gimpcolordisplaystack.h * libgimpwidgets/gimpcolornotebook.h * libgimpwidgets/gimpcolorscale.h * libgimpwidgets/gimpcolorselection.h * libgimpwidgets/gimpcolorselector.h * libgimpwidgets/gimpdialog.h * libgimpwidgets/gimpfileentry.h * libgimpwidgets/gimpmemsizeentry.h * libgimpwidgets/gimpoffsetarea.h * libgimpwidgets/gimppickbutton.h * libgimpwidgets/gimppixmap.h * libgimpwidgets/gimpsizeentry.h * libgimpwidgets/gimpunitmenu.h: added 4 function pointers padding to all class structures.
This commit is contained in:

committed by
Michael Natterer

parent
9887f19729
commit
e8843a2372
28
ChangeLog
28
ChangeLog
@ -1,3 +1,31 @@
|
|||||||
|
2004-01-29 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* configure.in: reset binary age because of struct changes below.
|
||||||
|
* m4macros/gimp-2.0.m4: require GIMP 1.3.26.
|
||||||
|
|
||||||
|
* libgimpmodule/gimpmodule.h
|
||||||
|
* libgimpmodule/gimpmoduledb.h
|
||||||
|
* libgimpthumb/gimpthumbnail.h
|
||||||
|
* libgimpwidgets/gimpbutton.h
|
||||||
|
* libgimpwidgets/gimpchainbutton.h
|
||||||
|
* libgimpwidgets/gimpcolorarea.h
|
||||||
|
* libgimpwidgets/gimpcolorbutton.h
|
||||||
|
* libgimpwidgets/gimpcolordisplay.h
|
||||||
|
* libgimpwidgets/gimpcolordisplaystack.h
|
||||||
|
* libgimpwidgets/gimpcolornotebook.h
|
||||||
|
* libgimpwidgets/gimpcolorscale.h
|
||||||
|
* libgimpwidgets/gimpcolorselection.h
|
||||||
|
* libgimpwidgets/gimpcolorselector.h
|
||||||
|
* libgimpwidgets/gimpdialog.h
|
||||||
|
* libgimpwidgets/gimpfileentry.h
|
||||||
|
* libgimpwidgets/gimpmemsizeentry.h
|
||||||
|
* libgimpwidgets/gimpoffsetarea.h
|
||||||
|
* libgimpwidgets/gimppickbutton.h
|
||||||
|
* libgimpwidgets/gimppixmap.h
|
||||||
|
* libgimpwidgets/gimpsizeentry.h
|
||||||
|
* libgimpwidgets/gimpunitmenu.h: added 4 function pointers padding
|
||||||
|
to all class structures.
|
||||||
|
|
||||||
2004-01-28 Michael Natterer <mitch@gimp.org>
|
2004-01-28 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
Added infrastructure to make sure we don't write to the global
|
Added infrastructure to make sure we don't write to the global
|
||||||
|
@ -17,7 +17,7 @@ m4_define([gimp_real_version],
|
|||||||
[gimp_major_version.gimp_minor_version.gimp_micro_version])
|
[gimp_major_version.gimp_minor_version.gimp_micro_version])
|
||||||
m4_define([gimp_version], [gimp_real_version])
|
m4_define([gimp_version], [gimp_real_version])
|
||||||
m4_define([gimp_interface_age], [0])
|
m4_define([gimp_interface_age], [0])
|
||||||
m4_define([gimp_binary_age], [2])
|
m4_define([gimp_binary_age], [0])
|
||||||
|
|
||||||
# For overriding the version string. Comment out if not needed.
|
# For overriding the version string. Comment out if not needed.
|
||||||
m4_define([gimp_version], [2.0pre3])
|
m4_define([gimp_version], [2.0pre3])
|
||||||
|
@ -111,6 +111,12 @@ struct _GimpModuleClass
|
|||||||
GTypeModuleClass parent_class;
|
GTypeModuleClass parent_class;
|
||||||
|
|
||||||
void (* modified) (GimpModule *module);
|
void (* modified) (GimpModule *module);
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -54,6 +54,12 @@ struct _GimpModuleDBClass
|
|||||||
GimpModule *module);
|
GimpModule *module);
|
||||||
void (* module_modified) (GimpModuleDB *db,
|
void (* module_modified) (GimpModuleDB *db,
|
||||||
GimpModule *module);
|
GimpModule *module);
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,6 +66,12 @@ struct _GimpThumbnail
|
|||||||
struct _GimpThumbnailClass
|
struct _GimpThumbnailClass
|
||||||
{
|
{
|
||||||
GObjectClass parent_class;
|
GObjectClass parent_class;
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -54,6 +54,12 @@ struct _GimpButtonClass
|
|||||||
|
|
||||||
void (* extended_clicked) (GimpButton *preview,
|
void (* extended_clicked) (GimpButton *preview,
|
||||||
GdkModifierType modifier_state);
|
GdkModifierType modifier_state);
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -73,6 +73,12 @@ struct _GimpChainButtonClass
|
|||||||
GtkTableClass parent_class;
|
GtkTableClass parent_class;
|
||||||
|
|
||||||
void (* toggled) (GimpChainButton *button);
|
void (* toggled) (GimpChainButton *button);
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -64,6 +64,12 @@ struct _GimpColorAreaClass
|
|||||||
GtkDrawingAreaClass parent_class;
|
GtkDrawingAreaClass parent_class;
|
||||||
|
|
||||||
void (* color_changed) (GimpColorArea *area);
|
void (* color_changed) (GimpColorArea *area);
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -63,6 +63,12 @@ struct _GimpColorButtonClass
|
|||||||
GimpButtonClass parent_class;
|
GimpButtonClass parent_class;
|
||||||
|
|
||||||
void (* color_changed) (GimpColorButton *button);
|
void (* color_changed) (GimpColorButton *button);
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -68,6 +68,12 @@ struct _GimpColorDisplayClass
|
|||||||
|
|
||||||
/* signals */
|
/* signals */
|
||||||
void (* changed) (GimpColorDisplay *display);
|
void (* changed) (GimpColorDisplay *display);
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -59,6 +59,12 @@ struct _GimpColorDisplayStackClass
|
|||||||
void (* reordered) (GimpColorDisplayStack *stack,
|
void (* reordered) (GimpColorDisplayStack *stack,
|
||||||
GimpColorDisplay *display,
|
GimpColorDisplay *display,
|
||||||
gint position);
|
gint position);
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -54,6 +54,12 @@ struct _GimpColorNotebook
|
|||||||
struct _GimpColorNotebookClass
|
struct _GimpColorNotebookClass
|
||||||
{
|
{
|
||||||
GimpColorSelectorClass parent_class;
|
GimpColorSelectorClass parent_class;
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -64,6 +64,12 @@ struct _GimpColorScale
|
|||||||
struct _GimpColorScaleClass
|
struct _GimpColorScaleClass
|
||||||
{
|
{
|
||||||
GtkScaleClass parent_class;
|
GtkScaleClass parent_class;
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -63,6 +63,12 @@ struct _GimpColorSelectionClass
|
|||||||
GtkVBoxClass parent_class;
|
GtkVBoxClass parent_class;
|
||||||
|
|
||||||
void (* color_changed) (GimpColorSelection *selection);
|
void (* color_changed) (GimpColorSelection *selection);
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -87,6 +87,12 @@ struct _GimpColorSelectorClass
|
|||||||
const GimpHSV *hsv);
|
const GimpHSV *hsv);
|
||||||
void (* channel_changed) (GimpColorSelector *selector,
|
void (* channel_changed) (GimpColorSelector *selector,
|
||||||
GimpColorSelectorChannel channel);
|
GimpColorSelectorChannel channel);
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -48,6 +48,12 @@ struct _GimpDialog
|
|||||||
struct _GimpDialogClass
|
struct _GimpDialogClass
|
||||||
{
|
{
|
||||||
GtkDialogClass parent_class;
|
GtkDialogClass parent_class;
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -58,6 +58,12 @@ struct _GimpFileEntryClass
|
|||||||
GtkHBoxClass parent_class;
|
GtkHBoxClass parent_class;
|
||||||
|
|
||||||
void (* filename_changed) (GimpFileEntry *entry);
|
void (* filename_changed) (GimpFileEntry *entry);
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -58,6 +58,12 @@ struct _GimpMemsizeEntryClass
|
|||||||
GtkHBoxClass parent_class;
|
GtkHBoxClass parent_class;
|
||||||
|
|
||||||
void (* value_changed) (GimpMemsizeEntry *entry);
|
void (* value_changed) (GimpMemsizeEntry *entry);
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -59,6 +59,12 @@ struct _GimpOffsetAreaClass
|
|||||||
void (* offsets_changed) (GimpOffsetArea *offset_area,
|
void (* offsets_changed) (GimpOffsetArea *offset_area,
|
||||||
gint offset_x,
|
gint offset_x,
|
||||||
gint offset_y);
|
gint offset_y);
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -50,6 +50,12 @@ struct _GimpPickButtonClass
|
|||||||
|
|
||||||
void (* color_picked) (GimpPickButton *button,
|
void (* color_picked) (GimpPickButton *button,
|
||||||
const GimpRGB *color);
|
const GimpRGB *color);
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -50,6 +50,12 @@ struct _GimpPixmap
|
|||||||
struct _GimpPixmapClass
|
struct _GimpPixmapClass
|
||||||
{
|
{
|
||||||
GtkImageClass parent_class;
|
GtkImageClass parent_class;
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -64,6 +64,12 @@ struct _GimpSizeEntryClass
|
|||||||
void (* value_changed) (GimpSizeEntry *gse);
|
void (* value_changed) (GimpSizeEntry *gse);
|
||||||
void (* refval_changed) (GimpSizeEntry *gse);
|
void (* refval_changed) (GimpSizeEntry *gse);
|
||||||
void (* unit_changed) (GimpSizeEntry *gse);
|
void (* unit_changed) (GimpSizeEntry *gse);
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -60,6 +60,12 @@ struct _GimpUnitMenuClass
|
|||||||
GtkOptionMenuClass parent_class;
|
GtkOptionMenuClass parent_class;
|
||||||
|
|
||||||
void (* unit_changed) (GimpUnitMenu *menu);
|
void (* unit_changed) (GimpUnitMenu *menu);
|
||||||
|
|
||||||
|
/* Padding for future expansion */
|
||||||
|
void (* _gimp_reserved1) (void);
|
||||||
|
void (* _gimp_reserved2) (void);
|
||||||
|
void (* _gimp_reserved3) (void);
|
||||||
|
void (* _gimp_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ AC_ARG_ENABLE(gimptest, [ --disable-gimptest do not try to compile and run
|
|||||||
no_gimp=yes
|
no_gimp=yes
|
||||||
fi
|
fi
|
||||||
|
|
||||||
min_gimp_version=ifelse([$1], ,1.3.24,$1)
|
min_gimp_version=ifelse([$1], ,1.3.26,$1)
|
||||||
AC_MSG_CHECKING(for GIMP - version >= $min_gimp_version)
|
AC_MSG_CHECKING(for GIMP - version >= $min_gimp_version)
|
||||||
|
|
||||||
if test x$PKG_CONFIG != xno ; then
|
if test x$PKG_CONFIG != xno ; then
|
||||||
|
Reference in New Issue
Block a user