diff options
author | lukefromdc <[email protected]> | 2023-08-09 07:17:27 -0400 |
---|---|---|
committer | Luke from DC <[email protected]> | 2023-08-12 19:08:16 +0000 |
commit | f5ba27007c359c933631d30dac4593c147c5e01e (patch) | |
tree | dfaa438a9cce81b5f56ec4bf981181d50e282ddd /configure.ac | |
parent | 757b4728baab9f96808e05ab3d7fc5341b57f11a (diff) | |
download | mate-utils-f5ba27007c359c933631d30dac4593c147c5e01e.tar.bz2 mate-utils-f5ba27007c359c933631d30dac4593c147c5e01e.tar.xz |
dictionary applet: allow building in-process
*This is needed for wayland support
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index cc820ecd..2587115e 100644 --- a/configure.ac +++ b/configure.ac @@ -206,6 +206,26 @@ AS_CASE([$enable_gdict_applet], AM_CONDITIONAL([BUILD_GDICT_APPLET], [test "x$enable_gdict_applet" = "xyes"]) +AC_ARG_ENABLE([in-process], + [AS_HELP_STRING([--enable-in-process], + [Build dictionary applet in-process])], + [enable_in_process=$enableval], + [enable_in_process=no]) + +# Automake conditional on whether to build dictionary applet in-process +AM_CONDITIONAL([ENABLE_IN_PROCESS], [test "x$enable_in_process" = "xyes"]) +AS_IF([test "x$enable_in_process" = "xyes"], + [AC_SUBST([APPLET_IN_PROCESS], [true])], + [AC_SUBST([APPLET_IN_PROCESS], [false])]) +# C conditional on whether to build in-process +AS_IF([test "x$enable_in_process" = "xyes"], + [AC_DEFINE([ENABLE_IN_PROCESS], [1], [building in-process])]) +# Convenience C define selecting the right applet factory +AS_IF([test "x$enable_in_process" = "xyes"], + [factory=MATE_PANEL_APPLET_IN_PROCESS_FACTORY], + [factory=MATE_PANEL_APPLET_OUT_PROCESS_FACTORY]) +AC_DEFINE_UNQUOTED([PANEL_APPLET_FACTORY], [$factory], [Panel applet factory]) + # Baobab checks PKG_CHECK_MODULES(LIBGTOP, libgtop-2.0 >= $LIBGTOP_REQUIRED) AC_SUBST(LIBGTOP_CFLAGS) @@ -411,5 +431,6 @@ mate-utils $VERSION configuration summary: API Reference (libmatedict) : $enable_gtk_doc Logview built with ZLib support : $msg_zlib Dictionary mate-panel applet : $enable_gdict_applet + Dictionary applet in-process : $enable_in_process Native Language support : ${USE_NLS} " |