[open-ils-commits] r15529 - branches/rel_1_6 (dbs)

svn at svn.open-ils.org svn at svn.open-ils.org
Fri Feb 12 15:44:34 EST 2010


Author: dbs
Date: 2010-02-12 15:44:29 -0500 (Fri, 12 Feb 2010)
New Revision: 15529

Modified:
   branches/rel_1_6/configure.ac
Log:
Make autoconf 2.6.1 an explicit requirement due to AC_PROG_MKDIR_P macro usage

RHEL 5.4 still ships with autoconf 2.59 (released in 2003, folks) and fails
because MKDIR_P isn't defined. For now, let's kill it right at the ./configure
step until we decide whether to use the marked-as-obsolete AM_PROG_MKDIR_P
macro instead.


Modified: branches/rel_1_6/configure.ac
===================================================================
--- branches/rel_1_6/configure.ac	2010-02-12 20:43:13 UTC (rev 15528)
+++ branches/rel_1_6/configure.ac	2010-02-12 20:44:29 UTC (rev 15529)
@@ -1,5 +1,7 @@
 # Copyright (C) 2008 Equinox Software, Inc.
 # Kevin Beswick <kevinbeswick00 at gmail.com>
+# Copyright (C) 2010 Laurentian University 
+# Dan Scott <dscott at laurentian.ca>
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
@@ -17,7 +19,7 @@
 #---------------------------
 
 export PATH=${PATH}:/usr/sbin
-AC_PREREQ(2.59)
+AC_PREREQ(2.61)
 AC_INIT(Open-ILS, trunk, open-ils-dev at list.georgialibraries.org)
 AM_INIT_AUTOMAKE([OpenILS], [trunk])
 AC_REVISION($Revision: 0.1 $)



More information about the open-ils-commits mailing list