Make autoconf 2.6.1 an explicit requirement due to AC_PROG_MKDIR_P macro usage
authordbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 12 Feb 2010 20:43:13 +0000 (20:43 +0000)
committerdbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 12 Feb 2010 20:43:13 +0000 (20:43 +0000)
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.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@15528 dcc99617-32d9-48b4-a31d-7c20da2025e4

configure.ac

index 9f76b61..a0869db 100644 (file)
@@ -1,5 +1,7 @@
 # Copyright (C) 2008 Equinox Software, Inc.
 # Kevin Beswick <kevinbeswick00@gmail.com>
+# Copyright (C) 2010 Laurentian University 
+# Dan Scott <dscott@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@list.georgialibraries.org)
 AM_INIT_AUTOMAKE([OpenILS], [trunk])
 AC_REVISION($Revision: 0.1 $)