summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorSebastien Estienne <sebastien.estienne@gmail.com>2005-10-02 00:13:49 +0000
committerSebastien Estienne <sebastien.estienne@gmail.com>2005-10-02 00:13:49 +0000
commitc69a69f7b314aaa4b1fb265232ae420d076ad245 (patch)
tree7e5f47a6e30458ec393319fb5a7dc767eab5eb42 /configure.ac
parent693768da1faf295fd580bd4b2acfdef958daa0c0 (diff)
* remove support for shell scripts (too dangerous)
* add support for python modules for servicetype's actions (not finnished) git-svn-id: file:///home/lennart/svn/public/service-discovery-applet/trunk@23 3be567f1-68ff-0310-b24a-ad7cc433fd2f
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
1 files changed, 9 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 7e6ea22..8dfeaed 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ(2.59)
-AC_INIT([service-discovery-applet],[0.1],[sebastien (dot) estienne (at) gmail (dot) com])
+AC_INIT([service-discovery-applet],[0.2],[sebastien (dot) estienne (at) gmail (dot) com])
AC_CONFIG_SRCDIR([src/service-discovery-applet.in])
AM_INIT_AUTOMAKE([foreign 1.9 -Wall])
AC_CONFIG_MACRO_DIR([common])
@@ -25,6 +25,12 @@ SCRIPTSDIR="${datadir}/${PACKAGE}/scripts/"
AC_SUBST(SCRIPTSDIR)
dnl ========================================================
+dnl Directory where services' actions will be installed
+dnl ========================================================
+ACTIONSDIR="${datadir}/${PACKAGE}/actions/"
+AC_SUBST(ACTIONSDIR)
+
+dnl ========================================================
dnl Directory where services' icons will be installed
dnl ========================================================
ICONSDIR="${datadir}/${PACKAGE}/icons/"
@@ -51,6 +57,8 @@ AC_CONFIG_FILES([
schemas/Makefile
scripts/Makefile
servers/Makefile
+ actions/Makefile
+ actions/services/Makefile
src/Makefile
])
AC_OUTPUT