diff options
author | Fred Fish <fnf@specifix.com> | 1996-03-17 06:28:57 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1996-03-17 06:28:57 +0000 |
commit | 315206699f300748d5491b2d45e3c859300b7afa (patch) | |
tree | 4439ec47942fadb4fdc7d6e8f233cc7475aca158 /gdb/configure.in | |
parent | d58ffc6cc6c304e25d46536469701a20cb67180f (diff) | |
download | gdb-315206699f300748d5491b2d45e3c859300b7afa.zip gdb-315206699f300748d5491b2d45e3c859300b7afa.tar.gz gdb-315206699f300748d5491b2d45e3c859300b7afa.tar.bz2 |
* configure.in: Add fragment to create stamp-h.
From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
* configure.in (AC_CHECK_HEADERS): Check for link.h.
* configure: Regenerate with autoconf.
* config.h.in: Regenerate with autoheader.
* config/i386/nm-linux.h: Include solib.h only if HAVE_LINK_H
is defined.
* solib.c: Exclude most of the code if HAVE_LINK_H is not defined.
* config/i386/linux.mh: Reinstate XM_CLIBS, it is needed for
older a.out based systems.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index fa7550a..b61d6a2 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -37,7 +37,7 @@ AC_CANONICAL_SYSTEM AC_ARG_PROGRAM AC_HEADER_STDC -AC_CHECK_HEADERS(limits.h memory.h string.h strings.h unistd.h termios.h termio.h sgtty.h stddef.h sys/procfs.h) +AC_CHECK_HEADERS(limits.h memory.h string.h strings.h unistd.h termios.h termio.h sgtty.h stddef.h sys/procfs.h link.h) AC_HEADER_STAT AC_MSG_CHECKING([for gregset_t type]) @@ -714,6 +714,11 @@ case ${srcdir} in grep "source ${srcdir}/.gdbinit" .gdbinit >/dev/null 2>/dev/null || \ echo "source ${srcdir}/.gdbinit" >> .gdbinit esac + +case x$CONFIG_HEADERS in +xconfig.h:config.h.in) +echo > stamp-h ;; +esac ], [ gdb_host_cpu=$gdb_host_cpu |