update to ocaml-4.00.0

- uses new ocaml_native and ocaml_native_dynlink arch properties
- changelog: http://caml.inria.fr/pub/distrib/ocaml-4.00/notes/Changes

From Christopher Zimmermann <madroach@gmerlin.de> with fixes from me
This commit is contained in:
avsm 2012-08-18 21:49:16 +00:00
parent cb284e6f57
commit 0ffcd882eb
9 changed files with 376 additions and 444 deletions

View File

@ -1,20 +1,18 @@
# $OpenBSD: Makefile,v 1.55 2012/07/04 12:49:20 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.56 2012/08/18 21:49:16 avsm Exp $
# XXX Don't even think of updating ocaml alone.
# Do check that the ports that depend on it still work, or repair them.
NOT_FOR_ARCHS= hppa
BROKEN-powerpc= build: Could not find the .cmi file for interface
COMMENT= ML language based on complete class-based objective system
BASENAME= ocaml-3.12
DISTNAME= ${BASENAME}.1
REVISION= 1
BASENAME= ocaml-4.00
DISTNAME= ${BASENAME}.0
REVISION= 1
CATEGORIES= lang
MASTER_SITES= http://caml.inria.fr/pub/distrib/${BASENAME}/
DOCFILES= ${BASENAME}-refman.html.tar.gz
DOCFILES= ${BASENAME}-refman-html.tar.gz
DISTFILES= ${DISTNAME}.tar.gz ${DOCFILES}
HOMEPAGE= http://www.ocaml.org/
@ -49,12 +47,12 @@ RUN_DEPENDS += ${MODTK_RUN_DEPENDS}
LIB_DEPENDS += ${MODTK_LIB_DEPENDS}
WANTLIB += ${MODTK_WANTLIB}
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "sparc" || \
${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "amd64" || \
${MACHINE_ARCH} == "powerpc"
.include <bsd.port.arch.mk>
.if ${PROPERTIES:Mocaml_native}
ALL_TARGET= world bootstrap opt opt.opt
PKG_ARGS+=-Dnative=1
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
.if ${PROPERTIES:Mocaml_native_dynlink}
PKG_ARGS+=-Ddynlink=1
.else
PKG_ARGS+=-Ddynlink=0
@ -71,6 +69,11 @@ post-extract:
@cp ${WRKSRC}/asmrun/power-elf.S ${WRKSRC}/asmrun/power-bsd.S
post-install:
.if ${PROPERTIES:Mocaml_native}
@ln -sf ${LOCALBASE}/bin/ocamlbuild.native ${PREFIX}/bin/ocamlbuild
.else
@ln -sf ${LOCALBASE}/bin/ocamlbuild.byte ${PREFIX}/bin/ocamlbuild
.endif
@${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ocaml/html/libref
@${INSTALL_DATA} ${WRKDIR}/htmlman/*.{html,gif} \
${PREFIX}/share/doc/ocaml/html
@ -78,10 +81,6 @@ post-install:
${PREFIX}/share/doc/ocaml/html/libref
@strip ${PREFIX}/bin/ocamlrun ${PREFIX}/bin/ocamlyacc
@${INSTALL_DATA} ${WRKSRC}/LICENSE ${PREFIX}/share/doc/ocaml
@mkdir -p ${PREFIX}/lib/ocaml/compiler-libs
@cp -R ${WRKBUILD}/typing ${PREFIX}/lib/ocaml/compiler-libs
@cp -R ${WRKBUILD}/utils ${PREFIX}/lib/ocaml/compiler-libs
@cp -R ${WRKBUILD}/parsing ${PREFIX}/lib/ocaml/compiler-libs
# PFRAG.native was generated from PLIST with:
# egrep '(ocamlopt|\.cmx|\.cmxa|\.cmxs|\.opt|opt\.1|opt.cmi|\.native|\.o)$'

View File

@ -1,10 +1,4 @@
MD5 (ocaml-3.12-refman.html.tar.gz) = 9iqLsYHBynsyM9uo/1HdRg==
MD5 (ocaml-3.12.1.tar.gz) = gUoEcIXw+QGrfY46S3qeZQ==
RMD160 (ocaml-3.12-refman.html.tar.gz) = Z/9JVK/xi6KZHkHfkEVKo2+JuO8=
RMD160 (ocaml-3.12.1.tar.gz) = +GnGuHWtkl+Aw7I1yu4/5MZ/uyk=
SHA1 (ocaml-3.12-refman.html.tar.gz) = B5kbjppWNpAMQSYFbaaTMaMPi4s=
SHA1 (ocaml-3.12.1.tar.gz) = BRJdoFXTndb+j+XAFVsun1XBDf0=
SHA256 (ocaml-3.12-refman.html.tar.gz) = hLnXk94lx11KO3zSB7wX3c8BDIp0KWztdMVYFPbQOKE=
SHA256 (ocaml-3.12.1.tar.gz) = T4GrhiWL4O6hUH3VM4yGcEkPhhYkmCHnMfisHGTKpKc=
SIZE (ocaml-3.12-refman.html.tar.gz) = 526923
SIZE (ocaml-3.12.1.tar.gz) = 3660473
SHA256 (ocaml-4.00-refman-html.tar.gz) = jKQ4WdinHwlBokU7e4CNflitVIBKnPKFh1+jDmV2sxo=
SHA256 (ocaml-4.00.0.tar.gz) = nqVURTgUSBG1/ZxxctY6vA0ca6a2TSxgR0gH/FetTG4=
SIZE (ocaml-4.00-refman-html.tar.gz) = 549757
SIZE (ocaml-4.00.0.tar.gz) = 3394054

View File

@ -1,4 +1,4 @@
# $OpenBSD: ocaml.port.mk,v 1.17 2012/06/25 11:43:35 espie Exp $
# $OpenBSD: ocaml.port.mk,v 1.18 2012/08/18 21:49:16 avsm Exp $
# regular file usage for bytecode:
# PLIST -- bytecode base files
@ -9,17 +9,17 @@
# PFRAG.foo-native -- nativecode files for FLAVOR == foo
# PFRAG.no-foo-native -- nativecode files for FLAVOR != foo
OCAML_VERSION=3.12.1
OCAML_VERSION=4.00.0
.if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "i386" || \
${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "amd64" || \
${MACHINE_ARCH} == "powerpc"
.include <bsd.port.arch.mk>
.if ${PROPERTIES:Mocaml_native}
MODOCAML_NATIVE=Yes
# include nativecode base files
PKG_ARGS+=-Dnative=1
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
.if ${PROPERTIES:Mocaml_native_dynlink}
MODOCAML_NATDYNLINK=Yes
# include native dynlink base files
@ -43,5 +43,79 @@ PKG_ARGS+=-Dnative=0
.endif
BUILD_DEPENDS+= lang/ocaml=${OCAML_VERSION}
MAKE_ENV+= OCAMLFIND_DESTDIR=${DESTDIR}${TRUEPREFIX}/lib/ocaml/site-lib
MAKE_ENV+= OCAMLFIND_DESTDIR=${DESTDIR}${TRUEPREFIX}/lib/ocaml
NAME ?= ${PKGNAME:C/-[0-9].*//}
MODOCAML_pre-fake = \
${SUDO} ${INSTALL_DATA_DIR} ${WRKINST}${LOCALBASE}/lib/ocaml/stublibs
######################################################################
#
# CONFIGURE_STYLE for oasis.
#
# Also overrides do-{build,install,test}
#
.if ${CONFIGURE_STYLE:L:Moasis}
ALL_TARGET ?= -build -doc
# XXX can't do ?= here, because INSTALL_TARGET is already initialized
# with default value
INSTALL_TARGET = -install
REGRESS_TARGET ?= -test
_MODOASIS_SETUP = ${WRKDIR}/oasis_setup.byte
######################################################################
# CONFIGURE
.if ${PROPERTIES:Mocaml_native}
_MODOASIS_OCAMLC = ocamlc.opt
.else
_MODOASIS_OCAMLC = ocamlc
.endif
MODOASIS_configure = \
${_MODOASIS_OCAMLC} -o ${_MODOASIS_SETUP} ${WRKSRC}/setup.ml && \
cd ${WRKSRC} && \
rm setup.cm[io] && \
${SETENV} ${CONFIGURE_ENV} ${_MODOASIS_SETUP} -configure \
--destdir ${WRKINST} \
--override pkg_name ${NAME} \
${CONFIGURE_ARGS}
######################################################################
# BUILD
MODOASIS_BUILD_TARGET = cd ${WRKSRC}
. for TARGET in ${ALL_TARGET}
MODOASIS_BUILD_TARGET += \
&& ${SETENV} ${MAKE_ENV} ${_MODOASIS_SETUP} ${TARGET}
. endfor
. if !target(do-build)
do-build:
${MODOASIS_BUILD_TARGET}
. endif
######################################################################
# INSTALL
MODOASIS_INSTALL_TARGET = cd ${WRKSRC}
. for TARGET in ${INSTALL_TARGET}
MODOASIS_INSTALL_TARGET += \
&& ${SETENV} ${MAKE_ENV} ${_MODOASIS_SETUP} ${TARGET}
. endfor
. if !target(do-install)
do-install:
${MODOASIS_INSTALL_TARGET}
. endif
######################################################################
# REGRESS
MODOASIS_REGRESS_TARGET = cd ${WRKSRC}
. for TARGET in ${REGRESS_TARGET}
MODOASIS_REGRESS_TARGET += \
&& ${SETENV} ${MAKE_ENV} ${_MODOASIS_SETUP} ${TARGET}
. endfor
. if !target(do-regress)
do-regress:
${MODOASIS_REGRESS_TARGET}
. endif
.endif

View File

@ -1,52 +1,50 @@
$OpenBSD: patch-configure,v 1.14 2010/12/17 18:42:04 dcoppa Exp $
--- configure.orig Wed Jul 28 15:18:22 2010
+++ configure Thu Nov 18 10:07:33 2010
@@ -629,6 +629,8 @@ if test $withsharedlibs = "yes"; then
$OpenBSD: patch-configure,v 1.15 2012/08/18 21:49:16 avsm Exp $
--- configure.orig Tue Jun 26 17:33:50 2012
+++ configure Mon Jul 30 12:28:54 2012
@@ -641,11 +641,11 @@ if test $withsharedlibs = "yes"; then
sparc*-*-linux*) natdynlink=true;;
i686-*-kfreebsd*) natdynlink=true;;
x86_64-*-kfreebsd*) natdynlink=true;;
- i[345]86-*-freebsd*) natdynlink=true;;
+ i[3456]86-*-freebsd*) natdynlink=true;;
x86_64-*-freebsd*) natdynlink=true;;
- i[345]86-*-openbsd*) natdynlink=true;;
+ i[3456]86-*-openbsd*) natdynlink=true;;
x86_64-*-openbsd*) natdynlink=true;;
- i[345]86-*-netbsd*) natdynlink=true;;
+ i[3456]86-*-netbsd*) natdynlink=true;;
x86_64-*-netbsd*) natdynlink=true;;
i386-*-gnu0.3) natdynlink=true;;
+ i[3456]86-*-openbsd*) natdynlink=true;;
+ x86_64-*-openbsd*) natdynlink=true;;
esac
fi
@@ -674,6 +676,7 @@ case "$host" in
fi;;
arm*-*-linux*) natdynlink=true;;
@@ -688,10 +688,13 @@ case "$host" in
i[3456]86-*-gnu*) arch=i386; system=gnu;;
mips-*-irix6*) arch=mips; system=irix;;
+ mips*-*-openbsd*) arch=mips; system=openbsd;;
hppa1.1-*-hpux*) arch=hppa; system=hpux;;
hppa2.0*-*-hpux*) arch=hppa; system=hpux;;
hppa*-*-linux*) arch=hppa; system=linux;;
@@ -683,8 +686,11 @@ case "$host" in
powerpc*-*-linux*) arch=power; model=ppc; system=elf;;
powerpc-*-netbsd*) arch=power; model=ppc; system=elf;;
+ powerpc-*-openbsd*) arch=power; model=ppc; system=elf;;
powerpc-*-rhapsody*) arch=power; model=ppc; system=rhapsody;;
powerpc-*-darwin*) arch=power; system=rhapsody
if $arch64; then model=ppc64; else model=ppc; fi;;
+ powerpc-*-openbsd*) arch=power; model=ppc; system=bsd;;
arm*-*-linux*) arch=arm; system=linux;;
arm*-*-gnu*) arch=arm; system=gnu;;
arm*-*-linux-gnueabihf) arch=arm; system=linux_eabihf;;
+ arm*-*-openbsd*) arch=arm; system=openbsd;;
+ zaurus*-*-openbsd*) arch=arm; system=openbsd;;
ia64-*-linux*) arch=ia64; system=linux;;
ia64-*-gnu*) arch=ia64; system=gnu;;
ia64-*-freebsd*) arch=ia64; system=freebsd;;
@@ -784,11 +790,15 @@ if test -n "$asppoption"; then aspp="$asppoption"; fi
cc_profile='-pg'
case "$arch,$model,$system" in
alpha,*,digital) profiling='prof';;
+ alpha,*,openbsd) profiling='prof';;
i386,*,linux_elf) profiling='prof';;
i386,*,gnu) profiling='prof';;
armv7*-*-linux-gnueabi) arch=arm; model=armv7; system=linux_eabi;;
armv6t2*-*-linux-gnueabi) arch=arm; model=armv6t2; system=linux_eabi;;
armv6*-*-linux-gnueabi) arch=arm; model=armv6; system=linux_eabi;;
@@ -780,10 +783,13 @@ case "$arch,$model,$system" in
i386,*,bsd_elf) profiling='prof';;
amd64,*,macosx) profiling='prof';;
i386,*,macosx) profiling='prof';;
+ amd64,*,openbsd) profiling='prof';;
+ power,*,bsd) profiling='prof';;
+ sparc,*,bsd) profiling='prof';;
sparc,*,solaris)
profiling='prof'
case "$nativecc" in gcc*) ;; *) cc_profile='-xpg';; esac;;
@@ -1570,11 +1580,11 @@ fi
amd64,*,linux) profiling='prof';;
+ amd64,*,openbsd) profiling='prof';;
+ power,*,elf) profiling='prof';;
amd64,*,gnu) profiling='prof';;
arm,*,linux*) profiling='prof';;
*) profiling='noprof';;
@@ -1543,11 +1549,11 @@ fi
# Look for BFD library

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-testsuite_tests_asmcomp_i386_S,v 1.1 2010/12/07 15:01:35 dcoppa Exp $
--- testsuite/tests/asmcomp/i386.S.orig Wed Nov 17 12:39:22 2010
+++ testsuite/tests/asmcomp/i386.S Wed Nov 17 12:43:52 2010
@@ -15,7 +15,7 @@
/* Linux with ELF binaries does not prefix identifiers with _.
Linux with a.out binaries, FreeBSD, and NextStep do. */
-#ifdef SYS_linux_elf
+#if defined(SYS_linux_elf) || defined(SYS_bsd_elf)
#define G(x) x
#define FUNCTION_ALIGN 16
#else

