[libxml++] Change the --enable-examples default to yes.



commit 73b5023c5c5d5a34f2e753e78c8cf6290995df66
Author: Murray Cumming <murrayc murrayc com>
Date:   Sun Nov 14 20:48:52 2010 +0100

    Change the --enable-examples default to yes.
    
    * configure.ac: Build the examples by default, so we at least check the
    build more often. Disabling them is only useful for package building,
    which is the less common case.

 ChangeLog    |    8 ++++++++
 configure.ac |    2 +-
 2 files changed, 9 insertions(+), 1 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index bd1e424..f7acf78 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2010-11-14  Murray Cumming  <murrayc murrayc com>
 
+	Change the --enable-examples default to yes.
+
+	* configure.ac: Build the examples by default, so we at least check the 
+	build more often. Disabling them is only useful for package building, 
+	which is the less common case.
+
+2010-11-14  Murray Cumming  <murrayc murrayc com>
+
 	Moved create_wrapper() and free_wrappers() to Node.
 
 	* libxml++/document.[h|cc]:
diff --git a/configure.ac b/configure.ac
index 2567bee..29f6a8f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,7 +33,7 @@ AC_ARG_ENABLE([examples],
         [AS_HELP_STRING([--enable-examples],
                 [build the examples])],
         [enable_examples=$enableval],
-        [enable_examples=no])
+        [enable_examples=yes])
 
 AM_CONDITIONAL([ENABLE_EXAMPLES], [test "x$enable_examples" = xyes])
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]