diff options
author | Stefano Karapetsas <[email protected]> | 2013-10-14 11:29:20 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-10-14 11:29:20 +0200 |
commit | ec93204903c42507208980884aed506d73bfa555 (patch) | |
tree | 4d52f896822d83f95c23919d2813daf5049ad946 /configure.ac | |
parent | d3d4666dd7b74567e39ee0428bebba16e3065950 (diff) | |
download | mate-desktop-ec93204903c42507208980884aed506d73bfa555.tar.bz2 mate-desktop-ec93204903c42507208980884aed506d73bfa555.tar.xz |
Add autotools stuff for mpaste script
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 6a731e7..abff60a 100644 --- a/configure.ac +++ b/configure.ac @@ -92,6 +92,14 @@ AC_ARG_ENABLE([mate-conf-import], [enable_mate_conf_import=yes],[enable_mate_conf_import=no]) AM_CONDITIONAL(MATE_CONF_IMPORT_ENABLED, test "x$enable_mate_conf_import" = "xyes") + +# Install tool to paste text to paste.mate-desktop.org +AC_ARG_ENABLE([mpaste], + [AS_HELP_STRING([--enable-mpaste],[install mpaste tool])], + [enable_mpaste=yes],[enable_mpaste=no]) +AM_CONDITIONAL(MPASTE_ENABLED, test "x$enable_mpaste" = "xyes") + + # Path to the pnp.ids file -- to know if we use one shipped with another # package, or an internal file @@ -360,6 +368,7 @@ mate-desktop $VERSION `echo mate-desktop $VERSION | sed "s/./=/g"` Build desktop-wide docs: ${enable_desktop_docs} Build user guide: ${enable_user_guide} Install mate-conf-import: ${enable_mate_conf_import} + Install mpaste: ${enable_mpaste} Use external pnp.ids: ${EXTERNAL_PNP_IDS} Startup notification support: ${have_startup_notification} XRandr support: ${have_randr} |