1997-11-25 06:05:25 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
1999-07-03 16:31:50 +08:00
|
|
|
EXTRA_DIST = \
|
2000-08-25 01:53:43 +08:00
|
|
|
makefile.mingw \
|
|
|
|
makefile.mingw.in \
|
1999-08-03 07:53:26 +08:00
|
|
|
makefile.msc \
|
1999-08-27 07:49:39 +08:00
|
|
|
twain/README \
|
|
|
|
twain/tw_dump.c \
|
|
|
|
twain/tw_dump.h \
|
|
|
|
twain/tw_func.c \
|
|
|
|
twain/tw_func.h \
|
|
|
|
twain/tw_sess.c \
|
|
|
|
twain/tw_util.c \
|
|
|
|
twain/tw_util.h \
|
|
|
|
twain/twain.c \
|
|
|
|
twain/twain.h \
|
1999-08-03 07:53:26 +08:00
|
|
|
winsnap/resource.h \
|
|
|
|
winsnap/select.cur \
|
|
|
|
winsnap/small.ico \
|
|
|
|
winsnap/winsnap.c \
|
|
|
|
winsnap/winsnap.h \
|
|
|
|
winsnap/winsnap.ico \
|
|
|
|
winsnap/winsnap.rc
|
1999-07-03 16:31:50 +08:00
|
|
|
|
2000-04-23 03:47:01 +08:00
|
|
|
## if BUILD_PYTHON
|
|
|
|
## pygimp=pygimp
|
|
|
|
## else
|
|
|
|
## pygimp=
|
|
|
|
## endif
|
1999-09-06 11:45:34 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
SUBDIRS = \
|
1998-03-20 10:40:04 +08:00
|
|
|
libgck \
|
1997-11-25 06:05:25 +08:00
|
|
|
dbbrowser \
|
|
|
|
script-fu \
|
1999-05-05 06:59:54 +08:00
|
|
|
$(GIMP_PERL) \
|
1999-03-26 07:14:36 +08:00
|
|
|
FractalExplorer \
|
1998-06-19 09:45:03 +08:00
|
|
|
Lighting \
|
|
|
|
MapObject \
|
1997-11-25 06:05:25 +08:00
|
|
|
bmp \
|
|
|
|
faxg3 \
|
|
|
|
fits \
|
1997-12-15 11:44:55 +08:00
|
|
|
flame \
|
1998-07-14 14:15:10 +08:00
|
|
|
fp \
|
1999-03-18 09:28:45 +08:00
|
|
|
gap \
|
applied gimp-lecorfec-99041[02]-0, changes follow
* applied gimp-lecorfec-99041[02]-0, changes follow
* plug-ins/FractalExplorer/Dialogs.h (make_color_map):
replaced free with g_free to fix segfault.
* plug-ins/Lighting/lighting_preview.c (compute_preview):
allocate xpostab and ypostab only when needed (it could also be
allocated on stack with a compilation-fixed size like MapObject).
It avoids to lose some Kb on each preview :)
Also reindented (unfortunate C-c C-q) some other lines.
* plug-ins/Lighting/lighting_main.c (run):
release allocated postabs.
* plug-ins/Lighting/lighting_ui.c:
callbacks now have only one argument because gck widget use
gtk_signal_connect_object. Caused segfault for scale widget.
* plug-ins/autocrop/autocrop.c (doit):
return if image has only background (thus fixing a segfault).
* plug-ins/emboss/emboss.c (pluginCore, emboss_do_preview):
replaced malloc/free with g_malloc/g_free (unneeded, but
shouldn't everyone use glib calls ? :)
* plug-ins/flame/flame.c :
replaced a segfaulting free, and several harmless malloc/free pairs.
* plug-ins/flame/megawidget.c (mw_preview_build):
replaced harmless malloc/free pair.
Note : mwp->bits is malloc'ed but seems to be never freed.
* plug-ins/fractaltrace/fractaltrace.c (pixels_free):
replaced a bunch of segfaulting free.
(pixels_get, dialog_show): replaced gtk_signal_connect_object
with gtk_signal_connect to accomodate callbacks (caused STRANGE
dialog behaviour, coz you destroyed buttons one by one).
* plug-ins/illusion/illusion.c (dialog):
same gtk_signal_connect_object replacement for same reasons.
* plug-ins/libgck/gck/gckcolor.c :
changed all gck_rgb_to_color* functions to use a static GdkColor
instead of a malloc'ed area. Provided reentrant functions with
the old behaviour (gck_rgb_to_color*_r). Made some private functions
static, too.
gck_rgb_to_gdkcolor now use the new functions while
gck_rgb_to_gdkcolor_r is the reentrant version.
Also affected by this change: gck_gc_set_foreground and
gck_gc_set_background (no more free(color)).
* plug-ins/libgck/gck/gckcolor.h :
added the gck_rgb_to_gdkcolor_r proto.
* plug-ins/lic/lic.c (ok_button_clicked, cancel_button_clicked) :
segfault on gtk_widget_destroy, now calls gtk_main_quit.
(dialog_destroy) : segfault on window closure when called by
"destroy" event. Now called by "delete_event".
* plug-ins/megawidget/megawidget.c (mw_preview_build):
replaced harmless malloc/free pair.
Note : mwp->bits is malloc'ed but seems to be never freed.
* plug-ins/png/png.c (load_image):
replaced 2 segfaulting free.
* plug-ins/print/print-ps.c (ps_print):
replaced a segfaulting free (called many times :).
* plug-ins/sgi/sgi.c (load_image, save_image):
replaced a bunch of segfaulting free, and did some harmless
inits to avoid a few gcc warnings.
* plug-ins/wind/wind.c (render_wind):
replaced a segfaulting free.
(render_blast): replaced harmless malloc/free pair.
* plug-ins/bmp/bmpread.c (ReadImage):
yet another free()/g_free() problem fixed.
* plug-ins/exchange/exchange.c (real_exchange):
ditto.
* plug-ins/fp/fp.h: added Frames_Check_Button_In_A_Box proto.
* plug-ins/fp/fp_gtk.c: closing subdialogs via window manager
wasn't handled, thus leading to errors and crashes.
Now delete_event signals the dialog control button
to close a dialog with the good way.
* plug-ins/ifscompose/ifscompose.c (value_pair_create):
tried to set events mask on scale widget (a NO_WINDOW widget).
* plug-ins/png/png.c (save_image):
Replaced 2 free() with g_free() for g_malloc'ed memory.
Mysteriously I corrected the loading bug but not the saving one :)
-Yosh
1999-04-16 05:49:09 +08:00
|
|
|
gdyntext \
|
1998-03-20 10:40:04 +08:00
|
|
|
gfig \
|
1999-09-07 07:31:51 +08:00
|
|
|
gflare \
|
1997-11-25 06:05:25 +08:00
|
|
|
gfli \
|
1999-08-27 06:29:37 +08:00
|
|
|
gimpressionist \
|
1999-10-04 10:23:41 +08:00
|
|
|
$(HELPBROWSER) \
|
1997-11-25 06:05:25 +08:00
|
|
|
ifscompose \
|
1999-09-07 08:03:20 +08:00
|
|
|
imagemap \
|
1997-11-25 06:05:25 +08:00
|
|
|
maze \
|
|
|
|
mosaic \
|
1998-04-08 15:07:26 +08:00
|
|
|
pagecurl \
|
1997-11-25 06:05:25 +08:00
|
|
|
print \
|
1999-04-06 04:31:20 +08:00
|
|
|
rcm \
|
1997-11-25 06:05:25 +08:00
|
|
|
sgi \
|
1999-07-10 05:52:00 +08:00
|
|
|
sel2path \
|
1999-06-24 08:58:39 +08:00
|
|
|
$(WEBBROWSER) \
|
|
|
|
$(XJT) \
|
1999-06-23 14:38:20 +08:00
|
|
|
common
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
.PHONY: files
|
|
|
|
|
|
|
|
files:
|
|
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
|
|
echo $$p; \
|
|
|
|
done
|
|
|
|
@for subdir in $(SUBDIRS); do \
|
|
|
|
files=`cd $$subdir; $(MAKE) files | grep -v "make\[[1-9]\]"`; \
|
|
|
|
for file in $$files; do \
|
|
|
|
echo $$subdir/$$file; \
|
|
|
|
done; \
|
|
|
|
done
|
2000-08-25 01:53:43 +08:00
|
|
|
|
|
|
|
makefile.mingw: $(top_builddir)/config.status $(top_srcdir)/plug-ins/makefile.mingw.in
|
|
|
|
cd $(top_builddir) && CONFIG_FILES=plug-ins/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|