mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00
goat-exercises: fix vala build problem
Problem appeared on mac and also on debian unstable. This is autotools only as `--disable-since-check` is present in meson.build. Fix suggested by @nielsdg. ``` make[3]: Entering directory '/Users/distiller/.cache/jhbuild/build/gimp/extensions/goat-exercises' CC goat-exercise-c.o /Users/distiller/gtk/inst/bin/intltool-merge /Users/distiller/gtk/source/gimp/po-plug-ins org.gimp.extension.goat-exercises.metainfo.xml.in org.gimp.extension.goat-exercises.metainfo.xml -x -u -c ../../po-plug-ins/.intltool-merge-cache VALAC goat_exercise_vala_vala.stamp Generating and caching the translation database CCLD goat-exercise-c /Users/distiller/gtk/source/gimp/extensions/goat-exercises/goat-exercise-vala.vala:28.10-28.18: error: `Gimp.main' is not available in gimp-3.0 2.99.9. Use gimp-3.0 >= 3.0 return Gimp.main(typeof(Goat), args); ^^^^^^^^^ ```
This commit is contained in:
parent
3e697596fb
commit
5ad5f67ad0
1 changed files with 2 additions and 1 deletions
|
@ -116,7 +116,8 @@ goat_exercise_vala_LDADD = \
|
|||
goat_exercise_vala_VALAFLAGS = \
|
||||
--vapidir=$(abs_top_builddir)/libgimp \
|
||||
--pkg gimp-@GIMP_API_VERSION@ \
|
||||
--pkg gimp-ui-@GIMP_API_VERSION@
|
||||
--pkg gimp-ui-@GIMP_API_VERSION@ \
|
||||
--disable-since-check
|
||||
|
||||
endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue