Add gimp_ui_init.
2000-04-23 Tor Lillqvist <tml@iki.fi> * libgimp/gimpui.def: Add gimp_ui_init. * libgimp/makefile.{cygwin,msc} (gimpui_OBJECTS): Add gimpui. * app/makefile.{cygwin,msc} * plug-ins/makefile.{cygwin,msc}: New installation directory. * app/datafiles.c (is_script): Must not g_free() value returned by g_getenv(). * plug-ins/gdyntext/font_selection.c: Don't include gdkx.h with GTk+ 1.3.
This commit is contained in:

committed by
Tor Lillqvist

parent
b954835cf3
commit
2041747fc6
15
ChangeLog
15
ChangeLog
@ -1,3 +1,18 @@
|
||||
2000-04-23 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* libgimp/gimpui.def: Add gimp_ui_init.
|
||||
|
||||
* libgimp/makefile.{cygwin,msc} (gimpui_OBJECTS): Add gimpui.
|
||||
|
||||
* app/makefile.{cygwin,msc}
|
||||
* plug-ins/makefile.{cygwin,msc}: New installation directory.
|
||||
|
||||
* app/datafiles.c (is_script): Must not g_free() value returned by
|
||||
g_getenv().
|
||||
|
||||
* plug-ins/gdyntext/font_selection.c: Don't include gdkx.h with
|
||||
GTk+ 1.3.
|
||||
|
||||
2000-04-23 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* configure.in: added es to ALL_LINGUAS
|
||||
|
@ -76,7 +76,6 @@ is_script (const gchar *filename)
|
||||
if (pathext != NULL)
|
||||
{
|
||||
exts = g_strsplit (pathext, G_SEARCHPATH_SEPARATOR_S, 100);
|
||||
g_free (pathext);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -76,7 +76,6 @@ is_script (const gchar *filename)
|
||||
if (pathext != NULL)
|
||||
{
|
||||
exts = g_strsplit (pathext, G_SEARCHPATH_SEPARATOR_S, 100);
|
||||
g_free (pathext);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -2,7 +2,9 @@
|
||||
## Use: make -f makefile.cygwin
|
||||
|
||||
# Change this to wherever you want to install gimp.exe.
|
||||
BIN = /gimp/bin
|
||||
# This is what I use as installation target, from where the installer-builder
|
||||
# will pick it up.
|
||||
BIN = /install/gimp/bin
|
||||
|
||||
OPTIMIZE = -g -O
|
||||
|
||||
|
@ -2,7 +2,9 @@
|
||||
## Use: nmake -f makefile.msc
|
||||
|
||||
# Change this to wherever you want to install gimp.exe.
|
||||
BIN = C:\gimp\bin
|
||||
# This is what I use as installation target, from where the installer-builder
|
||||
# will pick it up.
|
||||
BIN = C:\install\gimp\bin
|
||||
|
||||
################################################################
|
||||
|
||||
|
@ -89,4 +89,5 @@ EXPORTS
|
||||
gimp_spin_button_new
|
||||
gimp_table_attach_aligned
|
||||
gimp_toggle_button_update
|
||||
gimp_ui_init
|
||||
gimp_unit_menu_update
|
||||
|
@ -161,6 +161,7 @@ gimpui_OBJECTS = \
|
||||
gimppixmap.o \
|
||||
gimpquerybox.o \
|
||||
gimpsizeentry.o \
|
||||
gimpui.o \
|
||||
gimpunitmenu.o \
|
||||
gimpwidgets.o
|
||||
|
||||
|
@ -167,6 +167,7 @@ gimpui_OBJECTS = \
|
||||
gimppixmap.obj \
|
||||
gimpquerybox.obj \
|
||||
gimpsizeentry.obj \
|
||||
gimpui.obj \
|
||||
gimpunitmenu.obj \
|
||||
gimpwidgets.obj
|
||||
|
||||
|
@ -76,7 +76,6 @@ is_script (const gchar *filename)
|
||||
if (pathext != NULL)
|
||||
{
|
||||
exts = g_strsplit (pathext, G_SEARCHPATH_SEPARATOR_S, 100);
|
||||
g_free (pathext);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -25,7 +25,11 @@
|
||||
#include <string.h>
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
#if GTK_CHECK_VERSION(1,3,0)
|
||||
#include <gdk/gdkprivate.h>
|
||||
#else
|
||||
#include <gdk/gdkx.h>
|
||||
#endif
|
||||
|
||||
#include "font_selection.h"
|
||||
|
||||
|
@ -7,7 +7,9 @@
|
||||
|
||||
INSTALL = install
|
||||
|
||||
GIMP = /gimp
|
||||
# This is what I use as installation target, from where the installer-builder
|
||||
# will pick it up.
|
||||
GIMP = /install/gimp
|
||||
|
||||
BIN = $(GIMP)/plug-ins
|
||||
|
||||
@ -135,6 +137,7 @@ guash-data-install:
|
||||
script-fu-data-install:
|
||||
-mkdir $(GIMP)/scripts
|
||||
$(INSTALL) script-fu/scripts/*.scm $(GIMP)/scripts
|
||||
rm $(GIMP)/scripts/test-sphere.scm
|
||||
$(INSTALL) script-fu/scripts/*.jpg $(GIMP)/scripts
|
||||
for d in FractalExplorer/fractalexplorer-examples/*; do if [ -f $$d ]; then $(INSTALL) $$d $(GIMP)/fractalexplorer; fi; done
|
||||
rm $(GIMP)/fractalexplorer/Makefile.am
|
||||
|
@ -7,7 +7,9 @@
|
||||
|
||||
INSTALL = copy
|
||||
|
||||
GIMP = C:\gimp
|
||||
# This is what I use as installation target, from where the installer-builder
|
||||
# will pick it up.
|
||||
GIMP = C:\install\gimp
|
||||
|
||||
BIN = $(GIMP)\plug-ins
|
||||
|
||||
|
Reference in New Issue
Block a user