libgimp: keep gimplegacy as introspectable, at least temporarily.

Recent commits broke the Python plug-ins again because the old API is
not introspected anymore. Of course, by release of GIMP 3, we should
probably remove this deprecated API from introspection. But first, we
have to figure out how and if the new API can be used in bindings.
This commit is contained in:
Jehan 2019-07-31 11:15:25 +02:00
parent 63695b4b21
commit 826c09b629
2 changed files with 8 additions and 2 deletions

View File

@ -107,7 +107,6 @@ libgimp_built_sources = \
gimpenums.c
libgimp_private_sources = \
gimplegacy.c \
gimpgpcompat.c \
gimpgpcompat.h \
gimpgpparams.c \

View File

@ -149,7 +149,14 @@ libgimp_introspectable = \
$(top_srcdir)/libgimp/gimpprogress.c \
$(top_srcdir)/libgimp/gimpprogress.h \
$(top_srcdir)/libgimp/gimpselection.c \
$(top_srcdir)/libgimp/gimpselection.h
$(top_srcdir)/libgimp/gimpselection.h \
\
$(top_srcdir)/libgimp/gimplegacy.c \
$(top_srcdir)/libgimp/gimplegacy.h
# Let's keep gimplegacy as introspectable until we figure out how to use
# the new GimpPlugIn API in bindings. TODO: remove later and put back
# into libgimp_private_sources.
libgimpui_introspectable = \
$(top_srcdir)/libgimp/gimpui.c \