diff options
author | Doug Evans <dje@google.com> | 2009-02-02 23:18:05 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2009-02-02 23:18:05 +0000 |
commit | 85541719ae3213788be9e97b855c18e159b2a182 (patch) | |
tree | 1929aad5338ce7fc7fba70a780b40d39f22d90b2 /gdb/aclocal.m4 | |
parent | a42952252f6cfaf3b84072997bd187c39b2088bb (diff) | |
download | binutils-gdb-85541719ae3213788be9e97b855c18e159b2a182.tar.gz |
* config/tcl.m4 (SC_PATH_TCLCONFIG): Don't exit 0 if tclconfig fails.
(SC_PATH_TKCONFIG): Don't exit 0 if tkconfig fails.
(SC_LOAD_TCLCONFIG): Quote all uses of TCL_BIN_DIR, it may contain
"# no Tcl configs found".
(SC_LOAD_TKCONFIG): Similarily for TK_BIN_DIR.
* gdb/configure.ac (gdbkt): Check both no_tcl/no_tk first, before
doing any further tcl/tk configury. Don't configure gdbtk if
tcl or tk check fails.
* gdb/aclocal.m4: Regenerate.
* gdb/configure: Regenerate.
* gdb/gdbtk/plugins/aclocal.m4: Regenerate.
* gdb/gdbtk/plugins/configure: Regenerate.
Diffstat (limited to 'gdb/aclocal.m4')
-rw-r--r-- | gdb/aclocal.m4 | 24 |
1 files changed, 3 insertions, 21 deletions
diff --git a/gdb/aclocal.m4 b/gdb/aclocal.m4 index e09bb9c73cb..bc533a44758 100644 --- a/gdb/aclocal.m4 +++ b/gdb/aclocal.m4 @@ -468,27 +468,6 @@ AC_DEFUN([AM_PROG_INSTALL_SH], install_sh=${install_sh-"$am_aux_dir/install-sh"} AC_SUBST(install_sh)]) -# Copyright (C) 2003, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 2 - -# Check whether the underlying file-system supports filenames -# with a leading dot. For instance MS-DOS doesn't. -AC_DEFUN([AM_SET_LEADING_DOT], -[rm -rf .tst 2>/dev/null -mkdir .tst 2>/dev/null -if test -d .tst; then - am__leading_dot=. -else - am__leading_dot=_ -fi -rmdir .tst 2>/dev/null -AC_SUBST([am__leading_dot])]) - # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering @@ -889,4 +868,7 @@ m4_include([gnulib/m4/onceonly_2_57.m4]) m4_include([gnulib/m4/stdint.m4]) m4_include([gnulib/m4/string_h.m4]) m4_include([gnulib/m4/wchar.m4]) +m4_include([../config/extensions.m4]) +m4_include([../config/lead-dot.m4]) +m4_include([../config/proginstall.m4]) m4_include([acinclude.m4]) |