Update to 3.06 which includes camlp4.

From Nikolay Sturm <sturm@sec.informatik.tu-darmstadt.de>.
This commit is contained in:
naddy 2002-08-25 20:44:40 +00:00
parent d5a306ab2e
commit 3e98d5ff11
6 changed files with 755 additions and 66 deletions

View File

@ -1,11 +1,10 @@
# $OpenBSD: Makefile,v 1.18 2002/03/21 21:09:17 espie Exp $
# $OpenBSD: Makefile,v 1.19 2002/08/25 20:44:40 naddy Exp $
COMMENT= "ML language based on complete class-based objective system"
DISTNAME= ocaml-3.02
DISTNAME= ocaml-3.06
CATEGORIES= lang
NEED_VERSION= 1.515
MASTER_SITES= ftp://ftp.inria.fr/lang/caml-light/
MASTER_SITES= http://caml.inria.fr/distrib/${DISTNAME}/
DISTFILES= ${DISTNAME}.tar.gz ${DOCFILES}
HOMEPAGE= http://www.ocaml.org/
@ -32,13 +31,16 @@ LIB_DEPENDS= tcl83.1.3::lang/tcl/8.3 \
FAKE_FLAGS= PREFIX=${WRKINST}${PREFIX}
USE_GMAKE= Yes
ALL_TARGET= world bootstrap opt
ALL_TARGET= world bootstrap opt opt.opt
NO_REGRESS= Yes
DOCFILES= ${DISTNAME}-refman.html.tar.gz
post-install:
@${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ocaml/html
@${INSTALL_DATA} ${WRKDIR}/htmlman/* ${PREFIX}/share/doc/ocaml/html
@${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ocaml/html/libref
@${INSTALL_DATA} ${WRKDIR}/htmlman/*.{html,gif} ${PREFIX}/share/doc/ocaml/html
@${INSTALL_DATA} ${WRKDIR}/htmlman/libref/* ${PREFIX}/share/doc/ocaml/html/libref
@strip ${PREFIX}/bin/ocamlrun ${PREFIX}/bin/ocamlyacc
@${INSTALL_DATA} ${WRKSRC}/LICENSE ${PREFIX}/share/doc/ocaml

View File

@ -1,6 +1,6 @@
MD5 (ocaml-3.02-refman.html.tar.gz) = b2aeaa11f3ba48d59deb3fe1693606d4
MD5 (ocaml-3.02.tar.gz) = 2184258b41d3975648a4ebbb615c5046
RMD160 (ocaml-3.02-refman.html.tar.gz) = edd5f28aacb8c12cda04e8ec13723c636d5e35bc
RMD160 (ocaml-3.02.tar.gz) = cd9def60ac59bedf06fbe2b2474837b024c65055
SHA1 (ocaml-3.02-refman.html.tar.gz) = bf1455fdb5c517a773ccc0837df0eb8ac2afdef2
SHA1 (ocaml-3.02.tar.gz) = 02784423a68a74db1e4bcc71e1a563b4f62b838c
MD5 (ocaml-3.06-refman.html.tar.gz) = 2b555271d2630698fcd3a9b9acfd1440
MD5 (ocaml-3.06.tar.gz) = 51530ed183b511ce19fed325c8ab1b43
RMD160 (ocaml-3.06-refman.html.tar.gz) = df0ede67ee899a11b63ed23a4d2d4dc62ee70fa4
RMD160 (ocaml-3.06.tar.gz) = 99094fc0bbbbdc258e0bb75cec77a1a2f90d1e2a
SHA1 (ocaml-3.06-refman.html.tar.gz) = 6181a4fe68f4e346e0da27225f4862be7d18a554
SHA1 (ocaml-3.06.tar.gz) = cf1b053bf751ad566e445ca13c620ffef3a1b863

View File

@ -0,0 +1,19 @@
$OpenBSD: patch-camlp4_config_configure_batch,v 1.1 2002/08/25 20:44:40 naddy Exp $
--- camlp4/config/configure_batch.orig Tue Jul 23 16:11:49 2002
+++ camlp4/config/configure_batch Sat Aug 17 19:39:08 2002
@@ -92,12 +92,12 @@ case "$bindir" in
*) echo "BINDIR=$bindir" >> Makefile.cnf;;
esac
case "$libdir" in
- "") echo 'LIBDIR=$(PREFIX)/lib/camlp4' >> Makefile.cnf
- libdir="$prefix/lib/camlp4";;
+ "") echo 'LIBDIR=$(PREFIX)/lib/ocaml' >> Makefile.cnf
+ libdir="$prefix/lib/ocaml";;
*) echo "LIBDIR=$libdir" >> Makefile.cnf;;
esac
case "$mandir" in
- "") echo 'MANDIR=$(PREFIX)/man/man1' >> Makefile.cnf
+ "") echo 'MANDIR=$(PREFIX)/man' >> Makefile.cnf
mandir="$prefix/man/man1";;
*) echo "MANDIR=$mandir" >> Makefile.cnf;;
esac

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-configure,v 1.1 2002/08/25 20:44:40 naddy Exp $
--- configure.orig Wed Aug 7 14:45:00 2002
+++ configure Thu Aug 22 09:23:56 2002
@@ -1325,7 +1325,7 @@ fi
(
cd ../../camlp4/config
-EXE=$exe ./configure_batch -bindir "$bindir" -libdir "$libdir" -mandir "$mandir" -ocaml-top ../.. > /dev/null
+EXE=$exe ./configure_batch -prefix "$prefix" -ocaml-top ../.. > /dev/null
)
# Final twiddling of compiler options to work around known bugs

View File

@ -1,6 +1,6 @@
--- yacc/main.c.orig Sun Aug 19 21:38:43 2001
+++ yacc/main.c Sun Aug 19 21:52:36 2001
@@ -51,6 +51,14 @@
--- yacc/main.c.orig Thu Jul 12 14:54:23 2001
+++ yacc/main.c Mon Aug 12 21:33:04 2002
@@ -51,6 +51,14 @@ char *text_file_name;
char *union_file_name;
char *verbose_file_name;
@ -15,7 +15,7 @@
FILE *action_file; /* a temp file, used to save actions associated */
/* with rules until the parser is written */
FILE *entry_file;
@@ -89,16 +97,29 @@
@@ -89,16 +97,29 @@ char *rassoc;
short **derives;
char *nullable;
@ -45,7 +45,7 @@
if (output_file && k > 0) {
fclose(output_file); unlink(output_file_name);
}
@@ -283,11 +304,26 @@
@@ -283,11 +304,26 @@ void create_file_names(void)
union_file_name[len + 5] = 'u';
#ifndef NO_UNIX
@ -72,7 +72,7 @@
len = strlen(file_prefix);
@@ -328,15 +364,27 @@
@@ -328,15 +364,27 @@ void open_files(void)
open_error(input_file_name);
}
@ -100,7 +100,7 @@
if (text_file == 0)
open_error(text_file_name);
@@ -352,7 +400,11 @@
@@ -352,7 +400,11 @@ void open_files(void)
defines_file = fopen(defines_file_name, "w");
if (defines_file == 0)
open_error(defines_file_name);

