3 # Process this file with autoconf to produce a configure script.
7 AC_INIT([murphy], m4_esyscmd([build-aux/git-version-gen .tarball-version]))
9 AC_CONFIG_SRCDIR([src])
10 AC_CONFIG_MACRO_DIR([m4])
11 AC_CONFIG_HEADER([src/config.h])
12 AM_INIT_AUTOMAKE([-Wno-portability])
14 AC_SUBST(ACLOCAL_AMFLAGS, "-I m4")
16 m4_define(version_major, `echo $VERSION | cut -d. -f1 | cut -d- -f1`)
17 m4_define(version_minor, `echo $VERSION | cut -d. -f2 | cut -d- -f1`)
18 m4_define(version_patch, `echo $VERSION | cut -d. -f3 | cut -d- -f1`)
21 AC_SUBST(VERSION_MAJOR, version_major)
22 AC_SUBST(VERSION_MINOR, version_minor)
23 AC_SUBST(VERSION_PATCH, version_patch)
24 AC_SUBST(VERSION_FULL, version_major.version_minor.version_patch)
26 MURPHY_VERSION_INFO="0:0:0"
27 AC_SUBST(MURPHY_VERSION_INFO)
29 # Disable static libraries.
32 # Checks for programs.
35 # We need AC_PROG_CXX if Qt support is enabled but (at least some
36 # versions of autotools) cannot handle conditional use of this.
47 # Check that we have flex/bison and not lex/yacc.
48 AC_MSG_CHECKING([for flex vs. lex])
51 AC_MSG_ERROR([looks like you're missing flex])
54 AC_MSG_RESULT([ok, looks like we have flex])
57 AC_MSG_ERROR([flex is required])
61 AC_MSG_CHECKING([for bison vs. yacc])
64 AC_MSG_ERROR([looks like you're missing bison])
67 AC_MSG_RESULT([ok, looks like we have bison])
70 AC_MSG_ERROR([bison is required])
74 # Guesstimate native compiler if we're cross-compiling.
75 if test "$cross_compiling" != "no"; then
76 AC_MSG_NOTICE([Looks like we're being cross-compiled...])
77 if test -z "$CC_FOR_BUILD"; then
81 AC_MSG_NOTICE([Looks like we're doing a native compilation...])
84 AC_SUBST(CC_FOR_BUILD)
85 UNSHAVED_CC_FOR_BUILD="$CC_FOR_BUILD"
87 # Make first invocation of PKG_CHECK_MODULES 'if-then-else-fi'-safe.
90 # Checks for libraries.
91 AC_CHECK_LIB([dl], [dlopen dlclose dlsym dlerror])
93 # Checks for header files.
95 AC_CHECK_HEADERS([fcntl.h stddef.h stdint.h stdlib.h string.h sys/statvfs.h sys/vfs.h syslog.h unistd.h])
97 # Checks for typedefs, structures, and compiler characteristics.
107 AC_CHECK_MEMBERS([struct stat.st_rdev])
112 AC_CHECK_TYPES([ptrdiff_t])
114 # Checks for library functions.
115 AC_FUNC_ERROR_AT_LINE
117 if test "$cross_compiling" = "no"; then
121 AC_CHECK_FUNCS([clock_gettime memmove memset regcomp strcasecmp strchr strdup strrchr strtol strtoul])
123 # Check and enable extra compiler warnings if they are supported.
124 AC_ARG_ENABLE(extra-warnings,
125 [ --enable-extra-warnings enable extra compiler warnings],
126 [extra_warnings=$enableval], [extra_warnings=auto])
129 warncflags="-Wall -Wextra"
130 if test "$extra_warnings" != "no"; then
131 save_CPPFLAGS="$CPPFLAGS"
132 for opt in $warncflags; do
133 AC_PREPROC_IFELSE([AC_LANG_PROGRAM([])],
134 [WARNING_CFLAGS="$WARNING_CFLAGS $opt"])
136 CPPFLAGS="$save_CPPFLAGS"
139 AC_SUBST(WARNING_CFLAGS)
141 # By default try to find the system default Lua (assumed to be
142 # called lua(.pc). If that is not found, try to look for
143 # packages lua5.2 and lua5.1, which can be found in Debian-based
146 # You can override this using the --with-lua option. For instance
147 # to use Lua 5.1 on Ubuntu while having 5.2 installed, you'd use
150 [ --with-lua build with specified Lua (pkgconfig filename without .pc suffix)],
151 [with_lua=$withval], [with_lua=default])
153 if test "x$with_lua" = "xdefault"; then
154 # Check for "lua" first, then "lua5.2" and finally for "lua5.1"
155 AC_MSG_NOTICE([Checking for an installed Lua...])
156 PKG_CHECK_MODULES([LUA], [lua >= 5.1.1],
158 [PKG_CHECK_MODULES([LUA52], [lua5.2],
160 LUA_CFLAGS=$LUA52_CFLAGS
161 LUA_LIBS=$LUA52_LIBS],
162 [PKG_CHECK_MODULES([LUA51], [lua5.1 >= 5.1.1],
164 LUA_CFLAGS=$LUA51_CFLAGS
165 LUA_LIBS=$LUA51_LIBS],
166 [AC_MSG_ERROR(Package requirement (lua >= 5.1.1) was not met!)])
170 # Check for pre-defined Lua.
171 AC_MSG_NOTICE([Compiling with Lua package $with_lua.])
172 PKG_CHECK_MODULES(LUA, $with_lua >= 5.1.1)
178 # Check if potentially GPL bits are allowed to be enabled.
180 [ --enable-gpl enable linking against GPL code],
181 [enable_gpl=$enableval], [enable_gpl=no])
183 # Check if original libdbus-based DBUS support was enabled.
184 AC_ARG_ENABLE(libdbus,
185 [ --enable-libdbus enable libdbus-based D-BUS support],
186 [enable_libdbus=$enableval], [enable_libdbus=no])
188 if test "$enable_libdbus" = "yes"; then
189 if test "$enable_gpl" = "no"; then
190 AC_MSG_ERROR([libdbus D-Bus support requires the --enable-gpl option.])
192 PKG_CHECK_MODULES(LIBDBUS, dbus-1 >= 0.70)
194 DBUS_SESSION_DIR="`pkg-config --variable session_bus_services_dir dbus-1`"
195 AC_SUBST(DBUS_SESSION_DIR)
197 AC_DEFINE([LIBDBUS_ENABLED], 1, [Enable libdbus D-Bus support ?])
199 AC_MSG_NOTICE([libdbus-based D-Bus support is disabled.])
202 AM_CONDITIONAL(LIBDBUS_ENABLED, [test "$enable_libdbus" = "yes"])
203 AC_SUBST(LIBDBUS_ENABLED)
204 AC_SUBST(LIBDBUS_CFLAGS)
205 AC_SUBST(LIBDBUS_LIBS)
207 # Check if systemd-bus-based D-Bus support was enabled.
209 [ --enable-sdbus enable systemd-based D-BUS support],
210 [enable_sdbus=$enableval], [enable_sdbus=no])
212 if test "$enable_sdbus" = "yes"; then
213 PKG_CHECK_MODULES(SDBUS, libsystemd-bus)
214 AC_DEFINE([SDBUS_ENABLED], 1, [Enable systemd-bus support ?])
216 if test -z "$DBUS_SESSION_DIR"; then
217 # Try to determine the session bus service directory.
218 DBUS_SESSION_DIR="`pkg-config --variable \
219 session_bus_services_dir dbus-1`"
220 if test "$?" != "0" -o -z "$DBUS_SESSION_DIR"; then
221 DBUS_SESSION_DIR="/usr/share/dbus-1/services"
223 AC_SUBST(DBUS_SESSION_DIR)
226 AC_MSG_NOTICE([libsystemd-bus based D-Bus support is disabled.])
229 AM_CONDITIONAL(SDBUS_ENABLED, [test "$enable_sdbus" = "yes"])
230 AC_SUBST(SDBUS_ENABLED)
231 AC_SUBST(SDBUS_CFLAGS)
234 # Check if PulseAudio mainloop support was enabled.
236 [ --enable-pulse enable PulseAudio mainloop support],
237 [enable_pulse=$enableval], [enable_pulse=auto])
239 if test "$enable_pulse" != "no"; then
240 PKG_CHECK_MODULES(PULSE, libpulse >= 0.9.22,
241 [have_pulse=yes], [have_pulse=no])
242 if test "$have_pulse" = "no" -a "$enable_pulse" = "yes"; then
243 AC_MSG_ERROR([PulseAudio development libraries not found.])
246 if test "$enable_gpl" = "no"; then
247 if test "$enable_pulse" = "yes"; then
248 AC_MSG_ERROR([PulseAudio support requires the --enable-gpl option.])
253 enable_pulse="$have_pulse"
256 AC_MSG_NOTICE([PulseAudio mainloop support is disabled.])
259 if test "$enable_pulse" = "yes"; then
260 AC_DEFINE([PULSE_ENABLED], 1, [Enable PulseAudio mainloop support ?])
262 AM_CONDITIONAL(PULSE_ENABLED, [test "$enable_pulse" = "yes"])
263 AC_SUBST(PULSE_ENABLED)
264 AC_SUBST(PULSE_CFLAGS)
267 # Check if EFL/ecore mainloop support was enabled.
269 [ --enable-ecore enable EFL/ecore mainloop support],
270 [enable_ecore=$enableval], [enable_ecore=auto])
273 if test "$enable_ecore" != "no"; then
274 # We are using features which are present only at ecore 1.2 onwards.
275 PKG_CHECK_MODULES(ECORE, ecore >= 1.2,
276 [have_ecore=yes], [have_ecore=no])
277 if test "$have_ecore" = "no" -a "$enable_ecore" = "yes"; then
278 AC_MSG_ERROR([EFL/ecore development libraries not found.])
281 enable_ecore="$have_ecore"
283 AC_MSG_NOTICE([EFL/ecore mainloop support is disabled.])
286 if test "$enable_ecore" = "yes"; then
287 AC_DEFINE([ECORE_ENABLED], 1, [Enable EFL/ecore mainloop support ?])
289 AM_CONDITIONAL(ECORE_ENABLED, [test "$enable_ecore" = "yes"])
290 AC_SUBST(ECORE_ENABLED)
291 AC_SUBST(ECORE_CFLAGS)
294 # Check if glib mainloop support was enabled.
296 [ --enable-glib enable glib mainloop support],
297 [enable_glib=$enableval], [enable_glib=auto])
299 if test "$enable_glib" != "no"; then
300 PKG_CHECK_MODULES(GLIB, glib-2.0,
301 [have_glib=yes], [have_glib=no])
302 if test "$have_glib" = "no" -a "$enable_glib" = "yes"; then
303 AC_MSG_ERROR([glib development libraries not found.])
306 enable_glib="$have_glib"
308 AC_MSG_NOTICE([glib mainloop support is disabled.])
311 if test "$enable_glib" = "yes"; then
312 AC_DEFINE([GLIB_ENABLED], 1, [Enable glib mainloop support ?])
314 AM_CONDITIONAL(GLIB_ENABLED, [test "$enable_glib" = "yes"])
315 AC_SUBST(GLIB_ENABLED)
316 AC_SUBST(GLIB_CFLAGS)
319 # Check if qt mainloop support was enabled.
321 [ --enable-qt enable qt mainloop support],
322 [enable_qt=$enableval], [enable_qt=auto])
324 if test "$enable_qt" != "no"; then
325 PKG_CHECK_MODULES(QTCORE, QtCore,
326 [have_qt=yes], [have_qt=no])
327 if test "$have_qt" = "no" -a "$enable_qt" = "yes"; then
328 AC_MSG_ERROR([Qt(Core) development libraries not found.])
333 AC_MSG_NOTICE([Qt mainloop support is disabled.])
336 if test "$enable_qt" = "yes"; then
337 AC_DEFINE([QT_ENABLED], 1, [Enable qt mainloop support ?])
338 QT_MOC="`pkg-config --variable moc_location QtCore`"
341 AM_CONDITIONAL(QT_ENABLED, [test "$enable_qt" = "yes"])
343 AC_SUBST(QTCORE_CFLAGS)
344 AC_SUBST(QTCORE_LIBS)
346 # Check if building murphy-console was enabled.
347 AC_ARG_ENABLE(console,
348 [ --enable-console build Murphy console],
349 [enable_console=$enableval], [enable_console=yes])
351 if test "$enable_console" = "no"; then
352 AC_MSG_NOTICE([Murphy console binary is disabled.])
354 AC_MSG_NOTICE([Murphy console binary is enabled.])
357 if test "$enable_console" = "yes"; then
358 AC_DEFINE([CONSOLE_ENABLED], 1, [Build Murphy console ?])
360 AM_CONDITIONAL(CONSOLE_ENABLED, [test "$enable_console" = "yes"])
361 AC_SUBST(CONSOLE_ENABLED)
362 AC_SUBST(READLINE_CFLAGS)
363 AC_SUBST(READLINE_LIBS)
365 # Check for json(-c).
366 PKG_CHECK_MODULES(JSON, [json], [have_json=yes], [have_json=no])
368 if test "$have_json" = "no"; then
369 PKG_CHECK_MODULES(JSON, [json-c >= 0.11])
372 AC_MSG_CHECKING([if json-c has headers under json-c include path])
373 saved_CFLAGS="$CFLAGS"
375 CFLAGS="${JSON_CFLAGS}"
379 [[#include <../json-c/json.h>]],
381 [json_include_jsonc=yes],
382 [json_include_jsonc=no])
383 AC_MSG_RESULT([$json_include_jsonc])
384 CFLAGS="$saved_CFLAGS"
387 if test "$json_include_jsonc" = "yes"; then
388 AC_DEFINE([JSON_INCLUDE_PATH_JSONC], 1, [json headers under json-c ?])
391 AC_MSG_CHECKING([for json_tokener_get_error()])
392 saved_CFLAGS="$CFLAGS"
394 CFLAGS="${JSON_CFLAGS}"
398 [[#include <json.h>]],
399 [[json_tokener *tok = NULL;
400 if (json_tokener_get_error(tok) != json_tokener_success)
404 [have_json_tokener_get_error=yes],
405 [have_json_tokener_get_error=no])
406 AC_MSG_RESULT([$have_json_tokener_get_error])
407 CFLAGS="$saved_CFLAGS"
410 if test "$have_json_tokener_get_error" = "yes"; then
411 AC_DEFINE([HAVE_JSON_TOKENER_GET_ERROR], 1, [json_tokener_get_error ?])
414 # Check if websocket support was/can be enabled.
417 # Check if SMACK support should be enabled.
419 [ --enable-smack enable SMACK support],
420 [enable_smack=$enableval], [enable_smack=auto])
422 if test "$enable_smack" != "no"; then
423 PKG_CHECK_MODULES(SMACK, libsmack, [have_smack=yes], [have_smack=no])
424 if test "$have_smack" = "no" -a "$enable_smack" = "yes"; then
425 AC_MSG_ERROR([SMACK development libraries not found.])
428 enable_smack="$have_smack"
430 AC_MSG_NOTICE([SMACK support is disabled.])
433 if test "$enable_smack" = "yes"; then
434 AC_DEFINE([SMACK_ENABLED], 1, [Enable SMACK support ?])
436 AM_CONDITIONAL(SMACK_ENABLED, [test "$enable_smack" = "yes"])
437 AC_SUBST(SMACK_ENABLED)
438 AC_SUBST(SMACK_CFLAGS)
441 # Check if systemd support should be enabled.
442 AC_ARG_ENABLE(systemd,
443 [ --enable-systemd enable systemd support],
444 [enable_systemd=$enableval], [enable_systemd=auto])
446 if test "$enable_systemd" != "no"; then
447 PKG_CHECK_MODULES(SYSTEMD, libsystemd-journal libsystemd-daemon,
448 [have_systemd=yes], [have_systemd=no])
449 if test "$have_systemd" = "no" -a "$enable_systemd" = "yes"; then
450 AC_MSG_ERROR([systemd development libraries not found.])
453 enable_systemd="$have_systemd"
455 AC_MSG_NOTICE([systemd support is disabled.])
458 if test "$enable_systemd" = "yes"; then
459 AC_DEFINE([SYSTEMD_ENABLED], 1, [Enable systemd support ?])
461 AM_CONDITIONAL(SYSTEMD_ENABLED, [test "$enable_systemd" = "yes"])
462 AC_SUBST(SYSTEMD_ENABLED)
463 AC_SUBST(SYSTEMD_CFLAGS)
464 AC_SUBST(SYSTEMD_LIBS)
466 # Set up murphy CFLAGS and LIBS.
469 AC_SUBST(MURPHY_CFLAGS)
470 AC_SUBST(MURPHY_LIBS)
472 # Allow substitution for LIBDIR and SYSCONFDIR.
473 AC_MSG_CHECKING([libdir])
474 AC_MSG_RESULT([$libdir])
475 AC_SUBST(LIBDIR, [$libdir])
476 AC_MSG_CHECKING([sysconfdir])
477 AC_MSG_RESULT([$sysconfdir])
478 AC_SUBST(SYSCONFDIR, [$sysconfdir])
480 #Check whether we build resources or not
481 AC_ARG_WITH(resources,
482 [ --with-resources wheter to build resource management support],
483 [with_resources=$withval],[with_resources=yes])
485 AM_CONDITIONAL(BUILD_RESOURCES, [ test x$with_resources = "xyes" ])
488 # Check which plugins should be disabled.
489 AC_ARG_WITH(disabled-plugins,
490 [ --with-disabled-plugins=<plugin-list> specify which plugins to disable],
491 [disabled_plugins=$withval],[disabled_plugins=none])
493 # Check which plugins should be compiled as standalone DSOs.
494 AC_ARG_WITH(dynamic-plugins,
495 [ --with-dynamic-plugins=<plugin-list> specify which plugins compile as DSOs],
496 [dynamic_plugins=$withval],[dynamic_plugins=none])
498 all_plugins=$(find src/plugins/. -name plugin-*.c 2>/dev/null | \
499 sed 's#^.*/plugin-##g;s#\.c$##g' | tr '\n' ' ')
501 #echo "all plugins: [$all_plugins]"
503 case $dynamic_plugins in
504 all) dynamic_plugins="$all_plugins";;
505 none) dynamic_plugins="";;
511 for plugin in $all_plugins; do
514 for p in ${dynamic_plugins//,/ }; do
515 if test "$plugin" = "$p"; then
520 for p in ${disabled_plugins//,/ }; do
521 if test "$plugin" = "$p"; then
527 internal) internal="$internal$it$plugin"; it=" ";;
528 external) external="$external$et$plugin"; et=" ";;
529 disabled) disabled="$disabled$dt$plugin"; dt=" ";;
533 DISABLED_PLUGINS="$disabled"
534 INTERNAL_PLUGINS="$internal"
535 EXTERNAL_PLUGINS="$external"
538 function check_if_disabled() {
539 for p in $DISABLED_PLUGINS; do
540 if test "$1" = "$p"; then
548 function check_if_internal() {
549 for p in $INTERNAL_PLUGINS; do
550 if test "$1" = "$p"; then
558 AM_CONDITIONAL(DISABLED_PLUGIN_TEST, [check_if_disabled test])
559 AM_CONDITIONAL(DISABLED_PLUGIN_DBUS, [check_if_disabled dbus])
560 AM_CONDITIONAL(DISABLED_PLUGIN_GLIB, [check_if_disabled glib])
561 AM_CONDITIONAL(DISABLED_PLUGIN_CONSOLE, [check_if_disabled console])
562 AM_CONDITIONAL(DISABLED_PLUGIN_RESOURCE_DBUS, [check_if_disabled resource-dbus])
563 AM_CONDITIONAL(DISABLED_PLUGIN_RESOURCE_WRT, [check_if_disabled resource-wrt])
564 AM_CONDITIONAL(DISABLED_PLUGIN_DOMAIN_CONTROL,
565 [check_if_disabled domain-control])
566 AM_CONDITIONAL(DISABLED_PLUGIN_SYSTEMD, [check_if_disabled systemd])
568 AM_CONDITIONAL(BUILTIN_PLUGIN_TEST, [check_if_internal test])
569 AM_CONDITIONAL(BUILTIN_PLUGIN_DBUS, [check_if_internal dbus])
570 AM_CONDITIONAL(BUILTIN_PLUGIN_GLIB, [check_if_internal glib])
571 AM_CONDITIONAL(BUILTIN_PLUGIN_CONSOLE, [check_if_internal console])
572 AM_CONDITIONAL(BUILTIN_PLUGIN_RESOURCE_DBUS, [check_if_internal resource-dbus])
573 AM_CONDITIONAL(BUILTIN_PLUGIN_RESOURCE_WRT, [check_if_internal resource-wrt])
574 AM_CONDITIONAL(BUILTIN_PLUGIN_DOMAIN_CONTROL,
575 [check_if_internal domain-control])
576 AM_CONDITIONAL(BUILTIN_PLUGIN_LUA, [check_if_internal lua])
577 AM_CONDITIONAL(BUILTIN_PLUGIN_SYSTEMD, [check_if_internal systemd])
579 # Check for Check (unit test framework).
580 PKG_CHECK_MODULES(CHECK,
582 [has_check="yes"], [has_check="no"])
583 AM_CONDITIONAL(HAVE_CHECK, test "x$has_check" = "xyes")
585 AC_SUBST(CHECK_CFLAGS)
588 if test "x$has_check" = "xno"; then
589 AC_MSG_WARN([Check framework not found, unit tests are DISABLED.])
592 # Check for documentation tools
593 AC_ARG_WITH([documentation],
594 [AS_HELP_STRING([--with-documentation],
595 [generate pdf, html and other doc files])],
597 [with_documentation=auto]
600 AS_IF( [ test x$with_documentation = xno ],
601 [ has_doc_tools="no" ],
602 [ AC_PATH_TOOL([MRP_DOXYGEN], doxygen)
603 AC_PATH_TOOL([MRP_LYX], lyx)
604 AC_PATH_TOOL([MRP_INKSCAPE], inkscape)
605 AC_PATH_TOOL([MRP_PYTHON], python)
606 AC_PATH_TOOL([MRP_TOUCH], touch)
607 AC_PATH_TOOL([MRP_DBLATEX], dblatex)
608 AC_PATH_TOOL([MRP_XMLTO], xmlto)
610 AS_IF( [ test x$MRP_DOXYGEN = x -o x$MRP_LYX = x -o \
611 x$MRP_INKSCAPE = x -o x$MRP_PYTHON = x -o \
613 [ has_doc_tools="no";
614 AC_MSG_WARN([Some essential doc-tool is missing]) ],
615 [ has_doc_tools="yes";
620 AS_IF( [ test x$has_doc_tools == "xno" -o x$MRP_DBLATEX = x ],
621 [ can_make_pdfs="no";
622 AC_WARN([No PDF documentation will be generated]) ],
623 [ can_make_pdfs="yes"]
626 AS_IF([ test x$has_doc_tools == "xno" -o x$MRP_XMLTO = x ],
627 [ can_make_html="no";
628 AC_WARN([No HTML documentation will be generated]) ],
629 [ can_make_html="yes" ]
633 AM_CONDITIONAL(BUILD_DOCUMENTATION, [ test x$has_doc_tools = "xyes" ])
634 AM_CONDITIONAL(BUILD_PDF_DOCUMENTS, [ test x$can_make_pdfs = "xyes" ])
635 AM_CONDITIONAL(BUILD_HTML_DOCUMENTS, [ test x$can_make_html = "xyes" ])
637 AC_SUBST(MRP_DOCDIR, [`pwd`/doc])
638 AC_SUBST(MRP_FIGDIR, [$MRP_DOCDIR/common/figures])
639 AC_SUBST(MRP_MAKE_DOCRULES, [$MRP_DOCDIR/Makefile.rules])
640 AC_SUBST(MRP_DOCSCRIPT_DIR, [$MRP_DOCDIR/scripts])
641 AC_SUBST(MRP_ABNF, [$MRP_DOCSCRIPT_DIR/abnf.py])
642 AC_SUBST(MRP_DBLYXFIX, [$MRP_DOCSCRIPT_DIR/dblyxfix.py])
643 AC_SUBST(MRP_DOXML2DB, [$MRP_DOCSCRIPT_DIR/doxml2db.py])
644 AC_SUBST(MRP_DOXYDEPS, [$MRP_DOCSCRIPT_DIR/doxydeps.py])
648 SHAVE_INIT([build-aux], [enable])
650 # Create murphy symlink to src.
651 if test ! -L murphy; then
652 AC_MSG_NOTICE([Symlinking src to murphy...])
657 AC_CONFIG_FILES([build-aux/shave
658 build-aux/shave-libtool
662 src/common/tests/Makefile
663 src/core/tests/Makefile
664 src/core/lua-decision/tests/Makefile
665 src/daemon/tests/Makefile
666 src/plugins/tests/Makefile
667 src/common/murphy-common.pc
668 src/common/murphy-libdbus.pc
669 src/common/murphy-dbus-libdbus.pc
670 src/common/murphy-dbus-sdbus.pc
671 src/common/murphy-pulse.pc
672 src/common/murphy-ecore.pc
673 src/common/murphy-glib.pc
674 src/common/murphy-qt.pc
675 src/core/murphy-core.pc
676 src/core/lua-utils/murphy-lua-utils.pc
677 src/core/lua-decision/murphy-lua-decision.pc
678 src/breedline/breedline.pc
679 src/breedline/breedline-murphy.pc
680 src/breedline/breedline-glib.pc
681 src/breedline/tests/Makefile
682 src/murphy-db/Makefile
683 src/murphy-db/mdb/Makefile
684 src/murphy-db/mqi/Makefile
685 src/murphy-db/mql/Makefile
686 src/murphy-db/include/Makefile
687 src/murphy-db/tests/Makefile
688 src/resolver/murphy-resolver.pc
689 src/resolver/tests/Makefile
690 src/plugins/domain-control/murphy-domain-controller.pc
692 doc/plugin-developer-guide/Makefile
693 doc/plugin-developer-guide/db/Makefile
694 doc/plugin-developer-guide/doxml/Makefile
695 src/plugins/resource-native/libmurphy-resource/murphy-resource.pc
700 # Display the configuration.
701 echo "----- configuration -----"
702 echo "Extra C warnings flags: $WARNING_CFLAGS"
703 echo "Cross-compiling: $cross_compiling"
704 if test "$cross_compiling" != "no"; then
705 echo " * native compiler: $UNSHAVED_CC_FOR_BUILD"
707 echo "Lua (pkgconfig file) to use: $with_lua"
708 echo " * cflags: $LUA_CFLAGS"
709 echo " * libs: $LUA_LIBS"
710 echo "D-Bus (libdbus) support: $enable_libdbus"
711 echo "D-Bus (systemd-bus) support: $enable_sdbus"
712 echo "PulseAudio mainloop support: $enable_pulse"
713 echo "EFL/ecore mainloop support: $enable_ecore"
714 echo "glib mainloop support: $enable_glib"
715 echo "Qt mainloop support: $enable_qt"
716 echo "Murphy console plugin and client: $enable_console"
717 echo "Resource management support: $with_resources"
718 echo "Websockets support: $enable_websockets"
719 echo "systemd support: $enable_systemd"
722 for plugin in ${INTERNAL_PLUGINS:-none}; do
726 for plugin in ${EXTERNAL_PLUGINS:-none}; do
730 for plugin in ${DISABLED_PLUGINS:-none}; do