Index: csl/otherlibs/threads/Makefile diff -c csl/otherlibs/threads/Makefile:1.24 csl/otherlibs/threads/Makefile:1.25 *** csl/otherlibs/threads/Makefile:1.24 Sat Aug 8 20:42:20 1998 --- csl/otherlibs/threads/Makefile Tue Mar 9 11:10:47 1999 *************** *** 16,22 **** $(LIB)/filename.cmo $(LIB)/marshal.cmo $(LIB)/obj.cmo \ $(LIB)/lexing.cmo $(LIB)/parsing.cmo \ $(LIB)/set.cmo $(LIB)/map.cmo $(LIB)/stack.cmo $(LIB)/queue.cmo \ ! $(LIB)/stream.cmo $(LIB)/printf.cmo $(LIB)/format.cmo $(LIB)/arg.cmo \ $(LIB)/printexc.cmo $(LIB)/gc.cmo $(LIB)/digest.cmo $(LIB)/random.cmo \ $(LIB)/oo.cmo $(LIB)/genlex.cmo $(LIB)/callback.cmo $(LIB)/weak.cmo \ $(LIB)/lazy.cmo --- 16,23 ---- $(LIB)/filename.cmo $(LIB)/marshal.cmo $(LIB)/obj.cmo \ $(LIB)/lexing.cmo $(LIB)/parsing.cmo \ $(LIB)/set.cmo $(LIB)/map.cmo $(LIB)/stack.cmo $(LIB)/queue.cmo \ ! $(LIB)/stream.cmo $(LIB)/buffer.cmo \ ! $(LIB)/printf.cmo $(LIB)/format.cmo $(LIB)/arg.cmo \ $(LIB)/printexc.cmo $(LIB)/gc.cmo $(LIB)/digest.cmo $(LIB)/random.cmo \ $(LIB)/oo.cmo $(LIB)/genlex.cmo $(LIB)/callback.cmo $(LIB)/weak.cmo \ $(LIB)/lazy.cmo Index: csl/configure diff -c csl/configure:1.66 csl/configure:1.67 *** csl/configure:1.66 Wed Nov 18 19:10:51 1998 --- csl/configure Tue Mar 9 11:02:40 1999 *************** *** 11,17 **** # # #*********************************************************************# ! # $Id: configure,v 1.66 1998/11/18 18:10:51 xleroy Exp $ bindir=/usr/local/bin libdir=/usr/local/lib/ocaml --- 11,17 ---- # # #*********************************************************************# ! # $Id: configure,v 1.67 1999/03/09 10:02:40 xleroy Exp $ bindir=/usr/local/bin libdir=/usr/local/lib/ocaml *************** *** 155,164 **** gcc*) bytecccompopts="-fno-defer-pop -Wall";; cc,mips-*-irix6*) ! # Add -32 flag to ensure compatibility with native-code compiler ! bytecccompopts="-32" # Turn off warning "unused library" ! bytecclinkopts="-32 -Wl,-woff,84";; cc*,mips-*-irix6*) # (For those who want to force "cc -64") # Turn off warning "unused library" --- 155,164 ---- gcc*) bytecccompopts="-fno-defer-pop -Wall";; cc,mips-*-irix6*) ! # Add -n32 flag to ensure compatibility with native-code compiler ! bytecccompopts="-n32" # Turn off warning "unused library" ! bytecclinkopts="-n32 -Wl,-woff,84";; cc*,mips-*-irix6*) # (For those who want to force "cc -64") # Turn off warning "unused library" .