View File

@ -1,17 +1,31 @@
@comment $OpenBSD: PLIST,v 1.8 2001/08/22 00:32:01 angelos Exp $
@comment $OpenBSD: PLIST,v 1.9 2002/08/25 20:44:40 naddy Exp $
bin/camlp4
bin/camlp4o
bin/camlp4o.opt
bin/camlp4r
bin/camlp4r.opt
bin/labltk
bin/mkcamlp4
bin/ocaml
bin/ocamlbrowser
bin/ocamlc
bin/ocamlc.opt
bin/ocamlcp
bin/ocamldebug
bin/ocamldep
bin/ocamldoc
bin/ocamldoc.opt
bin/ocamllex
bin/ocamllex.opt
bin/ocamlmklib
bin/ocamlmktop
bin/ocamlopt
bin/ocamlopt.opt
bin/ocamlprof
bin/ocamlrun
bin/ocamlyacc
bin/ocpp
lib/ocaml/addlabels
lib/ocaml/arg.cmi
lib/ocaml/arg.cmx
lib/ocaml/arg.ml
@ -24,6 +38,10 @@ lib/ocaml/array.cmi
lib/ocaml/array.cmx
lib/ocaml/array.ml
lib/ocaml/array.mli
lib/ocaml/arrayLabels.cmi
lib/ocaml/arrayLabels.cmx
lib/ocaml/arrayLabels.ml
lib/ocaml/arrayLabels.mli
lib/ocaml/big_int.cmi
lib/ocaml/big_int.cmx
lib/ocaml/big_int.mli
@ -47,15 +65,102 @@ lib/ocaml/caml/callback.h
lib/ocaml/caml/config.h
lib/ocaml/caml/custom.h
lib/ocaml/caml/fail.h
lib/ocaml/caml/intext.h
lib/ocaml/caml/memory.h
lib/ocaml/caml/misc.h
lib/ocaml/caml/mlvalues.h
lib/ocaml/camlheader
lib/ocaml/camlheader_ur
lib/ocaml/camlinternalOO.cmi
lib/ocaml/camlinternalOO.cmx
lib/ocaml/camlinternalOO.ml
lib/ocaml/camlinternalOO.mli
lib/ocaml/camlp4/ast2pt.cmi
lib/ocaml/camlp4/ast2pt.mli
lib/ocaml/camlp4/camlp4.cma
lib/ocaml/camlp4/camlp4_top.cma
lib/ocaml/camlp4/camlp4o.cma
lib/ocaml/camlp4/camlp4r.cma
lib/ocaml/camlp4/crc.cmo
lib/ocaml/camlp4/extfold.cmi
lib/ocaml/camlp4/extfold.cmx
lib/ocaml/camlp4/extfold.mli
lib/ocaml/camlp4/extfun.cmi
lib/ocaml/camlp4/extfun.cmx
lib/ocaml/camlp4/extfun.mli
lib/ocaml/camlp4/fstream.cmi
lib/ocaml/camlp4/fstream.cmx
lib/ocaml/camlp4/fstream.mli
lib/ocaml/camlp4/gramext.cmi
lib/ocaml/camlp4/gramext.cmx
lib/ocaml/camlp4/gramext.mli
lib/ocaml/camlp4/gramlib.a
lib/ocaml/camlp4/gramlib.cma
lib/ocaml/camlp4/gramlib.cmxa
lib/ocaml/camlp4/grammar.cmi
lib/ocaml/camlp4/grammar.cmx
lib/ocaml/camlp4/grammar.mli
lib/ocaml/camlp4/lib.sml
lib/ocaml/camlp4/mLast.cmi
lib/ocaml/camlp4/mLast.mli
lib/ocaml/camlp4/ocpp.cmo
lib/ocaml/camlp4/odyl.cma
lib/ocaml/camlp4/odyl.cmo
lib/ocaml/camlp4/pa_extend.cmi
lib/ocaml/camlp4/pa_extend.cmo
lib/ocaml/camlp4/pa_extend_m.cmo
lib/ocaml/camlp4/pa_extfold.cmo
lib/ocaml/camlp4/pa_extfun.cmo
lib/ocaml/camlp4/pa_format.cmo
lib/ocaml/camlp4/pa_fstream.cmo
lib/ocaml/camlp4/pa_ifdef.cmi
lib/ocaml/camlp4/pa_ifdef.cmo
lib/ocaml/camlp4/pa_lefteval.cmo
lib/ocaml/camlp4/pa_lisp.cmo
lib/ocaml/camlp4/pa_o.cmi
lib/ocaml/camlp4/pa_o.cmo
lib/ocaml/camlp4/pa_ocamllex.cma
lib/ocaml/camlp4/pa_olabl.cmo
lib/ocaml/camlp4/pa_oop.cmo
lib/ocaml/camlp4/pa_op.cmo
lib/ocaml/camlp4/pa_r.cmo
lib/ocaml/camlp4/pa_rp.cmo
lib/ocaml/camlp4/pa_ru.cmo
lib/ocaml/camlp4/pa_sml.cmo
lib/ocaml/camlp4/pcaml.cmi
lib/ocaml/camlp4/pcaml.mli
lib/ocaml/camlp4/plexer.cmi
lib/ocaml/camlp4/plexer.cmx
lib/ocaml/camlp4/plexer.mli
lib/ocaml/camlp4/pr_depend.cmo
lib/ocaml/camlp4/pr_dump.cmo
lib/ocaml/camlp4/pr_extend.cmo
lib/ocaml/camlp4/pr_extfun.cmo
lib/ocaml/camlp4/pr_null.cmo
lib/ocaml/camlp4/pr_o.cmo
lib/ocaml/camlp4/pr_op.cmo
lib/ocaml/camlp4/pr_r.cmo
lib/ocaml/camlp4/pr_rp.cmo
lib/ocaml/camlp4/q_MLast.cmo
lib/ocaml/camlp4/q_phony.cmo
lib/ocaml/camlp4/quotation.cmi
lib/ocaml/camlp4/quotation.mli
lib/ocaml/camlp4/spretty.cmi
lib/ocaml/camlp4/spretty.mli
lib/ocaml/camlp4/stdpp.cmi
lib/ocaml/camlp4/stdpp.cmx
lib/ocaml/camlp4/stdpp.mli
lib/ocaml/camlp4/token.cmi
lib/ocaml/camlp4/token.cmx
lib/ocaml/camlp4/token.mli
lib/ocaml/char.cmi
lib/ocaml/char.cmx
lib/ocaml/char.ml
lib/ocaml/char.mli
lib/ocaml/complex.cmi
lib/ocaml/complex.cmx
lib/ocaml/complex.ml
lib/ocaml/complex.mli
lib/ocaml/condition.mli
lib/ocaml/dbm.a
lib/ocaml/dbm.cma
@ -109,107 +214,326 @@ lib/ocaml/int64.cmx
lib/ocaml/int64.ml
lib/ocaml/int64.mli
lib/ocaml/int_misc.cmx
lib/ocaml/labelled.cmx
lib/ocaml/labltk/balloon.cmi
lib/ocaml/labltk/balloon.cmx
lib/ocaml/labltk/balloon.mli
lib/ocaml/labltk/bell.cmi
lib/ocaml/labltk/bell.cmx
lib/ocaml/labltk/bell.mli
lib/ocaml/labltk/button.cmi
lib/ocaml/labltk/button.cmx
lib/ocaml/labltk/button.mli
lib/ocaml/labltk/cBell.cmi
lib/ocaml/labltk/cBell.cmx
lib/ocaml/labltk/cBell.mli
lib/ocaml/labltk/cButton.cmi
lib/ocaml/labltk/cButton.cmx
lib/ocaml/labltk/cButton.mli
lib/ocaml/labltk/cCanvas.cmi
lib/ocaml/labltk/cCanvas.cmx
lib/ocaml/labltk/cCanvas.mli
lib/ocaml/labltk/cCheckbutton.cmi
lib/ocaml/labltk/cCheckbutton.cmx
lib/ocaml/labltk/cCheckbutton.mli
lib/ocaml/labltk/cClipboard.cmi
lib/ocaml/labltk/cClipboard.cmx
lib/ocaml/labltk/cClipboard.mli
lib/ocaml/labltk/cDialog.cmi
lib/ocaml/labltk/cDialog.cmx
lib/ocaml/labltk/cDialog.mli
lib/ocaml/labltk/cEncoding.cmi
lib/ocaml/labltk/cEncoding.cmx
lib/ocaml/labltk/cEncoding.mli
lib/ocaml/labltk/cEntry.cmi
lib/ocaml/labltk/cEntry.cmx
lib/ocaml/labltk/cEntry.mli
lib/ocaml/labltk/cFocus.cmi
lib/ocaml/labltk/cFocus.cmx
lib/ocaml/labltk/cFocus.mli
lib/ocaml/labltk/cFont.cmi
lib/ocaml/labltk/cFont.cmx
lib/ocaml/labltk/cFont.mli
lib/ocaml/labltk/cFrame.cmi
lib/ocaml/labltk/cFrame.cmx
lib/ocaml/labltk/cFrame.mli
lib/ocaml/labltk/cGrab.cmi
lib/ocaml/labltk/cGrab.cmx
lib/ocaml/labltk/cGrab.mli
lib/ocaml/labltk/cGrid.cmi
lib/ocaml/labltk/cGrid.cmx
lib/ocaml/labltk/cGrid.mli
lib/ocaml/labltk/cImage.cmi
lib/ocaml/labltk/cImage.cmx
lib/ocaml/labltk/cImage.mli
lib/ocaml/labltk/cImagebitmap.cmi
lib/ocaml/labltk/cImagebitmap.cmx
lib/ocaml/labltk/cImagebitmap.mli
lib/ocaml/labltk/cImagephoto.cmi
lib/ocaml/labltk/cImagephoto.cmx
lib/ocaml/labltk/cImagephoto.mli
lib/ocaml/labltk/cLabel.cmi
lib/ocaml/labltk/cLabel.cmx
lib/ocaml/labltk/cLabel.mli
lib/ocaml/labltk/cListbox.cmi
lib/ocaml/labltk/cListbox.cmx
lib/ocaml/labltk/cListbox.mli
lib/ocaml/labltk/cMenu.cmi
lib/ocaml/labltk/cMenu.cmx
lib/ocaml/labltk/cMenu.mli
lib/ocaml/labltk/cMenubutton.cmi
lib/ocaml/labltk/cMenubutton.cmx
lib/ocaml/labltk/cMenubutton.mli
lib/ocaml/labltk/cMessage.cmi
lib/ocaml/labltk/cMessage.cmx
lib/ocaml/labltk/cMessage.mli
lib/ocaml/labltk/cOption.cmi
lib/ocaml/labltk/cOption.cmx
lib/ocaml/labltk/cOption.mli
lib/ocaml/labltk/cOptionmenu.cmi
lib/ocaml/labltk/cOptionmenu.cmx
lib/ocaml/labltk/cOptionmenu.mli
lib/ocaml/labltk/cPack.cmi
lib/ocaml/labltk/cPack.cmx
lib/ocaml/labltk/cPack.mli
lib/ocaml/labltk/cPalette.cmi
lib/ocaml/labltk/cPalette.cmx
lib/ocaml/labltk/cPalette.mli
lib/ocaml/labltk/cPixmap.cmi
lib/ocaml/labltk/cPixmap.cmx
lib/ocaml/labltk/cPixmap.mli
lib/ocaml/labltk/cPlace.cmi
lib/ocaml/labltk/cPlace.cmx
lib/ocaml/labltk/cPlace.mli
lib/ocaml/labltk/cRadiobutton.cmi
lib/ocaml/labltk/cRadiobutton.cmx
lib/ocaml/labltk/cRadiobutton.mli
lib/ocaml/labltk/cResource.cmi
lib/ocaml/labltk/cResource.cmx
lib/ocaml/labltk/cResource.mli
lib/ocaml/labltk/cScale.cmi
lib/ocaml/labltk/cScale.cmx
lib/ocaml/labltk/cScale.mli
lib/ocaml/labltk/cScrollbar.cmi
lib/ocaml/labltk/cScrollbar.cmx
lib/ocaml/labltk/cScrollbar.mli
lib/ocaml/labltk/cSelection.cmi
lib/ocaml/labltk/cSelection.cmx
lib/ocaml/labltk/cSelection.mli
lib/ocaml/labltk/cText.cmi
lib/ocaml/labltk/cText.cmx
lib/ocaml/labltk/cText.mli
lib/ocaml/labltk/cTk.cmi
lib/ocaml/labltk/cTk.cmx
lib/ocaml/labltk/cTkvars.cmi
lib/ocaml/labltk/cTkvars.cmx
lib/ocaml/labltk/cTkvars.mli
lib/ocaml/labltk/cTkwait.cmi
lib/ocaml/labltk/cTkwait.cmx
lib/ocaml/labltk/cTkwait.mli
lib/ocaml/labltk/cToplevel.cmi
lib/ocaml/labltk/cToplevel.cmx
lib/ocaml/labltk/cToplevel.mli
lib/ocaml/labltk/cWinfo.cmi
lib/ocaml/labltk/cWinfo.cmx
lib/ocaml/labltk/cWinfo.mli
lib/ocaml/labltk/cWm.cmi
lib/ocaml/labltk/cWm.cmx
lib/ocaml/labltk/cWm.mli
lib/ocaml/labltk/camltk.cmi
lib/ocaml/labltk/camltk.cmx
lib/ocaml/labltk/canvas.cmi
lib/ocaml/labltk/canvas.cmx
lib/ocaml/labltk/canvas.mli
lib/ocaml/labltk/checkbutton.cmi
lib/ocaml/labltk/checkbutton.cmx
lib/ocaml/labltk/checkbutton.mli
lib/ocaml/labltk/clipboard.cmi
lib/ocaml/labltk/clipboard.cmx
lib/ocaml/labltk/clipboard.mli
lib/ocaml/labltk/dialog.cmi
lib/ocaml/labltk/dialog.cmx
lib/ocaml/labltk/dialog.mli
lib/ocaml/labltk/encoding.cmi
lib/ocaml/labltk/encoding.cmx
lib/ocaml/labltk/encoding.mli
lib/ocaml/labltk/entry.cmi
lib/ocaml/labltk/entry.cmx
lib/ocaml/labltk/entry.mli
lib/ocaml/labltk/fileevent.cmi
lib/ocaml/labltk/fileevent.cmx
lib/ocaml/labltk/fileevent.mli
lib/ocaml/labltk/fileselect.cmi
lib/ocaml/labltk/fileselect.cmx
lib/ocaml/labltk/fileselect.mli
lib/ocaml/labltk/focus.cmi
lib/ocaml/labltk/focus.cmx
lib/ocaml/labltk/focus.mli
lib/ocaml/labltk/font.cmi
lib/ocaml/labltk/font.cmx
lib/ocaml/labltk/font.mli
lib/ocaml/labltk/frame.cmi
lib/ocaml/labltk/frame.cmx
lib/ocaml/labltk/frame.mli
lib/ocaml/labltk/frx_after.cmi
lib/ocaml/labltk/frx_after.mli
lib/ocaml/labltk/frx_color.cmi
lib/ocaml/labltk/frx_color.mli
lib/ocaml/labltk/frx_ctext.cmi
lib/ocaml/labltk/frx_ctext.mli
lib/ocaml/labltk/frx_dialog.cmi
lib/ocaml/labltk/frx_dialog.mli
lib/ocaml/labltk/frx_entry.cmi
lib/ocaml/labltk/frx_entry.mli
lib/ocaml/labltk/frx_fillbox.cmi
lib/ocaml/labltk/frx_fillbox.mli
lib/ocaml/labltk/frx_fit.cmi
lib/ocaml/labltk/frx_fit.mli
lib/ocaml/labltk/frx_focus.cmi
lib/ocaml/labltk/frx_focus.mli
lib/ocaml/labltk/frx_font.cmi
lib/ocaml/labltk/frx_font.mli
lib/ocaml/labltk/frx_lbutton.mli
lib/ocaml/labltk/frx_listbox.cmi
lib/ocaml/labltk/frx_listbox.mli
lib/ocaml/labltk/frx_mem.cmi
lib/ocaml/labltk/frx_mem.mli
lib/ocaml/labltk/frx_misc.cmi
lib/ocaml/labltk/frx_misc.mli
lib/ocaml/labltk/frx_req.cmi
lib/ocaml/labltk/frx_req.mli
lib/ocaml/labltk/frx_rpc.cmi
lib/ocaml/labltk/frx_rpc.mli
lib/ocaml/labltk/frx_selection.cmi
lib/ocaml/labltk/frx_selection.mli
lib/ocaml/labltk/frx_synth.cmi
lib/ocaml/labltk/frx_synth.mli
lib/ocaml/labltk/frx_text.cmi
lib/ocaml/labltk/frx_text.mli
lib/ocaml/labltk/frx_toplevel.mli
lib/ocaml/labltk/frx_widget.cmi
lib/ocaml/labltk/frx_widget.mli
lib/ocaml/labltk/frxlib.a
lib/ocaml/labltk/frxlib.cma
lib/ocaml/labltk/frxlib.cmxa
lib/ocaml/labltk/grab.cmi
lib/ocaml/labltk/grab.cmx
lib/ocaml/labltk/grab.mli
lib/ocaml/labltk/grid.cmi
lib/ocaml/labltk/grid.cmx
lib/ocaml/labltk/grid.mli
lib/ocaml/labltk/image.cmi
lib/ocaml/labltk/image.cmx
lib/ocaml/labltk/image.mli
lib/ocaml/labltk/imagebitmap.cmi
lib/ocaml/labltk/imagebitmap.cmx
lib/ocaml/labltk/imagebitmap.mli
lib/ocaml/labltk/imagephoto.cmi
lib/ocaml/labltk/imagephoto.cmx
lib/ocaml/labltk/imagephoto.mli
lib/ocaml/labltk/jpf_font.cmi
lib/ocaml/labltk/jpf_font.cmx
lib/ocaml/labltk/jpf_font.mli
lib/ocaml/labltk/jpflib.a
lib/ocaml/labltk/jpflib.cma
lib/ocaml/labltk/jpflib.cmxa
lib/ocaml/labltk/label.cmi
lib/ocaml/labltk/label.cmx
lib/ocaml/labltk/label.mli
lib/ocaml/labltk/labltk.a
lib/ocaml/labltk/labltk.cma
lib/ocaml/labltk/labltk.cmi
lib/ocaml/labltk/labltk.cmx
lib/ocaml/labltk/labltk.cmxa
lib/ocaml/labltk/labltktop
lib/ocaml/labltk/libjpf.a
lib/ocaml/labltk/libjpf.cma
lib/ocaml/labltk/libjpf.cmxa
lib/ocaml/labltk/liblabltk41.a
lib/ocaml/labltk/liblabltk.a
lib/ocaml/labltk/libtkanim.a
lib/ocaml/labltk/listbox.cmi
lib/ocaml/labltk/listbox.cmx
lib/ocaml/labltk/listbox.mli
lib/ocaml/labltk/menu.cmi
lib/ocaml/labltk/menu.cmx
lib/ocaml/labltk/menu.mli
lib/ocaml/labltk/menubutton.cmi
lib/ocaml/labltk/menubutton.cmx
lib/ocaml/labltk/menubutton.mli
lib/ocaml/labltk/message.cmi
lib/ocaml/labltk/message.cmx
lib/ocaml/labltk/message.mli
lib/ocaml/labltk/option.cmi
lib/ocaml/labltk/option.cmx
lib/ocaml/labltk/option.mli
lib/ocaml/labltk/optionmenu.cmi
lib/ocaml/labltk/optionmenu.cmx
lib/ocaml/labltk/optionmenu.mli
lib/ocaml/labltk/pack.cmi
lib/ocaml/labltk/pack.cmx
lib/ocaml/labltk/pack.mli
lib/ocaml/labltk/palette.cmi
lib/ocaml/labltk/palette.cmx
lib/ocaml/labltk/palette.mli
lib/ocaml/labltk/pixmap.cmi
lib/ocaml/labltk/pixmap.cmx
lib/ocaml/labltk/pixmap.mli
lib/ocaml/labltk/place.cmi
lib/ocaml/labltk/place.cmx
lib/ocaml/labltk/place.mli
lib/ocaml/labltk/pp
lib/ocaml/labltk/protocol.cmi
lib/ocaml/labltk/protocol.cmx
lib/ocaml/labltk/protocol.mli
lib/ocaml/labltk/radiobutton.cmi
lib/ocaml/labltk/radiobutton.cmx
lib/ocaml/labltk/radiobutton.mli
lib/ocaml/labltk/rawwidget.cmi
lib/ocaml/labltk/rawwidget.mli
lib/ocaml/labltk/scale.cmi
lib/ocaml/labltk/scale.cmx
lib/ocaml/labltk/scale.mli
lib/ocaml/labltk/scrollbar.cmi
lib/ocaml/labltk/scrollbar.cmx
lib/ocaml/labltk/scrollbar.mli
lib/ocaml/labltk/selection.cmi
lib/ocaml/labltk/selection.cmx
lib/ocaml/labltk/support.cmx
lib/ocaml/labltk/selection.mli
lib/ocaml/labltk/shell.cmi
lib/ocaml/labltk/shell.cmx
lib/ocaml/labltk/shell.mli
lib/ocaml/labltk/text.cmi
lib/ocaml/labltk/text.cmx
lib/ocaml/labltk/text.mli
lib/ocaml/labltk/textvariable.cmi
lib/ocaml/labltk/textvariable.cmx
lib/ocaml/labltk/textvariable.mli
lib/ocaml/labltk/timer.cmi
lib/ocaml/labltk/timer.cmx
lib/ocaml/labltk/timer.mli
lib/ocaml/labltk/tk.cmi
lib/ocaml/labltk/tk.cmx
lib/ocaml/labltk/tkanim.a
lib/ocaml/labltk/tkanim.cma
lib/ocaml/labltk/tkanim.cmi
lib/ocaml/labltk/tkanim.cmxa
lib/ocaml/labltk/tkanim.mli
lib/ocaml/labltk/tkcompiler
lib/ocaml/labltk/tkvars.cmi
lib/ocaml/labltk/tkvars.cmx
lib/ocaml/labltk/tkvars.mli
lib/ocaml/labltk/tkwait.cmi
lib/ocaml/labltk/tkwait.cmx
lib/ocaml/labltk/tkwait.mli
lib/ocaml/labltk/toplevel.cmi
lib/ocaml/labltk/toplevel.cmx
lib/ocaml/labltk/toplevel.mli
lib/ocaml/labltk/widget.cmi
lib/ocaml/labltk/widget.cmx
lib/ocaml/labltk/widget.mli
lib/ocaml/labltk/winfo.cmi
lib/ocaml/labltk/winfo.cmx
lib/ocaml/labltk/winfo.mli
lib/ocaml/labltk/wm.cmi
lib/ocaml/labltk/wm.cmx
lib/ocaml/labltk/wm.mli
lib/ocaml/lazy.cmi
lib/ocaml/lazy.cmx
lib/ocaml/lazy.ml
lib/ocaml/lazy.mli
lib/ocaml/ld.conf
lib/ocaml/lexing.cmi
lib/ocaml/lexing.cmx
lib/ocaml/lexing.ml
@ -228,6 +552,10 @@ lib/ocaml/list.cmi
lib/ocaml/list.cmx
lib/ocaml/list.ml
lib/ocaml/list.mli
lib/ocaml/listLabels.cmi
lib/ocaml/listLabels.cmx
lib/ocaml/listLabels.ml
lib/ocaml/listLabels.mli
lib/ocaml/map.cmi
lib/ocaml/map.cmx
lib/ocaml/map.ml
@ -236,6 +564,10 @@ lib/ocaml/marshal.cmi
lib/ocaml/marshal.cmx
lib/ocaml/marshal.ml
lib/ocaml/marshal.mli
lib/ocaml/moreLabels.cmi
lib/ocaml/moreLabels.cmx
lib/ocaml/moreLabels.ml
lib/ocaml/moreLabels.mli
lib/ocaml/mutex.mli
lib/ocaml/nat.cmi
lib/ocaml/nat.cmx
@ -254,10 +586,62 @@ lib/ocaml/obj.cmi
lib/ocaml/obj.cmx
lib/ocaml/obj.ml
lib/ocaml/obj.mli
lib/ocaml/ocamldoc/ocamldoc.hva
lib/ocaml/ocamldoc/ocamldoc.sty
lib/ocaml/ocamldoc/odoc.cmi
lib/ocaml/ocamldoc/odoc_analyse.cmi
lib/ocaml/ocamldoc/odoc_args.cmi
lib/ocaml/ocamldoc/odoc_ast.cmi
lib/ocaml/ocamldoc/odoc_class.cmi
lib/ocaml/ocamldoc/odoc_comments.cmi
lib/ocaml/ocamldoc/odoc_comments_global.cmi
lib/ocaml/ocamldoc/odoc_control.cmi
lib/ocaml/ocamldoc/odoc_crc.cmi
lib/ocaml/ocamldoc/odoc_cross.cmi
lib/ocaml/ocamldoc/odoc_dag2html.cmi
lib/ocaml/ocamldoc/odoc_dep.cmi
lib/ocaml/ocamldoc/odoc_dot.cmi
lib/ocaml/ocamldoc/odoc_env.cmi
lib/ocaml/ocamldoc/odoc_exception.cmi
lib/ocaml/ocamldoc/odoc_global.cmi
lib/ocaml/ocamldoc/odoc_html.cmi
lib/ocaml/ocamldoc/odoc_info.a
lib/ocaml/ocamldoc/odoc_info.cma
lib/ocaml/ocamldoc/odoc_info.cmi
lib/ocaml/ocamldoc/odoc_info.cmxa
lib/ocaml/ocamldoc/odoc_info.mli
lib/ocaml/ocamldoc/odoc_inherit.cmi
lib/ocaml/ocamldoc/odoc_latex.cmi
lib/ocaml/ocamldoc/odoc_lexer.cmi
lib/ocaml/ocamldoc/odoc_man.cmi
lib/ocaml/ocamldoc/odoc_merge.cmi
lib/ocaml/ocamldoc/odoc_messages.cmi
lib/ocaml/ocamldoc/odoc_misc.cmi
lib/ocaml/ocamldoc/odoc_module.cmi
lib/ocaml/ocamldoc/odoc_name.cmi
lib/ocaml/ocamldoc/odoc_ocamlhtml.cmi
lib/ocaml/ocamldoc/odoc_opt.cmi
lib/ocaml/ocamldoc/odoc_parameter.cmi
lib/ocaml/ocamldoc/odoc_parser.cmi
lib/ocaml/ocamldoc/odoc_scan.cmi
lib/ocaml/ocamldoc/odoc_search.cmi
lib/ocaml/ocamldoc/odoc_see_lexer.cmi
lib/ocaml/ocamldoc/odoc_sig.cmi
lib/ocaml/ocamldoc/odoc_str.cmi
lib/ocaml/ocamldoc/odoc_texi.cmi
lib/ocaml/ocamldoc/odoc_text.cmi
lib/ocaml/ocamldoc/odoc_text_lexer.cmi
lib/ocaml/ocamldoc/odoc_text_parser.cmi
lib/ocaml/ocamldoc/odoc_to_text.cmi
lib/ocaml/ocamldoc/odoc_type.cmi
lib/ocaml/ocamldoc/odoc_types.cmi
lib/ocaml/ocamldoc/odoc_value.cmi
lib/ocaml/oo.cmi
lib/ocaml/oo.cmx
lib/ocaml/oo.ml
lib/ocaml/oo.mli
lib/ocaml/outcometree.cmi
lib/ocaml/outcometree.mli
lib/ocaml/parsing.cmi
lib/ocaml/parsing.cmx
lib/ocaml/parsing.ml
@ -287,6 +671,11 @@ lib/ocaml/random.mli
lib/ocaml/ratio.cmi
lib/ocaml/ratio.cmx
lib/ocaml/ratio.mli
lib/ocaml/scanf.cmi
lib/ocaml/scanf.cmx
lib/ocaml/scanf.ml
lib/ocaml/scanf.mli
lib/ocaml/scrapelabels
lib/ocaml/set.cmi
lib/ocaml/set.cmx
lib/ocaml/set.ml
@ -299,6 +688,10 @@ lib/ocaml/stack.cmi
lib/ocaml/stack.cmx
lib/ocaml/stack.ml
lib/ocaml/stack.mli
lib/ocaml/stdLabels.cmi
lib/ocaml/stdLabels.cmx
lib/ocaml/stdLabels.ml
lib/ocaml/stdLabels.mli
lib/ocaml/std_exit.cmi
lib/ocaml/std_exit.cmo
lib/ocaml/std_exit.cmx
@ -325,6 +718,10 @@ lib/ocaml/string.cmi
lib/ocaml/string.cmx
lib/ocaml/string.ml
lib/ocaml/string.mli
lib/ocaml/stringLabels.cmi
lib/ocaml/stringLabels.cmx
lib/ocaml/stringLabels.ml
lib/ocaml/stringLabels.mli
lib/ocaml/string_misc.cmx
lib/ocaml/sys.cmi
lib/ocaml/sys.cmx
@ -343,17 +740,27 @@ lib/ocaml/threads/unix.cma
lib/ocaml/topdirs.cmi
lib/ocaml/toplevellib.cma
lib/ocaml/toploop.cmi
lib/ocaml/topmain.cmo
lib/ocaml/topmain.cmi
lib/ocaml/topstart.cmo
lib/ocaml/unix.a
lib/ocaml/unix.cma
lib/ocaml/unix.cmi
lib/ocaml/unix.cmx
lib/ocaml/unix.cmxa
lib/ocaml/unix.mli
lib/ocaml/unixLabels.cmi
lib/ocaml/unixLabels.cmx
lib/ocaml/unixLabels.mli
lib/ocaml/weak.cmi
lib/ocaml/weak.cmx
lib/ocaml/weak.ml
lib/ocaml/weak.mli
man/man1/camlp4.1
man/man1/camlp4o.1
man/man1/camlp4o.opt.1
man/man1/camlp4r.1
man/man1/camlp4r.opt.1
man/man1/mkcamlp4.1
man/man1/ocaml.1
man/man1/ocamlc.1
man/man1/ocamlc.opt.1
@ -367,13 +774,287 @@ man/man1/ocamlopt.opt.1
man/man1/ocamlprof.1
man/man1/ocamlrun.1
man/man1/ocamlyacc.1
man/man1/ocpp.1
man/mano/Arg.o
man/mano/Array.o
man/mano/ArrayLabels.o
man/mano/Bigarray.Array1.o
man/mano/Bigarray.Array2.o
man/mano/Bigarray.Array3.o
man/mano/Bigarray.Genarray.o
man/mano/Bigarray.o
man/mano/Buffer.o
man/mano/Callback.o
man/mano/CamlinternalOO.o
man/mano/Char.o
man/mano/Complex.o
man/mano/Digest.o
man/mano/Filename.o
man/mano/Format.o
man/mano/Gc.o
man/mano/Genlex.o
man/mano/Hashtbl.HashedType.o
man/mano/Hashtbl.Make.o
man/mano/Hashtbl.S.o
man/mano/Hashtbl.o
man/mano/Int32.o
man/mano/Int64.o
man/mano/Lazy.o
man/mano/Lexing.o
man/mano/List.o
man/mano/ListLabels.o
man/mano/Map.Make.o
man/mano/Map.OrderedType.o
man/mano/Map.S.o
man/mano/Map.o
man/mano/Marshal.o
man/mano/MoreLabels.Hashtbl.HashedType.o
man/mano/MoreLabels.Hashtbl.Make.o
man/mano/MoreLabels.Hashtbl.S.o
man/mano/MoreLabels.Hashtbl.o
man/mano/MoreLabels.Map.Make.o
man/mano/MoreLabels.Map.OrderedType.o
man/mano/MoreLabels.Map.S.o
man/mano/MoreLabels.Map.o
man/mano/MoreLabels.Set.Make.o
man/mano/MoreLabels.Set.OrderedType.o
man/mano/MoreLabels.Set.S.o
man/mano/MoreLabels.Set.o
man/mano/MoreLabels.o
man/mano/Nativeint.o
man/mano/Num.o
man/mano/Obj.o
man/mano/Oo.o
man/mano/Parsing.o
man/mano/Pervasives.LargeFile.o
man/mano/Pervasives.o
man/mano/Printexc.o
man/mano/Printf.o
man/mano/Queue.o
man/mano/Random.o
man/mano/Scanf.Scanning.o
man/mano/Scanf.o
man/mano/Set.Make.o
man/mano/Set.OrderedType.o
man/mano/Set.S.o
man/mano/Set.o
man/mano/Sort.o
man/mano/Stack.o
man/mano/StdLabels.Array.o
man/mano/StdLabels.List.o
man/mano/StdLabels.String.o
man/mano/StdLabels.o
man/mano/Str.o
man/mano/Stream.o
man/mano/String.o
man/mano/StringLabels.o
man/mano/Sys.o
man/mano/Unix.LargeFile.o
man/mano/Unix.o
man/mano/Weak.Make.o
man/mano/Weak.S.o
man/mano/Weak.o
share/doc/ocaml/LICENSE
share/doc/ocaml/html/contents_motif.gif
share/doc/ocaml/html/index.html
share/doc/ocaml/html/libgraph.gif
share/doc/ocaml/html/manual.haux
share/doc/ocaml/html/manual.hmanual.hind
share/doc/ocaml/html/manual.hmanual.kwd.hind
share/doc/ocaml/html/libref/Arg.html
share/doc/ocaml/html/libref/Arith_status.html
share/doc/ocaml/html/libref/Array.html
share/doc/ocaml/html/libref/ArrayLabels.html
share/doc/ocaml/html/libref/Big_int.html
share/doc/ocaml/html/libref/Bigarray.Array1.html
share/doc/ocaml/html/libref/Bigarray.Array2.html
share/doc/ocaml/html/libref/Bigarray.Array3.html
share/doc/ocaml/html/libref/Bigarray.Genarray.html
share/doc/ocaml/html/libref/Bigarray.html
share/doc/ocaml/html/libref/Buffer.html
share/doc/ocaml/html/libref/Callback.html
share/doc/ocaml/html/libref/CamlinternalOO.html
share/doc/ocaml/html/libref/Char.html
share/doc/ocaml/html/libref/Complex.html
share/doc/ocaml/html/libref/Condition.html
share/doc/ocaml/html/libref/Dbm.html
share/doc/ocaml/html/libref/Digest.html
share/doc/ocaml/html/libref/Dynlink.html
share/doc/ocaml/html/libref/Event.html
share/doc/ocaml/html/libref/Filename.html
share/doc/ocaml/html/libref/Format.html
share/doc/ocaml/html/libref/Gc.html
share/doc/ocaml/html/libref/Genlex.html
share/doc/ocaml/html/libref/Graphics.html
share/doc/ocaml/html/libref/GraphicsX11.html
share/doc/ocaml/html/libref/Hashtbl.HashedType.html
share/doc/ocaml/html/libref/Hashtbl.Make.html
share/doc/ocaml/html/libref/Hashtbl.S.html
share/doc/ocaml/html/libref/Hashtbl.html
share/doc/ocaml/html/libref/Int32.html
share/doc/ocaml/html/libref/Int64.html
share/doc/ocaml/html/libref/Lazy.html
share/doc/ocaml/html/libref/Lexing.html
share/doc/ocaml/html/libref/List.html
share/doc/ocaml/html/libref/ListLabels.html
share/doc/ocaml/html/libref/Map.Make.html
share/doc/ocaml/html/libref/Map.OrderedType.html
share/doc/ocaml/html/libref/Map.S.html
share/doc/ocaml/html/libref/Map.html
share/doc/ocaml/html/libref/Marshal.html
share/doc/ocaml/html/libref/MoreLabels.Hashtbl.HashedType.html
share/doc/ocaml/html/libref/MoreLabels.Hashtbl.Make.html
share/doc/ocaml/html/libref/MoreLabels.Hashtbl.S.html
share/doc/ocaml/html/libref/MoreLabels.Hashtbl.html
share/doc/ocaml/html/libref/MoreLabels.Map.Make.html
share/doc/ocaml/html/libref/MoreLabels.Map.OrderedType.html
share/doc/ocaml/html/libref/MoreLabels.Map.S.html
share/doc/ocaml/html/libref/MoreLabels.Map.html
share/doc/ocaml/html/libref/MoreLabels.Set.Make.html
share/doc/ocaml/html/libref/MoreLabels.Set.OrderedType.html
share/doc/ocaml/html/libref/MoreLabels.Set.S.html
share/doc/ocaml/html/libref/MoreLabels.Set.html
share/doc/ocaml/html/libref/MoreLabels.html
share/doc/ocaml/html/libref/Mutex.html
share/doc/ocaml/html/libref/Nativeint.html
share/doc/ocaml/html/libref/Num.html
share/doc/ocaml/html/libref/Obj.html
share/doc/ocaml/html/libref/Oo.html
share/doc/ocaml/html/libref/Parsing.html
share/doc/ocaml/html/libref/Pervasives.LargeFile.html
share/doc/ocaml/html/libref/Pervasives.html
share/doc/ocaml/html/libref/Printexc.html
share/doc/ocaml/html/libref/Printf.html
share/doc/ocaml/html/libref/Queue.html
share/doc/ocaml/html/libref/Random.html
share/doc/ocaml/html/libref/Scanf.Scanning.html
share/doc/ocaml/html/libref/Scanf.html
share/doc/ocaml/html/libref/Set.Make.html
share/doc/ocaml/html/libref/Set.OrderedType.html
share/doc/ocaml/html/libref/Set.S.html
share/doc/ocaml/html/libref/Set.html
share/doc/ocaml/html/libref/Sort.html
share/doc/ocaml/html/libref/Stack.html
share/doc/ocaml/html/libref/StdLabels.Array.html
share/doc/ocaml/html/libref/StdLabels.List.html
share/doc/ocaml/html/libref/StdLabels.String.html
share/doc/ocaml/html/libref/StdLabels.html
share/doc/ocaml/html/libref/Str.html
share/doc/ocaml/html/libref/Stream.html
share/doc/ocaml/html/libref/String.html
share/doc/ocaml/html/libref/StringLabels.html
share/doc/ocaml/html/libref/Sys.html
share/doc/ocaml/html/libref/Thread.html
share/doc/ocaml/html/libref/ThreadUnix.html
share/doc/ocaml/html/libref/Tk.html
share/doc/ocaml/html/libref/Unix.LargeFile.html
share/doc/ocaml/html/libref/Unix.html
share/doc/ocaml/html/libref/UnixLabels.LargeFile.html
share/doc/ocaml/html/libref/UnixLabels.html
share/doc/ocaml/html/libref/Weak.Make.html
share/doc/ocaml/html/libref/Weak.S.html
share/doc/ocaml/html/libref/Weak.html
share/doc/ocaml/html/libref/index.html
share/doc/ocaml/html/libref/index_attributes.html
share/doc/ocaml/html/libref/index_class_types.html
share/doc/ocaml/html/libref/index_classes.html
share/doc/ocaml/html/libref/index_exceptions.html
share/doc/ocaml/html/libref/index_methods.html
share/doc/ocaml/html/libref/index_module_types.html
share/doc/ocaml/html/libref/index_modules.html
share/doc/ocaml/html/libref/index_types.html
share/doc/ocaml/html/libref/index_values.html
share/doc/ocaml/html/libref/style.css
share/doc/ocaml/html/libref/type_Arg.html
share/doc/ocaml/html/libref/type_Arith_status.html
share/doc/ocaml/html/libref/type_Array.html
share/doc/ocaml/html/libref/type_ArrayLabels.html
share/doc/ocaml/html/libref/type_Big_int.html
share/doc/ocaml/html/libref/type_Bigarray.Array1.html
share/doc/ocaml/html/libref/type_Bigarray.Array2.html
share/doc/ocaml/html/libref/type_Bigarray.Array3.html
share/doc/ocaml/html/libref/type_Bigarray.Genarray.html
share/doc/ocaml/html/libref/type_Bigarray.html
share/doc/ocaml/html/libref/type_Buffer.html
share/doc/ocaml/html/libref/type_Callback.html
share/doc/ocaml/html/libref/type_CamlinternalOO.html
share/doc/ocaml/html/libref/type_Char.html
share/doc/ocaml/html/libref/type_Complex.html
share/doc/ocaml/html/libref/type_Condition.html
share/doc/ocaml/html/libref/type_Dbm.html
share/doc/ocaml/html/libref/type_Digest.html
share/doc/ocaml/html/libref/type_Dynlink.html
share/doc/ocaml/html/libref/type_Event.html
share/doc/ocaml/html/libref/type_Filename.html
share/doc/ocaml/html/libref/type_Format.html
share/doc/ocaml/html/libref/type_Gc.html
share/doc/ocaml/html/libref/type_Genlex.html
share/doc/ocaml/html/libref/type_Graphics.html
share/doc/ocaml/html/libref/type_GraphicsX11.html
share/doc/ocaml/html/libref/type_Hashtbl.HashedType.html
share/doc/ocaml/html/libref/type_Hashtbl.Make.html
share/doc/ocaml/html/libref/type_Hashtbl.S.html
share/doc/ocaml/html/libref/type_Hashtbl.html
share/doc/ocaml/html/libref/type_Int32.html
share/doc/ocaml/html/libref/type_Int64.html
share/doc/ocaml/html/libref/type_Lazy.html
share/doc/ocaml/html/libref/type_Lexing.html
share/doc/ocaml/html/libref/type_List.html
share/doc/ocaml/html/libref/type_ListLabels.html
share/doc/ocaml/html/libref/type_Map.Make.html
share/doc/ocaml/html/libref/type_Map.OrderedType.html
share/doc/ocaml/html/libref/type_Map.S.html
share/doc/ocaml/html/libref/type_Map.html
share/doc/ocaml/html/libref/type_Marshal.html
share/doc/ocaml/html/libref/type_MoreLabels.Hashtbl.HashedType.html
share/doc/ocaml/html/libref/type_MoreLabels.Hashtbl.Make.html
share/doc/ocaml/html/libref/type_MoreLabels.Hashtbl.S.html
share/doc/ocaml/html/libref/type_MoreLabels.Hashtbl.html
share/doc/ocaml/html/libref/type_MoreLabels.Map.Make.html
share/doc/ocaml/html/libref/type_MoreLabels.Map.OrderedType.html
share/doc/ocaml/html/libref/type_MoreLabels.Map.S.html
share/doc/ocaml/html/libref/type_MoreLabels.Map.html
share/doc/ocaml/html/libref/type_MoreLabels.Set.Make.html
share/doc/ocaml/html/libref/type_MoreLabels.Set.OrderedType.html
share/doc/ocaml/html/libref/type_MoreLabels.Set.S.html
share/doc/ocaml/html/libref/type_MoreLabels.Set.html
share/doc/ocaml/html/libref/type_MoreLabels.html
share/doc/ocaml/html/libref/type_Mutex.html
share/doc/ocaml/html/libref/type_Nativeint.html
share/doc/ocaml/html/libref/type_Num.html
share/doc/ocaml/html/libref/type_Obj.html
share/doc/ocaml/html/libref/type_Oo.html
share/doc/ocaml/html/libref/type_Parsing.html
share/doc/ocaml/html/libref/type_Pervasives.LargeFile.html
share/doc/ocaml/html/libref/type_Pervasives.html
share/doc/ocaml/html/libref/type_Printexc.html
share/doc/ocaml/html/libref/type_Printf.html
share/doc/ocaml/html/libref/type_Queue.html
share/doc/ocaml/html/libref/type_Random.html
share/doc/ocaml/html/libref/type_Scanf.Scanning.html
share/doc/ocaml/html/libref/type_Scanf.html
share/doc/ocaml/html/libref/type_Set.Make.html
share/doc/ocaml/html/libref/type_Set.OrderedType.html
share/doc/ocaml/html/libref/type_Set.S.html
share/doc/ocaml/html/libref/type_Set.html
share/doc/ocaml/html/libref/type_Sort.html
share/doc/ocaml/html/libref/type_Stack.html
share/doc/ocaml/html/libref/type_StdLabels.Array.html
share/doc/ocaml/html/libref/type_StdLabels.List.html
share/doc/ocaml/html/libref/type_StdLabels.String.html
share/doc/ocaml/html/libref/type_StdLabels.html
share/doc/ocaml/html/libref/type_Str.html
share/doc/ocaml/html/libref/type_Stream.html
share/doc/ocaml/html/libref/type_String.html
share/doc/ocaml/html/libref/type_StringLabels.html
share/doc/ocaml/html/libref/type_Sys.html
share/doc/ocaml/html/libref/type_Thread.html
share/doc/ocaml/html/libref/type_ThreadUnix.html
share/doc/ocaml/html/libref/type_Tk.html
share/doc/ocaml/html/libref/type_Unix.LargeFile.html
share/doc/ocaml/html/libref/type_Unix.html
share/doc/ocaml/html/libref/type_UnixLabels.LargeFile.html
share/doc/ocaml/html/libref/type_UnixLabels.html
share/doc/ocaml/html/libref/type_Weak.Make.html
share/doc/ocaml/html/libref/type_Weak.S.html
share/doc/ocaml/html/libref/type_Weak.html
share/doc/ocaml/html/manual001.html
share/doc/ocaml/html/manual002.html
share/doc/ocaml/html/manual003.html
@ -418,42 +1099,17 @@ share/doc/ocaml/html/manual041.html
share/doc/ocaml/html/manual042.html
share/doc/ocaml/html/manual043.html
share/doc/ocaml/html/manual044.html
share/doc/ocaml/html/manual045.html
share/doc/ocaml/html/manual046.html
share/doc/ocaml/html/manual047.html
share/doc/ocaml/html/manual048.html
share/doc/ocaml/html/manual049.html
share/doc/ocaml/html/manual050.html
share/doc/ocaml/html/manual051.html
share/doc/ocaml/html/manual052.html
share/doc/ocaml/html/manual053.html
share/doc/ocaml/html/manual054.html
share/doc/ocaml/html/manual055.html
share/doc/ocaml/html/manual056.html
share/doc/ocaml/html/manual057.html
share/doc/ocaml/html/manual058.html
share/doc/ocaml/html/manual059.html
share/doc/ocaml/html/manual060.html
share/doc/ocaml/html/manual061.html
share/doc/ocaml/html/manual062.html
share/doc/ocaml/html/manual063.html
share/doc/ocaml/html/manual064.html
share/doc/ocaml/html/manual065.html
share/doc/ocaml/html/manual066.html
share/doc/ocaml/html/manual067.html
share/doc/ocaml/html/manual068.html
share/doc/ocaml/html/manual069.html
share/doc/ocaml/html/manual070.html
share/doc/ocaml/html/manual071.html
share/doc/ocaml/html/manual072.html
share/doc/ocaml/html/manual073.html
share/doc/ocaml/html/manual074.html
share/doc/ocaml/html/manual075.html
share/doc/ocaml/html/next_motif.gif
share/doc/ocaml/html/previous_motif.gif
@dirrm share/doc/ocaml/html/libref
@dirrm share/doc/ocaml/html
@dirrm share/doc/ocaml
@dirrm man/mano
@dirrm lib/ocaml/threads
@exec mkdir -p %D/lib/ocaml/stublibs
@dirrm lib/ocaml/stublibs
@dirrm lib/ocaml/ocamldoc
@dirrm lib/ocaml/labltk
@dirrm lib/ocaml/camlp4
@dirrm lib/ocaml/caml
@dirrm lib/ocaml