From 45cd1c9f3a485c02c4e65e11027277478e82c653 Mon Sep 17 00:00:00 2001 From: Manish Singh Date: Sat, 25 Sep 1999 01:59:42 +0000 Subject: [PATCH] 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 * 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 --- tools/pdbgen/Makefile.am | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/pdbgen/Makefile.am b/tools/pdbgen/Makefile.am index 883d898d93..b9f56ea845 100644 --- a/tools/pdbgen/Makefile.am +++ b/tools/pdbgen/Makefile.am @@ -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