diff options
author | info-cppsp <[email protected]> | 2018-03-03 10:20:48 +0100 |
---|---|---|
committer | lukefromdc <[email protected]> | 2018-03-08 22:58:37 -0500 |
commit | 34bc99e0565e5a87af2fc3f7e6ca4b823e29209f (patch) | |
tree | 7d3956ee11b93ff9565a9ce82302e8cd0195138d /configure.ac | |
parent | 78ab99a59de7db82ee1eb3814974075a71b44fa5 (diff) | |
download | mate-sensors-applet-34bc99e0565e5a87af2fc3f7e6ca4b823e29209f.tar.bz2 mate-sensors-applet-34bc99e0565e5a87af2fc3f7e6ca4b823e29209f.tar.xz |
Add dummy plugin
Allows testing in a virtual machine.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index abf9177..9ea48dc 100644 --- a/configure.ac +++ b/configure.ac @@ -70,6 +70,19 @@ AC_SUBST(CAIRO_CFLAGS) AC_SUBST(CAIRO_LIBS) +# enable dummy plugin for debug +AC_ARG_ENABLE(dummyplugin, + AS_HELP_STRING([--enable-dummyplugin], + [Enable dummy plugin for debug.]), + enable_dummyplugin=$enableval, enable_dummyplugin="no") + +if test "x$enable_dummyplugin" = "xyes" ; then + echo "Enabling dummy plugin support" +fi + +# use same test as above, because AM_CONDITIONAL may not be in if/else +AM_CONDITIONAL(DUMMYPLUGIN, test "x$enable_dummyplugin" = "xyes") + # enable support for udisks2 (via dbus) by default if its available AC_ARG_ENABLE(udisks2, AS_HELP_STRING([--disable-udisks2], @@ -80,7 +93,7 @@ if test "x$enable_udisks2" = "xno" ; then echo "Disabling udisks2 support" fi -# use same test as above, bc AM_CONDITIONAL may not be in if/else +# use same test as above, because AM_CONDITIONAL may not be in if/else AM_CONDITIONAL(UDISKS2, test "x$enable_udisks2" = "xyes") # support for libnotify @@ -257,6 +270,7 @@ AC_CONFIG_FILES([ lib/Makefile plugins/Makefile plugins/acpi/Makefile + plugins/dummy/Makefile plugins/udisks2/Makefile plugins/hddtemp/Makefile plugins/i2c-proc/Makefile |