aboutsummaryrefslogtreecommitdiff
path: root/gdb/configure.in
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>1998-09-25 01:27:47 +0000
committerJason Molenda <jmolenda@apple.com>1998-09-25 01:27:47 +0000
commitba68ad5701beef3f64d3571b7a39da887b1e8a49 (patch)
tree798876082ffb7c4d1d0e6e3933a865d6cba481fe /gdb/configure.in
parentf1f8c637ae409d3fba9a9b1bb60ff22babb8ffe9 (diff)
downloadgdb-ba68ad5701beef3f64d3571b7a39da887b1e8a49.zip
gdb-ba68ad5701beef3f64d3571b7a39da887b1e8a49.tar.gz
gdb-ba68ad5701beef3f64d3571b7a39da887b1e8a49.tar.bz2
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.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r--gdb/configure.in28
1 files changed, 22 insertions, 6 deletions
diff --git a/gdb/configure.in b/gdb/configure.in
index 8aba768..13c38ba 100644
--- a/gdb/configure.in
+++ b/gdb/configure.in
@@ -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 ;;