Downgrade required autoconf to 2.63 to allow building on RHEL 6.4

This requires adding ACLOCAL_AMFLAGS variable to the toplevel
Makefile.am which includes the m4 subdirectory since Autotools won't
necessarily check the contents of AC_CONFIG_MACRO_DIR() (see [1] for
more info).

[1] http://www.gnu.org/software/libtool/manual/html_node/Invoking-libtoolize.html

Signed-off-by: Brian Nguyen <brnguyen@nvidia.com>
This commit is contained in:
Brian Nguyen 2013-11-06 13:43:54 -08:00 committed by brnguyen
parent acb5f98231
commit d076d45358
2 changed files with 2 additions and 1 deletions

View file

@ -1,2 +1,3 @@
SUBDIRS = src tests
noinst_HEADERS = include
ACLOCAL_AMFLAGS = -I m4

View file

@ -1,7 +1,7 @@
dnl configure.ac
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ([2.68])
AC_PREREQ([2.63])
AC_INIT([libglvnd], [0.0.0], [brnguyen@nvidia.com])
AC_CONFIG_SRCDIR([config.h.in])
AC_CONFIG_HEADERS([config.h])