[Xcb-commit] xcb ChangeLog,1.67,1.68 configure.ac,1.11,1.12
Jamey Sharp
xcb-commit at lists.freedesktop.org
Thu Aug 4 02:55:38 EST 2005
Update of /cvs/xcb/xcb
In directory gabe:/tmp/cvs-serv17693
Modified Files:
ChangeLog configure.ac
Log Message:
2005-08-03 Trevor Woerner <twoerner.x at gmail.com>
reviewer: Jamey Sharp <jamey at minilop.net>
* configure.ac:
Allow people to not have check as long as they have at
least automake version 1.9. Older versions of automake
still work as long as check is installed or the NoCheck
instructions are followed.
Index: configure.ac
===================================================================
RCS file: /cvs/xcb/xcb/configure.ac,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- configure.ac 12 May 2005 08:59:28 -0000 1.11
+++ configure.ac 3 Aug 2005 16:55:36 -0000 1.12
@@ -8,8 +8,12 @@
AC_CONFIG_SRCDIR([xcb.pc.in])
AM_INIT_AUTOMAKE([foreign dist-bzip2])
+dnl This ifdef has no useful effect prior to automake 1.9, but in 1.9
+dnl it allows the user to not have check.m4 installed.
+m4_ifdef([AM_PATH_CHECK],[
AM_PATH_CHECK(0.8.2, [HAVE_CHECK=true], [HAVE_CHECK=false])
-AM_CONDITIONAL(HAVE_CHECK, test x$HAVE_CHECK != xfalse)
+])
+AM_CONDITIONAL(HAVE_CHECK, test x$HAVE_CHECK = xtrue)
AC_CONFIG_HEADERS([src/config.h])
Index: ChangeLog
===================================================================
RCS file: /cvs/xcb/xcb/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -d -r1.67 -r1.68
--- ChangeLog 3 Aug 2005 16:17:35 -0000 1.67
+++ ChangeLog 3 Aug 2005 16:55:36 -0000 1.68
@@ -1,3 +1,13 @@
+2005-08-03 Trevor Woerner <twoerner.x at gmail.com>
+
+ reviewer: Jamey Sharp <jamey at minilop.net>
+
+ * configure.ac:
+ Allow people to not have check as long as they have at
+ least automake version 1.9. Older versions of automake
+ still work as long as check is installed or the NoCheck
+ instructions are followed.
+
2005-07-21 Jamey Sharp <jamey at minilop.net>
* src/xcb_conn.c:
More information about the xcb-commit
mailing list