This is the mail archive of the java-patches@sources.redhat.com mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

No pthreads support on IRIX 5


Shouldn't we ignore --enable-threads on IRIX 5, as we do on all other
systems on which there's no built-in threads library?  Ok to install?

Index: boehm-gc/ChangeLog
from  Alexandre Oliva  <aoliva@redhat.com>

	* configure.in (THREADS): Don't --enable-threads on IRIX <= 5.*.
	* configure: Rebuilt.

Index: boehm-gc/configure.in
===================================================================
RCS file: /cvs/java/libgcj/boehm-gc/configure.in,v
retrieving revision 1.17
diff -u -r1.17 configure.in
--- boehm-gc/configure.in	2000/04/19 10:09:57	1.17
+++ boehm-gc/configure.in	2000/07/22 06:25:41
@@ -44,6 +44,10 @@
     *-*-win*)
        THREADS=win32
        ;;
+    *-*-irix[[1-5]].*)
+       # No built-in threads library on IRIX 5.* and older.
+       THREADS=none
+       ;;
     *-*-irix*)
        # FIXME: for now, choose POSIX, because we implement that.
        # Later, choose irix threads.

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]