* configure.in: Remove redundant AC_MSG_RESULT in check for

uintptr_t in stdint.h.
* configure: Regenerated.
This commit is contained in:
Mark Kettenis 2003-08-29 19:18:07 +00:00
parent 5272d2012d
commit e294916c5a
3 changed files with 168 additions and 166 deletions

View File

@ -1,5 +1,9 @@
2003-08-29 Mark Kettenis <kettenis@gnu.org>
* configure.in: Remove redundant AC_MSG_RESULT in check for
uintptr_t in stdint.h.
* configure: Regenerated.
* amd64-nat.h (struct regcache): Add opaque declaration.
* i386-linux-tdep.h (I386_LINUX_NUM_REGS): New define.

329
gdb/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -526,7 +526,6 @@ AC_CACHE_CHECK([for uintptr_t in stdint.h], gdb_cv_have_uintptr_t,
[uintptr_t foo = 0;],
gdb_cv_have_uintptr_t=yes,
gdb_cv_have_uintptr_t=no)])
AC_MSG_RESULT($gdb_cv_have_uintptr_t)
if test $gdb_cv_have_uintptr_t = yes; then
AC_DEFINE(HAVE_UINTPTR_T, 1, [Define if <stdint.h> provides the uintptr_t type.])
fi