Another newlib fix.

From-SVN: r71655
This commit is contained in:
Anthony Green 2003-09-22 16:04:24 +00:00 committed by Anthony Green
parent 0de118b6e2
commit 5463a4f35d
3 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2003-09-22 Anthony Green <green@redhat.com>
* configure.in (HAVE_USLEEP_DECL): Define for newlib build.
* configure: Rebuilt.
2003-09-21 Ralph Loader <suckfish@ihug.co.nz>
PR java/12350:

4
libjava/configure vendored
View File

@ -4384,6 +4384,10 @@ EOF
cat >> confdefs.h <<\EOF
#define HAVE_LOCALTIME_R 1
EOF
cat >> confdefs.h <<\EOF
#define HAVE_USLEEP_DECL 1
EOF
cat >> confdefs.h <<\EOF

View File

@ -577,6 +577,7 @@ if test "x${with_newlib}" = "xyes"; then
AC_DEFINE(HAVE_TIME, 1, [Define if you have time.])
AC_DEFINE(HAVE_GMTIME_R, 1, [Define if you have the 'gmtime_r' function])
AC_DEFINE(HAVE_LOCALTIME_R, 1, [Define if you have the 'localtime_r' function.])
AC_DEFINE(HAVE_USLEEP_DECL, 1, [Define if usleep is declared in <unistd.h>.])
dnl This is only for POSIX threads.
AC_DEFINE(HAVE_PTHREAD_MUTEXATTR_INIT, 1, [Define if using POSIX threads that have the mutexattr functions.])
dnl We also assume we are using gcc, which provides alloca.