Add gdiplay_color. Create gimp.def from gimp.sym.
* app/makefile.{cygwin,msc}: Add gdiplay_color. Create gimp.def from gimp.sym. * app/gimp.def: Removed. * libgimp/gimpenv.c (gimp_data_directory) (Win32): Also check for the executable being in the plug-ins subdirectory. * plug-ins/makefile.{cygwin,msc}: Install also GIMPressionist brushes, papers and presets.
This commit is contained in:
13
ChangeLog
13
ChangeLog
@ -1,3 +1,16 @@
|
|||||||
|
Thu Jul 29 23:58:08 1999 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
|
* app/makefile.{cygwin,msc}: Add gdiplay_color. Create gimp.def
|
||||||
|
from gimp.sym.
|
||||||
|
|
||||||
|
* app/gimp.def: Removed.
|
||||||
|
|
||||||
|
* libgimp/gimpenv.c (gimp_data_directory) (Win32): Also check for
|
||||||
|
the executable being in the plug-ins subdirectory.
|
||||||
|
|
||||||
|
* plug-ins/makefile.{cygwin,msc}: Install also GIMPressionist
|
||||||
|
brushes, papers and presets.
|
||||||
|
|
||||||
Thu Jul 29 03:20:36 1999 Jay Cox <jaycox@earthlink.net>
|
Thu Jul 29 03:20:36 1999 Jay Cox <jaycox@earthlink.net>
|
||||||
|
|
||||||
* app/paint_funcs.c, app/transform_core.c: replace the cubic
|
* app/paint_funcs.c, app/transform_core.c: replace the cubic
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
EXPORTS
|
|
||||||
gimp_color_selector_register
|
|
||||||
gimp_color_selector_unregister
|
|
@ -125,6 +125,7 @@ gimp_OBJECTS = \
|
|||||||
fuzzy_select.o \
|
fuzzy_select.o \
|
||||||
gdisplay.o \
|
gdisplay.o \
|
||||||
gdisplay_cmds.o \
|
gdisplay_cmds.o \
|
||||||
|
gdisplay_color.o \
|
||||||
gdisplay_ops.o \
|
gdisplay_ops.o \
|
||||||
general.o \
|
general.o \
|
||||||
gimage.o \
|
gimage.o \
|
||||||
|
@ -136,6 +136,7 @@ gimp_OBJECTS = \
|
|||||||
fuzzy_select.obj \
|
fuzzy_select.obj \
|
||||||
gdisplay.obj \
|
gdisplay.obj \
|
||||||
gdisplay_cmds.obj \
|
gdisplay_cmds.obj \
|
||||||
|
gdisplay_color.obj \
|
||||||
gdisplay_ops.obj \
|
gdisplay_ops.obj \
|
||||||
general.obj \
|
general.obj \
|
||||||
gimage.obj \
|
gimage.obj \
|
||||||
@ -254,6 +255,10 @@ gimp_OBJECTS = \
|
|||||||
gimp.res : gimp.rc wilber.ico
|
gimp.res : gimp.rc wilber.ico
|
||||||
rc -r -fo gimp.res gimp.rc
|
rc -r -fo gimp.res gimp.rc
|
||||||
|
|
||||||
|
gimp.def: gimp.sym
|
||||||
|
echo EXPORTS >$@
|
||||||
|
copy /y $@+gimp.sym $@
|
||||||
|
|
||||||
gimp.exe : ..\config.h $(gimp_OBJECTS) gimpim.lib gimp.def gimp.res ..\libgimp\gimpi.lib
|
gimp.exe : ..\config.h $(gimp_OBJECTS) gimpim.lib gimp.def gimp.res ..\libgimp\gimpi.lib
|
||||||
$(CC) $(CFLAGS) -Fegimp.exe $(gimp_OBJECTS) gimpim.lib ..\libgimp\gimpi.lib $(GTK)\gtk\gtk-$(GTK_VER).lib $(GTK)\gdk\win32\gdk-$(GTK_VER).lib $(GETTEXT)\intl\gnu-intl.lib $(GLIB)\glib-$(GLIB_VER).lib $(GLIB)\gmodule-$(GLIB_VER).lib $(LDFLAGS) gimp.res gdi32.lib user32.lib /def:gimp.def
|
$(CC) $(CFLAGS) -Fegimp.exe $(gimp_OBJECTS) gimpim.lib ..\libgimp\gimpi.lib $(GTK)\gtk\gtk-$(GTK_VER).lib $(GTK)\gdk\win32\gdk-$(GTK_VER).lib $(GETTEXT)\intl\gnu-intl.lib $(GLIB)\glib-$(GLIB_VER).lib $(GLIB)\gmodule-$(GLIB_VER).lib $(LDFLAGS) gimp.res gdi32.lib user32.lib /def:gimp.def
|
||||||
|
|
||||||
|
@ -139,8 +139,9 @@ gimp_data_directory ()
|
|||||||
if (GetModuleFileName (NULL, filename, sizeof (filename)) == 0)
|
if (GetModuleFileName (NULL, filename, sizeof (filename)) == 0)
|
||||||
g_error ("GetModuleFilename failed\n");
|
g_error ("GetModuleFilename failed\n");
|
||||||
|
|
||||||
/* If the executable file name is of the format <foobar>\bin\gimp.exe,
|
/* If the executable file name is of the format
|
||||||
* use <foobar>. Otherwise, use the directory where the executable
|
* <foobar>\bin\gimp.exe of <foobar>\plug-ins\filter.exe, * use
|
||||||
|
* <foobar>. Otherwise, use the directory where the executable
|
||||||
* is.
|
* is.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -152,7 +153,8 @@ gimp_data_directory ()
|
|||||||
|
|
||||||
if (sep2 != NULL)
|
if (sep2 != NULL)
|
||||||
{
|
{
|
||||||
if (g_strcasecmp (sep2 + 1, "bin") == 0)
|
if (g_strcasecmp (sep2 + 1, "bin") == 0
|
||||||
|
|| g_strcasecmp (sep2 + 1, "plug-ins") == 0)
|
||||||
*sep2 = '\0';
|
*sep2 = '\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -139,8 +139,9 @@ gimp_data_directory ()
|
|||||||
if (GetModuleFileName (NULL, filename, sizeof (filename)) == 0)
|
if (GetModuleFileName (NULL, filename, sizeof (filename)) == 0)
|
||||||
g_error ("GetModuleFilename failed\n");
|
g_error ("GetModuleFilename failed\n");
|
||||||
|
|
||||||
/* If the executable file name is of the format <foobar>\bin\gimp.exe,
|
/* If the executable file name is of the format
|
||||||
* use <foobar>. Otherwise, use the directory where the executable
|
* <foobar>\bin\gimp.exe of <foobar>\plug-ins\filter.exe, * use
|
||||||
|
* <foobar>. Otherwise, use the directory where the executable
|
||||||
* is.
|
* is.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -152,7 +153,8 @@ gimp_data_directory ()
|
|||||||
|
|
||||||
if (sep2 != NULL)
|
if (sep2 != NULL)
|
||||||
{
|
{
|
||||||
if (g_strcasecmp (sep2 + 1, "bin") == 0)
|
if (g_strcasecmp (sep2 + 1, "bin") == 0
|
||||||
|
|| g_strcasecmp (sep2 + 1, "plug-ins") == 0)
|
||||||
*sep2 = '\0';
|
*sep2 = '\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -49,6 +49,10 @@ install : libs-install common-plugins-install separate-plugins-install scripts-i
|
|||||||
|
|
||||||
unofficial:
|
unofficial:
|
||||||
for d in $(UNOFFICIAL); do $(MAKE) -f makefile.cygwin sub-one-separate DIR=$$d TARGET=install; done
|
for d in $(UNOFFICIAL); do $(MAKE) -f makefile.cygwin sub-one-separate DIR=$$d TARGET=install; done
|
||||||
|
-mkdir $(GIMP)/gimpressionist $(GIMP)/gimpressionist/Brushes $(GIMP)/gimpressionist/Paper $(GIMP)/gimpressionist/Presets
|
||||||
|
$(INSTALL) gimpressionist/Brushes/* $(GIMP)/gimpressionist/Brushes
|
||||||
|
$(INSTALL) gimpressionist/Paper/* $(GIMP)/gimpressionist/Paper
|
||||||
|
$(INSTALL) gimpressionist/Presets/* $(GIMP)/gimpressionist/Presets
|
||||||
|
|
||||||
clean : libs-clean common-plugins-clean separate-plugins-clean
|
clean : libs-clean common-plugins-clean separate-plugins-clean
|
||||||
|
|
||||||
@ -108,6 +112,7 @@ sub-one-separate :
|
|||||||
|
|
||||||
|
|
||||||
scripts-install :
|
scripts-install :
|
||||||
|
-mkdir $(GIMP)/scripts
|
||||||
$(INSTALL) script-fu/scripts/*.scm $(GIMP)/scripts
|
$(INSTALL) script-fu/scripts/*.scm $(GIMP)/scripts
|
||||||
$(INSTALL) script-fu/scripts/*.jpg $(GIMP)/scripts
|
$(INSTALL) script-fu/scripts/*.jpg $(GIMP)/scripts
|
||||||
for d in FractalExplorer/fractalexplorer-examples/*; do if [ -f $$d ]; then $(INSTALL) $$d $(GIMP)/fractalexplorer; fi; done
|
for d in FractalExplorer/fractalexplorer-examples/*; do if [ -f $$d ]; then $(INSTALL) $$d $(GIMP)/fractalexplorer; fi; done
|
||||||
@ -315,20 +320,22 @@ endif
|
|||||||
|
|
||||||
ifdef EXTRA_gimpressionist
|
ifdef EXTRA_gimpressionist
|
||||||
OBJECTS = \
|
OBJECTS = \
|
||||||
gimpressionist.o \
|
about.o \
|
||||||
ppmtool.o \
|
|
||||||
paper.o \
|
|
||||||
brush.o \
|
brush.o \
|
||||||
orientation.o \
|
|
||||||
preview.o \
|
|
||||||
repaint.o \
|
|
||||||
general.o \
|
general.o \
|
||||||
gimp.o \
|
gimp.o \
|
||||||
plasma.o \
|
gimpressionist.o \
|
||||||
presets.o \
|
orientation.o \
|
||||||
about.o \
|
orientmap.o \
|
||||||
|
paper.o \
|
||||||
placement.o \
|
placement.o \
|
||||||
orientmap.o
|
plasma.o \
|
||||||
|
ppmtool.o \
|
||||||
|
presets.o \
|
||||||
|
preview.o \
|
||||||
|
repaint.o \
|
||||||
|
size.o \
|
||||||
|
sizemap.o
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef EXTRA_guash
|
ifdef EXTRA_guash
|
||||||
|
@ -48,6 +48,10 @@ install : libs-install common-plugins-install separate-plugins-install scripts-i
|
|||||||
|
|
||||||
unofficial:
|
unofficial:
|
||||||
for %d in ($(UNOFFICIAL)) do nmake -nologo -f makefile.msc sub-one-separate DIR=%d TARGET=install
|
for %d in ($(UNOFFICIAL)) do nmake -nologo -f makefile.msc sub-one-separate DIR=%d TARGET=install
|
||||||
|
-md $(GIMP)\gimpressionist $(GIMP)\gimpressionist\Brushes $(GIMP)\gimpressionist\Paper $(GIMP)\gimpressionist\Presets
|
||||||
|
$(INSTALL) gimpressionist\Brushes\* $(GIMP)\gimpressionist\Brushes
|
||||||
|
$(INSTALL) gimpressionist\Paper\* $(GIMP)\gimpressionist\Paper
|
||||||
|
$(INSTALL) gimpressionist\Presets\* $(GIMP)\gimpressionist\Presets
|
||||||
|
|
||||||
clean : libs-clean common-plugins-clean separate-plugins-clean
|
clean : libs-clean common-plugins-clean separate-plugins-clean
|
||||||
|
|
||||||
@ -121,6 +125,7 @@ sub-one-separate :
|
|||||||
|
|
||||||
|
|
||||||
scripts-install :
|
scripts-install :
|
||||||
|
-md $(GIMP)\scripts
|
||||||
$(INSTALL) script-fu\scripts\*.scm $(GIMP)\scripts
|
$(INSTALL) script-fu\scripts\*.scm $(GIMP)\scripts
|
||||||
$(INSTALL) script-fu\scripts\*.jpg $(GIMP)\scripts
|
$(INSTALL) script-fu\scripts\*.jpg $(GIMP)\scripts
|
||||||
$(INSTALL) FractalExplorer\fractalexplorer-examples\* $(GIMP)\fractalexplorer
|
$(INSTALL) FractalExplorer\fractalexplorer-examples\* $(GIMP)\fractalexplorer
|
||||||
@ -337,20 +342,22 @@ OBJECTS = \
|
|||||||
!IFDEF EXTRA_gimpressionist
|
!IFDEF EXTRA_gimpressionist
|
||||||
|
|
||||||
OBJECTS = \
|
OBJECTS = \
|
||||||
gimpressionist.obj \
|
about.obj \
|
||||||
ppmtool.obj \
|
|
||||||
paper.obj \
|
|
||||||
brush.obj \
|
brush.obj \
|
||||||
orientation.obj \
|
|
||||||
preview.obj \
|
|
||||||
repaint.obj \
|
|
||||||
general.obj \
|
general.obj \
|
||||||
gimp.obj \
|
gimp.obj \
|
||||||
plasma.obj \
|
gimpressionist.obj \
|
||||||
presets.obj \
|
orientation.obj \
|
||||||
about.obj \
|
orientmap.obj \
|
||||||
|
paper.obj \
|
||||||
placement.obj \
|
placement.obj \
|
||||||
orientmap.obj
|
plasma.obj \
|
||||||
|
ppmtool.obj \
|
||||||
|
presets.obj \
|
||||||
|
preview.obj \
|
||||||
|
repaint.obj \
|
||||||
|
size.obj \
|
||||||
|
sizemap.obj
|
||||||
!ENDIF
|
!ENDIF
|
||||||
|
|
||||||
!IFDEF EXTRA_guash
|
!IFDEF EXTRA_guash
|
||||||
|
Reference in New Issue
Block a user