bonobo configure



Whoever changed configure.in the last has a few problems with
understanding how m4 works.  The following patch should fix the
problem.

2000-02-20  Ulrich Drepper  <drepper@redhat.com>

	* configure.in: Remove [ ] quoting around AC_MSG_WARN calls.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Index: configure.in
===================================================================
RCS file: /cvs/gnome/bonobo/configure.in,v
retrieving revision 1.61
diff -u -u -r1.61 configure.in
--- configure.in	2000/02/20 01:58:29	1.61
+++ configure.in	2000/02/20 19:24:03
@@ -30,7 +30,7 @@
 
 dnl check for libuuid
 lib_uuid=false
-AC_CHECK_LIB(uuid, uuid_generate, lib_uuid=true, [AC_MSG_WARN([
+AC_CHECK_LIB(uuid, uuid_generate, lib_uuid=true, AC_MSG_WARN([
 	
 You need Theodore Ts'o uuid library to compile bonobrowser.
 If you're running Redhat, this may be as simple as typing...
@@ -38,18 +38,18 @@
 ...as root.
 
 *** not building bonobrowser ***
-	])]
+	])
 )
 
 dnl check for libidl
 lib_idl=false
 AM_PATH_LIBIDL(0.6.4, lib_idl=true,
-	[AC_MSG_WARN([
+	AC_MSG_WARN([
 
 You need libIDL 0.6.4 or higher to compile bonobrowser
 
 *** not building bonobrowser ***
-	])]
+	])
 )
 
 if test "x$lib_uuid" = "xtrue" ; then
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

-- 
---------------.      drepper at gnu.org  ,-.   1325 Chesapeake Terrace
Ulrich Drepper  \    ,-------------------'   \  Sunnyvale, CA 94089 USA
Red Hat          `--' drepper at redhat.com   `------------------------



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