diff options
author | Tom Tromey <tromey@redhat.com> | 2012-11-16 15:19:15 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2012-11-16 15:19:15 +0000 |
commit | 2b723e217a034af37849bf2dae8fc0dba1c7f2ee (patch) | |
tree | 1ebaca0b5f3749e259f40711fcecf6e625cdaa01 /libsanitizer/configure | |
parent | 26841e4533142c5849719509605e2d28cd1726db (diff) | |
download | gcc-2b723e217a034af37849bf2dae8fc0dba1c7f2ee.zip gcc-2b723e217a034af37849bf2dae8fc0dba1c7f2ee.tar.gz gcc-2b723e217a034af37849bf2dae8fc0dba1c7f2ee.tar.bz2 |
configure.ac: Invoke AM_MAINTAINER_MODE.
* configure.ac: Invoke AM_MAINTAINER_MODE.
* aclocal.m4, configure, Makefile.in, asan/Makefile.in,
interception/Makefile.in, sanitizer_common/Makefile.in: Rebuild.
From-SVN: r193561
Diffstat (limited to 'libsanitizer/configure')
-rwxr-xr-x | libsanitizer/configure | 37 |
1 files changed, 35 insertions, 2 deletions
diff --git a/libsanitizer/configure b/libsanitizer/configure index 9fbfccb..e3b3928 100755 --- a/libsanitizer/configure +++ b/libsanitizer/configure @@ -655,6 +655,9 @@ CFLAGS CC toolexeclibdir toolexecdir +MAINT +MAINTAINER_MODE_FALSE +MAINTAINER_MODE_TRUE multi_basedir am__untar am__tar @@ -734,6 +737,7 @@ ac_user_opts=' enable_option_checking enable_version_specific_runtime_libs enable_multilib +enable_maintainer_mode enable_dependency_tracking enable_shared enable_static @@ -1379,6 +1383,8 @@ Optional Features: --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-version-specific-runtime-libs Specify that runtime libraries should be installed in a compiler-specific directory --enable-multilib build many library versions (default) + --enable-maintainer-mode enable make rules and dependencies not useful + (and sometimes confusing) to the casual installer --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --enable-shared[=PKGS] build shared libraries [default=yes] @@ -2897,6 +2903,29 @@ fi ac_config_commands="$ac_config_commands default-1" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 +$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } + # Check whether --enable-maintainer-mode was given. +if test "${enable_maintainer_mode+set}" = set; then : + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval +else + USE_MAINTAINER_MODE=no +fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 +$as_echo "$USE_MAINTAINER_MODE" >&6; } + if test $USE_MAINTAINER_MODE = yes; then + MAINTAINER_MODE_TRUE= + MAINTAINER_MODE_FALSE='#' +else + MAINTAINER_MODE_TRUE='#' + MAINTAINER_MODE_FALSE= +fi + + MAINT=$MAINTAINER_MODE_TRUE + + + # Calculate toolexeclibdir # Also toolexecdir, though it's only used in toolexeclibdir case ${version_specific_libs} in @@ -10869,7 +10898,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 10872 "configure" +#line 10901 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -10975,7 +11004,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 10978 "configure" +#line 11007 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -14385,6 +14414,10 @@ else am__EXEEXT_FALSE= fi +if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then + as_fn_error "conditional \"MAINTAINER_MODE\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 |