* configure.in: Check for uintptr_t. Needed to compile regex.c

on MacOS X.  Reported by Wim Rijnders <wimrijnders@home.nl>
This commit is contained in:
Pavel Roskin 2002-11-11 01:57:43 +00:00
parent f7477fb810
commit 9db4ae7e2f
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2002-11-10 Pavel Roskin <proski@gnu.org>
* configure.in: Check for uintptr_t. Needed to compile regex.c
on MacOS X. Reported by Wim Rijnders <wimrijnders@home.nl>
2002-11-07 Andrew V. Samoilov <sav@bcs.zp.ua>
* syntax/ada95.syntax: Highlight "then" and "else".

View File

@ -189,6 +189,12 @@ AC_TYPE_PID_T
AC_TYPE_UID_T
AC_CHECK_TYPE(nlink_t, unsigned int)
dnl This is needed for regex.c only
AC_CHECK_TYPE(uintptr_t,
[AC_DEFINE(HAVE_UINTPTR_T, 1,
[Define if you have the `uintptr_t' type.])
])
AC_FUNC_ALLOCA
AC_FUNC_STRCOLL