gimp-help-2 r2633 - trunk



Author: romanofski
Date: Fri Dec 19 16:33:17 2008
New Revision: 2633
URL: http://svn.gnome.org/viewvc/gimp-help-2?rev=2633&view=rev

Log:

2008-12-19  Roman Joost  <romanofski gimp org>

	* configure.ac: fixed autogen error, because of a missing
	AM_CONDITIONAL (GIMP_HELP_BUILD)


Modified:
   trunk/ChangeLog
   trunk/configure.ac

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac	(original)
+++ trunk/configure.ac	Fri Dec 19 16:33:17 2008
@@ -52,6 +52,16 @@
 AC_SUBST(QUICKREFERENCE_ALL_LINGUAS)
 
 
+#  The build of the HTML files is optional.
+
+AC_ARG_ENABLE(build,
+              AS_HELP_STRING([--disable-build],
+                             [don't build the HTML files (needs xsltproc)]),
+              , enable_build=yes)
+
+AM_CONDITIONAL(GIMP_HELP_BUILD, test "x$enable_build" = "xyes")
+
+
 #  Check for GNU make.
 
 AC_MSG_CHECKING([whether ${MAKE-make} is GNU make])
@@ -201,7 +211,7 @@
 AC_PATH_PROG(PNGNQ, pngnq)
 if test -z "$PNGNQ"; then
   AC_MSG_WARN([cannot find pngnq(1),
-Images are not optimized during distribution creation])
+Images will not be optimized during distribution creation])
 fi
 
 
@@ -209,7 +219,7 @@
 AC_PATH_PROG(PNGCRUSH, pngcrush)
 if test -z "$PNGCRUSH"; then
   AC_MSG_WARN([cannot find pngcrush(1),
-Images are not optimized during distribution creation])
+Images will not be optimized during distribution creation])
 fi
 
 AM_CONDITIONAL(HAVE_PNGOPTIMIZERS, test -n "$PNGNQ" && test -n "$PNGCRUSH")



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