This commit is contained in:
Maurits Rijk 2003-01-08 21:38:12 +00:00
parent c8751919f0
commit 9251579729
3 changed files with 233 additions and 391 deletions

View File

@ -1,3 +1,9 @@
2003-01-08 Maurits Rijk <lpeek.mrijk@consunet.nl>
* plug-ins/common/psd.c: removed MAX_LAYERS and MAX_GUIDES. Memory
is now allocated dynamically. Fixes #91282. MAX_CHANNELS is still set
to 30.
2003-01-08 Simon Budig <simon@gimp.or> 2003-01-08 Simon Budig <simon@gimp.or>
* tools/gimp-remote.c: Implemented a heuristics that tries to * tools/gimp-remote.c: Implemented a heuristics that tries to

File diff suppressed because it is too large Load Diff

View File

@ -26,10 +26,11 @@ VPATH = @srcdir@
prefix = @prefix@ prefix = @prefix@
exec_prefix = @exec_prefix@ exec_prefix = @exec_prefix@
datadir = $(prefix)/@DATADIRNAME@ datadir = @datadir@
localedir = $(datadir)/locale libdir = @libdir@
gnulocaledir = $(prefix)/share/locale localedir = $(libdir)/locale
gettextsrcdir = $(prefix)/share/glib-2.0/gettext/po gnulocaledir = $(datadir)/locale
gettextsrcdir = $(datadir)/glib-2.0/gettext/po
subdir = po subdir = po
INSTALL = @INSTALL@ INSTALL = @INSTALL@
@ -38,13 +39,10 @@ MKINSTALLDIRS = $(top_srcdir)/@MKINSTALLDIRS@
CC = @CC@ CC = @CC@
GENCAT = @GENCAT@ GENCAT = @GENCAT@
GMSGFMT = PATH=../src:$$PATH @GMSGFMT@ GMSGFMT = @GMSGFMT@
MSGFMT = @MSGFMT@ MSGFMT = @MSGFMT@
XGETTEXT = PATH=../src:$$PATH @XGETTEXT@ XGETTEXT = @XGETTEXT@
INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ MSGMERGE = msgmerge
INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
DEFS = @DEFS@ DEFS = @DEFS@
CFLAGS = @CFLAGS@ CFLAGS = @CFLAGS@
@ -197,7 +195,6 @@ dist distdir: update-po $(DISTFILES)
update-po: Makefile update-po: Makefile
$(MAKE) $(GETTEXT_PACKAGE).pot $(MAKE) $(GETTEXT_PACKAGE).pot
PATH=`pwd`/../src:$$PATH; \
cd $(srcdir); \ cd $(srcdir); \
catalogs='$(CATALOGS)'; \ catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \ for cat in $$catalogs; do \