From 7deae97af8e8690f1f2af9a1466f5dd6c0f0afa3 Mon Sep 17 00:00:00 2001 From: Krister Walfridsson Date: Wed, 30 Oct 2002 00:03:17 +0100 Subject: [PATCH] configure.in: Disable hash sync when not using threads. * configure.in: Disable hash sync when not using threads. * configure: Regenerated. From-SVN: r58641 --- libjava/ChangeLog | 5 +++++ libjava/configure | 2 +- libjava/configure.in | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 4db95b01eea..21de27f73d0 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,8 @@ +2002-10-25 Krister Walfridsson + + * configure.in: Disable hash sync when not using threads. + * configure: Regenerated. + 2002-10-24 Tom Tromey * java/lang/natRuntime.cc (_Jv_SetDLLSearchPath): New function. diff --git a/libjava/configure b/libjava/configure index 514a1aa294e..4e34cc94706 100755 --- a/libjava/configure +++ b/libjava/configure @@ -3327,7 +3327,7 @@ if test -d sysdep; then true; else mkdir sysdep; fi HASH_SYNC_SPEC= # Hash synchronization is only useful with posix threads right now. -if test "$enable_hash_synchronization" = yes; then +if test "$enable_hash_synchronization" = yes && test "$THREADS" != "none"; then HASH_SYNC_SPEC=-fhash-synchronization cat >> confdefs.h <<\EOF #define JV_HASH_SYNCHRONIZATION 1 diff --git a/libjava/configure.in b/libjava/configure.in index e11928e70a4..59f821accce 100644 --- a/libjava/configure.in +++ b/libjava/configure.in @@ -445,7 +445,7 @@ AC_LINK_FILES(sysdep/$sysdeps_dir/locks.h, sysdep/locks.h) HASH_SYNC_SPEC= # Hash synchronization is only useful with posix threads right now. -if test "$enable_hash_synchronization" = yes; then +if test "$enable_hash_synchronization" = yes && test "$THREADS" != "none"; then HASH_SYNC_SPEC=-fhash-synchronization AC_DEFINE(JV_HASH_SYNCHRONIZATION, 1, [Define if hash synchronization is in use]) fi -- 2.30.2