diff options
author | Mike Frysinger <vapier@gentoo.org> | 2013-06-05 01:42:13 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2013-06-05 01:42:13 +0000 |
commit | 31e6ad7d640283af4c4f6b01fef9e6a4a17f1535 (patch) | |
tree | f4c4d577f2dbf7fb124a31aeda9a3763a900878e /sim/rl78/configure | |
parent | 256b85c25e967423de12be9564b0c8515ace7737 (diff) | |
download | gdb-31e6ad7d640283af4c4f6b01fef9e6a4a17f1535.zip gdb-31e6ad7d640283af4c4f6b01fef9e6a4a17f1535.tar.gz gdb-31e6ad7d640283af4c4f6b01fef9e6a4a17f1535.tar.bz2 |
sim: use AM_MAINTAINER_MODE
I noticed the sim code is using an old implementation of the maintainer logic.
I cut it over to the new macro (like gdb has been doing). In practice, it
makes no difference currently as nothing in the sim tree uses it, but I have a
follow up commit for the Blackfin tree that needs it.
Diffstat (limited to 'sim/rl78/configure')
-rwxr-xr-x | sim/rl78/configure | 41 |
1 files changed, 28 insertions, 13 deletions
diff --git a/sim/rl78/configure b/sim/rl78/configure index fa84f3e..f2fe47a 100755 --- a/sim/rl78/configure +++ b/sim/rl78/configure @@ -611,6 +611,8 @@ sim_debug sim_cflags sim_bswap MAINT +MAINTAINER_MODE_FALSE +MAINTAINER_MODE_TRUE lt_cv_dlopen_libs OTOOL64 OTOOL @@ -1391,7 +1393,8 @@ Optional Features: --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) - --enable-maintainer-mode Enable developer functionality. + --enable-maintainer-mode enable make rules and dependencies not useful + (and sometimes confusing) to the casual installer --enable-sim-bswap Use Host specific BSWAP instruction. --enable-sim-cflags=opts Extra CFLAGS for use in building simulator --enable-sim-debug=opts Enable debugging flags @@ -12254,7 +12257,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12257 "configure" +#line 12260 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12360,7 +12363,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12363 "configure" +#line 12366 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12603,21 +12606,29 @@ CC="$lt_save_CC" -USE_MAINTAINER_MODE=no -# Check whether --enable-maintainer-mode was given. + +{ $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; case "${enableval}" in - yes) MAINT="" USE_MAINTAINER_MODE=yes ;; - no) MAINT="#" ;; - *) as_fn_error "\"--enable-maintainer-mode does not take a value\"" "$LINENO" 5; MAINT="#" ;; -esac -if test x"$silent" != x"yes" && test x"$MAINT" = x""; then - echo "Setting maintainer mode" 6>&1 + 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 - MAINT="#" + MAINTAINER_MODE_TRUE='#' + MAINTAINER_MODE_FALSE= fi + MAINT=$MAINTAINER_MODE_TRUE + + # Check whether --enable-sim-bswap was given. @@ -12993,6 +13004,10 @@ if test -z "${PLUGINS_TRUE}" && test -z "${PLUGINS_FALSE}"; then as_fn_error "conditional \"PLUGINS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 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 : ${CONFIG_STATUS=./config.status} ac_write_fail=0 |