diff --git a/ChangeLog b/ChangeLog index 2eda9d62f8..e0274fd21e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-12-16 Sven Neumann + + * plug-ins/common/plugin-defs.pl + * plug-ins/common/Makefile.am: re-added psd-load. Looks like Bill + accidentally removed it. + 2007-12-16 Sven Neumann * libgimpwidgets/gimpcairo-utils.[ch]: added new function diff --git a/plug-ins/common/Makefile.am b/plug-ins/common/Makefile.am index fce0e851d6..2f2d5672dd 100644 --- a/plug-ins/common/Makefile.am +++ b/plug-ins/common/Makefile.am @@ -133,6 +133,7 @@ libexec_PROGRAMS = \ $(POPPLER) \ postscript \ procedure-browser \ + psd-load \ psd-save \ $(PSP) \ randomize \ @@ -1729,6 +1730,22 @@ procedure_browser_LDADD = \ $(RT_LIBS) \ $(INTLLIBS) +psd_load_SOURCES = \ + psd-load.c + +psd_load_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimpmodule) \ + $(libgimp) \ + $(libgimpmath) \ + $(libgimpconfig) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + psd_save_SOURCES = \ psd-save.c diff --git a/plug-ins/common/plugin-defs.pl b/plug-ins/common/plugin-defs.pl index 4469c26986..5d4187a142 100644 --- a/plug-ins/common/plugin-defs.pl +++ b/plug-ins/common/plugin-defs.pl @@ -96,6 +96,7 @@ 'poppler' => { ui => 1, optional => 1, cflags => 1 }, 'postscript' => { ui => 1 }, 'procedure-browser' => { ui => 1 }, + 'psd-load' => { ui => 1 }, 'psd-save' => { ui => 1 }, 'psp' => { ui => 1, optional => 1, libopt => 'z' }, 'randomize' => { ui => 1 },