[Xcb-commit] xcb-util configure.ac,1.8,1.9

Jeremy Kolb xcb-commit at lists.freedesktop.org
Sat Jul 30 13:22:53 EST 2005


Update of /cvs/xcb/xcb-util
In directory gabe:/tmp/cvs-serv9051

Modified Files:
	configure.ac 
Log Message:
Patch to stop configure if it can't find gperf.  From Trevor Woerner.


Index: configure.ac
===================================================================
RCS file: /cvs/xcb/xcb-util/configure.ac,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- configure.ac	21 Jun 2005 06:42:42 -0000	1.8
+++ configure.ac	30 Jul 2005 03:22:51 -0000	1.9
@@ -4,7 +4,10 @@
 AM_INIT_AUTOMAKE([foreign dist-bzip2])
 
 AC_CHECK_PROGS(M4, m4)
-AC_CHECK_PROGS(GPERF, gperf)
+AC_CHECK_PROGS(GPERF, gperf, [no])
+if test $GPERF = "no"; then
+	AC_MSG_ERROR([Can't find gperf, please install it and try again])
+fi
 AC_PROG_CC
 AC_PROG_LIBTOOL
 



More information about the xcb-commit mailing list