mirror of https://github.com/GNOME/gimp.git
moved the gtk_set_locale call to after it's been inited
* app/main.c: moved the gtk_set_locale call to after it's been inited * app/paint_core.h: set skip for ToolFlags * app/procedural_db.h: don't skip PDB_TEMPORARY in PDBProcType * libgimp/Makefile.am: don't install stdplugins-intl.h, that's only for disted plugins * libgimp/gimpenums.h: is now autogenned * libgimp/gimpfeatures.h.in: #define for new enums * libgimp/gimpintl.h: #include <locale.h> * libgimp/stdplugins-intl.h: add include guards * plug-ins/AlienMap2/Makefile.am: add INTLLIBS * plug-ins/gflare/Makefile.am: removed unused libgimpui * plug-ins/script-fu/script-fu-console.c * plug-ins/script-fu/script-fu-scripts.c * plug-ins/script-fu/script-fu-server.c: use stdplugins-intl.h * plug-ins/sel2path/Makefile.am: removed unused libgck.la * tools/pdbgen/Makefile.am: removed script-fu.pl, added enumcode.pl * tools/pdbgen/lib.pl * tools/pdbgen/enumcode.pl: enumcode.pl now autogenned gimpenums.h as well as the script-fu stuff -Yosh
This commit is contained in:
parent
5f6d9e9ac5
commit
45cd1c9f3a
|
@ -37,12 +37,12 @@ pdb_sources = \
|
|||
EXTRA_DIST = \
|
||||
README \
|
||||
app.pl \
|
||||
enumcode.pl \
|
||||
enumgen.pl \
|
||||
groups.pl \
|
||||
lib.pl \
|
||||
pdb.pl \
|
||||
pdbgen.pl \
|
||||
script-fu.pl \
|
||||
stddefs.pdb \
|
||||
util.pl \
|
||||
$(pdb_sources)
|
||||
|
@ -112,12 +112,12 @@ stamp-app: $(srcdir)/app.pl $(pdb_scripts) $(pdb_sources)
|
|||
$(PERL) pdbgen.pl app \
|
||||
&& echo timestamp > $$rootme/stamp-app
|
||||
|
||||
stamp-script-fu: $(srcdir)/script-fu.pl enums.pl util.pl
|
||||
stamp-enum-code: $(srcdir)/enumcode.pl enums.pl util.pl
|
||||
rootme=`pwd`; \
|
||||
destdir=`cd $(top_srcdir)/plug-ins/script-fu && pwd`; export destdir; \
|
||||
destdir=`cd $(top_srcdir) && pwd`; export destdir; \
|
||||
cd $(srcdir) && \
|
||||
PDBGEN_BACKUP=$(PDBGEN_BACKUP) \
|
||||
$(PERL) script-fu.pl \
|
||||
&& echo timestamp > $$rootme/stamp-script-fu
|
||||
$(PERL) enumcode.pl \
|
||||
&& echo timestamp > $$rootme/stamp-enum-code
|
||||
|
||||
all-local: stamp-app stamp-script-fu
|
||||
all-local: stamp-app stamp-enum-code
|
||||
|
|
Loading…
Reference in New Issue