mirror of https://github.com/GNOME/gimp.git
libgimp/makefile.mingw.in app/makefile.mingw.in modules/makefile.mingw.in
2000-09-21 Tor Lillqvist <tml@iki.fi> * libgimp/makefile.mingw.in * app/makefile.mingw.in * modules/makefile.mingw.in * plug-ins/makefile.mingw.in: Fix bug in ../config.h rule, cp src and dest were in wrong order. * config.h.win32: Remove alloca definition, current <glib.h> now handles that.
This commit is contained in:
parent
5ccbf7c734
commit
1e9f323717
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
|||
2000-09-21 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* libgimp/makefile.mingw.in
|
||||
* app/makefile.mingw.in
|
||||
* modules/makefile.mingw.in
|
||||
* plug-ins/makefile.mingw.in: Fix bug in ../config.h rule, cp src
|
||||
and dest were in wrong order.
|
||||
|
||||
* config.h.win32: Remove alloca definition, current <glib.h> now
|
||||
handles that.
|
||||
|
||||
Wed Sep 20 22:40:25 BST 2000 Andy Thomas <alt@gimp.org>
|
||||
|
||||
* plug-ins/gfig/gfig.c
|
||||
|
|
|
@ -30,7 +30,7 @@ install : gimp.exe
|
|||
$(INSTALL) gimp.exe $(BIN)
|
||||
|
||||
../config.h : ../config.h.win32
|
||||
cp $@ $<
|
||||
cp $< $@
|
||||
|
||||
gimpim_OBJECTS = \
|
||||
gimpdrawable.o \
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
|
||||
/* Define if you have alloca, as a function or macro. */
|
||||
#define HAVE_ALLOCA 1
|
||||
#define alloca _alloca
|
||||
|
||||
/* Define if you have <alloca.h> and it should be used (not on Ultrix). */
|
||||
/* #undef HAVE_ALLOCA_H */
|
||||
|
|
|
@ -26,7 +26,7 @@ all : \
|
|||
gimpui-$(GIMP_VER).dll
|
||||
|
||||
../config.h : ../config.h.win32
|
||||
cp $@ $<
|
||||
cp $< $@
|
||||
|
||||
PDB_WRAPPERS_O = \
|
||||
gimpbrushes_pdb.o \
|
||||
|
|
|
@ -36,7 +36,7 @@ install : all
|
|||
for m in $(MODULES); do $(INSTALL) $$m $(BIN); done
|
||||
|
||||
../config.h : ../config.h.win32
|
||||
cp $@ $<
|
||||
cp $< $@
|
||||
|
||||
colorsel_gtk-$(GIMP_VER).dll : colorsel_gtk.o module.def
|
||||
$(GLIB)/build-dll colorsel_gtk $(GIMP_VER) module.def colorsel_gtk.o $(LDFLAGS) -L ../app -lgimp $(GTK_LIBS) $(GLIB_LIBS)
|
||||
|
|
|
@ -214,7 +214,7 @@ UNOFFICIAL = \
|
|||
all : ../config.h libs-all common-plugins-all separate-plugins-all
|
||||
|
||||
../config.h : ../config.h.win32
|
||||
cp ../config.h.win32 ../config.h
|
||||
cp $< $@
|
||||
|
||||
install : libs-install common-plugins-install separate-plugins-install data-install
|
||||
|
||||
|
|
Loading…
Reference in New Issue