2007-06-16 Emmanuele Bassi <ebassi@openedhand.com>
authorEmmanuele Bassi <ebassi@openedhand.com>
Sat, 16 Jun 2007 20:58:00 +0000 (20:58 +0000)
committerEmmanuele Bassi <ebassi@openedhand.com>
Sat, 16 Jun 2007 20:58:00 +0000 (20:58 +0000)
* configure.ac: Partially revert last commit, and fail
with AC_MSG_ERROR() instead of disabling the manual build
if no jw and xmlto were found.

ChangeLog
clutter/clutter-actor.c
configure.ac

index bbca959..fb28b5f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2007-06-16  Emmanuele Bassi  <ebassi@openedhand.com>
 
+       * configure.ac: Partially revert last commit, and fail
+       with AC_MSG_ERROR() instead of disabling the manual build
+       if no jw and xmlto were found.
+
+2007-06-16  Emmanuele Bassi  <ebassi@openedhand.com>
+
        * configure.ac: If the programs required to build the manual
        are not found and --enable-manual was passed, then just print
        a warning and disable the manual build instead of aborting the
index e6bbbbf..0fc5755 100644 (file)
  * SECTION:clutter-actor
  * @short_description: Base abstract class for all visual stage actors. 
  * 
- * #ClutterActor is a base abstract class for all visual elements. 
+ * #ClutterActor is a base abstract class for all visual elements on the
+ * stage. Every object that must appear on the main #ClutterStage must also
+ * be a #ClutterActor, either by using one of the classes provided by
+ * Clutter, or by implementing a new #ClutterActor subclass.
  */
 
 #include "config.h"
index 7262f36..1f876cd 100644 (file)
@@ -265,14 +265,12 @@ AC_ARG_ENABLE(manual,
 if test "x$enable_manual" = "xyes"; then
   AC_PATH_PROG(JW, jw, no)
   if test "x$JW" = "xno"; then
-    AC_MSG_WARN(['jw' program not found in path, disabling manual])
-    enable_manual=no
+    AC_MSG_ERROR(['jw' program needed by the manual not found in path])
   fi
 
   AC_PATH_PROG(XMLTO, xmlto, no)
   if test "x$XMLTO" = "xno"; then
-    AC_MSG_WARN(['xmlto' program not found in path, disabling manual])
-    enable_manual=no
+    AC_MSG_ERROR(['xmlto' program needed by the manual not found in path])
   fi
 fi