summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorGwenole Beauchesne <gwenole.beauchesne@intel.com>2012-06-27 14:54:55 +0200
committerGwenole Beauchesne <gwenole.beauchesne@intel.com>2012-06-27 15:02:12 +0200
commita0951ad4676f99d0e3367fc30fd6bc8dd34629ee (patch)
tree37683584058b0b0082b8d932c0ae13c60fb9fbc9 /configure.ac
parent603cdee0b8e850ed9e716c28e5815bef6e6c56db (diff)
downloadlibva-intel-driver-a0951ad4676f99d0e3367fc30fd6bc8dd34629ee.tar.gz
libva-intel-driver-a0951ad4676f99d0e3367fc30fd6bc8dd34629ee.tar.bz2
libva-intel-driver-a0951ad4676f99d0e3367fc30fd6bc8dd34629ee.zip
configure: require automake >= 1.9 for tar-ustar option.
By default, newer automake versions make tar use the ancient tar V7 format that limits filenames to 99 characters. This is troublesome for certain shader sources files. Now require automake 1.9 and use the tar-ustar option so that a newer format, defined in POSIX 1003.1-1988, is used. The limitation is now 256 characters. PAX interchange format (POSIX 1003.1-2001) was considered but probably still to young? Just stick to the intermediate format for now as this is enough for our purposes. Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index a0d6ad5..afa90ed 100644
--- a/configure.ac
+++ b/configure.ac
@@ -19,7 +19,7 @@ AC_PREREQ([2.57])
AC_INIT([intel_driver], [intel_driver_version], [haihao.xiang@intel.com],
[libva-driver-intel])
AC_CONFIG_SRCDIR([Makefile.am])
-AM_INIT_AUTOMAKE
+AM_INIT_AUTOMAKE([1.9 tar-ustar])
AM_CONFIG_HEADER([src/config.h])