This is the mail archive of the
java-patches@sourceware.cygnus.com
mailing list for the Java project.
Patch: Remove qthreads from libjava
- To: Java Patch List <java-patches at sourceware dot cygnus dot com>
- Subject: Patch: Remove qthreads from libjava
- From: Tom Tromey <tromey at cygnus dot com>
- Date: 04 Nov 1999 10:07:28 -0700
- Reply-To: tromey at cygnus dot com
I'm committing this patch. It removes qthreads support from libjava.
Boehm GC patch to follow. I'm removing this because it is useless
outside of Cygnus.
1999-11-04 Tom Tromey <tromey@cygnus.com>
* configure.in: Removed `qt' threads case.
* include/quick-threads.h: Removed.
* quick-threads.cc: Removed.
Tom
Index: configure.in
===================================================================
RCS file: /cvs/java/libgcj/libjava/configure.in,v
retrieving revision 1.39
diff -u -r1.39 configure.in
--- configure.in 1999/10/15 06:07:41 1.39
+++ configure.in 1999/11/04 16:57:01
@@ -229,8 +229,6 @@
;;
esac
;;
- qt)
- ;;
decosf1 | irix | mach | os2 | solaris | win32 | dce | vxworks)
AC_MSG_ERROR(thread package $THREADS not yet supported)
;;
@@ -256,17 +254,6 @@
# But for now we don't check for it. We just assume you aren't
# using MIT pthreads.
AC_DEFINE(HAVE_PTHREAD_MUTEXATTR_INIT)
- ;;
-
- qt)
- THREADDEPS='$(top_builddir)/../qthreads/libgcjcoop.la'
- # We include the path to the qthreads build directory.
- # See Makefile.am to understand why.
- THREADLIBS="$THREADDEPS -L\$(here)/../qthreads/$libsubdir"
- THREADSPEC='-lgcjcoop'
- THREADOBJS=quick-threads.lo
- THREADINCS='-I$(top_srcdir)/../qthreads'
- THREADH=quick-threads.h
;;
none)