1998-09-24 Jason Molenda (jsm@bugshack.cygnus.com)

* configure.in: Add --enable-warnings.
        Adjust whitespace of other --with and --enable options so that
        configure --help lines up correctly.
        * aclocal.m4: Ditto.
        * Makefile.in (WARN_CFLAGS): Add.  Set by configure.
        * configure: Regenerated.
This commit is contained in:
Jason Molenda 1998-09-25 01:27:47 +00:00
parent f1f8c637ae
commit ba68ad5701
4 changed files with 357 additions and 392 deletions

View File

@ -1,3 +1,12 @@
1998-09-24 Jason Molenda (jsm@bugshack.cygnus.com)
* configure.in: Add --enable-warnings.
Adjust whitespace of other --with and --enable options so that
configure --help lines up correctly.
* aclocal.m4: Ditto.
* Makefile.in (WARN_CFLAGS): Add. Set by configure.
* configure: Regenerated.
Thu Sep 24 15:44:34 1998 Stan Shebs <shebs@andros.cygnus.com>
* remote-rdi.c: Fix formatting, remove some commented-out code.

8
gdb/aclocal.m4 vendored
View File

@ -77,7 +77,7 @@ AC_DEFUN(CY_AC_PATH_TCLH, [
no_tcl=true
AC_MSG_CHECKING(for Tcl private headers. dir=${configdir})
AC_ARG_WITH(tclinclude, [ --with-tclinclude directory where tcl private headers are], with_tclinclude=${withval})
AC_ARG_WITH(tclinclude, [ --with-tclinclude=DIR Directory where tcl private headers are], with_tclinclude=${withval})
AC_CACHE_VAL(ac_cv_c_tclh,[
# first check to see if --with-tclinclude was specified
if test x"${with_tclinclude}" != x ; then
@ -165,7 +165,7 @@ AC_DEFUN(CY_AC_PATH_TCLCONFIG, [
if test x"${no_tcl}" = x ; then
# we reset no_tcl in case something fails here
no_tcl=true
AC_ARG_WITH(tclconfig, [ --with-tclconfig directory containing tcl configuration (tclConfig.sh)],
AC_ARG_WITH(tclconfig, [ --with-tclconfig=DIR Directory containing tcl configuration (tclConfig.sh)],
with_tclconfig=${withval})
AC_MSG_CHECKING([for Tcl configuration])
AC_CACHE_VAL(ac_cv_c_tclconfig,[
@ -299,7 +299,7 @@ AC_DEFUN(CY_AC_PATH_TKH, [
#
no_tk=true
AC_MSG_CHECKING(for Tk private headers)
AC_ARG_WITH(tkinclude, [ --with-tkinclude directory where tk private headers are], with_tkinclude=${withval})
AC_ARG_WITH(tkinclude, [ --with-tkinclude=DIR Directory where tk private headers are], with_tkinclude=${withval})
AC_CACHE_VAL(ac_cv_c_tkh,[
# first check to see if --with-tkinclude was specified
if test x"${with_tkinclude}" != x ; then
@ -387,7 +387,7 @@ AC_DEFUN(CY_AC_PATH_TKCONFIG, [
if test x"${no_tk}" = x ; then
# we reset no_tk in case something fails here
no_tk=true
AC_ARG_WITH(tkconfig, [ --with-tkconfig directory containing tk configuration (tkConfig.sh)],
AC_ARG_WITH(tkconfig, [ --with-tkconfig=DIR Directory containing tk configuration (tkConfig.sh)],
with_tkconfig=${withval})
AC_MSG_CHECKING([for Tk configuration])
AC_CACHE_VAL(ac_cv_c_tkconfig,[

704
gdb/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -277,13 +277,29 @@ if test "${enable_netrom}" = "yes"; then
CONFIG_SRCS="${CONFIG_SRCS} remote-nrom.c"
fi
AC_ARG_ENABLE(warnings,
[ --enable-warnings Enable compiler warnings if gcc is used],
[case "${enableval}" in
yes) enable_warnings=yes ;;
no) enable_warnings=no ;;
*) AC_MSG_ERROR(bad value ${enableval} given for warnings options) ;;
esac])
if test "x$enable_warnings" = xyes -a "x$GCC" = xyes
then
WARN_CFLAGS="-Wall -Wstrict-prototypes"
else
WARN_CFLAGS=""
fi
AC_SUBST(WARN_CFLAGS)
MMALLOC_CFLAGS=
MMALLOC=
AC_SUBST(MMALLOC_CFLAGS)
AC_SUBST(MMALLOC)
AC_ARG_WITH(mmalloc,
[ --with-mmalloc use memory mapped malloc package],
[ --with-mmalloc Use memory mapped malloc package],
[case "${withval}" in
yes) want_mmalloc=true ;;
no) want_mmalloc=false;;
@ -310,7 +326,7 @@ fi
AC_SUBST(ENABLE_IDE)
AC_ARG_WITH(foundry-libs,
[ --with-foundry-libs=directory use the Foundry SDK in directory],
[ --with-foundry-libs=DIR Use the Foundry SDK in DIR],
[FOUNDRY_LIB_BASE=${withval}])
AC_SUBST(FOUNDRY_LIB_BASE)
@ -357,7 +373,7 @@ AC_SUBST(IDE_DEPS)
ENABLE_GDBTK=
AC_ARG_ENABLE(gdbtk,
[ --enable-gdbtk ],
[ --enable-gdbtk Enable GDBTK GUI front end],
[case "${enableval}" in
yes)
case "$host" in
@ -499,7 +515,7 @@ AC_PATH_X
# start-sanitize-sky
# Enable GPU2 library for MIPS simulator
AC_ARG_WITH(sim-gpu2,
[ --with-sim-gpu2=path Use GPU2 library under given directory],
[ --with-sim-gpu2=DIR Use GPU2 library under given DIR],
[case "${target}" in
mips*-sky-*)
if test -d "${withval}"
@ -513,7 +529,7 @@ esac])dnl
# Enable target accurate FP library
AC_ARG_WITH(sim-funit,
[ --with-sim-funit=path Use target FP lib under given directory],
[ --with-sim-funit=DIR Use target FP lib under given DIR],
[case "${target}" in
mips*-sky-*)
if test -d "${withval}"
@ -537,7 +553,7 @@ AC_SUBST(CONFIG_SRCS)
# Begin stuff to support --enable-shared
AC_ARG_ENABLE(shared,
[ --enable-shared use shared libraries],
[ --enable-shared Use shared libraries],
[case "${enableval}" in
yes) shared=true ;;
no) shared=false ;;