View File

@ -1,6 +1,5 @@
@comment $OpenBSD: PFRAG.dynlink-native,v 1.1 2010/12/07 15:01:35 dcoppa Exp $
@comment $OpenBSD: PFRAG.dynlink-native,v 1.2 2012/08/18 21:49:16 avsm Exp $
@bin lib/ocaml/bigarray.cmxs
@bin lib/ocaml/dbm.cmxs
lib/ocaml/dynlink.a
lib/ocaml/dynlink.cmx
lib/ocaml/dynlink.cmxa

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PFRAG.native,v 1.12 2011/12/21 21:31:50 avsm Exp $
@comment $OpenBSD: PFRAG.native,v 1.13 2012/08/18 21:49:16 avsm Exp $
@bin bin/camlp4o.opt
@bin bin/camlp4of.opt
@bin bin/camlp4oof.opt
@ -104,11 +104,57 @@ lib/ocaml/camlp4/camlp4prof.cmx
lib/ocaml/camlp4/camlp4prof.o
lib/ocaml/char.cmx
lib/ocaml/char.p.cmx
lib/ocaml/compiler-libs/arch.cmi
lib/ocaml/compiler-libs/asmgen.cmi
lib/ocaml/compiler-libs/asmlibrarian.cmi
lib/ocaml/compiler-libs/asmlink.cmi
lib/ocaml/compiler-libs/asmpackager.cmi
lib/ocaml/compiler-libs/clambda.cmi
lib/ocaml/compiler-libs/closure.cmi
lib/ocaml/compiler-libs/cmm.cmi
lib/ocaml/compiler-libs/cmmgen.cmi
lib/ocaml/compiler-libs/cmx_format.cmi
lib/ocaml/compiler-libs/coloring.cmi
lib/ocaml/compiler-libs/comballoc.cmi
lib/ocaml/compiler-libs/compilenv.cmi
lib/ocaml/compiler-libs/debuginfo.cmi
lib/ocaml/compiler-libs/emit.cmi
lib/ocaml/compiler-libs/emitaux.cmi
lib/ocaml/compiler-libs/interf.cmi
lib/ocaml/compiler-libs/linearize.cmi
lib/ocaml/compiler-libs/liveness.cmi
lib/ocaml/compiler-libs/mach.cmi
lib/ocaml/compiler-libs/main.cmx
lib/ocaml/compiler-libs/main.o
lib/ocaml/compiler-libs/ocamlbytecomp.a
lib/ocaml/compiler-libs/ocamlbytecomp.cmxa
lib/ocaml/compiler-libs/ocamlcommon.a
lib/ocaml/compiler-libs/ocamlcommon.cmxa
lib/ocaml/compiler-libs/ocamloptcomp.a
lib/ocaml/compiler-libs/ocamloptcomp.cma
lib/ocaml/compiler-libs/ocamloptcomp.cmxa
lib/ocaml/compiler-libs/optcompile.cmi
lib/ocaml/compiler-libs/opterrors.cmi
lib/ocaml/compiler-libs/optmain.cmi
lib/ocaml/compiler-libs/optmain.cmo
lib/ocaml/compiler-libs/optmain.cmx
lib/ocaml/compiler-libs/optmain.o
lib/ocaml/compiler-libs/printclambda.cmi
lib/ocaml/compiler-libs/printcmm.cmi
lib/ocaml/compiler-libs/printlinear.cmi
lib/ocaml/compiler-libs/printmach.cmi
lib/ocaml/compiler-libs/proc.cmi
lib/ocaml/compiler-libs/reg.cmi
lib/ocaml/compiler-libs/reload.cmi
lib/ocaml/compiler-libs/reloadgen.cmi
lib/ocaml/compiler-libs/schedgen.cmi
lib/ocaml/compiler-libs/scheduling.cmi
lib/ocaml/compiler-libs/selectgen.cmi
lib/ocaml/compiler-libs/selection.cmi
lib/ocaml/compiler-libs/spill.cmi
lib/ocaml/compiler-libs/split.cmi
lib/ocaml/complex.cmx
lib/ocaml/complex.p.cmx
lib/ocaml/dbm.a
lib/ocaml/dbm.cmx
lib/ocaml/dbm.cmxa
lib/ocaml/digest.cmx
lib/ocaml/digest.p.cmx
lib/ocaml/filename.cmx
@ -272,6 +318,8 @@ lib/ocaml/printexc.cmx
lib/ocaml/printexc.p.cmx
lib/ocaml/printf.cmx
lib/ocaml/printf.p.cmx
lib/ocaml/profiling.cmx
lib/ocaml/profiling.o
lib/ocaml/queue.cmx
lib/ocaml/queue.p.cmx
lib/ocaml/random.cmx
@ -319,168 +367,4 @@ lib/ocaml/unix.cmxa
lib/ocaml/unixLabels.cmx
lib/ocaml/weak.cmx
lib/ocaml/weak.p.cmx
@man man/man3/Arg.3o
@man man/man3/Array.3o
@man man/man3/ArrayLabels.3o
@man man/man3/Bigarray.3o
@man man/man3/Bigarray.Array1.3o
@man man/man3/Bigarray.Array2.3o
@man man/man3/Bigarray.Array3.3o
@man man/man3/Bigarray.Genarray.3o
@man man/man3/Buffer.3o
@man man/man3/Callback.3o
@man man/man3/CamlinternalLazy.3o
@man man/man3/CamlinternalMod.3o
@man man/man3/CamlinternalOO.3o
@man man/man3/Char.3o
@man man/man3/Complex.3o
@man man/man3/Digest.3o
@man man/man3/Filename.3o
@man man/man3/Format.3o
@man man/man3/Gc.3o
@man man/man3/Genlex.3o
@man man/man3/Hashtbl.3o
@man man/man3/Hashtbl.HashedType.3o
@man man/man3/Hashtbl.Make.3o
@man man/man3/Hashtbl.S.3o
@man man/man3/Int32.3o
@man man/man3/Int64.3o
@man man/man3/Lazy.3o
@man man/man3/Lexing.3o
@man man/man3/List.3o
@man man/man3/ListLabels.3o
@man man/man3/Map.3o
@man man/man3/Map.Make.3o
@man man/man3/Map.OrderedType.3o
@man man/man3/Map.S.3o
@man man/man3/Marshal.3o
@man man/man3/MoreLabels.3o
@man man/man3/MoreLabels.Hashtbl.3o
@man man/man3/MoreLabels.Hashtbl.HashedType.3o
@man man/man3/MoreLabels.Hashtbl.Make.3o
@man man/man3/MoreLabels.Hashtbl.S.3o
@man man/man3/MoreLabels.Map.3o
@man man/man3/MoreLabels.Map.Make.3o
@man man/man3/MoreLabels.Map.OrderedType.3o
@man man/man3/MoreLabels.Map.S.3o
@man man/man3/MoreLabels.Set.3o
@man man/man3/MoreLabels.Set.Make.3o
@man man/man3/MoreLabels.Set.OrderedType.3o
@man man/man3/MoreLabels.Set.S.3o
@man man/man3/Nativeint.3o
@man man/man3/Num.3o
@man man/man3/Obj.3o
@man man/man3/Oo.3o
@man man/man3/Parsing.3o
@man man/man3/Pervasives.3o
@man man/man3/Pervasives.LargeFile.3o
@man man/man3/Printexc.3o
@man man/man3/Printf.3o
@man man/man3/Queue.3o
@man man/man3/Random.3o
@man man/man3/Random.State.3o
@man man/man3/Scanf.3o
@man man/man3/Scanf.Scanning.3o
@man man/man3/Set.3o
@man man/man3/Set.Make.3o
@man man/man3/Set.OrderedType.3o
@man man/man3/Set.S.3o
@man man/man3/Sort.3o
@man man/man3/Stack.3o
@man man/man3/StdLabels.3o
@man man/man3/StdLabels.Array.3o
@man man/man3/StdLabels.List.3o
@man man/man3/StdLabels.String.3o
@man man/man3/Str.3o
@man man/man3/Stream.3o
@man man/man3/String.3o
@man man/man3/StringLabels.3o
@man man/man3/Sys.3o
@man man/man3/Unix.3o
@man man/man3/Unix.LargeFile.3o
@man man/man3/Weak.3o
@man man/man3/Weak.Make.3o
@man man/man3/Weak.S.3o
%%dynlink%%
lib/ocaml/compiler-libs/parsing/lexer.cmx
lib/ocaml/compiler-libs/parsing/linenum.cmx
lib/ocaml/compiler-libs/parsing/location.cmx
lib/ocaml/compiler-libs/parsing/longident.cmx
lib/ocaml/compiler-libs/parsing/parse.cmx
lib/ocaml/compiler-libs/parsing/parser.cmx
lib/ocaml/compiler-libs/parsing/printast.cmx
lib/ocaml/compiler-libs/parsing/syntaxerr.cmx
lib/ocaml/compiler-libs/typing/btype.cmx
lib/ocaml/compiler-libs/typing/ctype.cmx
lib/ocaml/compiler-libs/typing/datarepr.cmx
lib/ocaml/compiler-libs/typing/env.cmx
lib/ocaml/compiler-libs/typing/ident.cmx
lib/ocaml/compiler-libs/typing/includeclass.cmx
lib/ocaml/compiler-libs/typing/includecore.cmx
lib/ocaml/compiler-libs/typing/includemod.cmx
lib/ocaml/compiler-libs/typing/mtype.cmx
lib/ocaml/compiler-libs/typing/oprint.cmx
lib/ocaml/compiler-libs/typing/parmatch.cmx
lib/ocaml/compiler-libs/typing/path.cmx
lib/ocaml/compiler-libs/typing/predef.cmx
lib/ocaml/compiler-libs/typing/primitive.cmx
lib/ocaml/compiler-libs/typing/printtyp.cmx
lib/ocaml/compiler-libs/typing/stypes.cmx
lib/ocaml/compiler-libs/typing/subst.cmx
lib/ocaml/compiler-libs/typing/typeclass.cmx
lib/ocaml/compiler-libs/typing/typecore.cmx
lib/ocaml/compiler-libs/typing/typedecl.cmx
lib/ocaml/compiler-libs/typing/typedtree.cmx
lib/ocaml/compiler-libs/typing/typemod.cmx
lib/ocaml/compiler-libs/typing/types.cmx
lib/ocaml/compiler-libs/typing/typetexp.cmx
lib/ocaml/compiler-libs/typing/unused_var.cmx
lib/ocaml/compiler-libs/utils/ccomp.cmx
lib/ocaml/compiler-libs/utils/clflags.cmx
lib/ocaml/compiler-libs/utils/config.cmx
lib/ocaml/compiler-libs/utils/consistbl.cmx
lib/ocaml/compiler-libs/utils/misc.cmx
lib/ocaml/compiler-libs/utils/tbl.cmx
lib/ocaml/compiler-libs/utils/terminfo.cmx
lib/ocaml/compiler-libs/utils/warnings.cmx
lib/ocaml/compiler-libs/parsing/lexer.o
lib/ocaml/compiler-libs/parsing/linenum.o
lib/ocaml/compiler-libs/parsing/location.o
lib/ocaml/compiler-libs/parsing/longident.o
lib/ocaml/compiler-libs/parsing/parse.o
lib/ocaml/compiler-libs/parsing/parser.o
lib/ocaml/compiler-libs/parsing/printast.o
lib/ocaml/compiler-libs/parsing/syntaxerr.o
lib/ocaml/compiler-libs/typing/btype.o
lib/ocaml/compiler-libs/typing/ctype.o
lib/ocaml/compiler-libs/typing/datarepr.o
lib/ocaml/compiler-libs/typing/env.o
lib/ocaml/compiler-libs/typing/ident.o
lib/ocaml/compiler-libs/typing/includeclass.o
lib/ocaml/compiler-libs/typing/includecore.o
lib/ocaml/compiler-libs/typing/includemod.o
lib/ocaml/compiler-libs/typing/mtype.o
lib/ocaml/compiler-libs/typing/oprint.o
lib/ocaml/compiler-libs/typing/parmatch.o
lib/ocaml/compiler-libs/typing/path.o
lib/ocaml/compiler-libs/typing/predef.o
lib/ocaml/compiler-libs/typing/primitive.o
lib/ocaml/compiler-libs/typing/printtyp.o
lib/ocaml/compiler-libs/typing/stypes.o
lib/ocaml/compiler-libs/typing/subst.o
lib/ocaml/compiler-libs/typing/typeclass.o
lib/ocaml/compiler-libs/typing/typecore.o
lib/ocaml/compiler-libs/typing/typedecl.o
lib/ocaml/compiler-libs/typing/typedtree.o
lib/ocaml/compiler-libs/typing/typemod.o
lib/ocaml/compiler-libs/typing/types.o
lib/ocaml/compiler-libs/typing/typetexp.o
lib/ocaml/compiler-libs/typing/unused_var.o
lib/ocaml/compiler-libs/utils/ccomp.o
lib/ocaml/compiler-libs/utils/clflags.o
lib/ocaml/compiler-libs/utils/config.o
lib/ocaml/compiler-libs/utils/consistbl.o
lib/ocaml/compiler-libs/utils/misc.o
lib/ocaml/compiler-libs/utils/tbl.o
lib/ocaml/compiler-libs/utils/terminfo.o
lib/ocaml/compiler-libs/utils/warnings.o

