[llvm-commits] [llvm] r42066 - in /llvm/trunk: autoconf/m4/libtool.m4 configure
Tanya Lattner
tonic at nondot.org
Mon Sep 17 14:41:15 PDT 2007
Author: tbrethou
Date: Mon Sep 17 16:41:15 2007
New Revision: 42066
URL: http://llvm.org/viewvc/llvm-project?rev=42066&view=rev
Log:
Fix broken default help strings for enable-shared, enable-static, and enable-fast-install. Regenerate configure script.
Modified:
llvm/trunk/autoconf/m4/libtool.m4
llvm/trunk/configure
Modified: llvm/trunk/autoconf/m4/libtool.m4
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/autoconf/m4/libtool.m4?rev=42066&r1=42065&r2=42066&view=diff
==============================================================================
--- llvm/trunk/autoconf/m4/libtool.m4 (original)
+++ llvm/trunk/autoconf/m4/libtool.m4 Mon Sep 17 16:41:15 2007
@@ -1905,7 +1905,7 @@
AC_DEFUN([AC_ENABLE_SHARED],
[define([enable_shared_default], ifelse($1, no, no, yes))dnl
AC_ARG_ENABLE([shared],
- [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@],[build shared libraries @<:@default=enable_shared_default@:>@])],
+ AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@],[build shared libraries @<:@default=enable_shared_default@:>@]),
[p=${PACKAGE-default}
case $enableval in
yes) enable_shared=yes ;;
@@ -1943,7 +1943,7 @@
AC_DEFUN([AC_ENABLE_STATIC],
[define([enable_static_default], ifelse($1, no, no, yes))dnl
AC_ARG_ENABLE([static],
- [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@],[build static libraries @<:@default=enable_static_default@:>@])],
+ AS_HELP_STRING([--enable-static@<:@=PKGS@:>@],[build static libraries @<:@default=enable_static_default@:>@]),
[p=${PACKAGE-default}
case $enableval in
yes) enable_static=yes ;;
@@ -1981,7 +1981,7 @@
AC_DEFUN([AC_ENABLE_FAST_INSTALL],
[define([enable_Fast_install_default], ifelse($1, no, no, yes))dnl
AC_ARG_ENABLE([fast-install],
- [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],[optimize for fast installation @<:@default=enable_Fast_install_default@:>@])],
+ AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],[optimize for fast installation @<:@default=enable_Fast_install_default@:>@]),
[p=${PACKAGE-default}
case $enableval in
yes) enable_fast_install=yes ;;
Modified: llvm/trunk/configure
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/configure?rev=42066&r1=42065&r2=42066&view=diff
==============================================================================
--- llvm/trunk/configure (original)
+++ llvm/trunk/configure Mon Sep 17 16:41:15 2007
@@ -1542,12 +1542,12 @@
%a (default is YES)
--enable-ltdl-install install libltdl
--enable-shared[=PKGS] build shared libraries
- [default=enable_shared_default]
+ [default=yes]
--enable-static[=PKGS] build static libraries
- [default=enable_static_default]
+ [default=yes]
--enable-fast-install[=PKGS]
optimize for fast installation
- [default=enable_Fast_install_default]
+ [default=yes]
--disable-libtool-lock avoid locking (might break parallel builds)
Optional Packages:
More information about the llvm-commits
mailing list