X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=configure.ac;h=06bb494b7d16e8845ac24364cd23851e0f2eff09;hb=refs%2Fheads%2Flibpeas-plugins;hp=c888d09d023eb97db7853e979afcd6ea58cd8129;hpb=c10c22de041f1abb4550302930a90af19914f2a4;p=projects%2Fchimara%2Fchimara.git diff --git a/configure.ac b/configure.ac index c888d09..06bb494 100644 --- a/configure.ac +++ b/configure.ac @@ -122,6 +122,13 @@ PKG_CHECK_MODULES([PLAYER], [ gtk+-3.0 >= $GTK_REQUIRED_VERSION gmodule-2.0 ]) +# Libraries needed to build interpreter plugins +PKG_CHECK_MODULES([PLUGIN], [ + glib-2.0 dnl Any version will do + gtk+-3.0 + libpeas-1.0 + libpeas-gtk-1.0 +]) # Libraries needed to build test programs PKG_CHECK_MODULES([TEST], [ gtk+-3.0 >= $GTK_REQUIRED_VERSION @@ -150,7 +157,7 @@ AS_IF([$TEST "x$with_gstreamer" != xno], [ # Plugin flags; include '-module' in each Makefile.am, because AC_SUBSTed # variables are black boxes to Automake, so it has to know about it being a # module in the makefile itself. -PLUGIN_LIBTOOL_FLAGS='-avoid-version -shared -export-symbols-regex "^glk"' +PLUGIN_LIBTOOL_FLAGS='-avoid-version -shared -export-symbols-regex "(^glk|peas_register_types)"' AC_SUBST(PLUGIN_LIBTOOL_FLAGS) ### OUTPUT ####################################################################