View File

@ -1,10 +1,9 @@
@comment $OpenBSD: PFRAG.shared,v 1.3 2010/12/07 15:01:35 dcoppa Exp $
@comment $OpenBSD: PFRAG.shared,v 1.4 2012/08/18 21:49:16 avsm Exp $
lib/ocaml/libcamlrun_shared.so
lib/ocaml/stublibs/dllbigarray.so
lib/ocaml/stublibs/dllcamlstr.so
lib/ocaml/stublibs/dllgraphics.so
lib/ocaml/stublibs/dlllabltk.so
lib/ocaml/stublibs/dllmldbm.so
lib/ocaml/stublibs/dllnums.so
lib/ocaml/stublibs/dllthreads.so
lib/ocaml/stublibs/dllunix.so

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.21 2011/12/21 21:31:50 avsm Exp $
@comment $OpenBSD: PLIST,v 1.22 2012/08/18 21:49:16 avsm Exp $
%%SHARED%%
bin/camlp4
bin/camlp4boot
@ -13,7 +13,7 @@ bin/labltk
bin/mkcamlp4
bin/ocaml
bin/ocamlbrowser
@bin bin/ocamlbuild
bin/ocamlbuild
bin/ocamlbuild.byte
bin/ocamlc
bin/ocamlcp
@ -24,11 +24,13 @@ bin/ocamllex
bin/ocamlmklib
bin/ocamlmktop
bin/ocamlobjinfo
bin/ocamloptp
bin/ocamlprof
@bin bin/ocamlrun
@bin bin/ocamlyacc
lib/ocaml/
lib/ocaml/Makefile.config
lib/ocaml/VERSION
lib/ocaml/arg.cmi
lib/ocaml/arg.ml
lib/ocaml/arg.mli
@ -59,6 +61,7 @@ lib/ocaml/caml/compatibility.h
lib/ocaml/caml/config.h
lib/ocaml/caml/custom.h
lib/ocaml/caml/fail.h
lib/ocaml/caml/hash.h
lib/ocaml/caml/intext.h
lib/ocaml/caml/memory.h
lib/ocaml/caml/misc.h
@ -165,194 +168,97 @@ lib/ocaml/char.cmi
lib/ocaml/char.ml
lib/ocaml/char.mli
lib/ocaml/compiler-libs/
lib/ocaml/compiler-libs/parsing/
lib/ocaml/compiler-libs/parsing/asttypes.cmi
lib/ocaml/compiler-libs/parsing/asttypes.mli
lib/ocaml/compiler-libs/parsing/lexer.cmi
lib/ocaml/compiler-libs/parsing/lexer.cmo
lib/ocaml/compiler-libs/parsing/lexer.ml
lib/ocaml/compiler-libs/parsing/lexer.mli
lib/ocaml/compiler-libs/parsing/lexer.mll
lib/ocaml/compiler-libs/parsing/linenum.cmi
lib/ocaml/compiler-libs/parsing/linenum.cmo
lib/ocaml/compiler-libs/parsing/linenum.ml
lib/ocaml/compiler-libs/parsing/linenum.mli
lib/ocaml/compiler-libs/parsing/linenum.mll
lib/ocaml/compiler-libs/parsing/location.cmi
lib/ocaml/compiler-libs/parsing/location.cmo
lib/ocaml/compiler-libs/parsing/location.ml
lib/ocaml/compiler-libs/parsing/location.mli
lib/ocaml/compiler-libs/parsing/longident.cmi
lib/ocaml/compiler-libs/parsing/longident.cmo
lib/ocaml/compiler-libs/parsing/longident.ml
lib/ocaml/compiler-libs/parsing/longident.mli
lib/ocaml/compiler-libs/parsing/parse.cmi
lib/ocaml/compiler-libs/parsing/parse.cmo
lib/ocaml/compiler-libs/parsing/parse.ml
lib/ocaml/compiler-libs/parsing/parse.mli
lib/ocaml/compiler-libs/parsing/parser.cmi
lib/ocaml/compiler-libs/parsing/parser.cmo
lib/ocaml/compiler-libs/parsing/parser.ml
lib/ocaml/compiler-libs/parsing/parser.mli
lib/ocaml/compiler-libs/parsing/parser.mly
lib/ocaml/compiler-libs/parsing/parser.output
lib/ocaml/compiler-libs/parsing/parsetree.cmi
lib/ocaml/compiler-libs/parsing/parsetree.mli
lib/ocaml/compiler-libs/parsing/printast.cmi
lib/ocaml/compiler-libs/parsing/printast.cmo
lib/ocaml/compiler-libs/parsing/printast.ml
lib/ocaml/compiler-libs/parsing/printast.mli
lib/ocaml/compiler-libs/parsing/syntaxerr.cmi
lib/ocaml/compiler-libs/parsing/syntaxerr.cmo
lib/ocaml/compiler-libs/parsing/syntaxerr.ml
lib/ocaml/compiler-libs/parsing/syntaxerr.mli
lib/ocaml/compiler-libs/typing/
lib/ocaml/compiler-libs/typing/annot.cmi
lib/ocaml/compiler-libs/typing/annot.mli
lib/ocaml/compiler-libs/typing/btype.cmi
lib/ocaml/compiler-libs/typing/btype.cmo
lib/ocaml/compiler-libs/typing/btype.ml
lib/ocaml/compiler-libs/typing/btype.mli
lib/ocaml/compiler-libs/typing/ctype.cmi
lib/ocaml/compiler-libs/typing/ctype.cmo
lib/ocaml/compiler-libs/typing/ctype.ml
lib/ocaml/compiler-libs/typing/ctype.mli
lib/ocaml/compiler-libs/typing/datarepr.cmi
lib/ocaml/compiler-libs/typing/datarepr.cmo
lib/ocaml/compiler-libs/typing/datarepr.ml
lib/ocaml/compiler-libs/typing/datarepr.mli
lib/ocaml/compiler-libs/typing/env.cmi
lib/ocaml/compiler-libs/typing/env.cmo
lib/ocaml/compiler-libs/typing/env.ml
lib/ocaml/compiler-libs/typing/env.mli
lib/ocaml/compiler-libs/typing/ident.cmi
lib/ocaml/compiler-libs/typing/ident.cmo
lib/ocaml/compiler-libs/typing/ident.ml
lib/ocaml/compiler-libs/typing/ident.mli
lib/ocaml/compiler-libs/typing/includeclass.cmi
lib/ocaml/compiler-libs/typing/includeclass.cmo
lib/ocaml/compiler-libs/typing/includeclass.ml
lib/ocaml/compiler-libs/typing/includeclass.mli
lib/ocaml/compiler-libs/typing/includecore.cmi
lib/ocaml/compiler-libs/typing/includecore.cmo
lib/ocaml/compiler-libs/typing/includecore.ml
lib/ocaml/compiler-libs/typing/includecore.mli
lib/ocaml/compiler-libs/typing/includemod.cmi
lib/ocaml/compiler-libs/typing/includemod.cmo
lib/ocaml/compiler-libs/typing/includemod.ml
lib/ocaml/compiler-libs/typing/includemod.mli
lib/ocaml/compiler-libs/typing/mtype.cmi
lib/ocaml/compiler-libs/typing/mtype.cmo
lib/ocaml/compiler-libs/typing/mtype.ml
lib/ocaml/compiler-libs/typing/mtype.mli
lib/ocaml/compiler-libs/typing/oprint.cmi
lib/ocaml/compiler-libs/typing/oprint.cmo
lib/ocaml/compiler-libs/typing/oprint.ml
lib/ocaml/compiler-libs/typing/oprint.mli
lib/ocaml/compiler-libs/typing/outcometree.cmi
lib/ocaml/compiler-libs/typing/outcometree.mli
lib/ocaml/compiler-libs/typing/parmatch.cmi
lib/ocaml/compiler-libs/typing/parmatch.cmo
lib/ocaml/compiler-libs/typing/parmatch.ml
lib/ocaml/compiler-libs/typing/parmatch.mli
lib/ocaml/compiler-libs/typing/path.cmi
lib/ocaml/compiler-libs/typing/path.cmo
lib/ocaml/compiler-libs/typing/path.ml
lib/ocaml/compiler-libs/typing/path.mli
lib/ocaml/compiler-libs/typing/predef.cmi
lib/ocaml/compiler-libs/typing/predef.cmo
lib/ocaml/compiler-libs/typing/predef.ml
lib/ocaml/compiler-libs/typing/predef.mli
lib/ocaml/compiler-libs/typing/primitive.cmi
lib/ocaml/compiler-libs/typing/primitive.cmo
lib/ocaml/compiler-libs/typing/primitive.ml
lib/ocaml/compiler-libs/typing/primitive.mli
lib/ocaml/compiler-libs/typing/printtyp.cmi
lib/ocaml/compiler-libs/typing/printtyp.cmo
lib/ocaml/compiler-libs/typing/printtyp.ml
lib/ocaml/compiler-libs/typing/printtyp.mli
lib/ocaml/compiler-libs/typing/stypes.cmi
lib/ocaml/compiler-libs/typing/stypes.cmo
lib/ocaml/compiler-libs/typing/stypes.ml
lib/ocaml/compiler-libs/typing/stypes.mli
lib/ocaml/compiler-libs/typing/subst.cmi
lib/ocaml/compiler-libs/typing/subst.cmo
lib/ocaml/compiler-libs/typing/subst.ml
lib/ocaml/compiler-libs/typing/subst.mli
lib/ocaml/compiler-libs/typing/typeclass.cmi
lib/ocaml/compiler-libs/typing/typeclass.cmo
lib/ocaml/compiler-libs/typing/typeclass.ml
lib/ocaml/compiler-libs/typing/typeclass.mli
lib/ocaml/compiler-libs/typing/typecore.cmi
lib/ocaml/compiler-libs/typing/typecore.cmo
lib/ocaml/compiler-libs/typing/typecore.ml
lib/ocaml/compiler-libs/typing/typecore.mli
lib/ocaml/compiler-libs/typing/typedecl.cmi
lib/ocaml/compiler-libs/typing/typedecl.cmo
lib/ocaml/compiler-libs/typing/typedecl.ml
lib/ocaml/compiler-libs/typing/typedecl.mli
lib/ocaml/compiler-libs/typing/typedtree.cmi
lib/ocaml/compiler-libs/typing/typedtree.cmo
lib/ocaml/compiler-libs/typing/typedtree.ml
lib/ocaml/compiler-libs/typing/typedtree.mli
lib/ocaml/compiler-libs/typing/typemod.cmi
lib/ocaml/compiler-libs/typing/typemod.cmo
lib/ocaml/compiler-libs/typing/typemod.ml
lib/ocaml/compiler-libs/typing/typemod.mli
lib/ocaml/compiler-libs/typing/types.cmi
lib/ocaml/compiler-libs/typing/types.cmo
lib/ocaml/compiler-libs/typing/types.ml
lib/ocaml/compiler-libs/typing/types.mli
lib/ocaml/compiler-libs/typing/typetexp.cmi
lib/ocaml/compiler-libs/typing/typetexp.cmo
lib/ocaml/compiler-libs/typing/typetexp.ml
lib/ocaml/compiler-libs/typing/typetexp.mli
lib/ocaml/compiler-libs/typing/unused_var.cmi
lib/ocaml/compiler-libs/typing/unused_var.cmo
lib/ocaml/compiler-libs/typing/unused_var.ml
lib/ocaml/compiler-libs/typing/unused_var.mli
lib/ocaml/compiler-libs/utils/
lib/ocaml/compiler-libs/utils/ccomp.cmi
lib/ocaml/compiler-libs/utils/ccomp.cmo
lib/ocaml/compiler-libs/utils/ccomp.ml
lib/ocaml/compiler-libs/utils/ccomp.mli
lib/ocaml/compiler-libs/utils/clflags.cmi
lib/ocaml/compiler-libs/utils/clflags.cmo
lib/ocaml/compiler-libs/utils/clflags.ml
lib/ocaml/compiler-libs/utils/clflags.mli
lib/ocaml/compiler-libs/utils/config.cmi
lib/ocaml/compiler-libs/utils/config.cmo
lib/ocaml/compiler-libs/utils/config.ml
lib/ocaml/compiler-libs/utils/config.mlbuild
lib/ocaml/compiler-libs/utils/config.mli
lib/ocaml/compiler-libs/utils/config.mlp
lib/ocaml/compiler-libs/utils/consistbl.cmi
lib/ocaml/compiler-libs/utils/consistbl.cmo
lib/ocaml/compiler-libs/utils/consistbl.ml
lib/ocaml/compiler-libs/utils/consistbl.mli
lib/ocaml/compiler-libs/utils/misc.cmi
lib/ocaml/compiler-libs/utils/misc.cmo
lib/ocaml/compiler-libs/utils/misc.ml
lib/ocaml/compiler-libs/utils/misc.mli
lib/ocaml/compiler-libs/utils/tbl.cmi
lib/ocaml/compiler-libs/utils/tbl.cmo
lib/ocaml/compiler-libs/utils/tbl.ml
lib/ocaml/compiler-libs/utils/tbl.mli
lib/ocaml/compiler-libs/utils/terminfo.cmi
lib/ocaml/compiler-libs/utils/terminfo.cmo
lib/ocaml/compiler-libs/utils/terminfo.ml
lib/ocaml/compiler-libs/utils/terminfo.mli
lib/ocaml/compiler-libs/utils/warnings.cmi
lib/ocaml/compiler-libs/utils/warnings.cmo
lib/ocaml/compiler-libs/utils/warnings.ml
lib/ocaml/compiler-libs/utils/warnings.mli
lib/ocaml/compiler-libs/annot.cmi
lib/ocaml/compiler-libs/asttypes.cmi
lib/ocaml/compiler-libs/btype.cmi
lib/ocaml/compiler-libs/bytegen.cmi
lib/ocaml/compiler-libs/bytelibrarian.cmi
lib/ocaml/compiler-libs/bytelink.cmi
lib/ocaml/compiler-libs/bytepackager.cmi
lib/ocaml/compiler-libs/bytesections.cmi
lib/ocaml/compiler-libs/ccomp.cmi
lib/ocaml/compiler-libs/clflags.cmi
lib/ocaml/compiler-libs/cmi_format.cmi
lib/ocaml/compiler-libs/cmo_format.cmi
lib/ocaml/compiler-libs/cmt_format.cmi
lib/ocaml/compiler-libs/compile.cmi
lib/ocaml/compiler-libs/config.cmi
lib/ocaml/compiler-libs/consistbl.cmi
lib/ocaml/compiler-libs/ctype.cmi
lib/ocaml/compiler-libs/datarepr.cmi
lib/ocaml/compiler-libs/dll.cmi
lib/ocaml/compiler-libs/emitcode.cmi
lib/ocaml/compiler-libs/env.cmi
lib/ocaml/compiler-libs/errors.cmi
lib/ocaml/compiler-libs/expunge.cmi
lib/ocaml/compiler-libs/genprintval.cmi
lib/ocaml/compiler-libs/ident.cmi
lib/ocaml/compiler-libs/includeclass.cmi
lib/ocaml/compiler-libs/includecore.cmi
lib/ocaml/compiler-libs/includemod.cmi
lib/ocaml/compiler-libs/instruct.cmi
lib/ocaml/compiler-libs/lambda.cmi
lib/ocaml/compiler-libs/lexer.cmi
lib/ocaml/compiler-libs/location.cmi
lib/ocaml/compiler-libs/longident.cmi
lib/ocaml/compiler-libs/main.cmi
lib/ocaml/compiler-libs/main.cmo
lib/ocaml/compiler-libs/main_args.cmi
lib/ocaml/compiler-libs/matching.cmi
lib/ocaml/compiler-libs/meta.cmi
lib/ocaml/compiler-libs/misc.cmi
lib/ocaml/compiler-libs/mtype.cmi
lib/ocaml/compiler-libs/ocamlbytecomp.cma
lib/ocaml/compiler-libs/ocamlcommon.cma
lib/ocaml/compiler-libs/ocamltoplevel.cma
lib/ocaml/compiler-libs/opcodes.cmi
lib/ocaml/compiler-libs/oprint.cmi
lib/ocaml/compiler-libs/outcometree.cmi
lib/ocaml/compiler-libs/parmatch.cmi
lib/ocaml/compiler-libs/parse.cmi
lib/ocaml/compiler-libs/parser.cmi
lib/ocaml/compiler-libs/parsetree.cmi
lib/ocaml/compiler-libs/path.cmi
lib/ocaml/compiler-libs/pparse.cmi
lib/ocaml/compiler-libs/predef.cmi
lib/ocaml/compiler-libs/primitive.cmi
lib/ocaml/compiler-libs/printast.cmi
lib/ocaml/compiler-libs/printinstr.cmi
lib/ocaml/compiler-libs/printlambda.cmi
lib/ocaml/compiler-libs/printtyp.cmi
lib/ocaml/compiler-libs/printtyped.cmi
lib/ocaml/compiler-libs/runtimedef.cmi
lib/ocaml/compiler-libs/simplif.cmi
lib/ocaml/compiler-libs/stypes.cmi
lib/ocaml/compiler-libs/subst.cmi
lib/ocaml/compiler-libs/switch.cmi
lib/ocaml/compiler-libs/symtable.cmi
lib/ocaml/compiler-libs/syntaxerr.cmi
lib/ocaml/compiler-libs/tbl.cmi
lib/ocaml/compiler-libs/terminfo.cmi
lib/ocaml/compiler-libs/topdirs.cmi
lib/ocaml/compiler-libs/toploop.cmi
lib/ocaml/compiler-libs/topmain.cmi
lib/ocaml/compiler-libs/topstart.cmi
lib/ocaml/compiler-libs/topstart.cmo
lib/ocaml/compiler-libs/trace.cmi
lib/ocaml/compiler-libs/translclass.cmi
lib/ocaml/compiler-libs/translcore.cmi
lib/ocaml/compiler-libs/translmod.cmi
lib/ocaml/compiler-libs/translobj.cmi
lib/ocaml/compiler-libs/typeclass.cmi
lib/ocaml/compiler-libs/typecore.cmi
lib/ocaml/compiler-libs/typedecl.cmi
lib/ocaml/compiler-libs/typedtree.cmi
lib/ocaml/compiler-libs/typemod.cmi
lib/ocaml/compiler-libs/typeopt.cmi
lib/ocaml/compiler-libs/types.cmi
lib/ocaml/compiler-libs/typetexp.cmi
lib/ocaml/compiler-libs/warnings.cmi
lib/ocaml/complex.cmi
lib/ocaml/complex.ml
lib/ocaml/complex.mli
lib/ocaml/condition.mli
lib/ocaml/dbm.cma
lib/ocaml/dbm.cmi
lib/ocaml/dbm.mli
lib/ocaml/digest.cmi
lib/ocaml/digest.ml
lib/ocaml/digest.mli
@ -622,7 +528,6 @@ lib/ocaml/libbigarray.a
lib/ocaml/libcamlrun.a
lib/ocaml/libcamlstr.a
lib/ocaml/libgraphics.a
lib/ocaml/libmldbm.a
lib/ocaml/libnums.a
lib/ocaml/libthreads.a
lib/ocaml/libunix.a
@ -681,6 +586,7 @@ 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_gen.cmi
lib/ocaml/ocamldoc/odoc_global.cmi
lib/ocaml/ocamldoc/odoc_html.cmi
lib/ocaml/ocamldoc/odoc_info.cma
@ -717,8 +623,6 @@ lib/ocaml/ocamldoc/odoc_value.cmi
lib/ocaml/oo.cmi
lib/ocaml/oo.ml
lib/ocaml/oo.mli
lib/ocaml/outcometree.cmi
lib/ocaml/outcometree.mli
lib/ocaml/parsing.cmi
lib/ocaml/parsing.ml
lib/ocaml/parsing.mli
@ -786,10 +690,6 @@ lib/ocaml/threads/thread.cmi
lib/ocaml/threads/threadUnix.cmi
lib/ocaml/threads/threads.cma
lib/ocaml/topdirs.cmi
lib/ocaml/toplevellib.cma
lib/ocaml/toploop.cmi
lib/ocaml/topmain.cmi
lib/ocaml/topstart.cmo
lib/ocaml/unix.cma
lib/ocaml/unix.cmi
lib/ocaml/unix.mli
@ -825,9 +725,94 @@ lib/ocaml/weak.mli
@man man/man1/ocamlmktop.1
@man man/man1/ocamlopt.1
@man man/man1/ocamlopt.opt.1
@man man/man1/ocamloptp.1
@man man/man1/ocamlprof.1
@man man/man1/ocamlrun.1
@man man/man1/ocamlyacc.1
@man man/man3/Arg.3o
@man man/man3/Array.3o
@man man/man3/ArrayLabels.3o
@man man/man3/Bigarray.3o
@man man/man3/Bigarray.Array1.3o
@man man/man3/Bigarray.Array2.3o
@man man/man3/Bigarray.Array3.3o
@man man/man3/Bigarray.Genarray.3o
@man man/man3/Buffer.3o
@man man/man3/Callback.3o
@man man/man3/CamlinternalLazy.3o
@man man/man3/CamlinternalMod.3o
@man man/man3/CamlinternalOO.3o
@man man/man3/Complex.3o
@man man/man3/Digest.3o
@man man/man3/Filename.3o
@man man/man3/Format.3o
@man man/man3/Gc.3o
@man man/man3/Genlex.3o
@man man/man3/Hashtbl.3o
@man man/man3/Hashtbl.HashedType.3o
@man man/man3/Hashtbl.Make.3o
@man man/man3/Hashtbl.MakeSeeded.3o
@man man/man3/Hashtbl.S.3o
@man man/man3/Hashtbl.SeededHashedType.3o
@man man/man3/Hashtbl.SeededS.3o
@man man/man3/Int32.3o
@man man/man3/Int64.3o
@man man/man3/Lexing.3o
@man man/man3/List.3o
@man man/man3/ListLabels.3o
@man man/man3/Map.3o
@man man/man3/Map.Make.3o
@man man/man3/Map.OrderedType.3o
@man man/man3/Map.S.3o
@man man/man3/Marshal.3o
@man man/man3/MoreLabels.3o
@man man/man3/MoreLabels.Hashtbl.3o
@man man/man3/MoreLabels.Hashtbl.HashedType.3o
@man man/man3/MoreLabels.Hashtbl.Make.3o
@man man/man3/MoreLabels.Hashtbl.MakeSeeded.3o
@man man/man3/MoreLabels.Hashtbl.S.3o
@man man/man3/MoreLabels.Hashtbl.SeededHashedType.3o
@man man/man3/MoreLabels.Hashtbl.SeededS.3o
@man man/man3/MoreLabels.Map.3o
@man man/man3/MoreLabels.Map.Make.3o
@man man/man3/MoreLabels.Map.OrderedType.3o
@man man/man3/MoreLabels.Map.S.3o
@man man/man3/MoreLabels.Set.3o
@man man/man3/MoreLabels.Set.Make.3o
@man man/man3/MoreLabels.Set.OrderedType.3o
@man man/man3/MoreLabels.Set.S.3o
@man man/man3/Nativeint.3o
@man man/man3/Num.3o
@man man/man3/Obj.3o
@man man/man3/Oo.3o
@man man/man3/Parsing.3o
@man man/man3/Pervasives.3o
@man man/man3/Pervasives.LargeFile.3o
@man man/man3/Printexc.3o
@man man/man3/Printf.3o
@man man/man3/Queue.3o
@man man/man3/Random.3o
@man man/man3/Random.State.3o
@man man/man3/Scanf.3o
@man man/man3/Scanf.Scanning.3o
@man man/man3/Set.Make.3o
@man man/man3/Set.OrderedType.3o
@man man/man3/Set.S.3o
@man man/man3/Sort.3o
@man man/man3/Stack.3o
@man man/man3/StdLabels.3o
@man man/man3/StdLabels.Array.3o
@man man/man3/StdLabels.List.3o
@man man/man3/StdLabels.String.3o
@man man/man3/Str.3o
@man man/man3/Stream.3o
@man man/man3/StringLabels.3o
@man man/man3/Sys.3o
@man man/man3/Unix.3o
@man man/man3/Unix.LargeFile.3o
@man man/man3/Weak.3o
@man man/man3/Weak.Make.3o
@man man/man3/Weak.S.3o
share/doc/ocaml/
share/doc/ocaml/LICENSE
share/doc/ocaml/html/
@ -856,7 +841,6 @@ 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
@ -868,7 +852,10 @@ 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.MakeSeeded.html
share/doc/ocaml/html/libref/Hashtbl.S.html
share/doc/ocaml/html/libref/Hashtbl.SeededHashedType.html
share/doc/ocaml/html/libref/Hashtbl.SeededS.html
share/doc/ocaml/html/libref/Hashtbl.html
share/doc/ocaml/html/libref/Int32.html
share/doc/ocaml/html/libref/Int64.html
@ -883,7 +870,10 @@ 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.MakeSeeded.html
share/doc/ocaml/html/libref/MoreLabels.Hashtbl.S.html
share/doc/ocaml/html/libref/MoreLabels.Hashtbl.SeededHashedType.html
share/doc/ocaml/html/libref/MoreLabels.Hashtbl.SeededS.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
@ -907,6 +897,7 @@ share/doc/ocaml/html/libref/Printf.html
share/doc/ocaml/html/libref/Queue.html
share/doc/ocaml/html/libref/Random.State.html
share/doc/ocaml/html/libref/Random.html
share/doc/ocaml/html/libref/Ratio.html
share/doc/ocaml/html/libref/Scanf.Scanning.html
share/doc/ocaml/html/libref/Scanf.html
share/doc/ocaml/html/libref/Set.Make.html
@ -963,7 +954,6 @@ 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
@ -975,7 +965,10 @@ 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.MakeSeeded.html
share/doc/ocaml/html/libref/type_Hashtbl.S.html
share/doc/ocaml/html/libref/type_Hashtbl.SeededHashedType.html
share/doc/ocaml/html/libref/type_Hashtbl.SeededS.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
@ -990,7 +983,10 @@ 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.MakeSeeded.html
share/doc/ocaml/html/libref/type_MoreLabels.Hashtbl.S.html
share/doc/ocaml/html/libref/type_MoreLabels.Hashtbl.SeededHashedType.html
share/doc/ocaml/html/libref/type_MoreLabels.Hashtbl.SeededS.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
@ -1014,6 +1010,7 @@ share/doc/ocaml/html/libref/type_Printf.html
share/doc/ocaml/html/libref/type_Queue.html
share/doc/ocaml/html/libref/type_Random.State.html
share/doc/ocaml/html/libref/type_Random.html
share/doc/ocaml/html/libref/type_Ratio.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