* configure.ac: s/with_swilena/enable_swilena/.
(ENABLE_SWILENA): Adjust conditional.
---
ChangeLog | 7 +++++++
configure.ac | 6 ++----
2 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index d64a04d..494377a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2009-05-11 Roland Levillain <roland(a)lrde.epita.fr>
+ Use more canonical names to handle the configuration of Swilena.
+
+ * configure.ac: s/with_swilena/enable_swilena/.
+ (ENABLE_SWILENA): Adjust conditional.
+
+2009-05-11 Roland Levillain <roland(a)lrde.epita.fr>
+
Make Milena tools (milena/tools/) optional.
* configure.ac: Add option `--enable-tools'.
diff --git a/configure.ac b/configure.ac
index 7b0aacb..48a849c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -130,11 +130,9 @@ AC_CONFIG_SUBDIRS([external/trimesh])
## Swilena. ##
## --------- ##
-OLN_WITH_SWILENA([with_swilena=yes], [with_swilena=no])
-AM_CONDITIONAL([ENABLE_SWILENA], [test x$with_swilena = xyes])
+OLN_WITH_SWILENA([enable_swilena=yes], [])
+AM_CONDITIONAL([ENABLE_SWILENA], [test x$enable_swilena = xyes])
-# FIXME: Should we still configure these files if ENABLE_SWILENA is
-# false?
AC_CONFIG_FILES([swilena/Makefile
swilena/python/Makefile])
--
1.6.1.2