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.
This commit is contained in:
Emmanuele Bassi 2007-06-16 20:58:00 +00:00
parent 31efd346bd
commit 4172ce1fb2
3 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,9 @@
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

View File

@ -27,7 +27,10 @@
* 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"

View 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