Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2007-06-06 15:20:21 (GMT)
committer Simon McVittie <simon.mcvittie@collabora.co.uk>2007-06-06 15:20:21 (GMT)
commit5e67fe7f4eb15f92585ef66b08655ddde49abd41 (patch)
tree2acc5d61b9f279a7ea030878a0121694eb5562cd /configure.ac
parent72ffc806b07d6bd0d3ba42d6dc2f55b798fc93af (diff)
Add autofoo to build a self-contained Presence Service
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac17
1 files changed, 17 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..ab0e187
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,17 @@
+AC_INIT([Sugar Presence Service],[0.65],[],[sugar-presence-service])
+
+AC_PREREQ([2.59])
+
+AC_CONFIG_MACRO_DIR([m4])
+AC_CONFIG_SRCDIR([src/sugar-presence-service])
+
+AM_INIT_AUTOMAKE([1.9 foreign dist-bzip2 no-dist-gzip])
+
+AM_PATH_PYTHON
+
+AC_CONFIG_FILES([
+ Makefile
+ src/Makefile
+])
+
+AC_OUTPUT