diff options
author | Chris Lattner <sabre@nondot.org> | 2004-04-14 16:32:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-04-14 16:32:34 +0000 |
commit | ac84728d487c73ac46b3636809e0d359dfb13884 (patch) | |
tree | 2dab6502f634f347deda56502bce43b29e1104fe /autoconf | |
parent | 95f45c56b159d601ce520e6d2f92121e8971e20c (diff) | |
download | external_llvm-ac84728d487c73ac46b3636809e0d359dfb13884.zip external_llvm-ac84728d487c73ac46b3636809e0d359dfb13884.tar.gz external_llvm-ac84728d487c73ac46b3636809e0d359dfb13884.tar.bz2 |
We are now on LLVM 1.3
Make autoconf default to checking to look to see if our funny directory exists
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12947 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index ab887aa..b779088 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -1,5 +1,5 @@ dnl Initialize autoconf -AC_INIT([[[LLVM]]],[[[1.1]]],[llvmbugs@cs.uiuc.edu]) +AC_INIT([[[LLVM]]],[[[1.3]]],[llvmbugs@cs.uiuc.edu]) dnl Place all of the extra autoconf files into the config subdirectory AC_CONFIG_AUX_DIR([autoconf]) @@ -350,7 +350,7 @@ AC_ARG_ENABLE(povray, povray=auto) AC_MSG_CHECKING([for POV-Ray benchmark sources]) case "$povray" in -yes) +auto|yes) defaultdir=/home/vadve/shared/benchmarks/povray31 if test -d $defaultdir then @@ -361,7 +361,7 @@ yes) povray=no fi ;; -auto|no) +no) AC_SUBST(POVRAY_ROOT,[]) AC_SUBST(USE_POVRAY,[[]]) povray=no |