diff options
author | Jerome Guitton <guitton@adacore.com> | 2005-04-26 10:24:45 +0000 |
---|---|---|
committer | Jerome Guitton <guitton@adacore.com> | 2005-04-26 10:24:45 +0000 |
commit | 733d4ba8730f3cd8a075cdf60215ec9d530fa5c0 (patch) | |
tree | 38f2871a66aa1e69f812895d41c95039e0f82d9d /opcodes | |
parent | 512d59e15e3447ecaf545be6ab26f9dc8b810750 (diff) | |
download | gdb-733d4ba8730f3cd8a075cdf60215ec9d530fa5c0.tar.gz |
* configure.in: Fix the check for basename declaration.
* configure: Regenerate.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rwxr-xr-x | opcodes/configure | 3 | ||||
-rw-r--r-- | opcodes/configure.in | 2 |
3 files changed, 7 insertions, 3 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index cba7480266f..43158ac1b5c 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2005-04-26 Jerome Guitton <guitton@gnat.com> + + * configure.in: Fix the check for basename declaration. + * configure: Regenerate. + 2005-04-19 Alan Modra <amodra@bigpond.net.au> * ppc-opc.c (RTO): Define. diff --git a/opcodes/configure b/opcodes/configure index 094f8c11044..7080ceed0df 100755 --- a/opcodes/configure +++ b/opcodes/configure @@ -8542,8 +8542,7 @@ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -#include "sysdep.h" - +$ac_includes_default int main () { diff --git a/opcodes/configure.in b/opcodes/configure.in index 3e356b32cc8..afc5c36f0aa 100644 --- a/opcodes/configure.in +++ b/opcodes/configure.in @@ -72,7 +72,7 @@ AC_PROG_INSTALL AC_CHECK_HEADERS(string.h strings.h stdlib.h) -AC_CHECK_DECLS(basename, , , [#include "sysdep.h"]) +AC_CHECK_DECLS(basename) cgen_maint=no cgendir='$(srcdir)/../cgen' |