diff --git a/Mk/Uses/ocaml.mk b/Mk/Uses/ocaml.mk new file mode 100644 index 000000000000..666c29078c19 --- /dev/null +++ b/Mk/Uses/ocaml.mk @@ -0,0 +1,82 @@ +# Provide support to use the Dune package builder for OCaml +# +# Feature: ocaml +# Usage: USES=ocaml:dune +# USE_OCAML=yes +# +# Variables that may be set by the port: +# +# OCAML_PACKAGES List of packages to build and install, defaults to PORTNAME +# +# USE_OCAML_LDCONFIG Dune may install stublibs in site-lib package directory(ies) +# OCAML_LDLIBS or in a single directory below DUNE_LIBDIR. +# +# Appends to: BUILD_DEPENDS, MAKE_ENV +# +# MAINTAINER: freebsd@dev.thsi.be + +.if !defined(_INCLUDE_USES_OCAML_MK) +_INCLUDE_USES_OCAML_MK= yes + +. if empty(ocaml_ARGS:Mdune) +IGNORE= Incorrect 'USES+= ocaml:${ocaml_ARGS}' ocaml requires a single 'dune' argument (for now) +. endif + +. if !defined(OCAML_include) +.error USES=dune only works with USE_OCAML=yes +. endif + +# +# Dune builder port +# +DUNE_PORT?= devel/ocaml-dune +DUNE_DEPEND?= ocaml-dune>=3.7.1_2:devel/ocaml-dune + +BUILD_DEPENDS+= ${DUNE_DEPEND} + +DUNE_ARGS= --display=short --always-show-command-line \ + --no-config -j ${MAKE_JOBS_NUMBER} --profile release \ + --root=${DUNE_ROOT} --build-dir=${DUNE_BUILD_DIR} \ + --promote-install-files --ignore-promoted-rules \ + --default-target @install --require-dune-project-file \ + --only-packages=${OCAML_PACKAGES:ts,} +DUNE_BUILD_ARGS?= +DUNE_BUILD_DIR?= _build +DUNE_CMD?= dune +DUNE_INSTALL_ARGS?= --prefix=${PREFIX} \ + --libdir=${PREFIX}/${OCAML_SITELIBDIR} \ + --docdir=${OCAML_DOCSDIR} --destdir=${STAGEDIR} +DUNE_INSTALL_TARGETS?= +DUNE_LIBDIR?= ${OCAML_SITELIBDIR} +OCAML_PACKAGES?= ${PORTNAME} +DUNE_ROOT?= . + +. if USE_OCAML_LDCONFIG +. if !empty(OCAML_LDLIBS) +. if ${OCAML_LDLIBS:[#]} > 1 +. for _l in ${OCAML_LDLIBS} +. if empty(OCAML_PACKAGES:M${_l:T}) || "${_l:H}" != "${DUNE_LIBDIR}" +IGNORE+= OCAML_LDLIBS member ${_l} should match a OCAML_PACKAGES +. endif +. endfor +DUNE_ENV+= DUNE_FREEBSD_STUBLIBS_IN_PACKAGE= +. else +DUNE_ENV+= DUNE_FREEBSD_STUBLIBS_RELATIVE_TO_LIBDIR=${OCAML_LDLIBS:S/${DUNE_LIBDIR}\///} +. endif +. else +DUNE_ENV+= DUNE_FREEBSD_STUBLIBS_RELATIVE_TO_LIBDIR=${OCAML_PACKAGES:[1]} +. endif +. endif + +# left empty for default @install target +ALL_TARGET?= +MAKE_ENV+= ${DUNE_ENV} + +DO_MAKE_BUILD?= ${SETENVI} ${WRK_ENV} ${MAKE_ENV} ${DUNE_CMD} build ${DUNE_ARGS} ${DUNE_BUILD_ARGS} + +. if !target(do-install) && !defined(NO_INSTALL) +do-install: + @(cd ${INSTALL_WRKSRC} && ${SETENV} ${WRK_ENV} ${MAKE_ENV} ${FAKEROOT} ${DUNE_CMD} install ${DUNE_ARGS} ${DUNE_INSTALL_ARGS} ${DUNE_INSTALL_TARGETS}) +. endif + +.endif diff --git a/archivers/ocaml-bz2/Makefile b/archivers/ocaml-bz2/Makefile index 70677015eae5..cd67ff53d75e 100644 --- a/archivers/ocaml-bz2/Makefile +++ b/archivers/ocaml-bz2/Makefile @@ -1,39 +1,39 @@ PORTNAME= bz2 PORTVERSION= 0.6.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= archivers MASTER_SITES= http://forge.ocamlcore.org/frs/download.php/72/ PKGNAMEPREFIX= ocaml- DISTNAME= caml${PORTNAME}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= OCaml library to manipulate bz2 files WWW= http://camlbz2.forge.ocamlcore.org LICENSE= LGPL21 LGPL3 LICENSE_COMB= dual OPTIONS_DEFINE= DOCS DESTDIRNAME= DONTUSEIT GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes USE_OCAML= yes USE_OCAML_FINDLIB= yes USE_OCAML_LDCONFIG= yes USE_OCAML_WASH= yes USE_OCAMLFIND_PLIST= yes USES= gmake PORTDOCS= * DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/bz2/dllcamlbz2.so post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) .include diff --git a/archivers/ocaml-zip/Makefile b/archivers/ocaml-zip/Makefile index 4dd002cc680f..9f974f6bac6b 100644 --- a/archivers/ocaml-zip/Makefile +++ b/archivers/ocaml-zip/Makefile @@ -1,30 +1,30 @@ PORTNAME= zip PORTVERSION= 1.11 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= archivers PKGNAMEPREFIX= ocaml- DISTNAME= caml${PORTNAME}-${PORTVERSION} MAINTAINER= danfe@FreeBSD.org COMMENT= OCaml library to manipulate ZIP/GZIP/JAR archives WWW= https://github.com/xavierleroy/camlzip LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gmake USE_GITHUB= yes GH_ACCOUNT= xavierleroy GH_PROJECT= camlzip GH_TAGNAME= rel${PORTVERSION:S/.//} USE_OCAML= yes USE_OCAML_FINDLIB=yes USE_OCAML_LDCONFIG=yes USE_OCAML_WASH= yes post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib/zip/zip.cmxs \ ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib/zip/dllcamlzip.so .include diff --git a/converters/ocaml-base64/Makefile b/converters/ocaml-base64/Makefile index f62e531ee15b..d777b064a3b8 100644 --- a/converters/ocaml-base64/Makefile +++ b/converters/ocaml-base64/Makefile @@ -1,30 +1,30 @@ PORTNAME= base64 PORTVERSION= 2.0.0 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= converters PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= Base64 encoding and decoding in OCaml WWW= https://github.com/mirage/ocaml-base64 BUILD_DEPENDS= ocamlbuild:devel/ocaml-ocamlbuild USE_GITHUB= yes GH_ACCOUNT= mirage GH_PROJECT= ocaml-base64 USES= gmake HAS_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes USE_OCAML= yes USE_OCAML_FINDLIB= yes USE_OCAMLFIND_PLIST= yes USE_OCAML_LDCONFIG= yes DOCSDIR= ${PREFIX}/share/doc/pcre-ocaml CONFIGURE_ARGS= --destdir="${DESTDIRNAME}" .include diff --git a/converters/ocaml-jsonm/Makefile b/converters/ocaml-jsonm/Makefile index 0a59c3023ca6..b048189e9da7 100644 --- a/converters/ocaml-jsonm/Makefile +++ b/converters/ocaml-jsonm/Makefile @@ -1,36 +1,36 @@ PORTNAME= jsonm PORTVERSION= 1.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= converters MASTER_SITES= https://erratique.ch/software/jsonm/releases/ PKGNAMEPREFIX= ocaml- MAINTAINER= danfe@FreeBSD.org COMMENT= Non-blocking streaming JSON codec for OCaml WWW= https://erratique.ch/software/jsonm LICENSE= ISCL LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= ocamlbuild:devel/ocaml-ocamlbuild \ opam-installer:devel/ocaml-opam \ ${SA_DIR}/topkg/META:devel/ocaml-topkg \ ${SA_DIR}/uutf/META:devel/ocaml-uutf RUN_DEPENDS= ${SA_DIR}/uutf/META:devel/ocaml-uutf USES= tar:tbz USE_OCAML= yes SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} OPTIONS_DEFINE= DOCS do-build: cd ${BUILD_WRKSRC} && ocaml pkg/pkg.ml build do-install: cd ${INSTALL_WRKSRC} && opam-installer -i \ --prefix=${STAGEDIR}${PREFIX} \ --docdir=${OCAML_DOCSDIR:S,^${PREFIX}/,,} \ --libdir=${OCAML_SITELIBDIR} ${PORTNAME}.install .include diff --git a/databases/ocaml-dbm/Makefile b/databases/ocaml-dbm/Makefile index b6bf839ba0b2..d85b05101b5b 100644 --- a/databases/ocaml-dbm/Makefile +++ b/databases/ocaml-dbm/Makefile @@ -1,31 +1,31 @@ PORTNAME= dbm PORTVERSION= 1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases MASTER_SITES= https://forge.ocamlcore.org/frs/download.php/728/ PKGNAMEPREFIX= ocaml- DISTNAME= caml${PORTNAME}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= OCaml binding to the NDBM and GDBM database library WWW= https://forge.ocamlcore.org/projects/camldbm/ LICENSE= LGPL20 CONFLICTS= ocaml-[0-3]* ocaml-nox11-[0-3]* USES= tar:tgz HAS_CONFIGURE= yes USE_OCAML= yes DOCSDIR= ${PREFIX}/share/doc/ocaml/${PORTNAME} MAKE_ENV+= DESTDIR="${STAGEDIR}" pre-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib/dbm \ ${STAGEDIR}${PREFIX}/lib/ocaml/stublibs post-install: ${INSTALL_DATA} ${WRKSRC}/META \ ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib/dbm .include diff --git a/devel/Makefile b/devel/Makefile index b8128f715856..3b11ec45b29b 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1,8004 +1,8017 @@ COMMENT = Development utilities SUBDIR += 9base SUBDIR += ElectricFence SUBDIR += R-cran-BH SUBDIR += R-cran-Defaults SUBDIR += R-cran-Hmisc SUBDIR += R-cran-ModelMetrics SUBDIR += R-cran-R6 SUBDIR += R-cran-RUnit SUBDIR += R-cran-Rcpp SUBDIR += R-cran-RcppProgress SUBDIR += R-cran-Rdpack SUBDIR += R-cran-abind SUBDIR += R-cran-bindr SUBDIR += R-cran-bindrcpp SUBDIR += R-cran-bit SUBDIR += R-cran-bit64 SUBDIR += R-cran-bitops SUBDIR += R-cran-blob SUBDIR += R-cran-brio SUBDIR += R-cran-broom SUBDIR += R-cran-caTools SUBDIR += R-cran-callr SUBDIR += R-cran-caret SUBDIR += R-cran-checkmate SUBDIR += R-cran-chk SUBDIR += R-cran-chron SUBDIR += R-cran-classInt SUBDIR += R-cran-cli SUBDIR += R-cran-cliapp SUBDIR += R-cran-clipr SUBDIR += R-cran-clisymbols SUBDIR += R-cran-clock SUBDIR += R-cran-collapse SUBDIR += R-cran-covr SUBDIR += R-cran-cpp11 SUBDIR += R-cran-crayon SUBDIR += R-cran-cyclocomp SUBDIR += R-cran-data.table SUBDIR += R-cran-decor SUBDIR += R-cran-desc SUBDIR += R-cran-devtools SUBDIR += R-cran-diffobj SUBDIR += R-cran-doParallel SUBDIR += R-cran-ellipsis SUBDIR += R-cran-evaluate SUBDIR += R-cran-fansi SUBDIR += R-cran-filelock SUBDIR += R-cran-fontawesome SUBDIR += R-cran-foreach SUBDIR += R-cran-future SUBDIR += R-cran-future.apply SUBDIR += R-cran-gbRd SUBDIR += R-cran-gbm SUBDIR += R-cran-gdata SUBDIR += R-cran-generics SUBDIR += R-cran-gert SUBDIR += R-cran-getopt SUBDIR += R-cran-git2r SUBDIR += R-cran-glmnet SUBDIR += R-cran-globals SUBDIR += R-cran-glue SUBDIR += R-cran-gmodels SUBDIR += R-cran-gsubfn SUBDIR += R-cran-gtools SUBDIR += R-cran-hardhat SUBDIR += R-cran-hms SUBDIR += R-cran-ini SUBDIR += R-cran-iterators SUBDIR += R-cran-itertools SUBDIR += R-cran-kit SUBDIR += R-cran-later SUBDIR += R-cran-lifecycle SUBDIR += R-cran-lintr SUBDIR += R-cran-listenv SUBDIR += R-cran-lubridate SUBDIR += R-cran-magrittr SUBDIR += R-cran-memoise SUBDIR += R-cran-microbenchmark SUBDIR += R-cran-mlbench SUBDIR += R-cran-mockery SUBDIR += R-cran-msm SUBDIR += R-cran-multicool SUBDIR += R-cran-optparse SUBDIR += R-cran-pak SUBDIR += R-cran-parallelly SUBDIR += R-cran-parsedate SUBDIR += R-cran-pillar SUBDIR += R-cran-pkgbuild SUBDIR += R-cran-pkgcache SUBDIR += R-cran-pkgconfig SUBDIR += R-cran-pkgdepends SUBDIR += R-cran-pkgload SUBDIR += R-cran-pkgmaker SUBDIR += R-cran-pkgsearch SUBDIR += R-cran-plogr SUBDIR += R-cran-plyr SUBDIR += R-cran-praise SUBDIR += R-cran-prettycode SUBDIR += R-cran-prettyunits SUBDIR += R-cran-progress SUBDIR += R-cran-progressr SUBDIR += R-cran-promises SUBDIR += R-cran-proto SUBDIR += R-cran-purrr SUBDIR += R-cran-rJava SUBDIR += R-cran-randomForest SUBDIR += R-cran-rappdirs SUBDIR += R-cran-rcmdcheck SUBDIR += R-cran-registry SUBDIR += R-cran-rematch2 SUBDIR += R-cran-remotes SUBDIR += R-cran-repr SUBDIR += R-cran-reshape SUBDIR += R-cran-reshape2 SUBDIR += R-cran-rgexf SUBDIR += R-cran-rlang SUBDIR += R-cran-rngtools SUBDIR += R-cran-roxygen2 SUBDIR += R-cran-rprojroot SUBDIR += R-cran-rstudioapi SUBDIR += R-cran-rversions SUBDIR += R-cran-sessioninfo SUBDIR += R-cran-sfsmisc SUBDIR += R-cran-sourcetools SUBDIR += R-cran-sys SUBDIR += R-cran-testit SUBDIR += R-cran-testthat SUBDIR += R-cran-tibble SUBDIR += R-cran-tidyr SUBDIR += R-cran-tidyselect SUBDIR += R-cran-timechange SUBDIR += R-cran-tinytest SUBDIR += R-cran-tzdb SUBDIR += R-cran-usethis SUBDIR += R-cran-uuid SUBDIR += R-cran-vcd SUBDIR += R-cran-vctrs SUBDIR += R-cran-waldo SUBDIR += R-cran-whisker SUBDIR += R-cran-whoami SUBDIR += R-cran-withr SUBDIR += R-cran-zeallot SUBDIR += RStudio SUBDIR += SpecTcl SUBDIR += aarch64-none-elf-gcc SUBDIR += abi-compliance-checker SUBDIR += abseil SUBDIR += acme SUBDIR += acsccid SUBDIR += activitymail SUBDIR += actor-framework SUBDIR += adacurses SUBDIR += aegis SUBDIR += agar SUBDIR += aifad SUBDIR += aixlog SUBDIR += ald SUBDIR += alire SUBDIR += allegro SUBDIR += allegro5 SUBDIR += amber SUBDIR += aml SUBDIR += ammonite SUBDIR += amqp-cpp SUBDIR += android-tools SUBDIR += anjuta SUBDIR += antlr SUBDIR += antlr3 SUBDIR += antlr4 SUBDIR += apache-ant SUBDIR += apache-commons-configuration SUBDIR += apache-commons-daemon SUBDIR += apache-commons-io SUBDIR += apache-commons-jxpath SUBDIR += apache-log4j2 SUBDIR += apache-rat SUBDIR += aphpbreakdown SUBDIR += aphpunit SUBDIR += api-sanity-autotest SUBDIR += apitrace SUBDIR += app-builder SUBDIR += appstream SUBDIR += appstream-compose SUBDIR += appstream-glib SUBDIR += appstream-qt SUBDIR += apr1 SUBDIR += arachne-pnr SUBDIR += arcanist SUBDIR += arcanist-lib SUBDIR += arduino SUBDIR += arduino-avrdude SUBDIR += arduino-bsd-mk SUBDIR += arduino-builder SUBDIR += arduino-core SUBDIR += arduino-ctags SUBDIR += arduino-irremote SUBDIR += arduino-mk SUBDIR += arduino-openglcd SUBDIR += arduino-sevseg SUBDIR += arduino-tools SUBDIR += arduino18 SUBDIR += arduinoOTA SUBDIR += argc SUBDIR += argdata SUBDIR += argobots SUBDIR += argouml SUBDIR += argp-standalone SUBDIR += argparse SUBDIR += args SUBDIR += argtable SUBDIR += argtable3 SUBDIR += arm-elf-binutils SUBDIR += arm-none-eabi-gcc SUBDIR += arm-none-eabi-newlib SUBDIR += aros-sdk SUBDIR += arpc SUBDIR += art SUBDIR += artifactory SUBDIR += asfml SUBDIR += asl SUBDIR += asmjit SUBDIR += asmutils SUBDIR += asmx SUBDIR += astah-community SUBDIR += astyle SUBDIR += asyncplusplus SUBDIR += atf SUBDIR += athens SUBDIR += atlantis SUBDIR += autobook SUBDIR += autoconf SUBDIR += autoconf-archive SUBDIR += autoconf-switch SUBDIR += autoconf2.13 SUBDIR += autoconf2.69 SUBDIR += autodia SUBDIR += autogen SUBDIR += automake SUBDIR += autotools SUBDIR += avalon-framework SUBDIR += avarice SUBDIR += avce00 SUBDIR += avr-gcc SUBDIR += avr-gdb SUBDIR += avr-libc SUBDIR += avra SUBDIR += avrdude SUBDIR += avro SUBDIR += avro-c SUBDIR += avro-cpp SUBDIR += awless SUBDIR += aws-c-common SUBDIR += aws-c-compression SUBDIR += aws-c-event-stream SUBDIR += aws-c-http SUBDIR += aws-c-io SUBDIR += aws-c-mqtt SUBDIR += aws-c-s3 SUBDIR += aws-c-sdkutils SUBDIR += aws-checksums SUBDIR += aws-crt-cpp SUBDIR += aws-sdk-cpp SUBDIR += aws-sdk-php SUBDIR += axmldec SUBDIR += ayatana-ido SUBDIR += b2 SUBDIR += babelflow SUBDIR += babeltrace SUBDIR += bacnet-stack SUBDIR += bacon SUBDIR += bam SUBDIR += bashdb SUBDIR += basu SUBDIR += bats-core SUBDIR += bazel SUBDIR += bazel-buildtools SUBDIR += bazel029 SUBDIR += bazel5 SUBDIR += bbparse SUBDIR += bcc SUBDIR += bcpp SUBDIR += bcunit SUBDIR += bear SUBDIR += benchmark SUBDIR += bencodetools SUBDIR += bennugd-core SUBDIR += bennugd-modules SUBDIR += bfg SUBDIR += bglibs SUBDIR += binaryen SUBDIR += bingrep SUBDIR += binutils SUBDIR += bison SUBDIR += bit SUBDIR += bitkeeper SUBDIR += bitsery SUBDIR += blame SUBDIR += blitz SUBDIR += bloaty SUBDIR += bloomberg-bde SUBDIR += blueprint-compiler SUBDIR += bmake SUBDIR += bmkdep SUBDIR += bnf SUBDIR += boehm-gc SUBDIR += boehm-gc-threaded SUBDIR += boost-all SUBDIR += boost-docs SUBDIR += boost-jam SUBDIR += boost-libs SUBDIR += boost-python-libs SUBDIR += boost_build SUBDIR += bossa SUBDIR += boxfort SUBDIR += bpython SUBDIR += brz SUBDIR += bsdbuild SUBDIR += bsdcflow SUBDIR += bsddialog SUBDIR += bsdowl SUBDIR += bugzilla44 SUBDIR += bugzilla50 SUBDIR += build SUBDIR += build2 SUBDIR += buildkite-agent SUBDIR += buildstream SUBDIR += bullet SUBDIR += bunyan SUBDIR += busd SUBDIR += busybee SUBDIR += byacc SUBDIR += byaccj SUBDIR += c2mdoc SUBDIR += c4core SUBDIR += calibrator SUBDIR += caliper SUBDIR += capnproto SUBDIR += capnproto1 SUBDIR += capslock SUBDIR += capstone SUBDIR += capstone4 SUBDIR += cargo-bloat SUBDIR += cargo-c SUBDIR += cargo-depgraph SUBDIR += cargo-generate SUBDIR += cargo-leptos SUBDIR += cargo-mutants SUBDIR += cask SUBDIR += catch SUBDIR += catch2 SUBDIR += cbang SUBDIR += cbfmt SUBDIR += cbmc SUBDIR += cbrowser SUBDIR += cc65 SUBDIR += ccache SUBDIR += ccache-static SUBDIR += ccache4 SUBDIR += cccc SUBDIR += ccdoc SUBDIR += ccls SUBDIR += ccrtp SUBDIR += cctz SUBDIR += cdash SUBDIR += cdecl SUBDIR += cdialog SUBDIR += cdk SUBDIR += cereal SUBDIR += cervisia SUBDIR += cflow SUBDIR += cflow2vcg SUBDIR += cfr SUBDIR += cgdb SUBDIR += cgilib SUBDIR += cgit SUBDIR += cgprof SUBDIR += charva SUBDIR += check SUBDIR += checkbashisms SUBDIR += checkheaders SUBDIR += chroma SUBDIR += chrpath SUBDIR += chruby SUBDIR += cil SUBDIR += cirrus-cli SUBDIR += cityhash SUBDIR += cjose SUBDIR += cl-alexandria SUBDIR += cl-alexandria-sbcl SUBDIR += cl-asdf SUBDIR += cl-cffi SUBDIR += cl-infix SUBDIR += cl-infix-sbcl SUBDIR += cl-port SUBDIR += cl-port-sbcl SUBDIR += cl-split-sequence SUBDIR += cl-split-sequence-sbcl SUBDIR += cl-trivial-features SUBDIR += cl-trivial-features-sbcl SUBDIR += cl-trivial-gray-streams SUBDIR += cl-trivial-gray-streams-sbcl SUBDIR += clazy SUBDIR += cld2 SUBDIR += clewn SUBDIR += cli SUBDIR += cli11 SUBDIR += clig SUBDIR += cligen SUBDIR += clinfo SUBDIR += clipp SUBDIR += clisp-hyperspec SUBDIR += clixon SUBDIR += clojure-cider SUBDIR += cloudabi SUBDIR += cloudabi-toolchain SUBDIR += clthreads SUBDIR += cltune SUBDIR += clxclient SUBDIR += cmake SUBDIR += cmake-core SUBDIR += cmake-doc SUBDIR += cmake-fedora SUBDIR += cmake-gui SUBDIR += cmake-man SUBDIR += cmake-modules-webos SUBDIR += cmakedoc SUBDIR += cmph SUBDIR += cmunge SUBDIR += coccinelle SUBDIR += cocogitto SUBDIR += codeblocks SUBDIR += codequery SUBDIR += codesearch-py SUBDIR += codeworker SUBDIR += collada-dom SUBDIR += color SUBDIR += colorgcc SUBDIR += colormake SUBDIR += commit-patch SUBDIR += commoncpp SUBDIR += compiler-rt SUBDIR += compiz-bcop SUBDIR += concurrencpp SUBDIR += concurrencykit SUBDIR += concurrentqueue SUBDIR += configkit SUBDIR += cons SUBDIR += cons-test SUBDIR += containers SUBDIR += convco SUBDIR += corrade SUBDIR += courier-unicode SUBDIR += coursier SUBDIR += covtool SUBDIR += cpan-upload SUBDIR += cpan-upload-http SUBDIR += cpp-hocon SUBDIR += cpp-netlib SUBDIR += cpp-utilities SUBDIR += cpp2py SUBDIR += cppcheck SUBDIR += cppi SUBDIR += cpplint SUBDIR += cpprestsdk SUBDIR += cpptest SUBDIR += cppunit SUBDIR += cppurses SUBDIR += cpputest SUBDIR += cproto SUBDIR += cpu_features SUBDIR += cpu_rec_rs SUBDIR += cquery SUBDIR += cram SUBDIR += crc32c SUBDIR += creduce SUBDIR += critcl SUBDIR += criterion SUBDIR += cscope SUBDIR += cscout SUBDIR += csfml SUBDIR += csmith SUBDIR += csoap SUBDIR += cssc SUBDIR += ctags SUBDIR += ctre SUBDIR += ctypes.sh SUBDIR += cunit SUBDIR += cut SUBDIR += cutils SUBDIR += cutter SUBDIR += cvise SUBDIR += cvs SUBDIR += cvs+ipv6 SUBDIR += cvs-devel SUBDIR += cvs-syncmail SUBDIR += cvs2cl SUBDIR += cvs2darcs SUBDIR += cvs2html SUBDIR += cvsadmin SUBDIR += cvsbook SUBDIR += cvschangelogbuilder SUBDIR += cvschk SUBDIR += cvsd SUBDIR += cvsdadm SUBDIR += cvsdelta SUBDIR += cvsdiff2patch SUBDIR += cvsgraph SUBDIR += cvslines SUBDIR += cvsmonitor SUBDIR += cvsplot SUBDIR += cvsps SUBDIR += cvsps-devel SUBDIR += cvsspam SUBDIR += cvstrac SUBDIR += cvsutils SUBDIR += cvsweb SUBDIR += cvsweb3 SUBDIR += cvswrap SUBDIR += cweb SUBDIR += cwrap SUBDIR += cxmon SUBDIR += cxref SUBDIR += cxxopts SUBDIR += cxxtest SUBDIR += cxxtools SUBDIR += d-feet SUBDIR += d-scanner SUBDIR += d-spy SUBDIR += darts SUBDIR += dash.el SUBDIR += dasm SUBDIR += datadraw SUBDIR += date SUBDIR += dbus SUBDIR += dbus-c++ SUBDIR += dbus-glib SUBDIR += dbus-java SUBDIR += dbus-sharp SUBDIR += dbus-sharp-glib SUBDIR += dbus-tcl SUBDIR += dcd-client SUBDIR += dcd-server SUBDIR += dconf SUBDIR += dconf-editor SUBDIR += debugedit SUBDIR += dee SUBDIR += deforaos-libsystem SUBDIR += deheader SUBDIR += delta SUBDIR += delve SUBDIR += deployer SUBDIR += derelict-sdl2 SUBDIR += derelict-util SUBDIR += desed SUBDIR += desktop-file-utils SUBDIR += dev86 SUBDIR += devhelp SUBDIR += devtodo SUBDIR += dfuife-curses SUBDIR += dia2code SUBDIR += dia2code+ SUBDIR += ding-libs SUBDIR += dispy SUBDIR += distcc SUBDIR += distel SUBDIR += distorm SUBDIR += djgpp-binutils SUBDIR += dlib SUBDIR += dmake SUBDIR += dmalloc SUBDIR += dmlc-core SUBDIR += dmucs SUBDIR += docopt.cpp SUBDIR += doctest SUBDIR += doctorj SUBDIR += dolphin-plugins SUBDIR += dolphin-plugins-devel SUBDIR += dotconf SUBDIR += double-conversion SUBDIR += doxygen SUBDIR += dparser SUBDIR += dra SUBDIR += dragon SUBDIR += ds2 SUBDIR += dsymbol SUBDIR += dtool SUBDIR += dub SUBDIR += dupl SUBDIR += duplo SUBDIR += dura SUBDIR += dwarf2json SUBDIR += dwarfdump SUBDIR += dwarves SUBDIR += dwz SUBDIR += dxa65 SUBDIR += dyncall SUBDIR += e00compr SUBDIR += eastl SUBDIR += easy-profiler SUBDIR += easyexif SUBDIR += easygit SUBDIR += easyloggingpp SUBDIR += ebnf2yacc SUBDIR += ecgi SUBDIR += edi SUBDIR += editline SUBDIR += efivar SUBDIR += efl SUBDIR += egypt SUBDIR += eiffelstudio SUBDIR += electron25 SUBDIR += electron26 SUBDIR += electron27 SUBDIR += electron28 SUBDIR += elf SUBDIR += elf-dissector SUBDIR += elfcat SUBDIR += elfio SUBDIR += elfkickers SUBDIR += elfsh SUBDIR += elfutils SUBDIR += elixir-hex SUBDIR += elixir-make SUBDIR += elm-format SUBDIR += embb SUBDIR += emscripten SUBDIR += entt SUBDIR += envsubst SUBDIR += epl.el SUBDIR += epm SUBDIR += eql5 SUBDIR += eric6 SUBDIR += erlang-cl SUBDIR += erlang-native-compiler SUBDIR += erlang-rebar3_hex SUBDIR += erlang-recon SUBDIR += es-eric6 SUBDIR += esbuild SUBDIR += estd SUBDIR += etcd SUBDIR += etcd31 SUBDIR += etcd32 SUBDIR += etcd33 SUBDIR += etcd34 SUBDIR += etl SUBDIR += evcxr-jupyter SUBDIR += evdev-proto SUBDIR += evemu SUBDIR += eventxx SUBDIR += exercisix SUBDIR += exomizer SUBDIR += f77flow SUBDIR += fam SUBDIR += fastcrc SUBDIR += fatal SUBDIR += fbthrift SUBDIR += fc++ SUBDIR += fccf SUBDIR += fcppt SUBDIR += fhist SUBDIR += fifechan SUBDIR += fire-hpp SUBDIR += firmware-utils SUBDIR += fistgen SUBDIR += flatbuffers SUBDIR += flatbuffers205 SUBDIR += flatcc SUBDIR += flatzebra SUBDIR += flex-sdk SUBDIR += flex-sdk35 SUBDIR += flexdock SUBDIR += flexjson SUBDIR += flyspray SUBDIR += fmake SUBDIR += fnc SUBDIR += fnm SUBDIR += folly SUBDIR += forge SUBDIR += forge-devel SUBDIR += fortran-utils SUBDIR += fortytwo-encore SUBDIR += fossil SUBDIR += fossology-nomos-standalone SUBDIR += fp16 SUBDIR += fpp SUBDIR += freebsd-gcc12 SUBDIR += freebsd-gcc13 SUBDIR += freebsd-git-devtools SUBDIR += freebsd-sysroot SUBDIR += frink SUBDIR += fsmtrie SUBDIR += fstrcmp SUBDIR += fstrm SUBDIR += fsx SUBDIR += ftjam SUBDIR += ftnchek SUBDIR += ftxui SUBDIR += functionalplus SUBDIR += fungw SUBDIR += fuzzylite SUBDIR += fxdiv SUBDIR += g-golf SUBDIR += g-wrap SUBDIR += ga SUBDIR += gaa SUBDIR += gamin SUBDIR += gammaray SUBDIR += gauche-readline SUBDIR += gaul SUBDIR += gbump SUBDIR += gcc-arm-embedded SUBDIR += gcc-msp430-ti-toolchain SUBDIR += gccmakedep SUBDIR += gcem SUBDIR += gcli SUBDIR += gconf2 SUBDIR += gconfmm26 SUBDIR += gdb SUBDIR += gdcm SUBDIR += gdmd SUBDIR += geany SUBDIR += geany-plugin-addons SUBDIR += geany-plugin-autoclose SUBDIR += geany-plugin-automark SUBDIR += geany-plugin-codenav SUBDIR += geany-plugin-commander SUBDIR += geany-plugin-ctags SUBDIR += geany-plugin-debugger SUBDIR += geany-plugin-defineformat SUBDIR += geany-plugin-doc SUBDIR += geany-plugin-extrasel SUBDIR += geany-plugin-gendoc SUBDIR += geany-plugin-geniuspaste SUBDIR += geany-plugin-git-changebar SUBDIR += geany-plugin-insertnum SUBDIR += geany-plugin-latex SUBDIR += geany-plugin-lineoperations SUBDIR += geany-plugin-lipsum SUBDIR += geany-plugin-lua SUBDIR += geany-plugin-macro SUBDIR += geany-plugin-markdown SUBDIR += geany-plugin-miniscript SUBDIR += geany-plugin-numberedbookmarks SUBDIR += geany-plugin-overview SUBDIR += geany-plugin-pairtaghighlighter SUBDIR += geany-plugin-pg SUBDIR += geany-plugin-pohelper SUBDIR += geany-plugin-pretty-printer SUBDIR += geany-plugin-prj SUBDIR += geany-plugin-projectorganizer SUBDIR += geany-plugin-scope SUBDIR += geany-plugin-sendmail SUBDIR += geany-plugin-shiftcolumn SUBDIR += geany-plugin-spellcheck SUBDIR += geany-plugin-tableconvert SUBDIR += geany-plugin-treebrowser SUBDIR += geany-plugin-updatechecker SUBDIR += geany-plugin-utilslib SUBDIR += geany-plugin-vc SUBDIR += geany-plugin-vimode SUBDIR += geany-plugin-workbench SUBDIR += geany-plugin-xmlsnippets SUBDIR += geany-plugins SUBDIR += geany-plugins-l10n SUBDIR += geany-themes SUBDIR += gearmand SUBDIR += generate SUBDIR += gengetopt SUBDIR += genht SUBDIR += genie SUBDIR += genromfs SUBDIR += getoptions SUBDIR += gettext SUBDIR += gettext-lint SUBDIR += gettext-msghack SUBDIR += gettext-po-mode SUBDIR += gettext-runtime SUBDIR += gettext-tiny SUBDIR += gettext-tools SUBDIR += gflags SUBDIR += gfold SUBDIR += gh SUBDIR += ghidra SUBDIR += ghostie SUBDIR += ghq SUBDIR += ghub SUBDIR += ghub-devel SUBDIR += gindent SUBDIR += gio-sharp SUBDIR += git SUBDIR += git-absorb SUBDIR += git-branchless SUBDIR += git-bug SUBDIR += git-cinnabar SUBDIR += git-cliff SUBDIR += git-codereview SUBDIR += git-cola SUBDIR += git-cvs SUBDIR += git-delta SUBDIR += git-extras SUBDIR += git-filter-repo SUBDIR += git-gui SUBDIR += git-lab SUBDIR += git-lfs SUBDIR += git-merge-changelog SUBDIR += git-modes SUBDIR += git-p4 SUBDIR += git-prev-next SUBDIR += git-review SUBDIR += git-subrepo SUBDIR += git-svn SUBDIR += git-town SUBDIR += git-workspace SUBDIR += gitaly SUBDIR += gitflow SUBDIR += gitg SUBDIR += github-backup-utils SUBDIR += gitinspector SUBDIR += gitlab-runner SUBDIR += gitlab-shell SUBDIR += gitleaks SUBDIR += gitlist SUBDIR += gitolite SUBDIR += gitolite2 SUBDIR += gitoxide SUBDIR += gitqlient SUBDIR += gittrac SUBDIR += gitty SUBDIR += gitui SUBDIR += glab SUBDIR += glade SUBDIR += glademm SUBDIR += glaze SUBDIR += glib20 SUBDIR += glibd SUBDIR += glibmm SUBDIR += glibmm26 SUBDIR += glitter SUBDIR += gllvm SUBDIR += global SUBDIR += glog SUBDIR += glrparser SUBDIR += glui SUBDIR += gmake SUBDIR += gn SUBDIR += gnome-builder SUBDIR += gnome-common SUBDIR += gnu-efi SUBDIR += gnucflow SUBDIR += gnulib SUBDIR += gnulibiberty SUBDIR += gnustep SUBDIR += gnustep-make SUBDIR += go-bindata SUBDIR += go-bindata-assetfs SUBDIR += go-git SUBDIR += go-perf SUBDIR += go-protobuf SUBDIR += go-tools SUBDIR += go-wire SUBDIR += gob2 SUBDIR += gobject-introspection SUBDIR += gocheese SUBDIR += gocritic SUBDIR += godot SUBDIR += godot-tools SUBDIR += godot35 SUBDIR += godot35-tools SUBDIR += goffice SUBDIR += gogs SUBDIR += golangci-lint SUBDIR += golint SUBDIR += google-cloud-cpp SUBDIR += google-perftools SUBDIR += google-styleguide SUBDIR += googletest SUBDIR += gopls SUBDIR += goprotobuf SUBDIR += goredo SUBDIR += goreleaser SUBDIR += gorm SUBDIR += goswagger SUBDIR += got SUBDIR += gpds SUBDIR += gperf SUBDIR += gpm SUBDIR += gprbuild SUBDIR += gputils SUBDIR += gradle SUBDIR += gradle-completion SUBDIR += gradle5 SUBDIR += gradle6 SUBDIR += gradle62 SUBDIR += gradle761 SUBDIR += grantlee5 SUBDIR += grcov SUBDIR += grex SUBDIR += grpc SUBDIR += grpc142 SUBDIR += grv SUBDIR += gsettings-desktop-schemas SUBDIR += gsoap SUBDIR += gstreamer1-plugins-soup SUBDIR += gtgt SUBDIR += gtranslator SUBDIR += guichan SUBDIR += guile-lib SUBDIR += gum SUBDIR += gumbo SUBDIR += gvfs SUBDIR += gvp SUBDIR += gwenhywfar SUBDIR += gwenhywfar-fox16 SUBDIR += gwenhywfar-gtk2 SUBDIR += gwenhywfar-gtk3 SUBDIR += gwenhywfar-qt5 SUBDIR += gzstream SUBDIR += hapy SUBDIR += hare SUBDIR += hcs12mem SUBDIR += heaptrack SUBDIR += heimdall SUBDIR += heirloom-devtools SUBDIR += hexcompare SUBDIR += hexd SUBDIR += hgreviewboard SUBDIR += hgsvn SUBDIR += highlighterkit SUBDIR += highway SUBDIR += hoel SUBDIR += hotspot SUBDIR += hp48cc SUBDIR += hp48xgcc SUBDIR += hpx SUBDIR += hs-ShellCheck SUBDIR += hs-alex SUBDIR += hs-cabal-install SUBDIR += hs-cpphs SUBDIR += hs-darcs SUBDIR += hs-ghc-events SUBDIR += hs-ghcprofview SUBDIR += hs-git-annex SUBDIR += hs-git-brunch SUBDIR += hs-happy SUBDIR += hs-haskell-language-server SUBDIR += hs-hasktags SUBDIR += hs-hlint SUBDIR += hs-hoogle SUBDIR += hs-hpack SUBDIR += hs-hspec-discover SUBDIR += hs-mueval SUBDIR += hs-ormolu SUBDIR += hs-profiteur SUBDIR += hs-shake SUBDIR += hs-spago SUBDIR += hs-threadscope SUBDIR += htable SUBDIR += hub SUBDIR += hwloc SUBDIR += hwloc2 SUBDIR += hyperscan SUBDIR += hyprlang SUBDIR += ice SUBDIR += ice37 SUBDIR += icestorm SUBDIR += icmake SUBDIR += icontheme SUBDIR += icu SUBDIR += icu-le-hb SUBDIR += icu-lx SUBDIR += idutils SUBDIR += ignition-cmake SUBDIR += ignition-common SUBDIR += ignition-msgs SUBDIR += ignition-plugin SUBDIR += ignition-tools SUBDIR += ikos SUBDIR += imake SUBDIR += immer SUBDIR += imtui SUBDIR += inastemp SUBDIR += include-what-you-use SUBDIR += indi SUBDIR += indicators SUBDIR += influx-pkg-config SUBDIR += inifiled SUBDIR += inih SUBDIR += inilib SUBDIR += inilike SUBDIR += iniparser SUBDIR += initutil SUBDIR += injeqt SUBDIR += intel-graphics-compiler SUBDIR += interactive_rebase_tool SUBDIR += ioncube SUBDIR += ipython SUBDIR += ireport SUBDIR += isa-l SUBDIR += isfreedesktop SUBDIR += isl SUBDIR += ispc SUBDIR += ittapi SUBDIR += ivykis SUBDIR += jam SUBDIR += jansson SUBDIR += java-findbugs SUBDIR += jclassinfo SUBDIR += jcmdline SUBDIR += jech-dht SUBDIR += jenkins SUBDIR += jenkins-lts SUBDIR += jetbrains-clion SUBDIR += jetbrains-goland SUBDIR += jetbrains-phpstorm SUBDIR += jetbrains-pty4j SUBDIR += jetbrains-restarter SUBDIR += jetbrains-rustrover SUBDIR += jetbrains-sqlite SUBDIR += jetbrains-webstorm SUBDIR += jgoodies-looks SUBDIR += jiic SUBDIR += jiri SUBDIR += jline SUBDIR += jna SUBDIR += jrtplib SUBDIR += jsap SUBDIR += jsl SUBDIR += jsmin SUBDIR += json-c SUBDIR += json-dto SUBDIR += json-fortran SUBDIR += json-glib SUBDIR += jsoncpp SUBDIR += jsonnet SUBDIR += jsonrpc-glib SUBDIR += juce SUBDIR += juce706 SUBDIR += judy SUBDIR += jujutsu SUBDIR += jwasm SUBDIR += kBuild SUBDIR += kapptemplate SUBDIR += kcachegrind SUBDIR += kconfig-frontends SUBDIR += kcov SUBDIR += kdbg SUBDIR += kde-dev-scripts SUBDIR += kde-dev-utils SUBDIR += kdesdk SUBDIR += kdesdk-kio SUBDIR += kdesdk-thumbnailers SUBDIR += kdesvn SUBDIR += kdev-php SUBDIR += kdev-python SUBDIR += kdevelop SUBDIR += kdevelop-pg-qt SUBDIR += kerl SUBDIR += kf5-extra-cmake-modules SUBDIR += kf5-kapidox SUBDIR += kf5-kauth SUBDIR += kf5-kbookmarks SUBDIR += kf5-kcmutils SUBDIR += kf5-kconfig SUBDIR += kf5-kcoreaddons SUBDIR += kf5-kcrash SUBDIR += kf5-kdbusaddons SUBDIR += kf5-kdeclarative SUBDIR += kf5-kdoctools SUBDIR += kf5-kfilemetadata SUBDIR += kf5-ki18n SUBDIR += kf5-kidletime SUBDIR += kf5-kio SUBDIR += kf5-kitemmodels SUBDIR += kf5-knewstuff SUBDIR += kf5-knotifications SUBDIR += kf5-knotifyconfig SUBDIR += kf5-kpackage SUBDIR += kf5-kparts SUBDIR += kf5-kpeople SUBDIR += kf5-kpty SUBDIR += kf5-kservice SUBDIR += kf5-ktexteditor SUBDIR += kf5-kunitconversion SUBDIR += kf5-solid SUBDIR += kf5-threadweaver SUBDIR += kf6-extra-cmake-modules SUBDIR += kf6-kapidox SUBDIR += kf6-kauth SUBDIR += kf6-kbookmarks SUBDIR += kf6-kcmutils SUBDIR += kf6-kconfig SUBDIR += kf6-kcoreaddons SUBDIR += kf6-kcrash SUBDIR += kf6-kdbusaddons SUBDIR += kf6-kdeclarative SUBDIR += kf6-kdoctools SUBDIR += kf6-kfilemetadata SUBDIR += kf6-ki18n SUBDIR += kf6-kidletime SUBDIR += kf6-kio SUBDIR += kf6-kitemmodels SUBDIR += kf6-knewstuff SUBDIR += kf6-knotifications SUBDIR += kf6-knotifyconfig SUBDIR += kf6-kpackage SUBDIR += kf6-kparts SUBDIR += kf6-kpeople SUBDIR += kf6-kpty SUBDIR += kf6-kservice SUBDIR += kf6-ktexteditor SUBDIR += kf6-ktexttemplate SUBDIR += kf6-kunitconversion SUBDIR += kf6-solid SUBDIR += kf6-threadweaver SUBDIR += kio-extras SUBDIR += kirigami-gallery SUBDIR += klib SUBDIR += kms-cmake-utils SUBDIR += kodi-platform SUBDIR += kokkos SUBDIR += kommit SUBDIR += kore SUBDIR += kpublictransport SUBDIR += kronosnet SUBDIR += ksql SUBDIR += ktextaddons SUBDIR += kyra SUBDIR += kyua SUBDIR += lab SUBDIR += lager SUBDIR += laminar SUBDIR += lasi SUBDIR += lattice-ice40-examples-hx1k SUBDIR += lattice-ice40-examples-hx8k SUBDIR += lattice-ice40-tools SUBDIR += lazygit SUBDIR += lcov SUBDIR += leaktracer SUBDIR += leatherman SUBDIR += lefthook SUBDIR += leiningen SUBDIR += lemon SUBDIR += lets SUBDIR += level-zero SUBDIR += lfcbase SUBDIR += lfcxml SUBDIR += libCello SUBDIR += libIDL SUBDIR += libPropList SUBDIR += libabigail SUBDIR += libac SUBDIR += libafterbase SUBDIR += libantlr3c SUBDIR += libantlr4 SUBDIR += libappindicator SUBDIR += libaravis SUBDIR += libarea SUBDIR += libarena SUBDIR += libassa SUBDIR += libassetml SUBDIR += libast SUBDIR += libastylej SUBDIR += libastylej-arduino SUBDIR += libatomic_ops SUBDIR += libaura SUBDIR += libavl SUBDIR += libayatana-appindicator SUBDIR += libayatana-indicator SUBDIR += libb2 SUBDIR += libbacktrace SUBDIR += libbde SUBDIR += libbegemot SUBDIR += libbfd SUBDIR += libbinio SUBDIR += libbpfjit SUBDIR += libbson SUBDIR += libburn SUBDIR += libcbor SUBDIR += libccid SUBDIR += libcdada SUBDIR += libcdb SUBDIR += libcds SUBDIR += libcfu SUBDIR += libchipcard SUBDIR += libcidr SUBDIR += libcii SUBDIR += libcircllhist SUBDIR += libcjson SUBDIR += libclc SUBDIR += libcli SUBDIR += libconcurrent SUBDIR += libconfig SUBDIR += libconfuse SUBDIR += libcreg SUBDIR += libcrossguid SUBDIR += libcsptr SUBDIR += libcuckoo SUBDIR += libcutl SUBDIR += libcwd SUBDIR += libdaemon SUBDIR += libdap SUBDIR += libdatadog SUBDIR += libdatovka SUBDIR += libdatrie SUBDIR += libdbusmenu SUBDIR += libdbusmenu-qt SUBDIR += libddoc SUBDIR += libddwaf SUBDIR += libdevq SUBDIR += libdfui SUBDIR += libdill SUBDIR += libdisasm SUBDIR += libdisorder SUBDIR += libdispatch SUBDIR += libdistance SUBDIR += libdlmalloc SUBDIR += libdnsres SUBDIR += libdombey SUBDIR += libdparse SUBDIR += libds SUBDIR += libdsp SUBDIR += libdwarf SUBDIR += libe SUBDIR += libedit SUBDIR += libegit2 SUBDIR += libeio SUBDIR += libelf SUBDIR += libepoll-shim SUBDIR += libepp-nicbr SUBDIR += liberasurecode SUBDIR += libesedb SUBDIR += libestr SUBDIR += libev SUBDIR += libevdev SUBDIR += libevdevplus SUBDIR += libevent SUBDIR += libevent-devel SUBDIR += libevt SUBDIR += libevtx SUBDIR += libewf SUBDIR += libexplain SUBDIR += libfaketime SUBDIR += libfastcommon SUBDIR += libfastjson SUBDIR += libffcall SUBDIR += libffi SUBDIR += libffi321 SUBDIR += libffi33 SUBDIR += libfirm SUBDIR += libfixposix SUBDIR += libflatarray SUBDIR += libfmt SUBDIR += libfort SUBDIR += libfortuna SUBDIR += libfreefare SUBDIR += libfsapfs SUBDIR += libfsext SUBDIR += libfsfat SUBDIR += libfshfs SUBDIR += libfsntfs SUBDIR += libfsxfs SUBDIR += libftdi SUBDIR += libftdi1 SUBDIR += libfwnt SUBDIR += libfwsi SUBDIR += libg19 SUBDIR += libg19draw SUBDIR += libgamepad SUBDIR += libgdata SUBDIR += libgee SUBDIR += libgee06 SUBDIR += libgetline SUBDIR += libght SUBDIR += libgit2 SUBDIR += libgit2-glib SUBDIR += libglade2 SUBDIR += libglademm24 SUBDIR += libgnt SUBDIR += libgnuregex SUBDIR += libgpc SUBDIR += libgpkg SUBDIR += libgpr SUBDIR += libgrading SUBDIR += libgraphqlparser SUBDIR += libgsf SUBDIR += libgta SUBDIR += libgtop SUBDIR += libgudev SUBDIR += libgusb SUBDIR += libgutenfetch SUBDIR += libheinz SUBDIR += libhoard SUBDIR += libhtp SUBDIR += libibuddy SUBDIR += libical SUBDIR += libiec61850 SUBDIR += libindicator SUBDIR += libinjection SUBDIR += libinotify SUBDIR += libiqxmlrpc SUBDIR += libisofs SUBDIR += libixp SUBDIR += libjitterentropy SUBDIR += libjodycode SUBDIR += libk8055 SUBDIR += libkiwix SUBDIR += libklel SUBDIR += liblangtag SUBDIR += liblas SUBDIR += liblnk SUBDIR += liblockfile SUBDIR += liblogging SUBDIR += liblognorm SUBDIR += liblouis SUBDIR += liblpm SUBDIR += libltdl SUBDIR += libluksde SUBDIR += liblxqt SUBDIR += libmaa SUBDIR += libmatheval SUBDIR += libmatthew SUBDIR += libmba SUBDIR += libmcfp SUBDIR += libmill SUBDIR += libmimedir SUBDIR += libmodi SUBDIR += libmowgli SUBDIR += libmowgli2 SUBDIR += libmpcbdm SUBDIR += libmsiecf SUBDIR += libmsocket SUBDIR += libmtdev SUBDIR += libmtrie SUBDIR += libmustache SUBDIR += libnaji SUBDIR += libnest2d-ultimaker SUBDIR += libnfc SUBDIR += libnjs SUBDIR += libnotify SUBDIR += libnsutils SUBDIR += liboil SUBDIR += libolecf SUBDIR += libopenbsd SUBDIR += libopencm3 SUBDIR += libopentracing SUBDIR += libopkele SUBDIR += liborcus SUBDIR += libosinfo SUBDIR += libowfat SUBDIR += libpafe SUBDIR += libpafe-ruby SUBDIR += libparserutils SUBDIR += libpasori SUBDIR += libpci SUBDIR += libpciaccess SUBDIR += libpcl SUBDIR += libpdel SUBDIR += libpeak SUBDIR += libpeas SUBDIR += libpff SUBDIR += libphdi SUBDIR += libphk SUBDIR += libphonenumber SUBDIR += libplist SUBDIR += libpo6 SUBDIR += libpololu-avr SUBDIR += libpru SUBDIR += libqb SUBDIR += libqcow SUBDIR += libqsbr SUBDIR += libqtxdg SUBDIR += libr3 SUBDIR += librcc SUBDIR += librcd SUBDIR += libreadline-java SUBDIR += libregf SUBDIR += librelp SUBDIR += librest SUBDIR += librevisa SUBDIR += librevisa-vish SUBDIR += librevisa-vxi SUBDIR += librolegen SUBDIR += librttopo SUBDIR += libruin SUBDIR += libs11n SUBDIR += libsavitar SUBDIR += libscca SUBDIR += libsearpc SUBDIR += libserdes SUBDIR += libserialport SUBDIR += libshbuf SUBDIR += libshhmsg SUBDIR += libshhopt SUBDIR += libsigc++20 SUBDIR += libsigc++30 SUBDIR += libsigrok SUBDIR += libsigrokdecode SUBDIR += libsigscan SUBDIR += libsigsegv SUBDIR += libsimdpp SUBDIR += libslang2 SUBDIR += libsmdev SUBDIR += libsml SUBDIR += libsmpp34 SUBDIR += libsmraw SUBDIR += libsoup SUBDIR += libsoup3 SUBDIR += libspice-server SUBDIR += libstatgrab SUBDIR += libstatgrab0 SUBDIR += libstrfunc SUBDIR += libstroke SUBDIR += libsysctlmibinfo SUBDIR += libsysctlmibinfo2 SUBDIR += libsysinfo SUBDIR += libtai SUBDIR += libtap SUBDIR += libtecla SUBDIR += libtermkey SUBDIR += libtextstyle SUBDIR += libthai SUBDIR += libthmap SUBDIR += libthreadar SUBDIR += libtickit SUBDIR += libtifiles2 SUBDIR += libtool SUBDIR += libtpl SUBDIR += libtsm SUBDIR += libtuntap SUBDIR += libublio SUBDIR += libubox SUBDIR += libudev-devd SUBDIR += libuinputplus SUBDIR += libuiohook SUBDIR += libukcprog SUBDIR += libunicode SUBDIR += libuninum SUBDIR += libunistring SUBDIR += libunit SUBDIR += libunwind SUBDIR += libuutil SUBDIR += libuv SUBDIR += libvanessa_adt SUBDIR += libvanessa_logger SUBDIR += libvanessa_socket SUBDIR += libvc SUBDIR += libversion SUBDIR += libvex SUBDIR += libvhdi SUBDIR += libvirt SUBDIR += libvirt-dbus SUBDIR += libvirt-glib SUBDIR += libvirt-java SUBDIR += libvmdk SUBDIR += libvolume_id SUBDIR += libvsapm SUBDIR += libvsgpt SUBDIR += libvshadow SUBDIR += libvslvm SUBDIR += libvterm SUBDIR += libwasmtime SUBDIR += libx86 SUBDIR += libxalloc SUBDIR += libxo SUBDIR += libxs SUBDIR += libxsd SUBDIR += libxsd-frontend SUBDIR += libxtend SUBDIR += libzakalwe SUBDIR += libzim SUBDIR += libzookeeper SUBDIR += libzvbi SUBDIR += lightning SUBDIR += linenoise SUBDIR += linenoise-ng SUBDIR += linux-c7-dbus-libs SUBDIR += linux-c7-devtools SUBDIR += linux-c7-devtoolset SUBDIR += linux-c7-elfutils-libelf SUBDIR += linux-c7-elfutils-libs SUBDIR += linux-c7-icu SUBDIR += linux-c7-libaio SUBDIR += linux-c7-libgfortran SUBDIR += linux-c7-libglade2 SUBDIR += linux-c7-libpciaccess SUBDIR += linux-c7-libsigc++20 SUBDIR += linux-c7-libthai SUBDIR += linux-c7-libtool-ltdl SUBDIR += linux-c7-libunwind SUBDIR += linux-c7-make SUBDIR += linux-c7-nspr SUBDIR += linux-c7-qt SUBDIR += linux-c7-sdl12 SUBDIR += linux-c7-sdl20 SUBDIR += linux-c7-strace SUBDIR += linux-c7-systemd-libs SUBDIR += linux-c7-zlib-devel SUBDIR += linux-ltp SUBDIR += linux-sublime-merge SUBDIR += linux_libusb SUBDIR += lion SUBDIR += listserialc SUBDIR += liteide SUBDIR += llbuild SUBDIR += llnextgen SUBDIR += llvm SUBDIR += llvm-cheri SUBDIR += llvm-cheriot SUBDIR += llvm-devel SUBDIR += llvm-morello SUBDIR += llvm10 SUBDIR += llvm11 SUBDIR += llvm12 SUBDIR += llvm13 SUBDIR += llvm14 SUBDIR += llvm15 SUBDIR += llvm16 SUBDIR += llvm17 SUBDIR += llvm18 SUBDIR += lm4tools SUBDIR += lmdbg SUBDIR += lndir SUBDIR += lnphost SUBDIR += loccount SUBDIR += lockfree-malloc SUBDIR += log4c SUBDIR += log4cplus SUBDIR += log4cpp SUBDIR += log4cxx SUBDIR += log4j SUBDIR += log4net SUBDIR += log4sh SUBDIR += log4shib SUBDIR += loguru SUBDIR += lokalize SUBDIR += loki SUBDIR += love SUBDIR += love07 SUBDIR += love08 SUBDIR += love10 SUBDIR += love5 SUBDIR += lpc21isp SUBDIR += lrmi SUBDIR += lua-Penlight SUBDIR += lua-argparse SUBDIR += lua-bitlib SUBDIR += lua-bitop SUBDIR += lua-cjson SUBDIR += lua-cqueues SUBDIR += lua-gettext SUBDIR += lua-lgi SUBDIR += lua-libevent SUBDIR += lua-lpeg SUBDIR += lua-luacheck SUBDIR += lua-luarocks SUBDIR += lua-lunit SUBDIR += lua-mode SUBDIR += lua-posix SUBDIR += lua-pty SUBDIR += lua-rds-parser SUBDIR += lua-resty-string SUBDIR += lua-stdlib SUBDIR += lua-stdlib-debug SUBDIR += lua-stdlib-normalize SUBDIR += lua-sysctl SUBDIR += luabind SUBDIR += luafilesystem SUBDIR += luajava SUBDIR += lutok SUBDIR += luv SUBDIR += lwp SUBDIR += lxqt-build-tools SUBDIR += lyra SUBDIR += m17n-db SUBDIR += m17n-docs SUBDIR += m17n-inscript2 SUBDIR += m17n-lib SUBDIR += m4 SUBDIR += mage SUBDIR += magic_enum SUBDIR += magit SUBDIR += magit-devel SUBDIR += make++ SUBDIR += makedepend SUBDIR += malloy SUBDIR += marisa-trie SUBDIR += marl SUBDIR += massif-visualizer SUBDIR += mate-common SUBDIR += matreshka SUBDIR += maven SUBDIR += maven-wrapper SUBDIR += maven363 SUBDIR += maven39 SUBDIR += mcpp SUBDIR += mdb SUBDIR += mdds SUBDIR += mdspan SUBDIR += menhir SUBDIR += mercurial SUBDIR += mergify SUBDIR += meson SUBDIR += meson-python SUBDIR += microsoft-gsl SUBDIR += mill SUBDIR += mimalloc SUBDIR += mimir SUBDIR += mir-core SUBDIR += mk-configure SUBDIR += mm SUBDIR += mm-common SUBDIR += modd SUBDIR += mold SUBDIR += mongo-c-driver SUBDIR += mono-addins SUBDIR += mpatrol SUBDIR += mph SUBDIR += mrc SUBDIR += msbuild SUBDIR += msgpack-c SUBDIR += msgpack-cxx SUBDIR += msgpack-d SUBDIR += msgpuck SUBDIR += msitools SUBDIR += msp430-debug-stack SUBDIR += mspdebug SUBDIR += mstch SUBDIR += mtbl SUBDIR += muon SUBDIR += mustache SUBDIR += mutagen SUBDIR += myrepos SUBDIR += nana SUBDIR += nano-signal-slot SUBDIR += nanopb SUBDIR += nant SUBDIR += nasm SUBDIR += naturaldocs SUBDIR += ncc SUBDIR += ncnf SUBDIR += ncurses SUBDIR += ndesk-dbus SUBDIR += ndesk-dbus-glib SUBDIR += ndesk-options SUBDIR += netscape-java40 SUBDIR += netsurf-buildsystem SUBDIR += newfile SUBDIR += newt SUBDIR += newtonsoft-json SUBDIR += nextest SUBDIR += nextpnr SUBDIR += nexus2-oss SUBDIR += nimble SUBDIR += nini SUBDIR += ninja SUBDIR += nlohmann-json SUBDIR += node-thrift SUBDIR += notcurses SUBDIR += notify-sharp SUBDIR += nox SUBDIR += npth SUBDIR += nsgenbind SUBDIR += nspr SUBDIR += nss_wrapper SUBDIR += nsync SUBDIR += nuitka SUBDIR += ob-rust SUBDIR += obby SUBDIR += objconv SUBDIR += objecthash SUBDIR += objfw SUBDIR += ocaml-annexlib + SUBDIR += ocaml-astring + SUBDIR += ocaml-base + SUBDIR += ocaml-bos SUBDIR += ocaml-calendar SUBDIR += ocaml-camljava + SUBDIR += ocaml-camlp-streams SUBDIR += ocaml-camlp4 SUBDIR += ocaml-camlp5 SUBDIR += ocaml-camomile SUBDIR += ocaml-camomile-examples SUBDIR += ocaml-cfg SUBDIR += ocaml-classes SUBDIR += ocaml-cmdliner SUBDIR += ocaml-cppo + SUBDIR += ocaml-csexp SUBDIR += ocaml-dune SUBDIR += ocaml-extlib SUBDIR += ocaml-findlib + SUBDIR += ocaml-fmt + SUBDIR += ocaml-fpath SUBDIR += ocaml-ipaddr SUBDIR += ocaml-lacaml + SUBDIR += ocaml-logs SUBDIR += ocaml-lwt SUBDIR += ocaml-magic + SUBDIR += ocaml-mtime SUBDIR += ocaml-ocamlbuild SUBDIR += ocaml-opam SUBDIR += ocaml-ounit SUBDIR += ocaml-parmap SUBDIR += ocaml-pcre + SUBDIR += ocaml-pcre2 SUBDIR += ocaml-pomap SUBDIR += ocaml-ppx-tools SUBDIR += ocaml-re SUBDIR += ocaml-react SUBDIR += ocaml-res SUBDIR += ocaml-result + SUBDIR += ocaml-rresult SUBDIR += ocaml-sdl SUBDIR += ocaml-sem + SUBDIR += ocaml-seq SUBDIR += ocaml-sexplib0 + SUBDIR += ocaml-stdio SUBDIR += ocaml-topkg SUBDIR += ocaml-type_conv SUBDIR += ocaml-uchar SUBDIR += ocaml-ulex SUBDIR += ocaml-uutf SUBDIR += ocaml-xstr SUBDIR += ocaml-xstrp4 SUBDIR += oci-cli SUBDIR += ocl-icd SUBDIR += oclgrind SUBDIR += ode SUBDIR += ois SUBDIR += okteta SUBDIR += omake SUBDIR += omniORB SUBDIR += onetbb SUBDIR += oniguruma SUBDIR += open-beagle SUBDIR += open62541 SUBDIR += opencl SUBDIR += opencl-clang SUBDIR += opencvs SUBDIR += opendht SUBDIR += opengrok SUBDIR += openocd SUBDIR += opentelemetry-cpp SUBDIR += opentelemetry-proto SUBDIR += openwince-include SUBDIR += orc SUBDIR += orcania SUBDIR += osc SUBDIR += ossp-al SUBDIR += ossp-cfg SUBDIR += ossp-ex SUBDIR += ossp-l2 SUBDIR += ossp-val SUBDIR += ossp-var SUBDIR += ossp-xds SUBDIR += outcome SUBDIR += p4 SUBDIR += p4.el SUBDIR += p4api SUBDIR += p4delta SUBDIR += p4genpatch SUBDIR += p5-AI-Pathfinding-AStar SUBDIR += p5-AI-Prolog SUBDIR += p5-ARGV-Struct SUBDIR += p5-AWS-Signature4 SUBDIR += p5-Acme-Comment SUBDIR += p5-Acme-Damn SUBDIR += p5-Acme-MetaSyntactic SUBDIR += p5-Adapter-Async SUBDIR += p5-Agent SUBDIR += p5-Algorithm-Accounting SUBDIR += p5-Algorithm-Annotate SUBDIR += p5-Algorithm-Backoff SUBDIR += p5-Algorithm-Binpack SUBDIR += p5-Algorithm-Bucketizer SUBDIR += p5-Algorithm-C3 SUBDIR += p5-Algorithm-ChooseSubsets SUBDIR += p5-Algorithm-Cluster SUBDIR += p5-Algorithm-Cron SUBDIR += p5-Algorithm-Dependency SUBDIR += p5-Algorithm-Dependency-Objects SUBDIR += p5-Algorithm-Diff SUBDIR += p5-Algorithm-Evolutionary SUBDIR += p5-Algorithm-FloodControl SUBDIR += p5-Algorithm-IncludeExclude SUBDIR += p5-Algorithm-Interval2Prefix SUBDIR += p5-Algorithm-LCS SUBDIR += p5-Algorithm-LUHN SUBDIR += p5-Algorithm-MarkovChain SUBDIR += p5-Algorithm-Merge SUBDIR += p5-Algorithm-MinMax SUBDIR += p5-Algorithm-NaiveBayes SUBDIR += p5-Algorithm-Networksort SUBDIR += p5-Algorithm-Numerical-Shuffle SUBDIR += p5-Algorithm-Permute SUBDIR += p5-Algorithm-SVM SUBDIR += p5-Alias SUBDIR += p5-Alien-Base-ModuleBuild SUBDIR += p5-Alien-Build SUBDIR += p5-Alien-LibGumbo SUBDIR += p5-Alien-SDL SUBDIR += p5-Alien-cmake3 SUBDIR += p5-Alzabo SUBDIR += p5-Any-Daemon SUBDIR += p5-Any-Moose SUBDIR += p5-Any-Moose-Convert SUBDIR += p5-AnyData SUBDIR += p5-AnyEvent SUBDIR += p5-AnyEvent-AIO SUBDIR += p5-AnyEvent-Connection SUBDIR += p5-AnyEvent-Connector SUBDIR += p5-AnyEvent-DBI SUBDIR += p5-AnyEvent-DBI-Abstract SUBDIR += p5-AnyEvent-DBus SUBDIR += p5-AnyEvent-Filesys-Notify SUBDIR += p5-AnyEvent-Fork SUBDIR += p5-AnyEvent-Gearman SUBDIR += p5-AnyEvent-Graphite SUBDIR += p5-AnyEvent-I3 SUBDIR += p5-AnyEvent-MessagePack SUBDIR += p5-AnyEvent-RPC SUBDIR += p5-AnyEvent-Run SUBDIR += p5-AnyEvent-Subprocess SUBDIR += p5-AnyEvent-Task SUBDIR += p5-AnyEvent-Worker SUBDIR += p5-AnyMQ SUBDIR += p5-App-Build SUBDIR += p5-App-CLI SUBDIR += p5-App-CLI-Extension SUBDIR += p5-App-Cache SUBDIR += p5-App-Cmd SUBDIR += p5-App-Control SUBDIR += p5-App-FatPacker SUBDIR += p5-App-GitGot SUBDIR += p5-App-GitHub SUBDIR += p5-App-Info SUBDIR += p5-App-Options SUBDIR += p5-App-Rad SUBDIR += p5-App-SD SUBDIR += p5-App-SVN-Bisect SUBDIR += p5-App-Trace SUBDIR += p5-App-cpanminus SUBDIR += p5-App-cpanminus-reporter SUBDIR += p5-App-cpanoutdated SUBDIR += p5-App-local-lib-helper SUBDIR += p5-App-perlbrew SUBDIR += p5-App-scan_prereqs_cpanfile SUBDIR += p5-AppConfig SUBDIR += p5-AppConfig-Std SUBDIR += p5-Array-Group SUBDIR += p5-Array-Heap SUBDIR += p5-Array-Iterator SUBDIR += p5-Array-Unique SUBDIR += p5-Array-Window SUBDIR += p5-Asm-Preproc SUBDIR += p5-Async-Interrupt SUBDIR += p5-Async-MergePoint SUBDIR += p5-AtExit SUBDIR += p5-Attribute-Handlers SUBDIR += p5-Attribute-Handlers-Prospective SUBDIR += p5-Attribute-Persistent SUBDIR += p5-AutoLoader SUBDIR += p5-AutoXS-Header SUBDIR += p5-Avro SUBDIR += p5-B-C SUBDIR += p5-B-COW SUBDIR += p5-B-Compiling SUBDIR += p5-B-Debug SUBDIR += p5-B-Deobfuscate SUBDIR += p5-B-Flags SUBDIR += p5-B-Generate SUBDIR += p5-B-Graph SUBDIR += p5-B-Hooks-AtRuntime SUBDIR += p5-B-Hooks-EndOfScope SUBDIR += p5-B-Hooks-OP-Annotation SUBDIR += p5-B-Hooks-OP-Check SUBDIR += p5-B-Hooks-OP-Check-EntersubForCV SUBDIR += p5-B-Hooks-OP-PPAddr SUBDIR += p5-B-Hooks-Parser SUBDIR += p5-B-Keywords SUBDIR += p5-B-OPCheck SUBDIR += p5-B-Size2 SUBDIR += p5-B-Utils SUBDIR += p5-BFD SUBDIR += p5-BS-Event SUBDIR += p5-BSD-Resource SUBDIR += p5-BSD-devstat SUBDIR += p5-BSD-stat SUBDIR += p5-BZ-Client SUBDIR += p5-Badger SUBDIR += p5-Benchmark-Timer SUBDIR += p5-Best SUBDIR += p5-Border-Style SUBDIR += p5-BorderStyle SUBDIR += p5-BorderStyleBase SUBDIR += p5-BorderStyles-Standard SUBDIR += p5-Brannigan SUBDIR += p5-Bread-Board SUBDIR += p5-Bread-Board-Declare SUBDIR += p5-Bundle-Perl6 SUBDIR += p5-C-Scan SUBDIR += p5-CBOR-XS SUBDIR += p5-CHI SUBDIR += p5-CHI-Driver-DBI SUBDIR += p5-CLASS SUBDIR += p5-CLI-Osprey SUBDIR += p5-CPAN-Changes SUBDIR += p5-CPAN-Checksums SUBDIR += p5-CPAN-DistnameInfo SUBDIR += p5-CPAN-Inject SUBDIR += p5-CPAN-Meta SUBDIR += p5-CPAN-Meta-Check SUBDIR += p5-CPAN-Meta-Requirements SUBDIR += p5-CPAN-Meta-YAML SUBDIR += p5-CPAN-Mini SUBDIR += p5-CPAN-Perl-Releases SUBDIR += p5-CPAN-Recent-Uploads SUBDIR += p5-CPAN-Reporter SUBDIR += p5-CPAN-Reporter-Smoker SUBDIR += p5-CPAN-SQLite SUBDIR += p5-CPAN-Site SUBDIR += p5-CPAN-Testers-Common-Client SUBDIR += p5-CPAN-Testers-Report SUBDIR += p5-CPAN-Uploader SUBDIR += p5-CPAN-YACSmoke SUBDIR += p5-CPANPLUS SUBDIR += p5-CPANPLUS-Dist-Build SUBDIR += p5-CPS SUBDIR += p5-CPU-Z80-Assembler SUBDIR += p5-Cache SUBDIR += p5-Cache-AgainstFile SUBDIR += p5-Cache-Cache SUBDIR += p5-Cache-FastMmap SUBDIR += p5-Cache-LRU SUBDIR += p5-Cache-Memcached-Tie SUBDIR += p5-Cache-Mmap SUBDIR += p5-Cache-Simple-TimedExpiry SUBDIR += p5-Cairo-GObject SUBDIR += p5-Calendar-Simple SUBDIR += p5-Call-Context SUBDIR += p5-Callback-Frame SUBDIR += p5-Canary-Stability SUBDIR += p5-Capture-Tiny SUBDIR += p5-Capture-Tiny-Extended SUBDIR += p5-Carp SUBDIR += p5-Carp-Always SUBDIR += p5-Carp-Always-Color SUBDIR += p5-Carp-Assert SUBDIR += p5-Carp-Assert-More SUBDIR += p5-Carp-Clan SUBDIR += p5-Carp-Clan-Share SUBDIR += p5-Carp-Datum SUBDIR += p5-Carp-REPL SUBDIR += p5-Check-ISA SUBDIR += p5-Child SUBDIR += p5-Chooser SUBDIR += p5-Class-Accessor SUBDIR += p5-Class-Accessor-Chained SUBDIR += p5-Class-Accessor-Children SUBDIR += p5-Class-Accessor-Complex SUBDIR += p5-Class-Accessor-Constructor SUBDIR += p5-Class-Accessor-Fast-Contained SUBDIR += p5-Class-Accessor-Fast-XS SUBDIR += p5-Class-Accessor-Grouped SUBDIR += p5-Class-Accessor-Installer SUBDIR += p5-Class-Accessor-Lite SUBDIR += p5-Class-Accessor-Lvalue SUBDIR += p5-Class-Accessor-Named SUBDIR += p5-Class-Adapter SUBDIR += p5-Class-AlzaboWrapper SUBDIR += p5-Class-ArrayObjects SUBDIR += p5-Class-AutoClass SUBDIR += p5-Class-Autouse SUBDIR += p5-Class-Base SUBDIR += p5-Class-BlackHole SUBDIR += p5-Class-C3 SUBDIR += p5-Class-C3-Adopt-NEXT SUBDIR += p5-Class-C3-Componentised SUBDIR += p5-Class-C3-XS SUBDIR += p5-Class-Closure SUBDIR += p5-Class-CodeStyler SUBDIR += p5-Class-Component SUBDIR += p5-Class-Constant SUBDIR += p5-Class-Container SUBDIR += p5-Class-Contract SUBDIR += p5-Class-Data-ConfigHash SUBDIR += p5-Class-Data-Inheritable SUBDIR += p5-Class-Data-Lite SUBDIR += p5-Class-Date SUBDIR += p5-Class-Declare SUBDIR += p5-Class-Default SUBDIR += p5-Class-Delegation SUBDIR += p5-Class-EHierarchy SUBDIR += p5-Class-ErrorHandler SUBDIR += p5-Class-Factory SUBDIR += p5-Class-Factory-Util SUBDIR += p5-Class-Field SUBDIR += p5-Class-Fields SUBDIR += p5-Class-Forward SUBDIR += p5-Class-Generate SUBDIR += p5-Class-Gomor SUBDIR += p5-Class-Handle SUBDIR += p5-Class-Hook SUBDIR += p5-Class-ISA SUBDIR += p5-Class-Inner SUBDIR += p5-Class-InsideOut SUBDIR += p5-Class-Inspector SUBDIR += p5-Class-Interfaces SUBDIR += p5-Class-Load SUBDIR += p5-Class-Load-XS SUBDIR += p5-Class-Loader SUBDIR += p5-Class-MakeMethods SUBDIR += p5-Class-Measure SUBDIR += p5-Class-Method-Modifiers SUBDIR += p5-Class-Method-Modifiers-Fast SUBDIR += p5-Class-MethodMaker SUBDIR += p5-Class-MethodMapper SUBDIR += p5-Class-Mix SUBDIR += p5-Class-Mixin SUBDIR += p5-Class-MixinFactory SUBDIR += p5-Class-Multimethods SUBDIR += p5-Class-Multimethods-Pure SUBDIR += p5-Class-NamedParms SUBDIR += p5-Class-Null SUBDIR += p5-Class-OOorNO SUBDIR += p5-Class-ObjectTemplate SUBDIR += p5-Class-ObjectTemplate-DB SUBDIR += p5-Class-Observable SUBDIR += p5-Class-ParmList SUBDIR += p5-Class-Prototyped SUBDIR += p5-Class-ReturnValue SUBDIR += p5-Class-Roles SUBDIR += p5-Class-STL-Containers SUBDIR += p5-Class-Singleton SUBDIR += p5-Class-Spiffy SUBDIR += p5-Class-StateMachine SUBDIR += p5-Class-Std SUBDIR += p5-Class-Std-Fast SUBDIR += p5-Class-Std-Utils SUBDIR += p5-Class-StrongSingleton SUBDIR += p5-Class-Tangram SUBDIR += p5-Class-Throwable SUBDIR += p5-Class-Tiny SUBDIR += p5-Class-Tiny-Chained SUBDIR += p5-Class-Tom SUBDIR += p5-Class-Trigger SUBDIR += p5-Class-Unload SUBDIR += p5-Class-Virtual SUBDIR += p5-Class-WhiteHole SUBDIR += p5-Class-Workflow SUBDIR += p5-Class-XPath SUBDIR += p5-Class-XSAccessor SUBDIR += p5-Clone SUBDIR += p5-Clone-Choose SUBDIR += p5-Clone-Fast SUBDIR += p5-Clone-More SUBDIR += p5-Clone-PP SUBDIR += p5-Code-Perl SUBDIR += p5-Color-ANSI-Util SUBDIR += p5-Color-RGB-Util SUBDIR += p5-Color-Theme-Role SUBDIR += p5-ColorThemeBase-Static SUBDIR += p5-ColorThemeUtil-ANSI SUBDIR += p5-ColorThemes-Standard SUBDIR += p5-Commandable SUBDIR += p5-Commands-Guarded SUBDIR += p5-CommitBit SUBDIR += p5-Compiler-Lexer SUBDIR += p5-Complete-Common SUBDIR += p5-Complete-Path SUBDIR += p5-Complete-Sah SUBDIR += p5-Complete-Sequence SUBDIR += p5-Complete-Util SUBDIR += p5-Config-AST SUBDIR += p5-Config-AWS SUBDIR += p5-Config-Any SUBDIR += p5-Config-ApacheFormat SUBDIR += p5-Config-Auto SUBDIR += p5-Config-AutoConf SUBDIR += p5-Config-Fast SUBDIR += p5-Config-General SUBDIR += p5-Config-GitLike SUBDIR += p5-Config-Grammar SUBDIR += p5-Config-INI SUBDIR += p5-Config-INI-Reader-Ordered SUBDIR += p5-Config-INI-Simple SUBDIR += p5-Config-Identity SUBDIR += p5-Config-IniFiles SUBDIR += p5-Config-IniHash SUBDIR += p5-Config-IniRegEx SUBDIR += p5-Config-JFDI SUBDIR += p5-Config-JSON SUBDIR += p5-Config-MVP SUBDIR += p5-Config-MVP-Reader-INI SUBDIR += p5-Config-Merge SUBDIR += p5-Config-Model SUBDIR += p5-Config-Model-Backend-Yaml SUBDIR += p5-Config-Model-Tester SUBDIR += p5-Config-MySQL SUBDIR += p5-Config-Objective SUBDIR += p5-Config-Options SUBDIR += p5-Config-Parser SUBDIR += p5-Config-Parser-ldap SUBDIR += p5-Config-Perl-V SUBDIR += p5-Config-Properties SUBDIR += p5-Config-Record SUBDIR += p5-Config-Setting SUBDIR += p5-Config-Simple SUBDIR += p5-Config-Std SUBDIR += p5-Config-Tiny SUBDIR += p5-Config-Validator SUBDIR += p5-Config-Versioned SUBDIR += p5-Config-Wrest SUBDIR += p5-Config-YAML SUBDIR += p5-ConfigReader SUBDIR += p5-ConfigReader-Simple SUBDIR += p5-Connector SUBDIR += p5-Const-Exporter SUBDIR += p5-Const-Fast SUBDIR += p5-Context-Preserve SUBDIR += p5-Contextual-Return SUBDIR += p5-Convert-Scalar SUBDIR += p5-Coro SUBDIR += p5-Curses SUBDIR += p5-Curses-Application SUBDIR += p5-Curses-Forms SUBDIR += p5-Curses-UI SUBDIR += p5-Curses-Widgets SUBDIR += p5-Cvs SUBDIR += p5-Cwd-Guard SUBDIR += p5-DB_File-Lock SUBDIR += p5-Daemon-Control SUBDIR += p5-Dancer-Debug SUBDIR += p5-Dancer-Logger-Syslog SUBDIR += p5-Danga-Socket SUBDIR += p5-Danga-Socket-Callback SUBDIR += p5-Data-ACL SUBDIR += p5-Data-Alias SUBDIR += p5-Data-Binary SUBDIR += p5-Data-Bind SUBDIR += p5-Data-Capture SUBDIR += p5-Data-ClearSilver-HDF SUBDIR += p5-Data-Clone SUBDIR += p5-Data-Compare SUBDIR += p5-Data-Diver SUBDIR += p5-Data-Dmp SUBDIR += p5-Data-Domain SUBDIR += p5-Data-Dump SUBDIR += p5-Data-Dump-Color SUBDIR += p5-Data-Dump-Streamer SUBDIR += p5-Data-DumpXML SUBDIR += p5-Data-Dumper SUBDIR += p5-Data-Dumper-Concise SUBDIR += p5-Data-Dumper-Interp SUBDIR += p5-Data-Dumper-Perltidy SUBDIR += p5-Data-Dumper-Simple SUBDIR += p5-Data-Flow SUBDIR += p5-Data-GUID SUBDIR += p5-Data-Grouper SUBDIR += p5-Data-HashArray SUBDIR += p5-Data-HexDump SUBDIR += p5-Data-HexDump-Range SUBDIR += p5-Data-Hexdumper SUBDIR += p5-Data-Hexify SUBDIR += p5-Data-Hierarchy SUBDIR += p5-Data-IEEE754 SUBDIR += p5-Data-Inherited SUBDIR += p5-Data-Inspect SUBDIR += p5-Data-Integer SUBDIR += p5-Data-JavaScript-Anon SUBDIR += p5-Data-Lazy SUBDIR += p5-Data-Localize SUBDIR += p5-Data-Lock SUBDIR += p5-Data-MessagePack SUBDIR += p5-Data-MessagePack-Stream SUBDIR += p5-Data-Miscellany SUBDIR += p5-Data-Model SUBDIR += p5-Data-Munge SUBDIR += p5-Data-Object SUBDIR += p5-Data-Object-Args SUBDIR += p5-Data-Object-Attributes SUBDIR += p5-Data-Object-Cast SUBDIR += p5-Data-Object-Class SUBDIR += p5-Data-Object-ClassHas SUBDIR += p5-Data-Object-Data SUBDIR += p5-Data-Object-Exception SUBDIR += p5-Data-Object-Kind SUBDIR += p5-Data-Object-Name SUBDIR += p5-Data-Object-Opts SUBDIR += p5-Data-Object-Plugin SUBDIR += p5-Data-Object-Role SUBDIR += p5-Data-Object-Role-Arguable SUBDIR += p5-Data-Object-Role-Buildable SUBDIR += p5-Data-Object-Role-Dumpable SUBDIR += p5-Data-Object-Role-Errable SUBDIR += p5-Data-Object-Role-Formulatable SUBDIR += p5-Data-Object-Role-Immutable SUBDIR += p5-Data-Object-Role-Pluggable SUBDIR += p5-Data-Object-Role-Proxyable SUBDIR += p5-Data-Object-Role-Stashable SUBDIR += p5-Data-Object-Role-Throwable SUBDIR += p5-Data-Object-Role-Tryable SUBDIR += p5-Data-Object-RoleHas SUBDIR += p5-Data-Object-Space SUBDIR += p5-Data-Object-State SUBDIR += p5-Data-Object-Struct SUBDIR += p5-Data-Object-Try SUBDIR += p5-Data-Object-Types SUBDIR += p5-Data-Object-Vars SUBDIR += p5-Data-ObjectDriver SUBDIR += p5-Data-OptList SUBDIR += p5-Data-Page-NoTotalEntries SUBDIR += p5-Data-Page-Pageset SUBDIR += p5-Data-ParseBinary SUBDIR += p5-Data-Path SUBDIR += p5-Data-Peek SUBDIR += p5-Data-Perl SUBDIR += p5-Data-Printer SUBDIR += p5-Data-Properties SUBDIR += p5-Data-Rand SUBDIR += p5-Data-Rand-Obscure SUBDIR += p5-Data-Random SUBDIR += p5-Data-Range-Compare SUBDIR += p5-Data-Record SUBDIR += p5-Data-Recursive-Encode SUBDIR += p5-Data-Remember SUBDIR += p5-Data-Rmap SUBDIR += p5-Data-RoundRobin SUBDIR += p5-Data-Rx SUBDIR += p5-Data-SExpression SUBDIR += p5-Data-Sah-Normalize SUBDIR += p5-Data-Section SUBDIR += p5-Data-Section-Simple SUBDIR += p5-Data-Serializable SUBDIR += p5-Data-Serializer SUBDIR += p5-Data-Serializer-Sereal SUBDIR += p5-Data-ShowTable SUBDIR += p5-Data-Stag SUBDIR += p5-Data-Stream-Bulk SUBDIR += p5-Data-Structure-Util SUBDIR += p5-Data-Swap SUBDIR += p5-Data-Table SUBDIR += p5-Data-Taxonomy-Tags SUBDIR += p5-Data-TemporaryBag SUBDIR += p5-Data-Throttler SUBDIR += p5-Data-Throttler-Memcached SUBDIR += p5-Data-Thunk SUBDIR += p5-Data-TreeDumper SUBDIR += p5-Data-TreeDumper-Renderer-GTK SUBDIR += p5-Data-Types SUBDIR += p5-Data-URIEncode SUBDIR += p5-Data-UUID SUBDIR += p5-Data-Uniqid SUBDIR += p5-Data-Unixish SUBDIR += p5-Data-Util SUBDIR += p5-Data-Validate SUBDIR += p5-Data-Validator SUBDIR += p5-Data-Visitor SUBDIR += p5-Data-Visitor-Encode SUBDIR += p5-Data-Visitor-Tiny SUBDIR += p5-Data-Walk SUBDIR += p5-DataStruct-Flat SUBDIR += p5-Date-Business SUBDIR += p5-Date-Calc SUBDIR += p5-Date-Calc-Iterator SUBDIR += p5-Date-Calc-XS SUBDIR += p5-Date-DayOfWeek SUBDIR += p5-Date-Easter SUBDIR += p5-Date-Extract SUBDIR += p5-Date-EzDate SUBDIR += p5-Date-Holidays-DK SUBDIR += p5-Date-ICal SUBDIR += p5-Date-ISO SUBDIR += p5-Date-Leapyear SUBDIR += p5-Date-Manip SUBDIR += p5-Date-Pcalc SUBDIR += p5-Date-Piece SUBDIR += p5-Date-Range SUBDIR += p5-Date-Roman SUBDIR += p5-Date-Simple SUBDIR += p5-DateConvert SUBDIR += p5-DateTime SUBDIR += p5-DateTime-Astro SUBDIR += p5-DateTime-Calendar-Chinese SUBDIR += p5-DateTime-Calendar-Christian SUBDIR += p5-DateTime-Calendar-Discordian SUBDIR += p5-DateTime-Calendar-FrenchRevolutionary SUBDIR += p5-DateTime-Calendar-Hebrew SUBDIR += p5-DateTime-Calendar-Japanese SUBDIR += p5-DateTime-Calendar-Julian SUBDIR += p5-DateTime-Calendar-Mayan SUBDIR += p5-DateTime-Calendar-Pataphysical SUBDIR += p5-DateTime-Cron-Simple SUBDIR += p5-DateTime-Event-Chinese SUBDIR += p5-DateTime-Event-Cron SUBDIR += p5-DateTime-Event-Easter SUBDIR += p5-DateTime-Event-ICal SUBDIR += p5-DateTime-Event-Lunar SUBDIR += p5-DateTime-Event-NameDay SUBDIR += p5-DateTime-Event-Random SUBDIR += p5-DateTime-Event-Recurrence SUBDIR += p5-DateTime-Event-Sunrise SUBDIR += p5-DateTime-Event-Zodiac SUBDIR += p5-DateTime-Fiscal-Year SUBDIR += p5-DateTime-Format-Baby SUBDIR += p5-DateTime-Format-Bork SUBDIR += p5-DateTime-Format-Builder SUBDIR += p5-DateTime-Format-DBI SUBDIR += p5-DateTime-Format-DateManip SUBDIR += p5-DateTime-Format-DateParse SUBDIR += p5-DateTime-Format-Duration SUBDIR += p5-DateTime-Format-Epoch SUBDIR += p5-DateTime-Format-Excel SUBDIR += p5-DateTime-Format-Flexible SUBDIR += p5-DateTime-Format-HTTP SUBDIR += p5-DateTime-Format-IBeat SUBDIR += p5-DateTime-Format-ICal SUBDIR += p5-DateTime-Format-ISO8601 SUBDIR += p5-DateTime-Format-Mail SUBDIR += p5-DateTime-Format-MySQL SUBDIR += p5-DateTime-Format-Natural SUBDIR += p5-DateTime-Format-Oracle SUBDIR += p5-DateTime-Format-Pg SUBDIR += p5-DateTime-Format-RFC3339 SUBDIR += p5-DateTime-Format-RSS SUBDIR += p5-DateTime-Format-Roman SUBDIR += p5-DateTime-Format-SQLite SUBDIR += p5-DateTime-Format-Strptime SUBDIR += p5-DateTime-Format-W3CDTF SUBDIR += p5-DateTime-Format-XSD SUBDIR += p5-DateTime-Functions SUBDIR += p5-DateTime-HiRes SUBDIR += p5-DateTime-Incomplete SUBDIR += p5-DateTime-Locale SUBDIR += p5-DateTime-Precise SUBDIR += p5-DateTime-Set SUBDIR += p5-DateTime-TimeZone SUBDIR += p5-DateTime-TimeZone-Alias SUBDIR += p5-DateTime-TimeZone-LMT SUBDIR += p5-DateTime-Util-Calc SUBDIR += p5-DateTimeX-Easy SUBDIR += p5-Debug-Client SUBDIR += p5-Decision-ACL SUBDIR += p5-Declare-Constraints-Simple SUBDIR += p5-DefHash SUBDIR += p5-Devel-ArgNames SUBDIR += p5-Devel-Autoflush SUBDIR += p5-Devel-Backtrace SUBDIR += p5-Devel-BeginLift SUBDIR += p5-Devel-CallChecker SUBDIR += p5-Devel-Caller SUBDIR += p5-Devel-Caller-IgnoreNamespaces SUBDIR += p5-Devel-Caller-Perl SUBDIR += p5-Devel-Callsite SUBDIR += p5-Devel-CheckBin SUBDIR += p5-Devel-CheckCompiler SUBDIR += p5-Devel-CheckLib SUBDIR += p5-Devel-CheckOS SUBDIR += p5-Devel-Confess SUBDIR += p5-Devel-Constants SUBDIR += p5-Devel-CoreStack SUBDIR += p5-Devel-Cover SUBDIR += p5-Devel-Cover-Report-Clover SUBDIR += p5-Devel-Cycle SUBDIR += p5-Devel-DProfPP SUBDIR += p5-Devel-Declare SUBDIR += p5-Devel-Declare-Parser SUBDIR += p5-Devel-Diagram SUBDIR += p5-Devel-Ditto SUBDIR += p5-Devel-Dumpvar SUBDIR += p5-Devel-EvalContext SUBDIR += p5-Devel-Events SUBDIR += p5-Devel-Events-Objects SUBDIR += p5-Devel-FindPerl SUBDIR += p5-Devel-Gladiator SUBDIR += p5-Devel-GlobalDestruction SUBDIR += p5-Devel-GlobalDestruction-XS SUBDIR += p5-Devel-Hide SUBDIR += p5-Devel-InheritNamespace SUBDIR += p5-Devel-KYTProf SUBDIR += p5-Devel-Leak SUBDIR += p5-Devel-Leak-Cb SUBDIR += p5-Devel-Leak-Object SUBDIR += p5-Devel-LeakGuard-Object SUBDIR += p5-Devel-LeakTrace SUBDIR += p5-Devel-LexAlias SUBDIR += p5-Devel-MAT SUBDIR += p5-Devel-MAT-Dumper SUBDIR += p5-Devel-Messenger SUBDIR += p5-Devel-Modlist SUBDIR += p5-Devel-NYTProf SUBDIR += p5-Devel-OverloadInfo SUBDIR += p5-Devel-PPPort SUBDIR += p5-Devel-PackagePath SUBDIR += p5-Devel-PartialDump SUBDIR += p5-Devel-PatchPerl SUBDIR += p5-Devel-Platform-Info SUBDIR += p5-Devel-Pointer SUBDIR += p5-Devel-Profile SUBDIR += p5-Devel-REPL SUBDIR += p5-Devel-Refactor SUBDIR += p5-Devel-Refcount SUBDIR += p5-Devel-Required SUBDIR += p5-Devel-RingBuffer SUBDIR += p5-Devel-STrace SUBDIR += p5-Devel-SimpleTrace SUBDIR += p5-Devel-Size SUBDIR += p5-Devel-Size-Report SUBDIR += p5-Devel-SmallProf SUBDIR += p5-Devel-StackTrace SUBDIR += p5-Devel-StackTrace-AsHTML SUBDIR += p5-Devel-StackTrace-WithLexicals SUBDIR += p5-Devel-StealthDebug SUBDIR += p5-Devel-StrictMode SUBDIR += p5-Devel-Symdump SUBDIR += p5-Devel-Timer SUBDIR += p5-Devel-Trace SUBDIR += p5-Devel-TraceCalls SUBDIR += p5-Devel-TraceUse SUBDIR += p5-Devel-ebug SUBDIR += p5-Devel-ptkdb SUBDIR += p5-Device-USB SUBDIR += p5-Digest-TransformPath SUBDIR += p5-Dir-Project SUBDIR += p5-Dir-Self SUBDIR += p5-Dir-Watch SUBDIR += p5-Directory-Queue SUBDIR += p5-Directory-Scratch SUBDIR += p5-Directory-Scratch-Structured SUBDIR += p5-Dist-CheckConflicts SUBDIR += p5-Dist-Joseki SUBDIR += p5-Dist-Metadata SUBDIR += p5-Dist-Zilla SUBDIR += p5-Doxygen-Filter-Perl SUBDIR += p5-DynaLoader-Functions SUBDIR += p5-EV SUBDIR += p5-Env-PS1 SUBDIR += p5-Env-Path SUBDIR += p5-Error-Helper SUBDIR += p5-Eval-Closure SUBDIR += p5-Eval-Context SUBDIR += p5-Eval-LineNumbers SUBDIR += p5-Eval-WithLexicals SUBDIR += p5-Event SUBDIR += p5-Event-ExecFlow SUBDIR += p5-Event-Join SUBDIR += p5-Event-Lib SUBDIR += p5-Event-Notify SUBDIR += p5-Event-RPC SUBDIR += p5-Every SUBDIR += p5-Exception-Class SUBDIR += p5-Exception-Class-TryCatch SUBDIR += p5-Exception-Handler SUBDIR += p5-Expect-Simple SUBDIR += p5-ExportTo SUBDIR += p5-Exporter SUBDIR += p5-Exporter-Declare SUBDIR += p5-Exporter-Easy SUBDIR += p5-Exporter-Lite SUBDIR += p5-Exporter-Tidy SUBDIR += p5-Exporter-Tiny SUBDIR += p5-ExtUtils-AutoInstall SUBDIR += p5-ExtUtils-CBuilder SUBDIR += p5-ExtUtils-CChecker SUBDIR += p5-ExtUtils-Config SUBDIR += p5-ExtUtils-Constant SUBDIR += p5-ExtUtils-CppGuess SUBDIR += p5-ExtUtils-Depends SUBDIR += p5-ExtUtils-Helpers SUBDIR += p5-ExtUtils-Install SUBDIR += p5-ExtUtils-InstallPaths SUBDIR += p5-ExtUtils-LibBuilder SUBDIR += p5-ExtUtils-MakeMaker SUBDIR += p5-ExtUtils-MakeMaker-CPANfile SUBDIR += p5-ExtUtils-MakeMaker-Coverage SUBDIR += p5-ExtUtils-Manifest SUBDIR += p5-ExtUtils-ParseXS SUBDIR += p5-ExtUtils-PkgConfig SUBDIR += p5-ExtUtils-XSBuilder SUBDIR += p5-ExtUtils-XSpp SUBDIR += p5-FFI-C-Stat SUBDIR += p5-FFI-CheckLib SUBDIR += p5-FFI-Platypus SUBDIR += p5-FFI-Platypus-Declare SUBDIR += p5-FFI-Platypus-Lang-Rust SUBDIR += p5-FFI-Platypus-Type-Enum SUBDIR += p5-FFI-Platypus-Type-PtrObject SUBDIR += p5-FSA-Rules SUBDIR += p5-Feature-Compat-Try SUBDIR += p5-Fennec-Lite SUBDIR += p5-File-Append-TempFile SUBDIR += p5-File-Assets SUBDIR += p5-File-Attributes SUBDIR += p5-File-Attributes-Recursive SUBDIR += p5-File-BOM SUBDIR += p5-File-BaseDir SUBDIR += p5-File-BasicFlock SUBDIR += p5-File-Binary SUBDIR += p5-File-Cache SUBDIR += p5-File-Cat SUBDIR += p5-File-ChangeNotify SUBDIR += p5-File-ConfigDir SUBDIR += p5-File-Copy-Link SUBDIR += p5-File-Copy-Recursive SUBDIR += p5-File-Copy-Recursive-Reduced SUBDIR += p5-File-CountLines SUBDIR += p5-File-CreationTime SUBDIR += p5-File-DesktopEntry SUBDIR += p5-File-Dir-Dumper SUBDIR += p5-File-DirSync SUBDIR += p5-File-ExtAttr SUBDIR += p5-File-FcntlLock SUBDIR += p5-File-Find-Closures SUBDIR += p5-File-Find-Object SUBDIR += p5-File-Find-Object-Rule SUBDIR += p5-File-Find-Rule SUBDIR += p5-File-Find-Rule-Filesys-Virtual SUBDIR += p5-File-Find-Rule-Perl SUBDIR += p5-File-Find-Rule-VCS SUBDIR += p5-File-Finder SUBDIR += p5-File-Flat SUBDIR += p5-File-Flock SUBDIR += p5-File-Flock-Retry SUBDIR += p5-File-FnMatch SUBDIR += p5-File-Grep SUBDIR += p5-File-HStore SUBDIR += p5-File-HomeDir SUBDIR += p5-File-HomeDir-PathClass SUBDIR += p5-File-HomeDir-Tiny SUBDIR += p5-File-Iterator SUBDIR += p5-File-LibMagic SUBDIR += p5-File-LoadLines SUBDIR += p5-File-MMagic SUBDIR += p5-File-MMagic-XS SUBDIR += p5-File-Map SUBDIR += p5-File-MimeInfo SUBDIR += p5-File-Modified SUBDIR += p5-File-Monitor SUBDIR += p5-File-NCopy SUBDIR += p5-File-NFSLock SUBDIR += p5-File-Path SUBDIR += p5-File-Path-Expand SUBDIR += p5-File-Path-Tiny SUBDIR += p5-File-PathConvert SUBDIR += p5-File-Pid SUBDIR += p5-File-Pid-Quick SUBDIR += p5-File-Policy SUBDIR += p5-File-Random SUBDIR += p5-File-ReadBackwards SUBDIR += p5-File-Remove SUBDIR += p5-File-SafeDO SUBDIR += p5-File-SearchPath SUBDIR += p5-File-Share SUBDIR += p5-File-ShareDir SUBDIR += p5-File-ShareDir-Dist SUBDIR += p5-File-ShareDir-Install SUBDIR += p5-File-ShareDir-PAR SUBDIR += p5-File-ShareDir-PathClass SUBDIR += p5-File-ShareDir-ProjectDistDir SUBDIR += p5-File-ShareDir-Tarball SUBDIR += p5-File-Slurp SUBDIR += p5-File-Slurp-Tiny SUBDIR += p5-File-Slurp-Tree SUBDIR += p5-File-Slurper SUBDIR += p5-File-Spec-Native SUBDIR += p5-File-Stream SUBDIR += p5-File-Sync SUBDIR += p5-File-Tail SUBDIR += p5-File-Tail-Dir SUBDIR += p5-File-Tail-Multi SUBDIR += p5-File-Tail-Scribe SUBDIR += p5-File-Temp SUBDIR += p5-File-Tempdir SUBDIR += p5-File-Touch SUBDIR += p5-File-TreeCreate SUBDIR += p5-File-Type SUBDIR += p5-File-Util SUBDIR += p5-File-Write-Rotate SUBDIR += p5-File-chdir SUBDIR += p5-File-chmod SUBDIR += p5-File-pushd SUBDIR += p5-FileHandle-Fmode SUBDIR += p5-FileHandle-Unget SUBDIR += p5-Filesys-Notify-KQueue SUBDIR += p5-Filesys-Notify-Simple SUBDIR += p5-Filesys-Virtual SUBDIR += p5-Filesys-Virtual-Plain SUBDIR += p5-Filter SUBDIR += p5-Filter-Template SUBDIR += p5-Find-Lib SUBDIR += p5-FindBin-libs SUBDIR += p5-Forest SUBDIR += p5-Form-Sensible SUBDIR += p5-FreeBSD-i386-Ptrace SUBDIR += p5-FreezeThaw SUBDIR += p5-Function-Fallback-CoreOrPP SUBDIR += p5-Function-Parameters SUBDIR += p5-Future SUBDIR += p5-Future-AsyncAwait SUBDIR += p5-Future-IO SUBDIR += p5-Gearman SUBDIR += p5-Gearman-Client-Async SUBDIR += p5-Gearman-Server SUBDIR += p5-Gearman-XS SUBDIR += p5-Geo-JSON SUBDIR += p5-Geo-ShapeFile SUBDIR += p5-Getargs-Long SUBDIR += p5-Getopt-ArgvFile SUBDIR += p5-Getopt-Attribute SUBDIR += p5-Getopt-Compact SUBDIR += p5-Getopt-Compact-WithCmd SUBDIR += p5-Getopt-Declare SUBDIR += p5-Getopt-EX SUBDIR += p5-Getopt-Euclid SUBDIR += p5-Getopt-GUI-Long SUBDIR += p5-Getopt-Long SUBDIR += p5-Getopt-Long-Descriptive SUBDIR += p5-Getopt-Tabular SUBDIR += p5-Git-PurePerl SUBDIR += p5-Git-Repository SUBDIR += p5-Git-Repository-Plugin-Log SUBDIR += p5-Git-Sub SUBDIR += p5-Git-Version-Compare SUBDIR += p5-Git-Wrapper SUBDIR += p5-Glib SUBDIR += p5-Glib-Object-Introspection SUBDIR += p5-Goo-Canvas2 SUBDIR += p5-Google-Checkout SUBDIR += p5-Google-ProtocolBuffers SUBDIR += p5-GraphQL SUBDIR += p5-Gravatar-URL SUBDIR += p5-Gtk2-Notify SUBDIR += p5-Gtk2-Spell SUBDIR += p5-Guard SUBDIR += p5-HOP-Lexer SUBDIR += p5-HOP-Stream SUBDIR += p5-Hash-AsObject SUBDIR += p5-Hash-AutoHash SUBDIR += p5-Hash-AutoHash-Args SUBDIR += p5-Hash-Case SUBDIR += p5-Hash-Diff SUBDIR += p5-Hash-FieldHash SUBDIR += p5-Hash-Flatten SUBDIR += p5-Hash-Merge-Simple SUBDIR += p5-Hash-MoreUtils SUBDIR += p5-Hash-MultiKey SUBDIR += p5-Hash-MultiValue SUBDIR += p5-Hash-NoRef SUBDIR += p5-Hash-Objectify SUBDIR += p5-Hash-Ordered SUBDIR += p5-Hash-SharedMem SUBDIR += p5-Hash-Slice SUBDIR += p5-Hash-Union SUBDIR += p5-Hash-Util-FieldHash-Compat SUBDIR += p5-Hash-WithDefaults SUBDIR += p5-Heap SUBDIR += p5-Heap-Simple SUBDIR += p5-Heap-Simple-Perl SUBDIR += p5-Heap-Simple-XS SUBDIR += p5-Hook-LexWrap SUBDIR += p5-IO-AIO SUBDIR += p5-IO-All SUBDIR += p5-IO-All-LWP SUBDIR += p5-IO-Any SUBDIR += p5-IO-Async SUBDIR += p5-IO-BufferedSelect SUBDIR += p5-IO-Callback SUBDIR += p5-IO-Capture SUBDIR += p5-IO-CaptureOutput SUBDIR += p5-IO-Digest SUBDIR += p5-IO-Event SUBDIR += p5-IO-FDPass SUBDIR += p5-IO-File-AtomicChange SUBDIR += p5-IO-HTML SUBDIR += p5-IO-Handle-Util SUBDIR += p5-IO-Interactive SUBDIR += p5-IO-KQueue SUBDIR += p5-IO-Lambda SUBDIR += p5-IO-LockedFile SUBDIR += p5-IO-MultiPipe SUBDIR += p5-IO-Multiplex SUBDIR += p5-IO-NestedCapture SUBDIR += p5-IO-Null SUBDIR += p5-IO-Pager SUBDIR += p5-IO-Pipely SUBDIR += p5-IO-Prompt SUBDIR += p5-IO-Prompt-Simple SUBDIR += p5-IO-Prompt-Tiny SUBDIR += p5-IO-Prompter SUBDIR += p5-IO-Pty-Easy SUBDIR += p5-IO-SessionData SUBDIR += p5-IO-String SUBDIR += p5-IO-Stringy SUBDIR += p5-IO-Stty SUBDIR += p5-IO-Tee SUBDIR += p5-IO-TieCombine SUBDIR += p5-IO-Toolkit SUBDIR += p5-IO-Tty SUBDIR += p5-IO-Util SUBDIR += p5-IO-YAML SUBDIR += p5-IOC SUBDIR += p5-IPC-Cache SUBDIR += p5-IPC-Cmd SUBDIR += p5-IPC-DirQueue SUBDIR += p5-IPC-Locker SUBDIR += p5-IPC-MM SUBDIR += p5-IPC-MMA SUBDIR += p5-IPC-Mmap SUBDIR += p5-IPC-Mmap-Share SUBDIR += p5-IPC-Open3-Simple SUBDIR += p5-IPC-PerlSSH SUBDIR += p5-IPC-PubSub SUBDIR += p5-IPC-Run SUBDIR += p5-IPC-Run-SafeHandles SUBDIR += p5-IPC-Run3 SUBDIR += p5-IPC-ShareLite SUBDIR += p5-IPC-Shareable SUBDIR += p5-IPC-SharedCache SUBDIR += p5-IPC-ShellCmd SUBDIR += p5-IPC-Signal SUBDIR += p5-IPC-System-Simple SUBDIR += p5-IRI SUBDIR += p5-Import-Base SUBDIR += p5-Import-Into SUBDIR += p5-Importer SUBDIR += p5-Inline SUBDIR += p5-Inline-ASM SUBDIR += p5-Inline-C SUBDIR += p5-Inline-CPP SUBDIR += p5-Inline-Files SUBDIR += p5-Inline-Filters SUBDIR += p5-Inline-Java SUBDIR += p5-Inline-Python SUBDIR += p5-Inline-TT SUBDIR += p5-Inline-Tcl SUBDIR += p5-InlineX-C2XS SUBDIR += p5-InlineX-CPP2XS SUBDIR += p5-Input-Validator SUBDIR += p5-Ioctl SUBDIR += p5-Iodef-Pb-Simple SUBDIR += p5-Iterator SUBDIR += p5-Iterator-IO SUBDIR += p5-Iterator-Misc SUBDIR += p5-Iterator-Simple SUBDIR += p5-Iterator-Simple-Lookahead SUBDIR += p5-Iterator-Util SUBDIR += p5-JIRA-REST SUBDIR += p5-JQuery SUBDIR += p5-JSON-Hyper SUBDIR += p5-JSON-Parse SUBDIR += p5-JSON-Path SUBDIR += p5-JSON-Pointer SUBDIR += p5-JSON-RPC SUBDIR += p5-JSON-RPC-Common SUBDIR += p5-JSON-RPC-Dispatcher SUBDIR += p5-JSON-Schema SUBDIR += p5-Java SUBDIR += p5-Jonk SUBDIR += p5-Keyword-Declare SUBDIR += p5-Keyword-Pluggable SUBDIR += p5-Keyword-Simple SUBDIR += p5-LV SUBDIR += p5-Lexical-Alias SUBDIR += p5-Lexical-Import SUBDIR += p5-Lexical-Persistence SUBDIR += p5-Lexical-SealRequireHints SUBDIR += p5-Lexical-Var SUBDIR += p5-Lingua-JA-Fold SUBDIR += p5-Lingua-Translit SUBDIR += p5-List-AllUtils SUBDIR += p5-List-BinarySearch SUBDIR += p5-List-Cycle SUBDIR += p5-List-Flatten SUBDIR += p5-List-Gen SUBDIR += p5-List-Group SUBDIR += p5-List-Objects-Types SUBDIR += p5-List-Objects-WithUtils SUBDIR += p5-List-Pairwise SUBDIR += p5-List-Permutor SUBDIR += p5-List-PowerSet SUBDIR += p5-List-Regexp SUBDIR += p5-List-Rotation-Cycle SUBDIR += p5-List-SomeUtils SUBDIR += p5-List-SomeUtils-XS SUBDIR += p5-List-Uniq SUBDIR += p5-List-UtilsBy SUBDIR += p5-List-UtilsBy-XS SUBDIR += p5-Locale-Maketext SUBDIR += p5-Locale-Maketext-Fuzzy SUBDIR += p5-Locale-Maketext-Gettext SUBDIR += p5-Locale-Maketext-Lexicon SUBDIR += p5-Locale-Maketext-Simple SUBDIR += p5-Locale-Msgfmt SUBDIR += p5-Locale-PGetText SUBDIR += p5-Locale-PO SUBDIR += p5-Locale-XGettext SUBDIR += p5-Locale-gettext SUBDIR += p5-Locale-libintl SUBDIR += p5-Lock-File SUBDIR += p5-LockFile-Simple SUBDIR += p5-Log-Accounting-SVK SUBDIR += p5-Log-Accounting-SVN SUBDIR += p5-Log-Agent SUBDIR += p5-Log-Agent-Logger SUBDIR += p5-Log-Any SUBDIR += p5-Log-Any-Adapter-Dispatch SUBDIR += p5-Log-Any-Adapter-Log4perl SUBDIR += p5-Log-Any-App SUBDIR += p5-Log-Any-IfLOG SUBDIR += p5-Log-Contextual SUBDIR += p5-Log-Defer SUBDIR += p5-Log-Dispatch SUBDIR += p5-Log-Dispatch-Array SUBDIR += p5-Log-Dispatch-ArrayWithLimits SUBDIR += p5-Log-Dispatch-Colorful SUBDIR += p5-Log-Dispatch-Config SUBDIR += p5-Log-Dispatch-Configurator-Any SUBDIR += p5-Log-Dispatch-Configurator-YAML SUBDIR += p5-Log-Dispatch-DBI SUBDIR += p5-Log-Dispatch-Dir SUBDIR += p5-Log-Dispatch-Email-EmailSend SUBDIR += p5-Log-Dispatch-File-Rolling SUBDIR += p5-Log-Dispatch-File-Stamped SUBDIR += p5-Log-Dispatch-FileRotate SUBDIR += p5-Log-Dispatch-FileShared SUBDIR += p5-Log-Dispatch-FileWriteRotate SUBDIR += p5-Log-Dispatch-Perl SUBDIR += p5-Log-Dispatch-Screen-Color SUBDIR += p5-Log-Dispatch-Scribe SUBDIR += p5-Log-Dispatchouli SUBDIR += p5-Log-Dump SUBDIR += p5-Log-Handler SUBDIR += p5-Log-Log4perl SUBDIR += p5-Log-Log4perl-Appender-RabbitMQ SUBDIR += p5-Log-Log4perl-Appender-Socket-UNIX SUBDIR += p5-Log-Log4perl-Layout-JSON SUBDIR += p5-Log-Log4perl-Tiny SUBDIR += p5-Log-Message SUBDIR += p5-Log-Message-Simple SUBDIR += p5-Log-Minimal SUBDIR += p5-Log-Report SUBDIR += p5-Log-Report-Optional SUBDIR += p5-Log-Simple SUBDIR += p5-Log-Trace SUBDIR += p5-Log-TraceMessages SUBDIR += p5-Log-ger SUBDIR += p5-Logfile-Rotate SUBDIR += p5-Long-Jump SUBDIR += p5-Luka SUBDIR += p5-Lvalue SUBDIR += p5-MCE SUBDIR += p5-MCE-Shared SUBDIR += p5-MRO-Compat SUBDIR += p5-MRO-Define SUBDIR += p5-Mac-FileSpec-Unixish SUBDIR += p5-Mac-PropertyList SUBDIR += p5-Make SUBDIR += p5-Media-Type-Simple SUBDIR += p5-Memoize SUBDIR += p5-Memoize-ExpireLRU SUBDIR += p5-Meta-Builder SUBDIR += p5-MetaCPAN-Client SUBDIR += p5-Metabase-Client-Simple SUBDIR += p5-Metabase-Fact SUBDIR += p5-Method-Alias SUBDIR += p5-Method-Signatures SUBDIR += p5-Method-Signatures-Simple SUBDIR += p5-Metrics-Any SUBDIR += p5-Minilla SUBDIR += p5-Minion SUBDIR += p5-Mixin-Event-Dispatch SUBDIR += p5-Mixin-Linewise SUBDIR += p5-Mknod SUBDIR += p5-Mo SUBDIR += p5-Mock-MonkeyPatch SUBDIR += p5-Mock-Quick SUBDIR += p5-Mock-Sub SUBDIR += p5-Module-Build SUBDIR += p5-Module-Build-Convert SUBDIR += p5-Module-Build-Kwalitee SUBDIR += p5-Module-Build-Pluggable SUBDIR += p5-Module-Build-Pluggable-CPANfile SUBDIR += p5-Module-Build-Pluggable-ReadmeMarkdownFromPod SUBDIR += p5-Module-Build-Prereqs-FromCPANfile SUBDIR += p5-Module-Build-Tiny SUBDIR += p5-Module-Build-Using-PkgConfig SUBDIR += p5-Module-Build-WithXSpp SUBDIR += p5-Module-Build-XSUtil SUBDIR += p5-Module-CPANTS-Analyse SUBDIR += p5-Module-CPANfile SUBDIR += p5-Module-CheckDeps SUBDIR += p5-Module-CheckVersion SUBDIR += p5-Module-Collect SUBDIR += p5-Module-Compile SUBDIR += p5-Module-CoreList SUBDIR += p5-Module-Dependency SUBDIR += p5-Module-Depends SUBDIR += p5-Module-Extract SUBDIR += p5-Module-Extract-Use SUBDIR += p5-Module-Extract-VERSION SUBDIR += p5-Module-ExtractUse SUBDIR += p5-Module-Find SUBDIR += p5-Module-Functions SUBDIR += p5-Module-Implementation SUBDIR += p5-Module-Info SUBDIR += p5-Module-Info-File SUBDIR += p5-Module-Inspector SUBDIR += p5-Module-Install SUBDIR += p5-Module-Install-AuthorRequires SUBDIR += p5-Module-Install-AuthorTests SUBDIR += p5-Module-Install-ReadmeFromPod SUBDIR += p5-Module-Install-Repository SUBDIR += p5-Module-Install-Template SUBDIR += p5-Module-Install-TestBase SUBDIR += p5-Module-Install-XSUtil SUBDIR += p5-Module-Installed-Tiny SUBDIR += p5-Module-List SUBDIR += p5-Module-Load SUBDIR += p5-Module-Load-Conditional SUBDIR += p5-Module-Load-Util SUBDIR += p5-Module-Loaded SUBDIR += p5-Module-Loader SUBDIR += p5-Module-Manifest SUBDIR += p5-Module-Math-Depends SUBDIR += p5-Module-Metadata SUBDIR += p5-Module-Path SUBDIR += p5-Module-Pluggable SUBDIR += p5-Module-Pluggable-Fast SUBDIR += p5-Module-Pluggable-Ordered SUBDIR += p5-Module-Reader SUBDIR += p5-Module-Recursive-Require SUBDIR += p5-Module-Refresh SUBDIR += p5-Module-Release SUBDIR += p5-Module-Reload SUBDIR += p5-Module-Reload-Sel SUBDIR += p5-Module-Runtime SUBDIR += p5-Module-Runtime-Conflicts SUBDIR += p5-Module-ScanDeps SUBDIR += p5-Module-Setup SUBDIR += p5-Module-Starter SUBDIR += p5-Module-Starter-PBP SUBDIR += p5-Module-Starter-Plugin-SimpleStore SUBDIR += p5-Module-Starter-Plugin-TT2 SUBDIR += p5-Module-Used SUBDIR += p5-Module-Util SUBDIR += p5-Module-Version SUBDIR += p5-Module-Versions SUBDIR += p5-Module-Versions-Report SUBDIR += p5-Mojo-Base-XS SUBDIR += p5-Mojo-Log-Clearable SUBDIR += p5-Mojolicious-Plugin-NYTProf SUBDIR += p5-Moo SUBDIR += p5-MooX-Aliases SUBDIR += p5-MooX-Attribute-ENV SUBDIR += p5-MooX-Cmd SUBDIR += p5-MooX-ConfigFromFile SUBDIR += p5-MooX-File-ConfigDir SUBDIR += p5-MooX-HandlesVia SUBDIR += p5-MooX-Locale-Passthrough SUBDIR += p5-MooX-Options SUBDIR += p5-MooX-Role-Parameterized SUBDIR += p5-MooX-Singleton SUBDIR += p5-MooX-StrictConstructor SUBDIR += p5-MooX-Thunking SUBDIR += p5-MooX-Traits SUBDIR += p5-MooX-TypeTiny SUBDIR += p5-MooX-Types-MooseLike SUBDIR += p5-MooX-Types-MooseLike-Numeric SUBDIR += p5-MooX-late SUBDIR += p5-Moos SUBDIR += p5-Moose SUBDIR += p5-Moose-Autobox SUBDIR += p5-Moose-Policy SUBDIR += p5-Moose-Test SUBDIR += p5-MooseX-Aliases SUBDIR += p5-MooseX-App SUBDIR += p5-MooseX-App-Cmd SUBDIR += p5-MooseX-ArrayRef SUBDIR += p5-MooseX-Async SUBDIR += p5-MooseX-Attribute-Chained SUBDIR += p5-MooseX-Attribute-ENV SUBDIR += p5-MooseX-AttributeHelpers SUBDIR += p5-MooseX-AttributeShortcuts SUBDIR += p5-MooseX-AuthorizedMethods SUBDIR += p5-MooseX-ClassAttribute SUBDIR += p5-MooseX-Clone SUBDIR += p5-MooseX-CompileTime-Traits SUBDIR += p5-MooseX-ConfigFromFile SUBDIR += p5-MooseX-CoverableModifiers SUBDIR += p5-MooseX-Daemonize SUBDIR += p5-MooseX-Declare SUBDIR += p5-MooseX-Emulate-Class-Accessor-Fast SUBDIR += p5-MooseX-Extended SUBDIR += p5-MooseX-FollowPBP SUBDIR += p5-MooseX-Getopt SUBDIR += p5-MooseX-Has-Options SUBDIR += p5-MooseX-Has-Sugar SUBDIR += p5-MooseX-HasDefaults SUBDIR += p5-MooseX-IOC SUBDIR += p5-MooseX-InsideOut SUBDIR += p5-MooseX-LazyRequire SUBDIR += p5-MooseX-Lists SUBDIR += p5-MooseX-Log-Log4perl SUBDIR += p5-MooseX-MarkAsMethods SUBDIR += p5-MooseX-Meta-TypeConstraint-ForceCoercion SUBDIR += p5-MooseX-Meta-TypeConstraint-Mooish SUBDIR += p5-MooseX-MetaDescription SUBDIR += p5-MooseX-Method-Signatures SUBDIR += p5-MooseX-MethodAttributes SUBDIR += p5-MooseX-MultiInitArg SUBDIR += p5-MooseX-MultiMethods SUBDIR += p5-MooseX-MungeHas SUBDIR += p5-MooseX-NonMoose SUBDIR += p5-MooseX-Object-Pluggable SUBDIR += p5-MooseX-OneArgNew SUBDIR += p5-MooseX-POE SUBDIR += p5-MooseX-Params-Validate SUBDIR += p5-MooseX-RelatedClassRoles SUBDIR += p5-MooseX-Role-Loggable SUBDIR += p5-MooseX-Role-Matcher SUBDIR += p5-MooseX-Role-Parameterized SUBDIR += p5-MooseX-Role-Strict SUBDIR += p5-MooseX-Role-WarnOnConflict SUBDIR += p5-MooseX-Runnable SUBDIR += p5-MooseX-SemiAffordanceAccessor SUBDIR += p5-MooseX-SetOnce SUBDIR += p5-MooseX-SimpleConfig SUBDIR += p5-MooseX-Singleton SUBDIR += p5-MooseX-Storage SUBDIR += p5-MooseX-StrictConstructor SUBDIR += p5-MooseX-Test-Role SUBDIR += p5-MooseX-TraitFor-Meta-Class-BetterAnonClassNames SUBDIR += p5-MooseX-Traits SUBDIR += p5-MooseX-Traits-Pluggable SUBDIR += p5-MooseX-TransactionalMethods SUBDIR += p5-MooseX-Types SUBDIR += p5-MooseX-Types-Common SUBDIR += p5-MooseX-Types-DateTime SUBDIR += p5-MooseX-Types-DateTime-ButMaintained SUBDIR += p5-MooseX-Types-DateTime-MoreCoercions SUBDIR += p5-MooseX-Types-DateTime-MySQL SUBDIR += p5-MooseX-Types-DateTimeX SUBDIR += p5-MooseX-Types-ISO8601 SUBDIR += p5-MooseX-Types-JSON SUBDIR += p5-MooseX-Types-LoadableClass SUBDIR += p5-MooseX-Types-Path-Class SUBDIR += p5-MooseX-Types-Path-Tiny SUBDIR += p5-MooseX-Types-Perl SUBDIR += p5-MooseX-Types-PortNumber SUBDIR += p5-MooseX-Types-Set-Object SUBDIR += p5-MooseX-Types-Signal SUBDIR += p5-MooseX-Types-Stringlike SUBDIR += p5-MooseX-Types-Structured SUBDIR += p5-MooseX-Types-URI SUBDIR += p5-MooseX-Types-VariantTable SUBDIR += p5-MooseX-Util SUBDIR += p5-Mouse SUBDIR += p5-MouseX-App-Cmd SUBDIR += p5-MouseX-AttributeHelpers SUBDIR += p5-MouseX-ConfigFromFile SUBDIR += p5-MouseX-Foreign SUBDIR += p5-MouseX-Getopt SUBDIR += p5-MouseX-NativeTraits SUBDIR += p5-MouseX-StrictConstructor SUBDIR += p5-MouseX-Traits SUBDIR += p5-MouseX-Types SUBDIR += p5-MouseX-Types-Path-Class SUBDIR += p5-Multiplex-CMD SUBDIR += p5-NEXT SUBDIR += p5-Net-DBus SUBDIR += p5-No-Worries SUBDIR += p5-Number-Bytes-Human SUBDIR += p5-Number-Tolerant SUBDIR += p5-OLE-Storage_Lite SUBDIR += p5-OOTools SUBDIR += p5-Object-Accessor SUBDIR += p5-Object-Array SUBDIR += p5-Object-Authority SUBDIR += p5-Object-Container SUBDIR += p5-Object-Declare SUBDIR += p5-Object-Destroyer SUBDIR += p5-Object-Enum SUBDIR += p5-Object-Event SUBDIR += p5-Object-Import SUBDIR += p5-Object-InsideOut SUBDIR += p5-Object-MultiType SUBDIR += p5-Object-Pad SUBDIR += p5-Object-Pluggable SUBDIR += p5-Object-Realize-Later SUBDIR += p5-Object-Role SUBDIR += p5-Object-Signature SUBDIR += p5-Object-Simple SUBDIR += p5-Object-Tiny SUBDIR += p5-Object-Tiny-Lvalue SUBDIR += p5-Object-Tiny-RW SUBDIR += p5-Olson-Abbreviations SUBDIR += p5-Opcodes SUBDIR += p5-OrePAN2 SUBDIR += p5-Ouch SUBDIR += p5-PAR SUBDIR += p5-PAR-Dist SUBDIR += p5-PAR-Packer SUBDIR += p5-PCSC-Card SUBDIR += p5-PHP-Serialization SUBDIR += p5-POE SUBDIR += p5-POE-API-Hooks SUBDIR += p5-POE-API-Peek SUBDIR += p5-POE-Component-Child SUBDIR += p5-POE-Component-Cron SUBDIR += p5-POE-Component-Daemon SUBDIR += p5-POE-Component-DebugShell SUBDIR += p5-POE-Component-DirWatch SUBDIR += p5-POE-Component-Hailo SUBDIR += p5-POE-Component-IKC SUBDIR += p5-POE-Component-JobQueue SUBDIR += p5-POE-Component-Logger SUBDIR += p5-POE-Component-Pluggable SUBDIR += p5-POE-Component-RSS SUBDIR += p5-POE-Component-RSSAggregator SUBDIR += p5-POE-Component-Schedule SUBDIR += p5-POE-Component-Server-XMLRPC SUBDIR += p5-POE-Component-Syndicator SUBDIR += p5-POE-Component-TSTP SUBDIR += p5-POE-Devel-Profiler SUBDIR += p5-POE-Loop-AnyEvent SUBDIR += p5-POE-Loop-Glib SUBDIR += p5-POE-Loop-Tk SUBDIR += p5-POE-Quickie SUBDIR += p5-POE-Session-MultiDispatch SUBDIR += p5-POE-Stage SUBDIR += p5-POE-Test-Loops SUBDIR += p5-POE-XS-Loop-Poll SUBDIR += p5-POE-XS-Queue-Array SUBDIR += p5-POEx-Role-SessionInstantiation SUBDIR += p5-POEx-Role-Streaming SUBDIR += p5-POEx-Types SUBDIR += p5-POSIX-strftime-Compiler SUBDIR += p5-POSIX-strptime SUBDIR += p5-PPR SUBDIR += p5-PPerl SUBDIR += p5-PV SUBDIR += p5-Package-Constants SUBDIR += p5-Package-DeprecationManager SUBDIR += p5-Package-Generator SUBDIR += p5-Package-MoreUtil SUBDIR += p5-Package-Stash SUBDIR += p5-Package-Stash-XS SUBDIR += p5-Package-Util-Lite SUBDIR += p5-Package-Variant SUBDIR += p5-PadWalker SUBDIR += p5-Parallel-Async SUBDIR += p5-Parallel-Fork-BossWorker SUBDIR += p5-Parallel-ForkManager SUBDIR += p5-Parallel-Iterator SUBDIR += p5-Parallel-Prefork SUBDIR += p5-Parallel-Scoreboard SUBDIR += p5-Params-CallbackRequest SUBDIR += p5-Params-Check SUBDIR += p5-Params-Classify SUBDIR += p5-Params-Coerce SUBDIR += p5-Params-Util SUBDIR += p5-Params-Validate SUBDIR += p5-Params-Validate-Dependencies SUBDIR += p5-Params-ValidationCompiler SUBDIR += p5-Paranoid SUBDIR += p5-Paranoid-Log-Email SUBDIR += p5-Paranoid-Log-Syslog SUBDIR += p5-Parse-CPAN-Packages SUBDIR += p5-Parse-CPAN-Packages-Fast SUBDIR += p5-Parse-Distname SUBDIR += p5-Parse-ErrorString-Perl SUBDIR += p5-Parse-ExuberantCTags SUBDIR += p5-Parse-LocalDistribution SUBDIR += p5-Parse-Method-Signatures SUBDIR += p5-Parse-PMFile SUBDIR += p5-Parse-PerlConfig SUBDIR += p5-Parse-PlainConfig SUBDIR += p5-Parse-RecDescent SUBDIR += p5-Parse-VarName SUBDIR += p5-Parse-Win32Registry SUBDIR += p5-Parse-Yapp SUBDIR += p5-ParseLex SUBDIR += p5-ParseTemplate SUBDIR += p5-Parser-MGC SUBDIR += p5-PatchReader SUBDIR += p5-Path-Abstract SUBDIR += p5-Path-Class SUBDIR += p5-Path-Class-File-Lockable SUBDIR += p5-Path-Dispatcher SUBDIR += p5-Path-Dispatcher-Declarative SUBDIR += p5-Path-Extended SUBDIR += p5-Path-FindDev SUBDIR += p5-Path-IsDev SUBDIR += p5-Path-Iterator-Rule SUBDIR += p5-Path-Resource SUBDIR += p5-Path-Tiny SUBDIR += p5-PathTools SUBDIR += p5-Paws SUBDIR += p5-Pegex SUBDIR += p5-Perl-Critic-Deprecated SUBDIR += p5-Perl-Metrics-Lite SUBDIR += p5-Perl-Metrics-Simple SUBDIR += p5-Perl-OSType SUBDIR += p5-Perl-PrereqScanner SUBDIR += p5-Perl-PrereqScanner-Lite SUBDIR += p5-Perl-PrereqScanner-NotQuiteLite SUBDIR += p5-Perl-Tidy SUBDIR += p5-Perl-Unsafe-Signals SUBDIR += p5-Perl-Version SUBDIR += p5-Perl-osnames SUBDIR += p5-Perl4-CoreLibs SUBDIR += p5-Perl6-Builtins SUBDIR += p5-Perl6-Export SUBDIR += p5-Perl6-Export-Attrs SUBDIR += p5-Perl6-Form SUBDIR += p5-Perl6-Junction SUBDIR += p5-Perl6-Rules SUBDIR += p5-Perl6-Say SUBDIR += p5-Perl6-Slurp SUBDIR += p5-PerlIO-Layers SUBDIR += p5-PerlIO-Util SUBDIR += p5-PerlIO-eol SUBDIR += p5-PerlIO-locale SUBDIR += p5-PerlIO-utf8_strict SUBDIR += p5-PerlIO-via-MD5 SUBDIR += p5-PerlIO-via-Timeout SUBDIR += p5-PerlIO-via-dynamic SUBDIR += p5-PerlIO-via-symlink SUBDIR += p5-PerlX-Maybe SUBDIR += p5-PerlX-Maybe-XS SUBDIR += p5-Pid-File-Flock SUBDIR += p5-Pipeline SUBDIR += p5-Pithub SUBDIR += p5-PkgConfig SUBDIR += p5-PkgConfig-LibPkgConf SUBDIR += p5-Pod-Coverage SUBDIR += p5-Pod-Coverage-Moose SUBDIR += p5-Pod-Coverage-TrustPod SUBDIR += p5-Pod-Tests SUBDIR += p5-Pod-Usage SUBDIR += p5-Pragmatic SUBDIR += p5-Proc-BackOff SUBDIR += p5-Proc-Background SUBDIR += p5-Proc-Daemon SUBDIR += p5-Proc-FastSpawn SUBDIR += p5-Proc-Find-Parents SUBDIR += p5-Proc-Fork SUBDIR += p5-Proc-Guard SUBDIR += p5-Proc-PID-File SUBDIR += p5-Proc-Pidfile SUBDIR += p5-Proc-ProcessTable SUBDIR += p5-Proc-Queue SUBDIR += p5-Proc-Reliable SUBDIR += p5-Proc-SafeExec SUBDIR += p5-Proc-Simple SUBDIR += p5-Proc-Wait3 SUBDIR += p5-Proc-WaitStat SUBDIR += p5-Process-Status SUBDIR += p5-Progress-Any SUBDIR += p5-Project-Gantt SUBDIR += p5-Project-Libs SUBDIR += p5-Pthread-GetThreadId SUBDIR += p5-Qudo SUBDIR += p5-RPSL-Parser SUBDIR += p5-RRDTool-OO SUBDIR += p5-Rcs SUBDIR += p5-Rcs-Agent SUBDIR += p5-Readonly SUBDIR += p5-Readonly-XS SUBDIR += p5-ReadonlyX SUBDIR += p5-Reaper SUBDIR += p5-Ref-Util SUBDIR += p5-Ref-Util-XS SUBDIR += p5-Reflex SUBDIR += p5-Regexp-Assemble SUBDIR += p5-Regexp-Assemble-Compressed SUBDIR += p5-Regexp-Bind SUBDIR += p5-Regexp-Compare SUBDIR += p5-Regexp-Grammars SUBDIR += p5-Regexp-Lexer SUBDIR += p5-Regexp-Pattern-Perl SUBDIR += p5-Regexp-RegGrp SUBDIR += p5-Regexp-Shellish SUBDIR += p5-Regexp-Stringify SUBDIR += p5-Regexp-Subst-Parallel SUBDIR += p5-Regexp-Trie SUBDIR += p5-Religion SUBDIR += p5-Reply SUBDIR += p5-ResourcePool SUBDIR += p5-Resources SUBDIR += p5-Return-MultiLevel SUBDIR += p5-Return-Type SUBDIR += p5-Return-Value SUBDIR += p5-Rinci SUBDIR += p5-Role-Basic SUBDIR += p5-Role-HasMessage SUBDIR += p5-Role-Hooks SUBDIR += p5-Role-Identifiable SUBDIR += p5-Role-Tiny SUBDIR += p5-Rose-DateTime SUBDIR += p5-Rose-Object SUBDIR += p5-Router-R3 SUBDIR += p5-Routes-Tiny SUBDIR += p5-RunApp SUBDIR += p5-SDL SUBDIR += p5-SNMP-Persist SUBDIR += p5-SOAP-WSDL SUBDIR += p5-SPOPS SUBDIR += p5-SSN-Validate SUBDIR += p5-SUPER SUBDIR += p5-SVN-ACL SUBDIR += p5-SVN-Access SUBDIR += p5-SVN-Agent SUBDIR += p5-SVN-Dump SUBDIR += p5-SVN-Dumpfile SUBDIR += p5-SVN-Hook SUBDIR += p5-SVN-Hooks SUBDIR += p5-SVN-Log SUBDIR += p5-SVN-Look SUBDIR += p5-SVN-Mirror SUBDIR += p5-SVN-Notify SUBDIR += p5-SVN-Notify-Config SUBDIR += p5-SVN-Notify-Filter-AuthZMail SUBDIR += p5-SVN-Notify-Filter-EmailFlatFileDB SUBDIR += p5-SVN-Notify-Filter-Markdown SUBDIR += p5-SVN-Notify-Filter-Watchers SUBDIR += p5-SVN-Notify-Mirror SUBDIR += p5-SVN-Notify-Snapshot SUBDIR += p5-SVN-S4 SUBDIR += p5-SVN-Simple SUBDIR += p5-SVN-Statistics SUBDIR += p5-SVN-Web SUBDIR += p5-Safe-Isa SUBDIR += p5-Sah SUBDIR += p5-Scalar-Defer SUBDIR += p5-Scalar-Does SUBDIR += p5-Scalar-Listify SUBDIR += p5-Scalar-String SUBDIR += p5-Scalar-Util-LooksLikeNumber SUBDIR += p5-Scalar-Util-Numeric SUBDIR += p5-Scope-Container SUBDIR += p5-Scope-Guard SUBDIR += p5-Scope-Upper SUBDIR += p5-Script-isAperlScript SUBDIR += p5-Sentinel SUBDIR += p5-Sepia SUBDIR += p5-Set-Array SUBDIR += p5-Set-ConsistentHash SUBDIR += p5-Set-Crontab SUBDIR += p5-Set-CrossProduct SUBDIR += p5-Set-Infinite SUBDIR += p5-Set-NestedGroups SUBDIR += p5-Set-Object SUBDIR += p5-Set-Scalar SUBDIR += p5-Set-Tiny SUBDIR += p5-Shell-Base SUBDIR += p5-Shell-Config-Generate SUBDIR += p5-Shell-EnvImporter SUBDIR += p5-Shell-GetEnv SUBDIR += p5-Shell-Guess SUBDIR += p5-Shell-Parser SUBDIR += p5-Shell-Source SUBDIR += p5-ShipIt SUBDIR += p5-ShipIt-Step-Manifest SUBDIR += p5-Signal-Mask SUBDIR += p5-Slurp SUBDIR += p5-Smart-Comments SUBDIR += p5-Sort-Array SUBDIR += p5-Sort-ArrayOfArrays SUBDIR += p5-Sort-Key SUBDIR += p5-Sort-Key-DateTime SUBDIR += p5-Sort-Key-Top SUBDIR += p5-Sort-Maker SUBDIR += p5-Sort-Sub SUBDIR += p5-Sort-Tree SUBDIR += p5-Sort-Versions SUBDIR += p5-Specio SUBDIR += p5-Spiffy SUBDIR += p5-Spoon SUBDIR += p5-Storable SUBDIR += p5-Stream SUBDIR += p5-Stream-Buffered SUBDIR += p5-Stream-Reader SUBDIR += p5-String-Approx SUBDIR += p5-String-CRC32 SUBDIR += p5-String-Checker SUBDIR += p5-String-Diff SUBDIR += p5-String-Dump SUBDIR += p5-String-Ediff SUBDIR += p5-String-Errf SUBDIR += p5-String-Formatter SUBDIR += p5-String-Interpolate-Named SUBDIR += p5-String-KeyboardDistance SUBDIR += p5-String-LRC SUBDIR += p5-String-Parity SUBDIR += p5-String-Random SUBDIR += p5-String-RexxParse SUBDIR += p5-String-Similarity SUBDIR += p5-String-TT SUBDIR += p5-Struct-Dumb SUBDIR += p5-Sub-Alias SUBDIR += p5-Sub-Current SUBDIR += p5-Sub-Delete SUBDIR += p5-Sub-Exporter SUBDIR += p5-Sub-Exporter-ForMethods SUBDIR += p5-Sub-Exporter-GlobExporter SUBDIR += p5-Sub-Exporter-Lexical SUBDIR += p5-Sub-Exporter-Progressive SUBDIR += p5-Sub-HandlesVia SUBDIR += p5-Sub-Identify SUBDIR += p5-Sub-Infix SUBDIR += p5-Sub-Info SUBDIR += p5-Sub-Install SUBDIR += p5-Sub-Installer SUBDIR += p5-Sub-Multi SUBDIR += p5-Sub-Name SUBDIR += p5-Sub-Override SUBDIR += p5-Sub-Prototype SUBDIR += p5-Sub-Quote SUBDIR += p5-Sub-Signatures SUBDIR += p5-Sub-Uplevel SUBDIR += p5-Sub-WrapPackages SUBDIR += p5-Symbol-Get SUBDIR += p5-Symbol-Global-Name SUBDIR += p5-Symbol-Util SUBDIR += p5-Syntax-Keyword-Dynamically SUBDIR += p5-Syntax-Keyword-Gather SUBDIR += p5-Syntax-Keyword-Junction SUBDIR += p5-Syntax-Keyword-Match SUBDIR += p5-Syntax-Keyword-Try SUBDIR += p5-Sys-CPU SUBDIR += p5-Sys-Info SUBDIR += p5-Sys-Info-Base SUBDIR += p5-Sys-Info-Driver-BSD SUBDIR += p5-Sys-MemInfo SUBDIR += p5-Sys-Mmap SUBDIR += p5-Sys-RunAlone SUBDIR += p5-Sys-RunAlways SUBDIR += p5-Sys-Sendfile SUBDIR += p5-Sys-Sendfile-FreeBSD SUBDIR += p5-Sys-Sig SUBDIR += p5-Sys-SigAction SUBDIR += p5-Sys-Syscall SUBDIR += p5-Sys-Trace SUBDIR += p5-Sys-Virt SUBDIR += p5-System-Command SUBDIR += p5-System-Info SUBDIR += p5-System-Sub SUBDIR += p5-System2 SUBDIR += p5-TAP-Formatter-JUnit SUBDIR += p5-TAP-Harness-JUnit SUBDIR += p5-TAP-SimpleOutput SUBDIR += p5-Taint-Runtime SUBDIR += p5-Taint-Util SUBDIR += p5-Task-Tiny SUBDIR += p5-Task-Weaken SUBDIR += p5-Tee SUBDIR += p5-Template-Provider-Encode SUBDIR += p5-Term-ANSIColor SUBDIR += p5-Term-ANSIScreen SUBDIR += p5-Term-Animation SUBDIR += p5-Term-App-Roles SUBDIR += p5-Term-App-Util-Color SUBDIR += p5-Term-App-Util-Interactive SUBDIR += p5-Term-App-Util-Size SUBDIR += p5-Term-CallEditor SUBDIR += p5-Term-Choose SUBDIR += p5-Term-Choose-Util SUBDIR += p5-Term-Clui SUBDIR += p5-Term-Detect-Software SUBDIR += p5-Term-EditLine SUBDIR += p5-Term-Encoding SUBDIR += p5-Term-Form SUBDIR += p5-Term-Menus SUBDIR += p5-Term-ProgressBar SUBDIR += p5-Term-ProgressBar-Quiet SUBDIR += p5-Term-ProgressBar-Simple SUBDIR += p5-Term-Prompt SUBDIR += p5-Term-Query SUBDIR += p5-Term-RawInput SUBDIR += p5-Term-ReadKey SUBDIR += p5-Term-ReadLine SUBDIR += p5-Term-ReadLine-Gnu SUBDIR += p5-Term-ReadLine-Perl SUBDIR += p5-Term-ReadLine-TTYtter SUBDIR += p5-Term-ReadLine-Zoid SUBDIR += p5-Term-ReadPassword SUBDIR += p5-Term-Screen SUBDIR += p5-Term-ScreenColor SUBDIR += p5-Term-Shell SUBDIR += p5-Term-Size SUBDIR += p5-Term-Size-Any SUBDIR += p5-Term-Size-Perl SUBDIR += p5-Term-Sk SUBDIR += p5-Term-Table SUBDIR += p5-Term-TablePrint SUBDIR += p5-Term-TermKey SUBDIR += p5-Term-Title SUBDIR += p5-Term-UI SUBDIR += p5-Term-VT102 SUBDIR += p5-Term-VT102-Boundless SUBDIR += p5-Term-Visual SUBDIR += p5-Test-API SUBDIR += p5-Test-Able SUBDIR += p5-Test-Able-Runner SUBDIR += p5-Test-Aggregate SUBDIR += p5-Test-Archive-Libarchive SUBDIR += p5-Test-Assertions SUBDIR += p5-Test-Auto SUBDIR += p5-Test-Base SUBDIR += p5-Test-Benchmark SUBDIR += p5-Test-BinaryData SUBDIR += p5-Test-Bits SUBDIR += p5-Test-CPAN-Meta SUBDIR += p5-Test-CPAN-Meta-YAML SUBDIR += p5-Test-CheckDeps SUBDIR += p5-Test-CheckManifest SUBDIR += p5-Test-Class SUBDIR += p5-Test-Class-Most SUBDIR += p5-Test-ClassAPI SUBDIR += p5-Test-Classy SUBDIR += p5-Test-CleanNamespaces SUBDIR += p5-Test-Cmd SUBDIR += p5-Test-Command SUBDIR += p5-Test-Command-Simple SUBDIR += p5-Test-Compile SUBDIR += p5-Test-DBIC-ExpectedQueries SUBDIR += p5-Test-DBIx-Class SUBDIR += p5-Test-Data SUBDIR += p5-Test-Debugger SUBDIR += p5-Test-Declare SUBDIR += p5-Test-Deep SUBDIR += p5-Test-Deep-UnorderedPairs SUBDIR += p5-Test-Dependencies SUBDIR += p5-Test-DependentModules SUBDIR += p5-Test-DiagINC SUBDIR += p5-Test-Differences SUBDIR += p5-Test-Distribution SUBDIR += p5-Test-EOL SUBDIR += p5-Test-Exception SUBDIR += p5-Test-Exit SUBDIR += p5-Test-Expect SUBDIR += p5-Test-ExpectAndCheck SUBDIR += p5-Test-FailWarnings SUBDIR += p5-Test-Fake-HTTPD SUBDIR += p5-Test-Fatal SUBDIR += p5-Test-File SUBDIR += p5-Test-File-Contents SUBDIR += p5-Test-File-ShareDir SUBDIR += p5-Test-Filename SUBDIR += p5-Test-Fixme SUBDIR += p5-Test-Fixture-DBIC-Schema SUBDIR += p5-Test-Future-IO-Impl SUBDIR += p5-Test-Group SUBDIR += p5-Test-HTML-Tidy SUBDIR += p5-Test-Harness SUBDIR += p5-Test-Harness-Straps SUBDIR += p5-Test-HasVersion SUBDIR += p5-Test-HexDifferences SUBDIR += p5-Test-HexString SUBDIR += p5-Test-Identity SUBDIR += p5-Test-If SUBDIR += p5-Test-InDistDir SUBDIR += p5-Test-Inline SUBDIR += p5-Test-Inter SUBDIR += p5-Test-JSON SUBDIR += p5-Test-Kwalitee SUBDIR += p5-Test-Lazy SUBDIR += p5-Test-LeakTrace SUBDIR += p5-Test-LectroTest SUBDIR += p5-Test-Lib SUBDIR += p5-Test-Lives SUBDIR += p5-Test-LoadAllModules SUBDIR += p5-Test-Log-Log4perl SUBDIR += p5-Test-Log4perl SUBDIR += p5-Test-LongString SUBDIR += p5-Test-Manifest SUBDIR += p5-Test-ManyParams SUBDIR += p5-Test-Memory-Cycle SUBDIR += p5-Test-Metrics-Any SUBDIR += p5-Test-Mini SUBDIR += p5-Test-Mini-Unit SUBDIR += p5-Test-Mock-Guard SUBDIR += p5-Test-Mock-LWP SUBDIR += p5-Test-Mock-LWP-Dispatch SUBDIR += p5-Test-Mock-One SUBDIR += p5-Test-Mock-Redis SUBDIR += p5-Test-MockDateTime SUBDIR += p5-Test-MockModule SUBDIR += p5-Test-MockObject SUBDIR += p5-Test-MockRandom SUBDIR += p5-Test-MockTime SUBDIR += p5-Test-MockTime-HiRes SUBDIR += p5-Test-Modern SUBDIR += p5-Test-Module-Used SUBDIR += p5-Test-Moose-More SUBDIR += p5-Test-More-UTF8 SUBDIR += p5-Test-Most SUBDIR += p5-Test-Name-FromLine SUBDIR += p5-Test-Needs SUBDIR += p5-Test-Net-LDAP SUBDIR += p5-Test-Net-RabbitMQ SUBDIR += p5-Test-NoTabs SUBDIR += p5-Test-NoWarnings SUBDIR += p5-Test-Number-Delta SUBDIR += p5-Test-Object SUBDIR += p5-Test-OpenLDAP SUBDIR += p5-Test-Output SUBDIR += p5-Test-POE-Client-TCP SUBDIR += p5-Test-POE-Server-TCP SUBDIR += p5-Test-Parser SUBDIR += p5-Test-PerlTidy SUBDIR += p5-Test-Pod SUBDIR += p5-Test-Pod-Coverage SUBDIR += p5-Test-Pod-Coverage-Permissive SUBDIR += p5-Test-Portability-Files SUBDIR += p5-Test-Prereq SUBDIR += p5-Test-RandomResults SUBDIR += p5-Test-Refcount SUBDIR += p5-Test-Reporter SUBDIR += p5-Test-Reporter-Transport-Metabase SUBDIR += p5-Test-Requires SUBDIR += p5-Test-Requires-Git SUBDIR += p5-Test-RequiresInternet SUBDIR += p5-Test-Roo SUBDIR += p5-Test-Script SUBDIR += p5-Test-Script-Run SUBDIR += p5-Test-SharedFork SUBDIR += p5-Test-Signature SUBDIR += p5-Test-Simple SUBDIR += p5-Test-Singleton SUBDIR += p5-Test-Snapshot SUBDIR += p5-Test-Spec SUBDIR += p5-Test-Spelling SUBDIR += p5-Test-Strict SUBDIR += p5-Test-SubCalls SUBDIR += p5-Test-Synopsis SUBDIR += p5-Test-Sys-Info SUBDIR += p5-Test-TAP-HTMLMatrix SUBDIR += p5-Test-TAP-Model SUBDIR += p5-Test-TCP SUBDIR += p5-Test-TableDriven SUBDIR += p5-Test-Taint SUBDIR += p5-Test-TempDir-Tiny SUBDIR += p5-Test-Time SUBDIR += p5-Test-Timer SUBDIR += p5-Test-TinyMocker SUBDIR += p5-Test-TrailingSpace SUBDIR += p5-Test-Trap SUBDIR += p5-Test-UNIXSock SUBDIR += p5-Test-Unit SUBDIR += p5-Test-UseAllModules SUBDIR += p5-Test-Version SUBDIR += p5-Test-WWW-Declare SUBDIR += p5-Test-WWW-Mechanize SUBDIR += p5-Test-WWW-Mechanize-CGI SUBDIR += p5-Test-WWW-Mechanize-CGIApp SUBDIR += p5-Test-WWW-Mechanize-Catalyst SUBDIR += p5-Test-WWW-Mechanize-PSGI SUBDIR += p5-Test-WWW-Selenium SUBDIR += p5-Test-Warn SUBDIR += p5-Test-Warnings SUBDIR += p5-Test-Weaken SUBDIR += p5-Test-Without-Module SUBDIR += p5-Test-XML SUBDIR += p5-Test-XML-Valid SUBDIR += p5-Test-YAML SUBDIR += p5-Test-YAML-Meta SUBDIR += p5-Test-YAML-Valid SUBDIR += p5-Test-utf8 SUBDIR += p5-Test2-Harness SUBDIR += p5-Test2-Harness-UI SUBDIR += p5-Test2-Plugin-Cover SUBDIR += p5-Test2-Plugin-DBIProfile SUBDIR += p5-Test2-Plugin-IOEvents SUBDIR += p5-Test2-Plugin-MemUsage SUBDIR += p5-Test2-Plugin-NoWarnings SUBDIR += p5-Test2-Plugin-UUID SUBDIR += p5-Test2-Suite SUBDIR += p5-Test2-Tools-Explain SUBDIR += p5-Test2-Tools-FFI SUBDIR += p5-Test2-Tools-MemoryCycle SUBDIR += p5-Text-Levenshtein SUBDIR += p5-Text-Levenshtein-Damerau SUBDIR += p5-Text-Levenshtein-Damerau-XS SUBDIR += p5-Text-LevenshteinXS SUBDIR += p5-Text-Outdent SUBDIR += p5-Text-vFile-asData SUBDIR += p5-TheSchwartz SUBDIR += p5-TheSchwartz-Simple SUBDIR += p5-TheSchwartz-Worker-SendEmail SUBDIR += p5-Thread-Apartment SUBDIR += p5-Thread-Cancel SUBDIR += p5-Thread-Pool-Simple SUBDIR += p5-Thread-Queue SUBDIR += p5-Thread-Queue-Duplex SUBDIR += p5-Thread-Suspend SUBDIR += p5-Thrift SUBDIR += p5-Thrift-XS SUBDIR += p5-Throwable SUBDIR += p5-Tickit SUBDIR += p5-Tickit-Widget-Table SUBDIR += p5-Tickit-Widgets SUBDIR += p5-Tie-Array-Pack SUBDIR += p5-Tie-Array-Sorted SUBDIR += p5-Tie-CPHash SUBDIR += p5-Tie-Cache SUBDIR += p5-Tie-DB_File-SplitHash SUBDIR += p5-Tie-DB_FileLock SUBDIR += p5-Tie-File SUBDIR += p5-Tie-File-AsHash SUBDIR += p5-Tie-FileLRUCache SUBDIR += p5-Tie-Function SUBDIR += p5-Tie-Hash-Indexed SUBDIR += p5-Tie-Hash-MultiValue SUBDIR += p5-Tie-Hash-Regex SUBDIR += p5-Tie-Hash-Sorted SUBDIR += p5-Tie-Hash-TwoWay SUBDIR += p5-Tie-IxHash SUBDIR += p5-Tie-LLHash SUBDIR += p5-Tie-RefHash SUBDIR += p5-Tie-RefHash-Weak SUBDIR += p5-Tie-RegexpHash SUBDIR += p5-Tie-Restore SUBDIR += p5-Tie-ShareLite SUBDIR += p5-Tie-Simple SUBDIR += p5-Tie-Sub SUBDIR += p5-Tie-ToObject SUBDIR += p5-Tie-Util SUBDIR += p5-Tie-iCal SUBDIR += p5-Time-Clock SUBDIR += p5-Time-Crontab SUBDIR += p5-Time-Duration SUBDIR += p5-Time-Duration-Parse SUBDIR += p5-Time-Elapsed SUBDIR += p5-Time-Format SUBDIR += p5-Time-HiRes SUBDIR += p5-Time-Interval SUBDIR += p5-Time-Local SUBDIR += p5-Time-Mock SUBDIR += p5-Time-Moment SUBDIR += p5-Time-Moment-Role-TimeZone SUBDIR += p5-Time-Object SUBDIR += p5-Time-Out SUBDIR += p5-Time-ParseDate SUBDIR += p5-Time-Period SUBDIR += p5-Time-Piece SUBDIR += p5-Time-Piece-Range SUBDIR += p5-Time-Progress SUBDIR += p5-Time-Stopwatch SUBDIR += p5-Time-Warp SUBDIR += p5-Time-modules SUBDIR += p5-Time-timegm SUBDIR += p5-TimeDate SUBDIR += p5-ToolSet SUBDIR += p5-TraceFuncs SUBDIR += p5-Tree-Binary SUBDIR += p5-Tree-Binary-Dictionary SUBDIR += p5-Tree-DAG_Node SUBDIR += p5-Tree-Node SUBDIR += p5-Tree-Parser SUBDIR += p5-Tree-R SUBDIR += p5-Tree-RedBlack SUBDIR += p5-Tree-Simple SUBDIR += p5-Tree-Simple-View SUBDIR += p5-Tree-Simple-VisitorFactory SUBDIR += p5-Tree-Trie SUBDIR += p5-Type-Tiny SUBDIR += p5-Type-Tiny-Signatures SUBDIR += p5-Type-Tiny-XS SUBDIR += p5-Types-Core SUBDIR += p5-Types-Path-Tiny SUBDIR += p5-Types-Self SUBDIR += p5-Types-Serialiser SUBDIR += p5-Types-URI SUBDIR += p5-Types-UUID SUBDIR += p5-UDCode SUBDIR += p5-UI-Dialog SUBDIR += p5-UNIVERSAL-can SUBDIR += p5-UNIVERSAL-isa SUBDIR += p5-UNIVERSAL-moniker SUBDIR += p5-UNIVERSAL-ref SUBDIR += p5-UNIVERSAL-require SUBDIR += p5-UNIVERSAL-which SUBDIR += p5-UUID SUBDIR += p5-UUID-Random SUBDIR += p5-UUID-Random-Patch-UseMRS SUBDIR += p5-UUID-Tiny SUBDIR += p5-UUID-URandom SUBDIR += p5-Uniq SUBDIR += p5-Unix-Groups SUBDIR += p5-Unix-Groups-FFI SUBDIR += p5-Unix-Statgrab SUBDIR += p5-Unix-Uptime SUBDIR += p5-User-Identity SUBDIR += p5-Util-Any SUBDIR += p5-VCP-Dest-svk SUBDIR += p5-VCP-Source-cvsbk SUBDIR += p5-VCP-autrijus SUBDIR += p5-VCS SUBDIR += p5-VCS-CVS SUBDIR += p5-VCS-Lite SUBDIR += p5-Validation-Class SUBDIR += p5-Variable-Disposition SUBDIR += p5-Variable-Eject SUBDIR += p5-Variable-Magic SUBDIR += p5-Venus SUBDIR += p5-Want SUBDIR += p5-WeakRef SUBDIR += p5-Workflow SUBDIR += p5-X-Tiny SUBDIR += p5-XML-Compile-Tester SUBDIR += p5-XML-Pastor SUBDIR += p5-XS-Object-Magic SUBDIR += p5-XS-Parse-Keyword SUBDIR += p5-XS-Parse-Sublike SUBDIR += p5-XSLoader SUBDIR += p5-XXX SUBDIR += p5-Xporter SUBDIR += p5-YAML-AppConfig SUBDIR += p5-Yada-Yada-Yada SUBDIR += p5-ZML SUBDIR += p5-accessors SUBDIR += p5-accessors-fast SUBDIR += p5-alias-module SUBDIR += p5-aliased SUBDIR += p5-asa SUBDIR += p5-autobox SUBDIR += p5-autobox-Core SUBDIR += p5-autobox-Transform SUBDIR += p5-autodie SUBDIR += p5-autovivification SUBDIR += p5-bareword-filehandles SUBDIR += p5-boolean SUBDIR += p5-capitalization SUBDIR += p5-carton SUBDIR += p5-common-sense SUBDIR += p5-constant SUBDIR += p5-constant-boolean SUBDIR += p5-constant-def SUBDIR += p5-constant-defer SUBDIR += p5-constant-lexical SUBDIR += p5-cpan-listchanges SUBDIR += p5-curry SUBDIR += p5-enum SUBDIR += p5-ex-lib SUBDIR += p5-experimental SUBDIR += p5-forks SUBDIR += p5-github_creator SUBDIR += p5-goto-file SUBDIR += p5-iCal-Parser SUBDIR += p5-indirect SUBDIR += p5-interface SUBDIR += p5-latest SUBDIR += p5-lexical-underscore SUBDIR += p5-lib-abs SUBDIR += p5-libalarm SUBDIR += p5-libxml-enno SUBDIR += p5-local-lib SUBDIR += p5-match-simple SUBDIR += p5-match-simple-XS SUBDIR += p5-mem SUBDIR += p5-meta SUBDIR += p5-mixin SUBDIR += p5-mocked SUBDIR += p5-multidimensional SUBDIR += p5-namespace-autoclean SUBDIR += p5-namespace-clean SUBDIR += p5-namespace-clean-xs SUBDIR += p5-namespace-sweep SUBDIR += p5-orz SUBDIR += p5-parent SUBDIR += p5-pip SUBDIR += p5-prefork SUBDIR += p5-relative SUBDIR += p5-routines SUBDIR += p5-self SUBDIR += p5-self-init SUBDIR += p5-strictures SUBDIR += p5-subatom SUBDIR += p5-subversion SUBDIR += p5-superclass SUBDIR += p5-syntax SUBDIR += p5-threads SUBDIR += p5-threads-shared SUBDIR += p5-true SUBDIR += p5-uni-perl SUBDIR += p5-version SUBDIR += p8-platform SUBDIR += packr SUBDIR += paexec SUBDIR += pam_wrapper SUBDIR += papi SUBDIR += papilio-loader SUBDIR += paq-nvim SUBDIR += parallel-hashmap SUBDIR += parol SUBDIR += parol-ls SUBDIR += pas2dox SUBDIR += pasm SUBDIR += patch SUBDIR += patsh SUBDIR += pcc-libs SUBDIR += pcg-cpp SUBDIR += pcl SUBDIR += pcre SUBDIR += pcre2 SUBDIR += pcsc-cyberjack SUBDIR += pcsc-lite SUBDIR += pdcurses SUBDIR += pear SUBDIR += pear-Config SUBDIR += pear-Console_Color SUBDIR += pear-Console_CommandLine SUBDIR += pear-Console_Getargs SUBDIR += pear-Console_Table SUBDIR += pear-Date SUBDIR += pear-Date_Holidays SUBDIR += pear-Date_Holidays_Austria SUBDIR += pear-Date_Holidays_Brazil SUBDIR += pear-Date_Holidays_Denmark SUBDIR += pear-Date_Holidays_Discordian SUBDIR += pear-Date_Holidays_EnglandWales SUBDIR += pear-Date_Holidays_Germany SUBDIR += pear-Date_Holidays_Iceland SUBDIR += pear-Date_Holidays_Ireland SUBDIR += pear-Date_Holidays_Italy SUBDIR += pear-Date_Holidays_Japan SUBDIR += pear-Date_Holidays_Netherlands SUBDIR += pear-Date_Holidays_Norway SUBDIR += pear-Date_Holidays_PHPdotNet SUBDIR += pear-Date_Holidays_Romania SUBDIR += pear-Date_Holidays_Slovenia SUBDIR += pear-Date_Holidays_Sweden SUBDIR += pear-Date_Holidays_UNO SUBDIR += pear-Date_Holidays_USA SUBDIR += pear-Date_Holidays_Ukraine SUBDIR += pear-Event_Dispatcher SUBDIR += pear-FSM SUBDIR += pear-File_Iterator SUBDIR += pear-HTML_BBCodeParser SUBDIR += pear-HTML_CSS SUBDIR += pear-HTML_Common SUBDIR += pear-HTML_Common2 SUBDIR += pear-HTML_Form SUBDIR += pear-HTML_Javascript SUBDIR += pear-HTML_Page2 SUBDIR += pear-HTML_QuickForm SUBDIR += pear-HTML_QuickForm2 SUBDIR += pear-HTML_QuickForm_Controller SUBDIR += pear-HTML_QuickForm_Livesearch SUBDIR += pear-HTML_QuickForm_Renderer_Tableless SUBDIR += pear-HTML_QuickForm_SelectFilter SUBDIR += pear-HTML_QuickForm_advmultiselect SUBDIR += pear-HTML_Select SUBDIR += pear-HTML_Select_Common SUBDIR += pear-HTML_Table SUBDIR += pear-HTML_Template_Flexy SUBDIR += pear-HTML_Template_IT SUBDIR += pear-HTML_Template_PHPLIB SUBDIR += pear-HTML_Template_Sigma SUBDIR += pear-HTML_TreeMenu SUBDIR += pear-Horde_Alarm SUBDIR += pear-Horde_Argv SUBDIR += pear-Horde_Autoloader SUBDIR += pear-Horde_Autoloader_Cache SUBDIR += pear-Horde_Cache SUBDIR += pear-Horde_Cli SUBDIR += pear-Horde_Constraint SUBDIR += pear-Horde_Controller SUBDIR += pear-Horde_Core SUBDIR += pear-Horde_Data SUBDIR += pear-Horde_Date SUBDIR += pear-Horde_Date_Parser SUBDIR += pear-Horde_Exception SUBDIR += pear-Horde_History SUBDIR += pear-Horde_Icalendar SUBDIR += pear-Horde_Injector SUBDIR += pear-Horde_Itip SUBDIR += pear-Horde_Lock SUBDIR += pear-Horde_LoginTasks SUBDIR += pear-Horde_Nls SUBDIR += pear-Horde_Notification SUBDIR += pear-Horde_Prefs SUBDIR += pear-Horde_Queue SUBDIR += pear-Horde_Rdo SUBDIR += pear-Horde_Role SUBDIR += pear-Horde_Scheduler SUBDIR += pear-Horde_Serialize SUBDIR += pear-Horde_Stream SUBDIR += pear-Horde_Stream_Filter SUBDIR += pear-Horde_Stream_Wrapper SUBDIR += pear-Horde_Support SUBDIR += pear-Horde_Thrift SUBDIR += pear-Horde_Timezone SUBDIR += pear-Horde_Token SUBDIR += pear-Horde_Translation SUBDIR += pear-Horde_Tree SUBDIR += pear-Horde_Util SUBDIR += pear-Horde_View SUBDIR += pear-I18N SUBDIR += pear-Math_Fraction SUBDIR += pear-Net_Gearman SUBDIR += pear-OLE SUBDIR += pear-PEAR_Info SUBDIR += pear-PEAR_PackageFileManager SUBDIR += pear-PEAR_PackageFileManager2 SUBDIR += pear-PEAR_PackageFileManager_Plugins SUBDIR += pear-PHPTAL SUBDIR += pear-PHPUnit_MockObject SUBDIR += pear-PHP_ArrayOf SUBDIR += pear-PHP_Beautifier SUBDIR += pear-PHP_CodeCoverage SUBDIR += pear-PHP_CodeSniffer SUBDIR += pear-PHP_Compat SUBDIR += pear-PHP_CompatInfo SUBDIR += pear-PHP_Parser SUBDIR += pear-PHP_ParserGenerator SUBDIR += pear-PHP_Timer SUBDIR += pear-PHP_TokenStream SUBDIR += pear-PHP_UML SUBDIR += pear-Pager SUBDIR += pear-PhpDocumentor SUBDIR += pear-Pirum SUBDIR += pear-SebastianBergmann_FinderFacade SUBDIR += pear-SebastianBergmann_Git SUBDIR += pear-SebastianBergmann_PHPCPD SUBDIR += pear-SebastianBergmann_PHPLOC SUBDIR += pear-SebastianBergmann_Version SUBDIR += pear-Structure_LinkedList SUBDIR += pear-Structures_DataGrid SUBDIR += pear-Structures_DataGrid_Renderer_Console SUBDIR += pear-Structures_DataGrid_Renderer_HTMLSortForm SUBDIR += pear-Structures_DataGrid_Renderer_HTMLTable SUBDIR += pear-Structures_DataGrid_Renderer_XUL SUBDIR += pear-Symfony_Component_Console SUBDIR += pear-Symfony_Component_Finder SUBDIR += pear-System_Command SUBDIR += pear-Testing_Selenium SUBDIR += pear-Text_Diff SUBDIR += pear-TheSeer_DirectoryScanner SUBDIR += pear-TheSeer_fDOMDocument SUBDIR += pear-TheSeer_fXSL SUBDIR += pear-VFS SUBDIR += pear-Validate SUBDIR += pear-Validate_AU SUBDIR += pear-Validate_Finance SUBDIR += pear-Validate_Finance_CreditCard SUBDIR += pear-Validate_US SUBDIR += pear-Var_Dump SUBDIR += pear-VersionControl_Git SUBDIR += pear-VersionControl_SVN SUBDIR += pear-XML_NITF SUBDIR += pear-XML_Parser SUBDIR += pear-XML_RSS SUBDIR += pear-XML_SVG SUBDIR += pear-XML_Serializer SUBDIR += pear-XML_Transformer SUBDIR += pear-XML_Tree SUBDIR += pear-XML_Util SUBDIR += pear-channel-doctrine SUBDIR += pear-channel-ezc SUBDIR += pear-channel-geshi SUBDIR += pear-channel-horde SUBDIR += pear-channel-openpear SUBDIR += pear-channel-pdepend SUBDIR += pear-channel-phing SUBDIR += pear-channel-phpdoc SUBDIR += pear-channel-phpmd SUBDIR += pear-channel-pirum SUBDIR += pear-channel-symfony SUBDIR += pear-channel-symfony2 SUBDIR += pear-channel-theseer SUBDIR += pear-channel-twig SUBDIR += pear-codegen SUBDIR += pear-ezc_Base SUBDIR += pear-ezc_ConsoleTools SUBDIR += pear-geshi SUBDIR += pear-pdepend-staticReflection SUBDIR += pear-phing SUBDIR += pecl-APCu SUBDIR += pecl-ast SUBDIR += pecl-dio SUBDIR += pecl-ds SUBDIR += pecl-eio SUBDIR += pecl-ev SUBDIR += pecl-event SUBDIR += pecl-excimer SUBDIR += pecl-expect SUBDIR += pecl-grpc SUBDIR += pecl-inotify SUBDIR += pecl-json_post SUBDIR += pecl-msgpack SUBDIR += pecl-mustache SUBDIR += pecl-protobuf SUBDIR += pecl-psr SUBDIR += pecl-raphf2 SUBDIR += pecl-runkit7 SUBDIR += pecl-swoole SUBDIR += pecl-sync SUBDIR += pecl-uploadprogress SUBDIR += pecl-uuid SUBDIR += pecl-uv SUBDIR += pecl-vld SUBDIR += pecl-xdebug SUBDIR += pecl-yac SUBDIR += pecl-yaconf SUBDIR += pecl-zookeeper SUBDIR += pegtl SUBDIR += pep8 SUBDIR += performance SUBDIR += perlconsole SUBDIR += phabricator SUBDIR += phasar SUBDIR += php-Psr_Log SUBDIR += php-composer SUBDIR += php-geshi SUBDIR += php-ice37 SUBDIR += php-libawl SUBDIR += php-maxminddb SUBDIR += php81-ffi SUBDIR += php81-gettext SUBDIR += php81-intl SUBDIR += php81-pcntl SUBDIR += php81-readline SUBDIR += php81-shmop SUBDIR += php81-sysvmsg SUBDIR += php81-sysvsem SUBDIR += php81-sysvshm SUBDIR += php81-tokenizer SUBDIR += php82-ffi SUBDIR += php82-gettext SUBDIR += php82-intl SUBDIR += php82-pcntl SUBDIR += php82-readline SUBDIR += php82-shmop SUBDIR += php82-sysvmsg SUBDIR += php82-sysvsem SUBDIR += php82-sysvshm SUBDIR += php82-tokenizer SUBDIR += php83-ffi SUBDIR += php83-gettext SUBDIR += php83-intl SUBDIR += php83-pcntl SUBDIR += php83-readline SUBDIR += php83-shmop SUBDIR += php83-sysvmsg SUBDIR += php83-sysvsem SUBDIR += php83-sysvshm SUBDIR += php83-tokenizer SUBDIR += phpunit10 SUBDIR += phpunit11 SUBDIR += phpunit8 SUBDIR += phpunit9 SUBDIR += physfs SUBDIR += pickle SUBDIR += picojson SUBDIR += picprog SUBDIR += pijul SUBDIR += pika SUBDIR += pipestatus SUBDIR += pire SUBDIR += pit SUBDIR += pkg-info.el SUBDIR += pkgconf SUBDIR += plan9port SUBDIR += plasma SUBDIR += plasma5-khotkeys SUBDIR += plasma5-kwrited SUBDIR += plasma5-plasma-sdk SUBDIR += plasma6-kwrited SUBDIR += plasma6-plasma-sdk SUBDIR += plasma6-plasma5support SUBDIR += please SUBDIR += pmccabe SUBDIR += pmd SUBDIR += poco SUBDIR += popt SUBDIR += poser SUBDIR += poxml SUBDIR += ppl SUBDIR += pprof SUBDIR += premake SUBDIR += premake4 SUBDIR += premake5 SUBDIR += projectcenter SUBDIR += protobuf SUBDIR += protobuf-c SUBDIR += protobuf-java SUBDIR += protobuf25 SUBDIR += protobuf3 SUBDIR += prototool SUBDIR += protozero SUBDIR += pructl SUBDIR += psimd SUBDIR += pstreams SUBDIR += psvn SUBDIR += pth SUBDIR += pth-hard SUBDIR += pthreadpool SUBDIR += pthsem SUBDIR += ptl SUBDIR += ptlib SUBDIR += publib SUBDIR += purescript-language-server SUBDIR += pushmi SUBDIR += py-Automat SUBDIR += py-BTrees SUBDIR += py-DateTime SUBDIR += py-Dumper SUBDIR += py-ExtensionClass SUBDIR += py-Faker SUBDIR += py-IBMQuantumExperience SUBDIR += py-Jinja2 SUBDIR += py-Jinja2-doc SUBDIR += py-Js2Py SUBDIR += py-Levenshtein SUBDIR += py-PYB11Generator SUBDIR += py-PeachPy SUBDIR += py-Products.ExternalEditor SUBDIR += py-Products.PloneLanguageTool SUBDIR += py-PyExecJS SUBDIR += py-PyGithub SUBDIR += py-PyLD SUBDIR += py-PyUtilib SUBDIR += py-QtPy SUBDIR += py-RPyC SUBDIR += py-ZopeUndo SUBDIR += py-about-time SUBDIR += py-absl SUBDIR += py-absl-py SUBDIR += py-acstore SUBDIR += py-adb SUBDIR += py-addict SUBDIR += py-aenum SUBDIR += py-aioapns SUBDIR += py-aiobotocore SUBDIR += py-aiocontextvars SUBDIR += py-aiofiles SUBDIR += py-aiohttp-apispec SUBDIR += py-aioice SUBDIR += py-aioitertools SUBDIR += py-aiologger SUBDIR += py-aiorpcX SUBDIR += py-aiortc SUBDIR += py-aiorwlock SUBDIR += py-aiosignal SUBDIR += py-airtable-python-wrapper SUBDIR += py-all-repos SUBDIR += py-amalgamate SUBDIR += py-aniso8601 SUBDIR += py-aniso86016 SUBDIR += py-anndata SUBDIR += py-annotated-types SUBDIR += py-ansi SUBDIR += py-antlr4-python3-runtime SUBDIR += py-anyconfig SUBDIR += py-anyio SUBDIR += py-anyio3 SUBDIR += py-anyjson SUBDIR += py-anytree SUBDIR += py-apache_conf_parser SUBDIR += py-apipkg SUBDIR += py-apispec SUBDIR += py-apispec-webframeworks SUBDIR += py-appdirs SUBDIR += py-applicationinsights SUBDIR += py-apptools SUBDIR += py-apscheduler SUBDIR += py-archinfo SUBDIR += py-archspec SUBDIR += py-argcomplete SUBDIR += py-argh SUBDIR += py-argparse SUBDIR += py-args SUBDIR += py-ariadne SUBDIR += py-arpeggio SUBDIR += py-array-api-compat SUBDIR += py-arrow SUBDIR += py-asciimatics SUBDIR += py-asgi-lifespan SUBDIR += py-asn1 SUBDIR += py-asn1crypto SUBDIR += py-aspectlib SUBDIR += py-aspy.yaml SUBDIR += py-assertpy SUBDIR += py-ast-decompiler SUBDIR += py-asteval SUBDIR += py-astor SUBDIR += py-astroid SUBDIR += py-astroid2 SUBDIR += py-asttokens SUBDIR += py-astunparse SUBDIR += py-async-lru SUBDIR += py-async_generator SUBDIR += py-async_timeout SUBDIR += py-asynctest SUBDIR += py-atomiclong SUBDIR += py-atomicwrites SUBDIR += py-atpublic SUBDIR += py-attrdict SUBDIR += py-attrs SUBDIR += py-attrs-strict SUBDIR += py-autocommand SUBDIR += py-autoflake SUBDIR += py-automaton SUBDIR += py-autopage SUBDIR += py-autoprop SUBDIR += py-avro SUBDIR += py-awesomeversion SUBDIR += py-aws-lambda-builders SUBDIR += py-aws-requests-auth SUBDIR += py-aws-sam-translator SUBDIR += py-aws-xray-sdk SUBDIR += py-awscli SUBDIR += py-awscrt SUBDIR += py-azure-appconfiguration SUBDIR += py-azure-batch SUBDIR += py-azure-core SUBDIR += py-azure-cosmos SUBDIR += py-azure-data-tables SUBDIR += py-azure-datalake-store SUBDIR += py-azure-functions-devops-build SUBDIR += py-azure-graphrbac SUBDIR += py-azure-identity SUBDIR += py-azure-keyvault SUBDIR += py-azure-keyvault-administration SUBDIR += py-azure-loganalytics SUBDIR += py-azure-mgmt-advisor SUBDIR += py-azure-mgmt-apimanagement SUBDIR += py-azure-mgmt-appconfiguration SUBDIR += py-azure-mgmt-appcontainers SUBDIR += py-azure-mgmt-applicationinsights SUBDIR += py-azure-mgmt-authorization SUBDIR += py-azure-mgmt-batch SUBDIR += py-azure-mgmt-batchai SUBDIR += py-azure-mgmt-billing SUBDIR += py-azure-mgmt-botservice SUBDIR += py-azure-mgmt-cdn SUBDIR += py-azure-mgmt-cognitiveservices SUBDIR += py-azure-mgmt-compute SUBDIR += py-azure-mgmt-consumption SUBDIR += py-azure-mgmt-containerinstance SUBDIR += py-azure-mgmt-containerregistry SUBDIR += py-azure-mgmt-containerservice SUBDIR += py-azure-mgmt-core SUBDIR += py-azure-mgmt-cosmosdb SUBDIR += py-azure-mgmt-databoxedge SUBDIR += py-azure-mgmt-datalake-analytics SUBDIR += py-azure-mgmt-datalake-store SUBDIR += py-azure-mgmt-datamigration SUBDIR += py-azure-mgmt-deploymentmanager SUBDIR += py-azure-mgmt-devtestlabs SUBDIR += py-azure-mgmt-dns SUBDIR += py-azure-mgmt-eventgrid SUBDIR += py-azure-mgmt-eventhub SUBDIR += py-azure-mgmt-extendedlocation SUBDIR += py-azure-mgmt-hdinsight SUBDIR += py-azure-mgmt-imagebuilder SUBDIR += py-azure-mgmt-iotcentral SUBDIR += py-azure-mgmt-iothub SUBDIR += py-azure-mgmt-iothubprovisioningservices SUBDIR += py-azure-mgmt-keyvault SUBDIR += py-azure-mgmt-kusto SUBDIR += py-azure-mgmt-loganalytics SUBDIR += py-azure-mgmt-managedservices SUBDIR += py-azure-mgmt-managementgroups SUBDIR += py-azure-mgmt-maps SUBDIR += py-azure-mgmt-marketplaceordering SUBDIR += py-azure-mgmt-media SUBDIR += py-azure-mgmt-monitor SUBDIR += py-azure-mgmt-msi SUBDIR += py-azure-mgmt-netapp SUBDIR += py-azure-mgmt-network SUBDIR += py-azure-mgmt-policyinsights SUBDIR += py-azure-mgmt-privatedns SUBDIR += py-azure-mgmt-rdbms SUBDIR += py-azure-mgmt-recoveryservices SUBDIR += py-azure-mgmt-recoveryservicesbackup SUBDIR += py-azure-mgmt-redhatopenshift SUBDIR += py-azure-mgmt-redis SUBDIR += py-azure-mgmt-relay SUBDIR += py-azure-mgmt-reservations SUBDIR += py-azure-mgmt-resource SUBDIR += py-azure-mgmt-search SUBDIR += py-azure-mgmt-security SUBDIR += py-azure-mgmt-servicebus SUBDIR += py-azure-mgmt-servicefabric SUBDIR += py-azure-mgmt-servicefabricmanagedclusters SUBDIR += py-azure-mgmt-servicelinker SUBDIR += py-azure-mgmt-signalr SUBDIR += py-azure-mgmt-sql SUBDIR += py-azure-mgmt-sqlvirtualmachine SUBDIR += py-azure-mgmt-storage SUBDIR += py-azure-mgmt-synapse SUBDIR += py-azure-mgmt-trafficmanager SUBDIR += py-azure-mgmt-web SUBDIR += py-azure-multiapi-storage SUBDIR += py-azure-storage-blob SUBDIR += py-azure-storage-common SUBDIR += py-azure-synapse-accesscontrol SUBDIR += py-azure-synapse-artifacts SUBDIR += py-azure-synapse-managedprivateendpoints SUBDIR += py-azure-synapse-spark SUBDIR += py-b2sdk SUBDIR += py-babel SUBDIR += py-babelfish SUBDIR += py-babi_grammars SUBDIR += py-backcall SUBDIR += py-backoff SUBDIR += py-backports SUBDIR += py-backports.cached-property SUBDIR += py-backports.csv SUBDIR += py-backports.entry-points-selectable SUBDIR += py-backports.zoneinfo SUBDIR += py-banal SUBDIR += py-bandit SUBDIR += py-bcdoc SUBDIR += py-beartype SUBDIR += py-beautifultable SUBDIR += py-behave SUBDIR += py-beniget SUBDIR += py-bidict SUBDIR += py-billiard SUBDIR += py-binaryornot SUBDIR += py-biplist SUBDIR += py-bitarray SUBDIR += py-bitstring SUBDIR += py-black SUBDIR += py-blessed SUBDIR += py-blessings SUBDIR += py-blinker SUBDIR += py-blist SUBDIR += py-bluelet SUBDIR += py-boltons SUBDIR += py-boolean.py SUBDIR += py-boto SUBDIR += py-botocore SUBDIR += py-bps-restpy SUBDIR += py-breathe SUBDIR += py-bsd SUBDIR += py-btest SUBDIR += py-build SUBDIR += py-buildbot SUBDIR += py-buildbot-console-view SUBDIR += py-buildbot-grid-view SUBDIR += py-buildbot-pkg SUBDIR += py-buildbot-react-console-view SUBDIR += py-buildbot-waterfall-view SUBDIR += py-buildbot-worker SUBDIR += py-buildbot-www SUBDIR += py-bullet3 SUBDIR += py-bump2version SUBDIR += py-bytecode SUBDIR += py-cabby SUBDIR += py-cached-property SUBDIR += py-cachetools SUBDIR += py-cacheyou SUBDIR += py-cachy SUBDIR += py-cadquery-pywrap SUBDIR += py-calver SUBDIR += py-canonicaljson SUBDIR += py-capstone SUBDIR += py-capturer SUBDIR += py-case SUBDIR += py-castellan SUBDIR += py-catalogue SUBDIR += py-cattrs SUBDIR += py-cbor SUBDIR += py-cbor2 SUBDIR += py-cclib SUBDIR += py-cdg SUBDIR += py-celery SUBDIR += py-celery-progress SUBDIR += py-celery-singleton SUBDIR += py-cerberus SUBDIR += py-certsrv SUBDIR += py-cffi SUBDIR += py-cfgv SUBDIR += py-cfn-lint SUBDIR += py-cftime SUBDIR += py-chai SUBDIR += py-chainmap SUBDIR += py-characteristic SUBDIR += py-check-jsonschema SUBDIR += py-check-manifest SUBDIR += py-check-sdist SUBDIR += py-cheetah3 SUBDIR += py-circuitbreaker SUBDIR += py-circuits SUBDIR += py-ciso8601 SUBDIR += py-ckanapi SUBDIR += py-clang SUBDIR += py-cld SUBDIR += py-cle SUBDIR += py-cleo SUBDIR += py-cli-helpers SUBDIR += py-cliapp SUBDIR += py-click SUBDIR += py-click-completion SUBDIR += py-click-creds SUBDIR += py-click-default-group SUBDIR += py-click-default-group-wheel SUBDIR += py-click-didyoumean SUBDIR += py-click-help-colors SUBDIR += py-click-log SUBDIR += py-click-option-group SUBDIR += py-click-plugins SUBDIR += py-click-repl SUBDIR += py-click-threading SUBDIR += py-click7 SUBDIR += py-cliff SUBDIR += py-cligj SUBDIR += py-clikit SUBDIR += py-clint SUBDIR += py-clldutils SUBDIR += py-cloudpathlib SUBDIR += py-cloudpickle SUBDIR += py-cluster SUBDIR += py-cmd2 SUBDIR += py-cmdtest SUBDIR += py-codecov SUBDIR += py-codegen SUBDIR += py-cog SUBDIR += py-collective.monkeypatcher SUBDIR += py-colorama SUBDIR += py-colored-traceback SUBDIR += py-coloredlogs SUBDIR += py-colorful SUBDIR += py-colorlog SUBDIR += py-colorspacious SUBDIR += py-columnize SUBDIR += py-comm SUBDIR += py-commandlines SUBDIR += py-conditional SUBDIR += py-confection SUBDIR += py-configargparse SUBDIR += py-configobj SUBDIR += py-configparser SUBDIR += py-configupdater SUBDIR += py-confusable_homoglyphs SUBDIR += py-confuse SUBDIR += py-connection_pool SUBDIR += py-cons SUBDIR += py-constantly SUBDIR += py-construct SUBDIR += py-construct-classes SUBDIR += py-contextlib-chdir SUBDIR += py-contextlib2 SUBDIR += py-convertdate SUBDIR += py-cookiecutter SUBDIR += py-copier SUBDIR += py-coreapi SUBDIR += py-coreschema SUBDIR += py-country SUBDIR += py-cov-core SUBDIR += py-covdefaults SUBDIR += py-coverage SUBDIR += py-coverage_enable_subprocess SUBDIR += py-coveralls SUBDIR += py-cppheaderparser SUBDIR += py-cppy SUBDIR += py-crank SUBDIR += py-crashtest SUBDIR += py-crc32c SUBDIR += py-crcmod SUBDIR += py-crontab SUBDIR += py-cson SUBDIR += py-csv23 SUBDIR += py-ctags SUBDIR += py-ctypesgen SUBDIR += py-curio SUBDIR += py-cursive SUBDIR += py-curtsies SUBDIR += py-custodian SUBDIR += py-cvss SUBDIR += py-cwcwidth SUBDIR += py-cxx SUBDIR += py-cycler SUBDIR += py-cykhash SUBDIR += py-cymbal SUBDIR += py-cymem SUBDIR += py-cysignals SUBDIR += py-cython-test-exception-raiser SUBDIR += py-cytoolz SUBDIR += py-d2to1 SUBDIR += py-daemon SUBDIR += py-daemon-runner SUBDIR += py-daemonize SUBDIR += py-daemons SUBDIR += py-dal SUBDIR += py-darts.util.lru SUBDIR += py-dask SUBDIR += py-dask-histogram SUBDIR += py-dataclass-array SUBDIR += py-dataclasses-json SUBDIR += py-datadog SUBDIR += py-datapackage SUBDIR += py-datasette SUBDIR += py-datatest SUBDIR += py-dateparser SUBDIR += py-dateutil SUBDIR += py-dateutils SUBDIR += py-datrie SUBDIR += py-dbt-extractor SUBDIR += py-dbus SUBDIR += py-ddsketch SUBDIR += py-ddt SUBDIR += py-ddtrace SUBDIR += py-debtcollector SUBDIR += py-debugpy SUBDIR += py-debugtools SUBDIR += py-decopatch SUBDIR += py-decorator SUBDIR += py-decoratortools SUBDIR += py-deepdiff SUBDIR += py-deepmerge SUBDIR += py-defusedxml SUBDIR += py-demjson SUBDIR += py-dep-logic SUBDIR += py-deprecat SUBDIR += py-deprecated SUBDIR += py-deprecation SUBDIR += py-deptry SUBDIR += py-devtools SUBDIR += py-dexml2 SUBDIR += py-diazo SUBDIR += py-diff-cover SUBDIR += py-dill SUBDIR += py-dirspec SUBDIR += py-dirty-equals SUBDIR += py-diskcache SUBDIR += py-distlib SUBDIR += py-distributed SUBDIR += py-dj42-django-rq SUBDIR += py-dj42-graphene-django SUBDIR += py-django-rq SUBDIR += py-docformatter SUBDIR += py-dockerpty SUBDIR += py-docopt SUBDIR += py-doctest-ignore-unicode SUBDIR += py-dodgy SUBDIR += py-dogpile.cache SUBDIR += py-doit SUBDIR += py-donut-shellcode SUBDIR += py-dotted SUBDIR += py-dotty-dict SUBDIR += py-dpcontracts SUBDIR += py-dtfabric SUBDIR += py-dulwich SUBDIR += py-dunamai SUBDIR += py-durus SUBDIR += py-dynrules SUBDIR += py-easydict SUBDIR += py-easyprocess SUBDIR += py-editables SUBDIR += py-editdistance SUBDIR += py-eggtestinfo SUBDIR += py-ejson SUBDIR += py-enlighten SUBDIR += py-entrypoint2 SUBDIR += py-entrypoints SUBDIR += py-enum-compat SUBDIR += py-envier SUBDIR += py-envisage SUBDIR += py-envs SUBDIR += py-epc SUBDIR += py-epdb SUBDIR += py-epsilon SUBDIR += py-etils SUBDIR += py-etuples SUBDIR += py-evdev SUBDIR += py-eventlib SUBDIR += py-ewah-bool-utils SUBDIR += py-ewmh SUBDIR += py-exam SUBDIR += py-exceptiongroup SUBDIR += py-executing SUBDIR += py-expandvars SUBDIR += py-expecttest SUBDIR += py-expiringdict SUBDIR += py-extras SUBDIR += py-extremes SUBDIR += py-fabric SUBDIR += py-fabric3 SUBDIR += py-face SUBDIR += py-factory-boy SUBDIR += py-fam SUBDIR += py-fastbencode SUBDIR += py-fastcache SUBDIR += py-fasteners SUBDIR += py-fastentrypoints SUBDIR += py-fastf1 SUBDIR += py-fastimport SUBDIR += py-fastjsonschema SUBDIR += py-fastnumbers SUBDIR += py-fastprogress SUBDIR += py-fbprophet SUBDIR += py-fields SUBDIR += py-filebytes SUBDIR += py-filedepot SUBDIR += py-filemagic SUBDIR += py-filetype SUBDIR += py-find-libpython SUBDIR += py-findlibs SUBDIR += py-findpython SUBDIR += py-fire SUBDIR += py-fireREST SUBDIR += py-first SUBDIR += py-fixtures SUBDIR += py-flake8 SUBDIR += py-flake8-black SUBDIR += py-flake8-bugbear SUBDIR += py-flake8-builtins SUBDIR += py-flake8-comprehensions SUBDIR += py-flake8-docstrings SUBDIR += py-flake8-future-annotations SUBDIR += py-flake8-import-order SUBDIR += py-flake8-polyfill SUBDIR += py-flake8-print SUBDIR += py-flake8-pyi SUBDIR += py-flake8-quotes SUBDIR += py-flake8_simplify SUBDIR += py-flaky SUBDIR += py-flask-babel SUBDIR += py-flatbuffers SUBDIR += py-flatdict SUBDIR += py-flatten-dict SUBDIR += py-flex SUBDIR += py-flexmock SUBDIR += py-flit SUBDIR += py-flit-core SUBDIR += py-flit-scm SUBDIR += py-fluent SUBDIR += py-fluent-logger SUBDIR += py-flufl.i18n SUBDIR += py-flufl.lock SUBDIR += py-flynt SUBDIR += py-foolscap SUBDIR += py-freebsd SUBDIR += py-freebsd-sysctl SUBDIR += py-freenas.utils SUBDIR += py-freezegun SUBDIR += py-frictionless SUBDIR += py-frictionless-ckan-mapper SUBDIR += py-frozendict SUBDIR += py-frozenlist SUBDIR += py-fs SUBDIR += py-fs2 SUBDIR += py-fsspec SUBDIR += py-fudge SUBDIR += py-funcparserlib SUBDIR += py-funcsigs SUBDIR += py-funcy SUBDIR += py-furl SUBDIR += py-fusepy SUBDIR += py-future SUBDIR += py-futurist SUBDIR += py-fuzzywuzzy SUBDIR += py-fypp SUBDIR += py-game SUBDIR += py-game_sdl2 SUBDIR += py-gapic-generator SUBDIR += py-gast SUBDIR += py-gcsfs SUBDIR += py-gelidum SUBDIR += py-genson SUBDIR += py-genty SUBDIR += py-geocoder SUBDIR += py-geojson SUBDIR += py-get-reader SUBDIR += py-gevent SUBDIR += py-geventhttpclient SUBDIR += py-git-semver SUBDIR += py-git-up SUBDIR += py-git-url-parse SUBDIR += py-gitdb SUBDIR += py-gitlab-webhook-handler SUBDIR += py-gitless SUBDIR += py-gitpython SUBDIR += py-giturlparse SUBDIR += py-glance-store SUBDIR += py-glob2 SUBDIR += py-glom SUBDIR += py-gobject3 SUBDIR += py-google-cloud-iam SUBDIR += py-google-crc32c SUBDIR += py-google-i18n-address SUBDIR += py-google-pasta SUBDIR += py-google-re2 SUBDIR += py-googleapis-common-protos SUBDIR += py-gpxpy SUBDIR += py-grab SUBDIR += py-graphene SUBDIR += py-graphene-django SUBDIR += py-graphene-sqlalchemy SUBDIR += py-graphene2 SUBDIR += py-graphql-core SUBDIR += py-graphql-core2 SUBDIR += py-graphql-relay SUBDIR += py-graphql-relay2 SUBDIR += py-greenlet SUBDIR += py-grizzled SUBDIR += py-grpc-google-iam-v1 SUBDIR += py-grpc-stubs SUBDIR += py-grpcio SUBDIR += py-grpcio-gcp SUBDIR += py-grpcio-status SUBDIR += py-grpcio-tools SUBDIR += py-gs_api_client SUBDIR += py-gtfslib SUBDIR += py-guppy3 SUBDIR += py-gyp SUBDIR += py-hash_ring SUBDIR += py-hatch SUBDIR += py-hatch-autorun SUBDIR += py-hatch-fancy-pypi-readme SUBDIR += py-hatch-jupyter-builder SUBDIR += py-hatch-mypyc SUBDIR += py-hatch-nodejs-version SUBDIR += py-hatch-requirements-txt SUBDIR += py-hatch-semver SUBDIR += py-hatch-vcs SUBDIR += py-hatchling SUBDIR += py-heapdict SUBDIR += py-helpdev SUBDIR += py-hg-evolve SUBDIR += py-hglib SUBDIR += py-hgtools SUBDIR += py-hidraw SUBDIR += py-holidays SUBDIR += py-hologram SUBDIR += py-homebase SUBDIR += py-http-prompt SUBDIR += py-humanize SUBDIR += py-hunter SUBDIR += py-hupper SUBDIR += py-hvac SUBDIR += py-hypothesis SUBDIR += py-hypothesmith SUBDIR += py-icalendar SUBDIR += py-ice SUBDIR += py-ice37 SUBDIR += py-identify SUBDIR += py-ijson SUBDIR += py-imgkit SUBDIR += py-immutabledict SUBDIR += py-immutables SUBDIR += py-importlab SUBDIR += py-importlib-metadata SUBDIR += py-importlib-metadata6 SUBDIR += py-importlib-resources SUBDIR += py-incremental SUBDIR += py-infinity SUBDIR += py-inflect SUBDIR += py-inflection SUBDIR += py-iniconfig SUBDIR += py-inifile SUBDIR += py-iniparse SUBDIR += py-inotify-simple SUBDIR += py-inotifyrecursive SUBDIR += py-installer SUBDIR += py-intbitset SUBDIR += py-intelhex SUBDIR += py-interface-meta SUBDIR += py-intervals SUBDIR += py-intervaltree SUBDIR += py-invoke SUBDIR += py-ioflo SUBDIR += py-iopath SUBDIR += py-ipaddr SUBDIR += py-ipdb SUBDIR += py-ipydatawidgets SUBDIR += py-ipykernel SUBDIR += py-ipympl SUBDIR += py-ipyparallel SUBDIR += py-ipython_genutils SUBDIR += py-ipywidgets SUBDIR += py-iso8601 SUBDIR += py-isodate SUBDIR += py-isoduration SUBDIR += py-isort SUBDIR += py-itanium_demangler SUBDIR += py-itemadapter SUBDIR += py-itemloaders SUBDIR += py-iteration-utilities SUBDIR += py-itertree SUBDIR += py-itypes SUBDIR += py-janus SUBDIR += py-jaraco.classes SUBDIR += py-jaraco.collections SUBDIR += py-jaraco.context SUBDIR += py-jaraco.env SUBDIR += py-jaraco.functools SUBDIR += py-jaraco.itertools SUBDIR += py-jaraco.logging SUBDIR += py-jaraco.stream SUBDIR += py-jaraco.text SUBDIR += py-jaraco.timing SUBDIR += py-jaraco.util SUBDIR += py-javaproperties SUBDIR += py-jdcal SUBDIR += py-jedi SUBDIR += py-jeepney SUBDIR += py-jellyfish SUBDIR += py-jenkins-job-builder SUBDIR += py-jep SUBDIR += py-jinja2-ansible-filters SUBDIR += py-jinja2-time SUBDIR += py-jira SUBDIR += py-jitterentropy SUBDIR += py-jmespath SUBDIR += py-joblib SUBDIR += py-johnnydep SUBDIR += py-jsbeautifier SUBDIR += py-jschema-to-python SUBDIR += py-jsmin SUBDIR += py-json5 SUBDIR += py-json_tricks SUBDIR += py-jsondiff SUBDIR += py-jsonform SUBDIR += py-jsonlines SUBDIR += py-jsonnet SUBDIR += py-jsonpatch SUBDIR += py-jsonpath-ng SUBDIR += py-jsonpath-rw SUBDIR += py-jsonpickle SUBDIR += py-jsonpointer SUBDIR += py-jsonref SUBDIR += py-jsonrpclib-pelix SUBDIR += py-jsonschema SUBDIR += py-jsonschema-path SUBDIR += py-jsonschema-spec SUBDIR += py-jsonschema-specifications SUBDIR += py-jsonschema3 SUBDIR += py-jsonschema417 SUBDIR += py-jsonsir SUBDIR += py-junitparser SUBDIR += py-jupyter-client SUBDIR += py-jupyter-collaboration SUBDIR += py-jupyter-core SUBDIR += py-jupyter-events SUBDIR += py-jupyter-kernel-test SUBDIR += py-jupyter-lsp SUBDIR += py-jupyter-packaging SUBDIR += py-jupyter-server SUBDIR += py-jupyter-server-fileid SUBDIR += py-jupyter-server-mathjax SUBDIR += py-jupyter-server-terminals SUBDIR += py-jupyter-telemetry SUBDIR += py-jupyter-ydoc SUBDIR += py-jupyter_console SUBDIR += py-jupyterlab SUBDIR += py-jupyterlab-lsp SUBDIR += py-jupyterlab-server SUBDIR += py-jupyterlab-widgets SUBDIR += py-jupyterlab_launcher SUBDIR += py-kaitaistruct SUBDIR += py-kaptan SUBDIR += py-kazoo SUBDIR += py-keystone-engine SUBDIR += py-keystoneauth1 SUBDIR += py-keystonemiddleware SUBDIR += py-kitchen SUBDIR += py-klepto SUBDIR += py-knack SUBDIR += py-l18n SUBDIR += py-lark SUBDIR += py-launchpadlib SUBDIR += py-lazr.config SUBDIR += py-lazr.delegates SUBDIR += py-lazr.restfulclient SUBDIR += py-lazr.uri SUBDIR += py-lazy SUBDIR += py-lazy-object-proxy SUBDIR += py-lazy_loader SUBDIR += py-libcst SUBDIR += py-libcst03 SUBDIR += py-libioc SUBDIR += py-libpeas SUBDIR += py-libplist SUBDIR += py-libtaxii SUBDIR += py-libtmux SUBDIR += py-libusb1 SUBDIR += py-libversion SUBDIR += py-libvirt SUBDIR += py-libzfs SUBDIR += py-lief SUBDIR += py-line-profiler SUBDIR += py-linear-tsv SUBDIR += py-linecache2 SUBDIR += py-lineedit SUBDIR += py-littleutils SUBDIR += py-livemark SUBDIR += py-llfuse SUBDIR += py-llvmcpy SUBDIR += py-llvmlite SUBDIR += py-lml SUBDIR += py-localstack-client SUBDIR += py-locket SUBDIR += py-lockfile SUBDIR += py-logan SUBDIR += py-logbook SUBDIR += py-logfury SUBDIR += py-logilab-common SUBDIR += py-loguru SUBDIR += py-logutils SUBDIR += py-logzero SUBDIR += py-looseversion SUBDIR += py-louie SUBDIR += py-lru-dict SUBDIR += py-lsprotocol SUBDIR += py-lunardate SUBDIR += py-lxml SUBDIR += py-lxml-stubs SUBDIR += py-mac-vendor-lookup SUBDIR += py-macholib SUBDIR += py-magic SUBDIR += py-mailcap-fix SUBDIR += py-makefun SUBDIR += py-manuel SUBDIR += py-marisa-trie SUBDIR += py-marrow.mailer SUBDIR += py-marrow.util SUBDIR += py-marshmallow SUBDIR += py-marshmallow-enum SUBDIR += py-mashumaro SUBDIR += py-matrix-angular-sdk SUBDIR += py-matrix-common SUBDIR += py-maturin SUBDIR += py-mccabe SUBDIR += py-mdv SUBDIR += py-mediafile SUBDIR += py-mediapy SUBDIR += py-medikit SUBDIR += py-memory-allocator SUBDIR += py-memory-profiler SUBDIR += py-mergedeep SUBDIR += py-microversion-parse SUBDIR += py-milc SUBDIR += py-mime SUBDIR += py-miniKanren SUBDIR += py-minidump SUBDIR += py-minimal-snowplow-tracker SUBDIR += py-minimongo SUBDIR += py-minio SUBDIR += py-mmh3 SUBDIR += py-mock SUBDIR += py-molecule SUBDIR += py-mondrian SUBDIR += py-mongokit SUBDIR += py-monkeytype SUBDIR += py-monotonic SUBDIR += py-monty SUBDIR += py-more-itertools SUBDIR += py-moto SUBDIR += py-mox SUBDIR += py-mox3 SUBDIR += py-mrkd SUBDIR += py-msal SUBDIR += py-msal-extensions SUBDIR += py-msgpack SUBDIR += py-mulpyplexer SUBDIR += py-multi_key_dict SUBDIR += py-multipart SUBDIR += py-multipledispatch SUBDIR += py-multiprocess SUBDIR += py-multiset SUBDIR += py-multitasking SUBDIR += py-munch SUBDIR += py-murmurhash SUBDIR += py-mutmut SUBDIR += py-mygpoclient SUBDIR += py-mypy SUBDIR += py-mypy-boto3-s3 SUBDIR += py-mypy-protobuf SUBDIR += py-mypy_extensions SUBDIR += py-mystic SUBDIR += py-naiveBayesClassifier SUBDIR += py-nanotime SUBDIR += py-natsort SUBDIR += py-natural SUBDIR += py-nbclassic SUBDIR += py-nbclient SUBDIR += py-nbconvert SUBDIR += py-nbdime SUBDIR += py-nbformat SUBDIR += py-nbval SUBDIR += py-nest-asyncio SUBDIR += py-node-semver SUBDIR += py-nodeenv SUBDIR += py-nose SUBDIR += py-nose-cov SUBDIR += py-nose-timer SUBDIR += py-nose2 SUBDIR += py-nose3 SUBDIR += py-noseofyeti SUBDIR += py-nosexcover SUBDIR += py-notebook-shim SUBDIR += py-notify2 SUBDIR += py-num2words SUBDIR += py-numba SUBDIR += py-objgraph SUBDIR += py-objprint SUBDIR += py-objsize SUBDIR += py-oci SUBDIR += py-odfpy SUBDIR += py-offtrac SUBDIR += py-olefile SUBDIR += py-oletools SUBDIR += py-omnijson SUBDIR += py-omniorb SUBDIR += py-onigurumacffi SUBDIR += py-opcodes SUBDIR += py-openapi-codec SUBDIR += py-openapi-core SUBDIR += py-openapi-schema-validator SUBDIR += py-openapi-spec-validator SUBDIR += py-opencensus SUBDIR += py-opencensus-context SUBDIR += py-opendht SUBDIR += py-opengrok-tools SUBDIR += py-openstacksdk SUBDIR += py-opentelemetry-api SUBDIR += py-opentelemetry-sdk SUBDIR += py-opentelemetry-semantic-conventions SUBDIR += py-opentracing SUBDIR += py-opster SUBDIR += py-optik SUBDIR += py-optree SUBDIR += py-orange-canvas-core SUBDIR += py-orange-widget-base SUBDIR += py-orca SUBDIR += py-ordered-set SUBDIR += py-ordereddict SUBDIR += py-orderedmultidict SUBDIR += py-orjson SUBDIR += py-os-brick SUBDIR += py-os-client-config SUBDIR += py-os-service-types SUBDIR += py-os-vif SUBDIR += py-os-win SUBDIR += py-osc-lib SUBDIR += py-oslo.cache SUBDIR += py-oslo.concurrency SUBDIR += py-oslo.config SUBDIR += py-oslo.context SUBDIR += py-oslo.db SUBDIR += py-oslo.i18n SUBDIR += py-oslo.limit SUBDIR += py-oslo.log SUBDIR += py-oslo.messaging SUBDIR += py-oslo.metrics SUBDIR += py-oslo.middleware SUBDIR += py-oslo.policy SUBDIR += py-oslo.privsep SUBDIR += py-oslo.reports SUBDIR += py-oslo.rootwrap SUBDIR += py-oslo.serialization SUBDIR += py-oslo.service SUBDIR += py-oslo.upgradecheck SUBDIR += py-oslo.utils SUBDIR += py-oslo.versionedobjects SUBDIR += py-oslo.vmware SUBDIR += py-oslotest SUBDIR += py-osprofiler SUBDIR += py-outcome SUBDIR += py-overrides SUBDIR += py-ovs SUBDIR += py-ovsdbapp SUBDIR += py-oyaml SUBDIR += py-p4python SUBDIR += py-packaging SUBDIR += py-parallax SUBDIR += py-param SUBDIR += py-parameterized SUBDIR += py-parsedatetime SUBDIR += py-parsley SUBDIR += py-parver SUBDIR += py-pastel SUBDIR += py-patch SUBDIR += py-patch-ng SUBDIR += py-path SUBDIR += py-path.py SUBDIR += py-pathable SUBDIR += py-pathlib2 SUBDIR += py-pathos SUBDIR += py-pathspec SUBDIR += py-pathtools SUBDIR += py-pathvalidate SUBDIR += py-paver SUBDIR += py-pbr SUBDIR += py-pcodedmp SUBDIR += py-pdm SUBDIR += py-pdm-autoexport SUBDIR += py-pdm-backend SUBDIR += py-pdm-pep517 SUBDIR += py-pdoc SUBDIR += py-pebble SUBDIR += py-pefile SUBDIR += py-pendulum SUBDIR += py-pep440 SUBDIR += py-pep517 SUBDIR += py-pep562 SUBDIR += py-pep621 SUBDIR += py-pep8-naming SUBDIR += py-period SUBDIR += py-persistent SUBDIR += py-petname SUBDIR += py-pew SUBDIR += py-pex SUBDIR += py-phabricator SUBDIR += py-phonenumbers SUBDIR += py-phply SUBDIR += py-phpserialize SUBDIR += py-phx-class-registry SUBDIR += py-pid SUBDIR += py-pika SUBDIR += py-pika-pool SUBDIR += py-pinocchio SUBDIR += py-pint SUBDIR += py-pint-pandas SUBDIR += py-pip SUBDIR += py-pip-api SUBDIR += py-pip-audit SUBDIR += py-pip-licenses SUBDIR += py-pip-requirements-parser SUBDIR += py-pip-run SUBDIR += py-pip-shims SUBDIR += py-pip-tools SUBDIR += py-pip-tools4 SUBDIR += py-pipdeptree SUBDIR += py-pipenv SUBDIR += py-pipreqs SUBDIR += py-pipx SUBDIR += py-pkgconfig SUBDIR += py-pkgutil-resolve-name SUBDIR += py-plac SUBDIR += py-plan SUBDIR += py-platformdirs SUBDIR += py-plette SUBDIR += py-plex SUBDIR += py-plucky SUBDIR += py-pluggy SUBDIR += py-pluggy0 SUBDIR += py-pluginbase SUBDIR += py-plux SUBDIR += py-ply SUBDIR += py-pnio-dcp SUBDIR += py-pockets SUBDIR += py-podcastparser SUBDIR += py-poetry SUBDIR += py-poetry-core SUBDIR += py-poetry-dynamic-versioning SUBDIR += py-poetry-plugin-export SUBDIR += py-poetry-semver SUBDIR += py-poetry-types SUBDIR += py-poetry2setup SUBDIR += py-polib SUBDIR += py-pooch SUBDIR += py-pop SUBDIR += py-pop-config SUBDIR += py-portalocker SUBDIR += py-positional SUBDIR += py-posix_ipc SUBDIR += py-pox SUBDIR += py-poyo SUBDIR += py-ppft SUBDIR += py-prance SUBDIR += py-pre-commit SUBDIR += py-pre-commit-hooks SUBDIR += py-prefixed SUBDIR += py-preshed SUBDIR += py-preshed3 SUBDIR += py-pretend SUBDIR += py-prettyprinter SUBDIR += py-prettytable SUBDIR += py-prettytable0 SUBDIR += py-process-tests SUBDIR += py-proglog SUBDIR += py-progress SUBDIR += py-promise SUBDIR += py-prompt-toolkit SUBDIR += py-prompt-toolkit1 SUBDIR += py-prompt-toolkit2 SUBDIR += py-property-cached SUBDIR += py-proselint SUBDIR += py-prospector SUBDIR += py-proto-plus SUBDIR += py-protobuf SUBDIR += py-protobuf-compiler SUBDIR += py-proxmoxer SUBDIR += py-ptable SUBDIR += py-ptpython SUBDIR += py-ptvsd SUBDIR += py-pudb SUBDIR += py-pure-eval SUBDIR += py-purl SUBDIR += py-py SUBDIR += py-py-partiql-parser SUBDIR += py-py-serializable SUBDIR += py-py-ubjson SUBDIR += py-py3nvml SUBDIR += py-pyTooling SUBDIR += py-py_interface SUBDIR += py-pyaml-env SUBDIR += py-pyasn1 SUBDIR += py-pyasn1-modules SUBDIR += py-pybind11 SUBDIR += py-pybind11210 SUBDIR += py-pybix SUBDIR += py-pycadf SUBDIR += py-pycalendar SUBDIR += py-pycallgraph SUBDIR += py-pycapsicum SUBDIR += py-pycerberus SUBDIR += py-pycmd SUBDIR += py-pycnite SUBDIR += py-pycocotools SUBDIR += py-pycodeexport SUBDIR += py-pycodestyle SUBDIR += py-pycognito SUBDIR += py-pycompilation SUBDIR += py-pycomplete SUBDIR += py-pycparser SUBDIR += py-pycrdt SUBDIR += py-pycrdt-websocket SUBDIR += py-pydantic SUBDIR += py-pydantic-core SUBDIR += py-pydantic-extra-types SUBDIR += py-pydantic-vault SUBDIR += py-pydantic-yaml SUBDIR += py-pydantic2 SUBDIR += py-pydash SUBDIR += py-pydbus SUBDIR += py-pydecor SUBDIR += py-pydenticon SUBDIR += py-pydevd SUBDIR += py-pydispatcher SUBDIR += py-pydocstyle SUBDIR += py-pydrive SUBDIR += py-pyee SUBDIR += py-pyelftools SUBDIR += py-pyface SUBDIR += py-pyfcm SUBDIR += py-pyflakes SUBDIR += py-pyformance SUBDIR += py-pygdbmi SUBDIR += py-pygit2 SUBDIR += py-pygpx SUBDIR += py-pyhashxx SUBDIR += py-pyhcl SUBDIR += py-pyicu SUBDIR += py-pyina SUBDIR += py-pyinotify SUBDIR += py-pyinquirer SUBDIR += py-pyinstaller SUBDIR += py-pyinstaller-hooks-contrib SUBDIR += py-pyintelowl SUBDIR += py-pyjq SUBDIR += py-pyjsparser SUBDIR += py-pykdtree SUBDIR += py-pylama SUBDIR += py-pyleri SUBDIR += py-pylev SUBDIR += py-pylibsrtp SUBDIR += py-pylint-django SUBDIR += py-pylint-flask SUBDIR += py-pylint-plugin-utils SUBDIR += py-pylint-venv SUBDIR += py-pylru SUBDIR += py-pylru-cache SUBDIR += py-pyls-black SUBDIR += py-pymarc SUBDIR += py-pymaven-patch SUBDIR += py-pymisp SUBDIR += py-pympler SUBDIR += py-pymsgbox SUBDIR += py-pymtbl SUBDIR += py-pynest2d SUBDIR += py-pyopencl SUBDIR += py-pyparsing SUBDIR += py-pyparsing2 SUBDIR += py-pyperclip SUBDIR += py-pyperf SUBDIR += py-pyplusplus SUBDIR += py-pyproject-api SUBDIR += py-pyproject-flake8 SUBDIR += py-pyproject-fmt SUBDIR += py-pyproject-metadata SUBDIR += py-pyproject_hooks SUBDIR += py-pypugjs SUBDIR += py-pyqtree SUBDIR += py-pyquery SUBDIR += py-pyquil SUBDIR += py-pyral SUBDIR += py-pyrepl SUBDIR += py-pyrfc3339 SUBDIR += py-pyright SUBDIR += py-pyro SUBDIR += py-pyroma SUBDIR += py-pyrsistent SUBDIR += py-pyscaffold SUBDIR += py-pysdl2 SUBDIR += py-pyshp SUBDIR += py-pysimdjson SUBDIR += py-pysparklines SUBDIR += py-pystorm SUBDIR += py-pyte SUBDIR += py-pytest SUBDIR += py-pytest-aiohttp SUBDIR += py-pytest-asyncio SUBDIR += py-pytest-azurepipelines SUBDIR += py-pytest-benchmark SUBDIR += py-pytest-black SUBDIR += py-pytest-black-multipy SUBDIR += py-pytest-cache SUBDIR += py-pytest-canonical-data SUBDIR += py-pytest-capturelog SUBDIR += py-pytest-cases SUBDIR += py-pytest-checkdocs SUBDIR += py-pytest-codspeed SUBDIR += py-pytest-console-scripts SUBDIR += py-pytest-cov SUBDIR += py-pytest-cpp SUBDIR += py-pytest-datadir SUBDIR += py-pytest-django SUBDIR += py-pytest-drop-dup-tests SUBDIR += py-pytest-enabler SUBDIR += py-pytest-env SUBDIR += py-pytest-factoryboy SUBDIR += py-pytest-fixture-config SUBDIR += py-pytest-flake8 SUBDIR += py-pytest-flakes SUBDIR += py-pytest-flask SUBDIR += py-pytest-forked SUBDIR += py-pytest-freezer SUBDIR += py-pytest-helpers-namespace SUBDIR += py-pytest-html SUBDIR += py-pytest-httpbin SUBDIR += py-pytest-httpserver SUBDIR += py-pytest-httpx SUBDIR += py-pytest-isort SUBDIR += py-pytest-jupyter SUBDIR += py-pytest-lazy-fixture SUBDIR += py-pytest-lazy-fixtures SUBDIR += py-pytest-localserver SUBDIR += py-pytest-markdown SUBDIR += py-pytest-metadata SUBDIR += py-pytest-mock SUBDIR += py-pytest-mpl SUBDIR += py-pytest-mutagen SUBDIR += py-pytest-mypy SUBDIR += py-pytest-mypy-plugins SUBDIR += py-pytest-nunit SUBDIR += py-pytest-order SUBDIR += py-pytest-parallel SUBDIR += py-pytest-pep8 SUBDIR += py-pytest-plus SUBDIR += py-pytest-profiling SUBDIR += py-pytest-pycodestyle SUBDIR += py-pytest-qt SUBDIR += py-pytest-random-order SUBDIR += py-pytest-randomly SUBDIR += py-pytest-regressions SUBDIR += py-pytest-regtest SUBDIR += py-pytest-relaxed SUBDIR += py-pytest-rerunfailures SUBDIR += py-pytest-runner SUBDIR += py-pytest-services SUBDIR += py-pytest-shutil SUBDIR += py-pytest-socket SUBDIR += py-pytest-subprocess SUBDIR += py-pytest-subtests SUBDIR += py-pytest-sugar SUBDIR += py-pytest-timeout SUBDIR += py-pytest-tornado SUBDIR += py-pytest-tornasync SUBDIR += py-pytest-translations SUBDIR += py-pytest-trio SUBDIR += py-pytest-twisted SUBDIR += py-pytest-verbose-parametrize SUBDIR += py-pytest-virtualenv SUBDIR += py-pytest-watcher SUBDIR += py-pytest-xdist SUBDIR += py-pytest-xprocess SUBDIR += py-pytest4 SUBDIR += py-pytest4-cache SUBDIR += py-pytest4-cov SUBDIR += py-pytest4-flakes SUBDIR += py-python-application SUBDIR += py-python-bugzilla SUBDIR += py-python-dbusmock SUBDIR += py-python-decouple SUBDIR += py-python-distutils-extra SUBDIR += py-python-dtrace SUBDIR += py-python-easyconfig SUBDIR += py-python-editor SUBDIR += py-python-engineio SUBDIR += py-python-gflags SUBDIR += py-python-gilt SUBDIR += py-python-gist SUBDIR += py-python-gitlab SUBDIR += py-python-jenkins SUBDIR += py-python-json-logger SUBDIR += py-python-jsonrpc-server SUBDIR += py-python-magic SUBDIR += py-python-mimeparse SUBDIR += py-python-pcre SUBDIR += py-python-ptrace SUBDIR += py-python-rapidjson SUBDIR += py-python-socketio SUBDIR += py-python-statsd SUBDIR += py-python-subunit SUBDIR += py-pythonbrew SUBDIR += py-pythondialog SUBDIR += py-pythonfinder SUBDIR += py-pythran SUBDIR += py-pytimeparse SUBDIR += py-pytoolconfig SUBDIR += py-pytools SUBDIR += py-pytrie SUBDIR += py-pytvmaze SUBDIR += py-pytweening SUBDIR += py-pytz SUBDIR += py-pytz-deprecation-shim SUBDIR += py-pytzdata SUBDIR += py-pyudev SUBDIR += py-pyupgrade SUBDIR += py-pyusb SUBDIR += py-pyvisa SUBDIR += py-pyvisa-py SUBDIR += py-pyxb-x SUBDIR += py-pyyaml-include SUBDIR += py-pyyaml5 SUBDIR += py-pyyaml_env_tag SUBDIR += py-pyzipper SUBDIR += py-q SUBDIR += py-qasync SUBDIR += py-qcs-api-client SUBDIR += py-qcs-sdk-python SUBDIR += py-qstylizer SUBDIR += py-qt5 SUBDIR += py-qt5-pyqt SUBDIR += py-qt5-qscintilla2 SUBDIR += py-qt5-sip SUBDIR += py-qt6 SUBDIR += py-qt6-pyqt SUBDIR += py-qt6-qscintilla2 SUBDIR += py-qt6-sip SUBDIR += py-qtbuilder SUBDIR += py-qtconsole SUBDIR += py-querystring-parser SUBDIR += py-questionary SUBDIR += py-qutip SUBDIR += py-qutip-qip SUBDIR += py-ramlfications SUBDIR += py-rapidfuzz SUBDIR += py-rapidfuzz-capi SUBDIR += py-ratelim SUBDIR += py-ratelimiter SUBDIR += py-rauth SUBDIR += py-raven SUBDIR += py-rchitect SUBDIR += py-re-assert SUBDIR += py-readme-renderer SUBDIR += py-rebulk SUBDIR += py-recordclass SUBDIR += py-recurring-ical-events SUBDIR += py-red-black-tree-mod SUBDIR += py-rednose SUBDIR += py-reedsolo SUBDIR += py-referencing SUBDIR += py-regress SUBDIR += py-remote-pdb SUBDIR += py-repoze.lru SUBDIR += py-repoze.sphinx.autointerface SUBDIR += py-repoze.tm2 SUBDIR += py-repoze.who SUBDIR += py-repoze.xmliter SUBDIR += py-represent SUBDIR += py-requestsexceptions SUBDIR += py-requirements-detector SUBDIR += py-requirementslib SUBDIR += py-resolvelib SUBDIR += py-resolvelib05 SUBDIR += py-resolvelib07 SUBDIR += py-resolvelib1 SUBDIR += py-resolver SUBDIR += py-resource SUBDIR += py-responses SUBDIR += py-retry2 SUBDIR += py-retrying SUBDIR += py-rfc3339 SUBDIR += py-rfc3339-validator SUBDIR += py-rfc3986-validator SUBDIR += py-rich-click SUBDIR += py-robotframework SUBDIR += py-robotframework-databaselibrary SUBDIR += py-robotframework-pabot SUBDIR += py-robotframework-pythonlibcore SUBDIR += py-robotframework-requests SUBDIR += py-robotframework-seleniumlibrary SUBDIR += py-robotframework-stacktrace SUBDIR += py-robotremoteserver SUBDIR += py-rope SUBDIR += py-rose SUBDIR += py-rpcq SUBDIR += py-rpds-py SUBDIR += py-rply SUBDIR += py-rq SUBDIR += py-rq-scheduler SUBDIR += py-rstr SUBDIR += py-rtree SUBDIR += py-rtslib-fb SUBDIR += py-ruamel.yaml SUBDIR += py-ruamel.yaml.clib SUBDIR += py-rubymarshal SUBDIR += py-rush SUBDIR += py-rx SUBDIR += py-rx1 SUBDIR += py-s3fs SUBDIR += py-saneyaml SUBDIR += py-sarge SUBDIR += py-sarif-om SUBDIR += py-scantree SUBDIR += py-schedule SUBDIR += py-scheduler SUBDIR += py-schema SUBDIR += py-schematics-patched SUBDIR += py-scikit-base SUBDIR += py-scikit-build SUBDIR += py-scikit-build-core SUBDIR += py-scooby SUBDIR += py-scripttest SUBDIR += py-selection SUBDIR += py-semantic-version SUBDIR += py-semver SUBDIR += py-sentry-sdk SUBDIR += py-serializable SUBDIR += py-serpent SUBDIR += py-session-info SUBDIR += py-setoptconf SUBDIR += py-setproctitle SUBDIR += py-setuptools SUBDIR += py-setuptools-declarative-requirements SUBDIR += py-setuptools-gettext SUBDIR += py-setuptools-git SUBDIR += py-setuptools-git-versioning SUBDIR += py-setuptools-pkg SUBDIR += py-setuptools-rust SUBDIR += py-setuptools-scm SUBDIR += py-setuptools44 SUBDIR += py-setuptools58 SUBDIR += py-setuptools_git_ls_files SUBDIR += py-setuptools_hg SUBDIR += py-setuptools_scm7 SUBDIR += py-setuptools_scm_git_archive SUBDIR += py-sexpdata SUBDIR += py-sgmllib3k SUBDIR += py-sh SUBDIR += py-shapely SUBDIR += py-shellingham SUBDIR += py-shtab SUBDIR += py-signalr-client-aio SUBDIR += py-simple-parsing SUBDIR += py-simple-term-menu SUBDIR += py-simpleeval SUBDIR += py-simplegeneric SUBDIR += py-simplejson SUBDIR += py-simpleparse SUBDIR += py-simpletal SUBDIR += py-simpy SUBDIR += py-single-version SUBDIR += py-sip SUBDIR += py-sip4 SUBDIR += py-six SUBDIR += py-smmap SUBDIR += py-snakeviz SUBDIR += py-sniffio SUBDIR += py-sortedcontainers SUBDIR += py-sourcemap SUBDIR += py-sparse SUBDIR += py-speaklater SUBDIR += py-speg SUBDIR += py-spyder-kernels SUBDIR += py-spyder-unittest SUBDIR += py-sqids SUBDIR += py-squint SUBDIR += py-sre-yield SUBDIR += py-srsly SUBDIR += py-stack-data SUBDIR += py-stackexchange SUBDIR += py-statgrab SUBDIR += py-statsd SUBDIR += py-stdlib-list SUBDIR += py-stdnum SUBDIR += py-stevedore SUBDIR += py-stone SUBDIR += py-stopit SUBDIR += py-strategies SUBDIR += py-streamparse SUBDIR += py-strenum SUBDIR += py-strict-rfc3339 SUBDIR += py-strictyaml SUBDIR += py-stringbrewer SUBDIR += py-stringcase SUBDIR += py-structlog SUBDIR += py-subprocess-tee SUBDIR += py-subversion SUBDIR += py-sure SUBDIR += py-swagger-spec-validator SUBDIR += py-synr SUBDIR += py-syrupy SUBDIR += py-sysctl SUBDIR += py-sysv_ipc SUBDIR += py-tables SUBDIR += py-tabulate SUBDIR += py-tabulator SUBDIR += py-tailer SUBDIR += py-tapi SUBDIR += py-tarantool-queue SUBDIR += py-tartiflette SUBDIR += py-tartiflette-aiohttp SUBDIR += py-taskflow SUBDIR += py-tasklib SUBDIR += py-tblib SUBDIR += py-tdworkflow SUBDIR += py-telepath SUBDIR += py-tempora SUBDIR += py-tenacity SUBDIR += py-tendo SUBDIR += py-termcolor SUBDIR += py-termcolor-whl SUBDIR += py-termstyle SUBDIR += py-test-utils SUBDIR += py-testfixtures SUBDIR += py-testinfra SUBDIR += py-testoob SUBDIR += py-testpath SUBDIR += py-testrepository SUBDIR += py-testresources SUBDIR += py-testscenarios SUBDIR += py-testtools SUBDIR += py-thefuzz SUBDIR += py-thinc SUBDIR += py-threadpoolctl SUBDIR += py-threema-msgapi SUBDIR += py-thrift SUBDIR += py-thriftpy2 SUBDIR += py-tiamat SUBDIR += py-time-machine SUBDIR += py-timelib SUBDIR += py-timeout-decorator SUBDIR += py-tinyarray SUBDIR += py-tinynetrc SUBDIR += py-tinyrpc SUBDIR += py-tipper SUBDIR += py-tokenize-rt SUBDIR += py-toolz SUBDIR += py-tooz SUBDIR += py-toposort SUBDIR += py-tox SUBDIR += py-traceback2 SUBDIR += py-traitlets SUBDIR += py-traits SUBDIR += py-traittypes SUBDIR += py-transaction SUBDIR += py-transitions SUBDIR += py-tree-format SUBDIR += py-tree-sitter SUBDIR += py-treelib SUBDIR += py-trimesh SUBDIR += py-trove-classifiers SUBDIR += py-ttictoc SUBDIR += py-ttkbootstrap SUBDIR += py-ttystatus SUBDIR += py-twiggy SUBDIR += py-twilio SUBDIR += py-twine SUBDIR += py-twisted SUBDIR += py-txaio SUBDIR += py-txi2p-tahoe SUBDIR += py-typechecks SUBDIR += py-typeguard SUBDIR += py-typer SUBDIR += py-types-Flask SUBDIR += py-types-Jinja2 SUBDIR += py-types-MarkupSafe SUBDIR += py-types-Pillow SUBDIR += py-types-PyYAML SUBDIR += py-types-Werkzeug SUBDIR += py-types-click SUBDIR += py-types-cryptography SUBDIR += py-types-docutils SUBDIR += py-types-futures SUBDIR += py-types-jsonschema SUBDIR += py-types-mock SUBDIR += py-types-protobuf SUBDIR += py-types-psutil SUBDIR += py-types-psycopg2 SUBDIR += py-types-python-dateutil SUBDIR += py-types-requests SUBDIR += py-types-retry SUBDIR += py-types-setuptools SUBDIR += py-types-toml SUBDIR += py-types-typed-ast SUBDIR += py-types-urllib3 SUBDIR += py-typing-extensions SUBDIR += py-typing-inspect SUBDIR += py-tzdata SUBDIR += py-tzlocal SUBDIR += py-u-msgpack-python SUBDIR += py-ua_parser SUBDIR += py-ubelt SUBDIR += py-uhid-freebsd SUBDIR += py-ujson SUBDIR += py-unearth SUBDIR += py-unicodecsv SUBDIR += py-unicodedata2 SUBDIR += py-unidiff SUBDIR += py-unipath SUBDIR += py-unittest2 SUBDIR += py-unittest2pytest SUBDIR += py-unpaddedbase64 SUBDIR += py-untokenize SUBDIR += py-update_checker SUBDIR += py-urlimport SUBDIR += py-urwid SUBDIR += py-urwid-readline SUBDIR += py-urwidtrees SUBDIR += py-us SUBDIR += py-user_agents SUBDIR += py-userpath SUBDIR += py-uvloop SUBDIR += py-validate-pyproject SUBDIR += py-validators SUBDIR += py-validictory SUBDIR += py-vcrpy SUBDIR += py-vcver SUBDIR += py-vcversioner SUBDIR += py-venusian SUBDIR += py-verboselogs SUBDIR += py-versioneer SUBDIR += py-versioneer-518 SUBDIR += py-versioningit SUBDIR += py-versiontools SUBDIR += py-verspec SUBDIR += py-vine SUBDIR += py-virtualenv SUBDIR += py-virtualenv-api SUBDIR += py-virtualenv-clone SUBDIR += py-virtualenvwrapper SUBDIR += py-visidata SUBDIR += py-visitor SUBDIR += py-vistir SUBDIR += py-voluptuous SUBDIR += py-voluptuous-serialize SUBDIR += py-vsts SUBDIR += py-vsts-cd-manager SUBDIR += py-vulture SUBDIR += py-wadllib SUBDIR += py-warlock SUBDIR += py-watchdog SUBDIR += py-watchfiles SUBDIR += py-watchgod SUBDIR += py-watermark SUBDIR += py-wcwidth SUBDIR += py-weasel SUBDIR += py-weblib SUBDIR += py-websockets SUBDIR += py-websockify SUBDIR += py-wheel SUBDIR += py-whichcraft SUBDIR += py-whistle SUBDIR += py-widgetsnbextension SUBDIR += py-wimpy SUBDIR += py-wlc SUBDIR += py-woops SUBDIR += py-wrapt SUBDIR += py-wsgi-intercept SUBDIR += py-wsgi_xmlrpc SUBDIR += py-wsgitools SUBDIR += py-wsgiutils SUBDIR += py-wsme SUBDIR += py-x-wr-timezone SUBDIR += py-xarray SUBDIR += py-xarray-einstats SUBDIR += py-xarray-simlab SUBDIR += py-xattr SUBDIR += py-xcaplib SUBDIR += py-xdg SUBDIR += py-xdis SUBDIR += py-xdoctest SUBDIR += py-xerox SUBDIR += py-xmltodict SUBDIR += py-xsdata SUBDIR += py-xstatic SUBDIR += py-xstatic-angular SUBDIR += py-xstatic-angular-bootstrap SUBDIR += py-xstatic-angular-fileupload SUBDIR += py-xstatic-angular-gettext SUBDIR += py-xstatic-angular-lrdragndrop SUBDIR += py-xstatic-angular-schema-form SUBDIR += py-xstatic-bootstrap-datepicker SUBDIR += py-xstatic-bootstrap-scss SUBDIR += py-xstatic-bootswatch SUBDIR += py-xstatic-d3 SUBDIR += py-xstatic-font-awesome SUBDIR += py-xstatic-hogan SUBDIR += py-xstatic-jasmine SUBDIR += py-xstatic-jquery SUBDIR += py-xstatic-jquery-migrate SUBDIR += py-xstatic-jquery-ui SUBDIR += py-xstatic-jquery.quicksearch SUBDIR += py-xstatic-jquery.tablesorter SUBDIR += py-xstatic-jsencrypt SUBDIR += py-xstatic-mdi SUBDIR += py-xstatic-objectpath SUBDIR += py-xstatic-rickshaw SUBDIR += py-xstatic-roboto-fontface SUBDIR += py-xstatic-smart-table SUBDIR += py-xstatic-spin SUBDIR += py-xstatic-term.js SUBDIR += py-xstatic-tv4 SUBDIR += py-xxhash SUBDIR += py-y-py SUBDIR += py-yacs SUBDIR += py-yaml SUBDIR += py-yamllint SUBDIR += py-yamlordereddictloader SUBDIR += py-yandex-money-sdk SUBDIR += py-yappi SUBDIR += py-yapps2 SUBDIR += py-yarg SUBDIR += py-yaspin SUBDIR += py-yattag SUBDIR += py-yg.lockfile SUBDIR += py-ypy-websocket SUBDIR += py-yunomi SUBDIR += py-zarr SUBDIR += py-zc.lockfile SUBDIR += py-zclockfile SUBDIR += py-zconfig SUBDIR += py-zfp SUBDIR += py-zict SUBDIR += py-zipp SUBDIR += py-zope.component SUBDIR += py-zope.configuration SUBDIR += py-zope.deprecation SUBDIR += py-zope.event SUBDIR += py-zope.interface SUBDIR += py-zope.schema SUBDIR += py-zope.testbrowser SUBDIR += py3c SUBDIR += pybind11 SUBDIR += pybind11-json SUBDIR += pybugz SUBDIR += pycanberra SUBDIR += pycharm-ce SUBDIR += pycharm-pro SUBDIR += pycomposefile SUBDIR += pycos SUBDIR += pycount SUBDIR += pydbus-common SUBDIR += pydeps SUBDIR += pyderasn SUBDIR += pyenv SUBDIR += pygobject3-common SUBDIR += pylint SUBDIR += pylyzer SUBDIR += pymsteams SUBDIR += pyobfuscate SUBDIR += pyotherside-qt5 SUBDIR += pyside2 SUBDIR += pyside2-tools SUBDIR += pyside6 SUBDIR += pyside6-tools SUBDIR += pystring SUBDIR += pysvn SUBDIR += pythontidy SUBDIR += pytype SUBDIR += qbe SUBDIR += qca SUBDIR += qconf SUBDIR += qcoro SUBDIR += qgit SUBDIR += qjson SUBDIR += qmake SUBDIR += qschematic SUBDIR += qscintilla2-designerplugin-qt5 SUBDIR += qscintilla2-qt5 SUBDIR += qscintilla2-qt6 SUBDIR += qt-maybe SUBDIR += qt5 SUBDIR += qt5-assistant SUBDIR += qt5-buildtools SUBDIR += qt5-concurrent SUBDIR += qt5-core SUBDIR += qt5-dbus SUBDIR += qt5-designer SUBDIR += qt5-help SUBDIR += qt5-linguist SUBDIR += qt5-linguisttools SUBDIR += qt5-location SUBDIR += qt5-qdbus SUBDIR += qt5-qdbusviewer SUBDIR += qt5-qdoc SUBDIR += qt5-qdoc-data SUBDIR += qt5-qmake SUBDIR += qt5-remoteobjects SUBDIR += qt5-script SUBDIR += qt5-scripttools SUBDIR += qt5-scxml SUBDIR += qt5-testlib SUBDIR += qt5-uitools SUBDIR += qt6 SUBDIR += qt6-5compat SUBDIR += qt6-base SUBDIR += qt6-languageserver SUBDIR += qt6-location SUBDIR += qt6-positioning SUBDIR += qt6-remoteobjects SUBDIR += qt6-scxml SUBDIR += qt6-tools SUBDIR += qt6-translations SUBDIR += qtcreator SUBDIR += qtutilities SUBDIR += quantum SUBDIR += quickcheck++ SUBDIR += quickcpplib SUBDIR += quilt SUBDIR += qxlsx SUBDIR += rabs SUBDIR += radare2 SUBDIR += radian SUBDIR += ragel SUBDIR += raknet SUBDIR += random123 SUBDIR += rang SUBDIR += range-v3 SUBDIR += rapidcheck SUBDIR += rapidfuzz-cpp SUBDIR += rapidjson SUBDIR += rapidyaml SUBDIR += rationl SUBDIR += raylib SUBDIR += rbenv SUBDIR += rbtools SUBDIR += rclint SUBDIR += rcs SUBDIR += rcs57 SUBDIR += re2 SUBDIR += re2c SUBDIR += readerwriterqueue SUBDIR += readline SUBDIR += rebar SUBDIR += rebar3 SUBDIR += recycle SUBDIR += redasm SUBDIR += redo SUBDIR += regexx SUBDIR += regexxer SUBDIR += remake SUBDIR += remotery SUBDIR += replay SUBDIR += replxx SUBDIR += reproc SUBDIR += resolv_wrapper SUBDIR += revive SUBDIR += rgbds SUBDIR += rgxg SUBDIR += rhtvision SUBDIR += rinutils SUBDIR += riscv32-unknown-elf-gcc SUBDIR += riscv64-none-elf-gcc SUBDIR += rkcommon SUBDIR += rlog SUBDIR += rlwrap SUBDIR += robin-hood-hashing SUBDIR += robin-map SUBDIR += roboctl SUBDIR += robodoc SUBDIR += root SUBDIR += ros-catkin SUBDIR += ros-catkin_pkg SUBDIR += ros-console_bridge SUBDIR += ros-rosdep SUBDIR += ros-rosdistro SUBDIR += ros-rosinstall_generator SUBDIR += ros-rospkg SUBDIR += ros-urdfdom SUBDIR += ros-urdfdom_headers SUBDIR += ros-vcstool SUBDIR += ros-vcstools SUBDIR += ros-wstool SUBDIR += roswell SUBDIR += rote SUBDIR += rpc2 SUBDIR += rpclib SUBDIR += rsvndump SUBDIR += rth SUBDIR += rttr SUBDIR += ruby-bsearch SUBDIR += ruby-build SUBDIR += ruby-gems SUBDIR += ruby-install SUBDIR += ruby-rbprof SUBDIR += ruby-setup.rb SUBDIR += ruby-subversion SUBDIR += rubygem-CFPropertyList SUBDIR += rubygem-abstract SUBDIR += rubygem-actionpack-action_caching SUBDIR += rubygem-actionpack-page_caching SUBDIR += rubygem-actionview4 SUBDIR += rubygem-actionview5 SUBDIR += rubygem-actionview50 SUBDIR += rubygem-actionview52 SUBDIR += rubygem-actionview60 SUBDIR += rubygem-actionview61 SUBDIR += rubygem-actionview70 SUBDIR += rubygem-actionview71 SUBDIR += rubygem-active_scaffold SUBDIR += rubygem-activejob4 SUBDIR += rubygem-activejob5 SUBDIR += rubygem-activejob50 SUBDIR += rubygem-activejob52 SUBDIR += rubygem-activejob60 SUBDIR += rubygem-activejob61 SUBDIR += rubygem-activejob70 SUBDIR += rubygem-activejob71 SUBDIR += rubygem-activemessaging SUBDIR += rubygem-activerecord-deprecated_finders SUBDIR += rubygem-activesupport4 SUBDIR += rubygem-activesupport5 SUBDIR += rubygem-activesupport50 SUBDIR += rubygem-activesupport52 SUBDIR += rubygem-activesupport60 SUBDIR += rubygem-activesupport61 SUBDIR += rubygem-activesupport70 SUBDIR += rubygem-activesupport71 SUBDIR += rubygem-airborne SUBDIR += rubygem-akismet SUBDIR += rubygem-algebrick SUBDIR += rubygem-algorithms SUBDIR += rubygem-aliyun-sdk SUBDIR += rubygem-allison SUBDIR += rubygem-amazing_print SUBDIR += rubygem-analogger SUBDIR += rubygem-annoy SUBDIR += rubygem-ansi SUBDIR += rubygem-apipie-bindings SUBDIR += rubygem-apipie-params SUBDIR += rubygem-app_config SUBDIR += rubygem-appraisal SUBDIR += rubygem-arr-pm SUBDIR += rubygem-arrayfields SUBDIR += rubygem-ascii85 SUBDIR += rubygem-asetus SUBDIR += rubygem-aspectr SUBDIR += rubygem-ast SUBDIR += rubygem-astrolabe SUBDIR += rubygem-async SUBDIR += rubygem-async-io SUBDIR += rubygem-atomic SUBDIR += rubygem-attic SUBDIR += rubygem-attr_required SUBDIR += rubygem-authlogic SUBDIR += rubygem-avro SUBDIR += rubygem-awesome_print SUBDIR += rubygem-awrence SUBDIR += rubygem-aws-crt SUBDIR += rubygem-aws-eventstream SUBDIR += rubygem-aws-partitions SUBDIR += rubygem-aws-sdk SUBDIR += rubygem-aws-sdk-accessanalyzer SUBDIR += rubygem-aws-sdk-account SUBDIR += rubygem-aws-sdk-acm SUBDIR += rubygem-aws-sdk-acmpca SUBDIR += rubygem-aws-sdk-alexaforbusiness SUBDIR += rubygem-aws-sdk-amplify SUBDIR += rubygem-aws-sdk-amplifybackend SUBDIR += rubygem-aws-sdk-amplifyuibuilder SUBDIR += rubygem-aws-sdk-apigateway SUBDIR += rubygem-aws-sdk-apigatewaymanagementapi SUBDIR += rubygem-aws-sdk-apigatewayv2 SUBDIR += rubygem-aws-sdk-appconfig SUBDIR += rubygem-aws-sdk-appconfigdata SUBDIR += rubygem-aws-sdk-appfabric SUBDIR += rubygem-aws-sdk-appflow SUBDIR += rubygem-aws-sdk-appintegrationsservice SUBDIR += rubygem-aws-sdk-applicationautoscaling SUBDIR += rubygem-aws-sdk-applicationcostprofiler SUBDIR += rubygem-aws-sdk-applicationdiscoveryservice SUBDIR += rubygem-aws-sdk-applicationinsights SUBDIR += rubygem-aws-sdk-appmesh SUBDIR += rubygem-aws-sdk-appregistry SUBDIR += rubygem-aws-sdk-apprunner SUBDIR += rubygem-aws-sdk-appstream SUBDIR += rubygem-aws-sdk-appsync SUBDIR += rubygem-aws-sdk-arczonalshift SUBDIR += rubygem-aws-sdk-artifact SUBDIR += rubygem-aws-sdk-athena SUBDIR += rubygem-aws-sdk-auditmanager SUBDIR += rubygem-aws-sdk-augmentedairuntime SUBDIR += rubygem-aws-sdk-autoscaling SUBDIR += rubygem-aws-sdk-autoscalingplans SUBDIR += rubygem-aws-sdk-b2bi SUBDIR += rubygem-aws-sdk-backup SUBDIR += rubygem-aws-sdk-backupgateway SUBDIR += rubygem-aws-sdk-backupstorage SUBDIR += rubygem-aws-sdk-batch SUBDIR += rubygem-aws-sdk-bcmdataexports SUBDIR += rubygem-aws-sdk-bedrock SUBDIR += rubygem-aws-sdk-bedrockagent SUBDIR += rubygem-aws-sdk-bedrockagentruntime SUBDIR += rubygem-aws-sdk-bedrockruntime SUBDIR += rubygem-aws-sdk-billingconductor SUBDIR += rubygem-aws-sdk-braket SUBDIR += rubygem-aws-sdk-budgets SUBDIR += rubygem-aws-sdk-chatbot SUBDIR += rubygem-aws-sdk-chime SUBDIR += rubygem-aws-sdk-chimesdkidentity SUBDIR += rubygem-aws-sdk-chimesdkmediapipelines SUBDIR += rubygem-aws-sdk-chimesdkmeetings SUBDIR += rubygem-aws-sdk-chimesdkmessaging SUBDIR += rubygem-aws-sdk-chimesdkvoice SUBDIR += rubygem-aws-sdk-cleanrooms SUBDIR += rubygem-aws-sdk-cleanroomsml SUBDIR += rubygem-aws-sdk-cloud9 SUBDIR += rubygem-aws-sdk-cloudcontrolapi SUBDIR += rubygem-aws-sdk-clouddirectory SUBDIR += rubygem-aws-sdk-cloudformation SUBDIR += rubygem-aws-sdk-cloudfront SUBDIR += rubygem-aws-sdk-cloudfrontkeyvaluestore SUBDIR += rubygem-aws-sdk-cloudhsm SUBDIR += rubygem-aws-sdk-cloudhsmv2 SUBDIR += rubygem-aws-sdk-cloudsearch SUBDIR += rubygem-aws-sdk-cloudsearchdomain SUBDIR += rubygem-aws-sdk-cloudtrail SUBDIR += rubygem-aws-sdk-cloudtraildata SUBDIR += rubygem-aws-sdk-cloudwatch SUBDIR += rubygem-aws-sdk-cloudwatchevents SUBDIR += rubygem-aws-sdk-cloudwatchevidently SUBDIR += rubygem-aws-sdk-cloudwatchlogs SUBDIR += rubygem-aws-sdk-cloudwatchrum SUBDIR += rubygem-aws-sdk-codeartifact SUBDIR += rubygem-aws-sdk-codebuild SUBDIR += rubygem-aws-sdk-codecatalyst SUBDIR += rubygem-aws-sdk-codecommit SUBDIR += rubygem-aws-sdk-codedeploy SUBDIR += rubygem-aws-sdk-codeguruprofiler SUBDIR += rubygem-aws-sdk-codegurureviewer SUBDIR += rubygem-aws-sdk-codegurusecurity SUBDIR += rubygem-aws-sdk-codepipeline SUBDIR += rubygem-aws-sdk-codestar SUBDIR += rubygem-aws-sdk-codestarconnections SUBDIR += rubygem-aws-sdk-codestarnotifications SUBDIR += rubygem-aws-sdk-cognitoidentity SUBDIR += rubygem-aws-sdk-cognitoidentityprovider SUBDIR += rubygem-aws-sdk-cognitosync SUBDIR += rubygem-aws-sdk-comprehend SUBDIR += rubygem-aws-sdk-comprehendmedical SUBDIR += rubygem-aws-sdk-computeoptimizer SUBDIR += rubygem-aws-sdk-configservice SUBDIR += rubygem-aws-sdk-connect SUBDIR += rubygem-aws-sdk-connectcampaignservice SUBDIR += rubygem-aws-sdk-connectcases SUBDIR += rubygem-aws-sdk-connectcontactlens SUBDIR += rubygem-aws-sdk-connectparticipant SUBDIR += rubygem-aws-sdk-connectwisdomservice SUBDIR += rubygem-aws-sdk-controltower SUBDIR += rubygem-aws-sdk-core SUBDIR += rubygem-aws-sdk-core2 SUBDIR += rubygem-aws-sdk-costandusagereportservice SUBDIR += rubygem-aws-sdk-costexplorer SUBDIR += rubygem-aws-sdk-costoptimizationhub SUBDIR += rubygem-aws-sdk-customerprofiles SUBDIR += rubygem-aws-sdk-databasemigrationservice SUBDIR += rubygem-aws-sdk-dataexchange SUBDIR += rubygem-aws-sdk-datapipeline SUBDIR += rubygem-aws-sdk-datasync SUBDIR += rubygem-aws-sdk-datazone SUBDIR += rubygem-aws-sdk-dax SUBDIR += rubygem-aws-sdk-detective SUBDIR += rubygem-aws-sdk-devicefarm SUBDIR += rubygem-aws-sdk-devopsguru SUBDIR += rubygem-aws-sdk-directconnect SUBDIR += rubygem-aws-sdk-directoryservice SUBDIR += rubygem-aws-sdk-dlm SUBDIR += rubygem-aws-sdk-docdb SUBDIR += rubygem-aws-sdk-docdbelastic SUBDIR += rubygem-aws-sdk-drs SUBDIR += rubygem-aws-sdk-dynamodb SUBDIR += rubygem-aws-sdk-dynamodbstreams SUBDIR += rubygem-aws-sdk-ebs SUBDIR += rubygem-aws-sdk-ec2 SUBDIR += rubygem-aws-sdk-ec2instanceconnect SUBDIR += rubygem-aws-sdk-ecr SUBDIR += rubygem-aws-sdk-ecrpublic SUBDIR += rubygem-aws-sdk-ecs SUBDIR += rubygem-aws-sdk-efs SUBDIR += rubygem-aws-sdk-eks SUBDIR += rubygem-aws-sdk-eksauth SUBDIR += rubygem-aws-sdk-elasticache SUBDIR += rubygem-aws-sdk-elasticbeanstalk SUBDIR += rubygem-aws-sdk-elasticinference SUBDIR += rubygem-aws-sdk-elasticloadbalancing SUBDIR += rubygem-aws-sdk-elasticloadbalancingv2 SUBDIR += rubygem-aws-sdk-elasticsearchservice SUBDIR += rubygem-aws-sdk-elastictranscoder SUBDIR += rubygem-aws-sdk-emr SUBDIR += rubygem-aws-sdk-emrcontainers SUBDIR += rubygem-aws-sdk-emrserverless SUBDIR += rubygem-aws-sdk-entityresolution SUBDIR += rubygem-aws-sdk-eventbridge SUBDIR += rubygem-aws-sdk-finspace SUBDIR += rubygem-aws-sdk-finspacedata SUBDIR += rubygem-aws-sdk-firehose SUBDIR += rubygem-aws-sdk-fis SUBDIR += rubygem-aws-sdk-fms SUBDIR += rubygem-aws-sdk-forecastqueryservice SUBDIR += rubygem-aws-sdk-forecastservice SUBDIR += rubygem-aws-sdk-frauddetector SUBDIR += rubygem-aws-sdk-freetier SUBDIR += rubygem-aws-sdk-fsx SUBDIR += rubygem-aws-sdk-gamelift SUBDIR += rubygem-aws-sdk-gamesparks SUBDIR += rubygem-aws-sdk-glacier SUBDIR += rubygem-aws-sdk-globalaccelerator SUBDIR += rubygem-aws-sdk-glue SUBDIR += rubygem-aws-sdk-gluedatabrew SUBDIR += rubygem-aws-sdk-greengrass SUBDIR += rubygem-aws-sdk-greengrassv2 SUBDIR += rubygem-aws-sdk-groundstation SUBDIR += rubygem-aws-sdk-guardduty SUBDIR += rubygem-aws-sdk-health SUBDIR += rubygem-aws-sdk-healthlake SUBDIR += rubygem-aws-sdk-honeycode SUBDIR += rubygem-aws-sdk-iam SUBDIR += rubygem-aws-sdk-identitystore SUBDIR += rubygem-aws-sdk-imagebuilder SUBDIR += rubygem-aws-sdk-importexport SUBDIR += rubygem-aws-sdk-inspector SUBDIR += rubygem-aws-sdk-inspector2 SUBDIR += rubygem-aws-sdk-inspectorscan SUBDIR += rubygem-aws-sdk-internetmonitor SUBDIR += rubygem-aws-sdk-iot SUBDIR += rubygem-aws-sdk-iot1clickdevicesservice SUBDIR += rubygem-aws-sdk-iot1clickprojects SUBDIR += rubygem-aws-sdk-iotanalytics SUBDIR += rubygem-aws-sdk-iotdataplane SUBDIR += rubygem-aws-sdk-iotdeviceadvisor SUBDIR += rubygem-aws-sdk-iotevents SUBDIR += rubygem-aws-sdk-ioteventsdata SUBDIR += rubygem-aws-sdk-iotfleethub SUBDIR += rubygem-aws-sdk-iotfleetwise SUBDIR += rubygem-aws-sdk-iotjobsdataplane SUBDIR += rubygem-aws-sdk-iotroborunner SUBDIR += rubygem-aws-sdk-iotsecuretunneling SUBDIR += rubygem-aws-sdk-iotsitewise SUBDIR += rubygem-aws-sdk-iotthingsgraph SUBDIR += rubygem-aws-sdk-iottwinmaker SUBDIR += rubygem-aws-sdk-iotwireless SUBDIR += rubygem-aws-sdk-ivs SUBDIR += rubygem-aws-sdk-ivschat SUBDIR += rubygem-aws-sdk-ivsrealtime SUBDIR += rubygem-aws-sdk-kafka SUBDIR += rubygem-aws-sdk-kafkaconnect SUBDIR += rubygem-aws-sdk-kendra SUBDIR += rubygem-aws-sdk-kendraranking SUBDIR += rubygem-aws-sdk-keyspaces SUBDIR += rubygem-aws-sdk-kinesis SUBDIR += rubygem-aws-sdk-kinesisanalytics SUBDIR += rubygem-aws-sdk-kinesisanalyticsv2 SUBDIR += rubygem-aws-sdk-kinesisvideo SUBDIR += rubygem-aws-sdk-kinesisvideoarchivedmedia SUBDIR += rubygem-aws-sdk-kinesisvideomedia SUBDIR += rubygem-aws-sdk-kinesisvideosignalingchannels SUBDIR += rubygem-aws-sdk-kinesisvideowebrtcstorage SUBDIR += rubygem-aws-sdk-kms SUBDIR += rubygem-aws-sdk-lakeformation SUBDIR += rubygem-aws-sdk-lambda SUBDIR += rubygem-aws-sdk-lambdapreview SUBDIR += rubygem-aws-sdk-launchwizard SUBDIR += rubygem-aws-sdk-lex SUBDIR += rubygem-aws-sdk-lexmodelbuildingservice SUBDIR += rubygem-aws-sdk-lexmodelsv2 SUBDIR += rubygem-aws-sdk-lexruntimev2 SUBDIR += rubygem-aws-sdk-licensemanager SUBDIR += rubygem-aws-sdk-licensemanagerlinuxsubscriptions SUBDIR += rubygem-aws-sdk-licensemanagerusersubscriptions SUBDIR += rubygem-aws-sdk-lightsail SUBDIR += rubygem-aws-sdk-locationservice SUBDIR += rubygem-aws-sdk-lookoutequipment SUBDIR += rubygem-aws-sdk-lookoutforvision SUBDIR += rubygem-aws-sdk-lookoutmetrics SUBDIR += rubygem-aws-sdk-machinelearning SUBDIR += rubygem-aws-sdk-macie2 SUBDIR += rubygem-aws-sdk-mainframemodernization SUBDIR += rubygem-aws-sdk-managedblockchain SUBDIR += rubygem-aws-sdk-managedblockchainquery SUBDIR += rubygem-aws-sdk-managedgrafana SUBDIR += rubygem-aws-sdk-marketplaceagreement SUBDIR += rubygem-aws-sdk-marketplacecatalog SUBDIR += rubygem-aws-sdk-marketplacecommerceanalytics SUBDIR += rubygem-aws-sdk-marketplacedeployment SUBDIR += rubygem-aws-sdk-marketplaceentitlementservice SUBDIR += rubygem-aws-sdk-marketplacemetering SUBDIR += rubygem-aws-sdk-mediaconnect SUBDIR += rubygem-aws-sdk-mediaconvert SUBDIR += rubygem-aws-sdk-medialive SUBDIR += rubygem-aws-sdk-mediapackage SUBDIR += rubygem-aws-sdk-mediapackagev2 SUBDIR += rubygem-aws-sdk-mediapackagevod SUBDIR += rubygem-aws-sdk-mediastore SUBDIR += rubygem-aws-sdk-mediastoredata SUBDIR += rubygem-aws-sdk-mediatailor SUBDIR += rubygem-aws-sdk-medicalimaging SUBDIR += rubygem-aws-sdk-memorydb SUBDIR += rubygem-aws-sdk-mgn SUBDIR += rubygem-aws-sdk-migrationhub SUBDIR += rubygem-aws-sdk-migrationhubconfig SUBDIR += rubygem-aws-sdk-migrationhuborchestrator SUBDIR += rubygem-aws-sdk-migrationhubrefactorspaces SUBDIR += rubygem-aws-sdk-migrationhubstrategyrecommendations SUBDIR += rubygem-aws-sdk-mobile SUBDIR += rubygem-aws-sdk-mq SUBDIR += rubygem-aws-sdk-mturk SUBDIR += rubygem-aws-sdk-mwaa SUBDIR += rubygem-aws-sdk-neptune SUBDIR += rubygem-aws-sdk-neptunedata SUBDIR += rubygem-aws-sdk-neptunegraph SUBDIR += rubygem-aws-sdk-networkfirewall SUBDIR += rubygem-aws-sdk-networkmanager SUBDIR += rubygem-aws-sdk-networkmonitor SUBDIR += rubygem-aws-sdk-nimblestudio SUBDIR += rubygem-aws-sdk-oam SUBDIR += rubygem-aws-sdk-omics SUBDIR += rubygem-aws-sdk-opensearchserverless SUBDIR += rubygem-aws-sdk-opensearchservice SUBDIR += rubygem-aws-sdk-opsworks SUBDIR += rubygem-aws-sdk-opsworkscm SUBDIR += rubygem-aws-sdk-organizations SUBDIR += rubygem-aws-sdk-osis SUBDIR += rubygem-aws-sdk-outposts SUBDIR += rubygem-aws-sdk-panorama SUBDIR += rubygem-aws-sdk-paymentcryptography SUBDIR += rubygem-aws-sdk-paymentcryptographydata SUBDIR += rubygem-aws-sdk-pcaconnectorad SUBDIR += rubygem-aws-sdk-personalize SUBDIR += rubygem-aws-sdk-personalizeevents SUBDIR += rubygem-aws-sdk-personalizeruntime SUBDIR += rubygem-aws-sdk-pi SUBDIR += rubygem-aws-sdk-pinpoint SUBDIR += rubygem-aws-sdk-pinpointemail SUBDIR += rubygem-aws-sdk-pinpointsmsvoice SUBDIR += rubygem-aws-sdk-pinpointsmsvoicev2 SUBDIR += rubygem-aws-sdk-pipes SUBDIR += rubygem-aws-sdk-polly SUBDIR += rubygem-aws-sdk-pricing SUBDIR += rubygem-aws-sdk-privatenetworks SUBDIR += rubygem-aws-sdk-prometheusservice SUBDIR += rubygem-aws-sdk-proton SUBDIR += rubygem-aws-sdk-qbusiness SUBDIR += rubygem-aws-sdk-qconnect SUBDIR += rubygem-aws-sdk-qldb SUBDIR += rubygem-aws-sdk-qldbsession SUBDIR += rubygem-aws-sdk-quicksight SUBDIR += rubygem-aws-sdk-ram SUBDIR += rubygem-aws-sdk-rds SUBDIR += rubygem-aws-sdk-rdsdataservice SUBDIR += rubygem-aws-sdk-recyclebin SUBDIR += rubygem-aws-sdk-redshift SUBDIR += rubygem-aws-sdk-redshiftdataapiservice SUBDIR += rubygem-aws-sdk-redshiftserverless SUBDIR += rubygem-aws-sdk-rekognition SUBDIR += rubygem-aws-sdk-repostspace SUBDIR += rubygem-aws-sdk-resiliencehub SUBDIR += rubygem-aws-sdk-resourceexplorer2 SUBDIR += rubygem-aws-sdk-resourcegroups SUBDIR += rubygem-aws-sdk-resourcegroupstaggingapi SUBDIR += rubygem-aws-sdk-resources SUBDIR += rubygem-aws-sdk-resources2 SUBDIR += rubygem-aws-sdk-robomaker SUBDIR += rubygem-aws-sdk-rolesanywhere SUBDIR += rubygem-aws-sdk-route53 SUBDIR += rubygem-aws-sdk-route53domains SUBDIR += rubygem-aws-sdk-route53recoverycluster SUBDIR += rubygem-aws-sdk-route53recoverycontrolconfig SUBDIR += rubygem-aws-sdk-route53recoveryreadiness SUBDIR += rubygem-aws-sdk-route53resolver SUBDIR += rubygem-aws-sdk-s3 SUBDIR += rubygem-aws-sdk-s3control SUBDIR += rubygem-aws-sdk-s3outposts SUBDIR += rubygem-aws-sdk-sagemaker SUBDIR += rubygem-aws-sdk-sagemakeredgemanager SUBDIR += rubygem-aws-sdk-sagemakerfeaturestoreruntime SUBDIR += rubygem-aws-sdk-sagemakergeospatial SUBDIR += rubygem-aws-sdk-sagemakermetrics SUBDIR += rubygem-aws-sdk-sagemakerruntime SUBDIR += rubygem-aws-sdk-savingsplans SUBDIR += rubygem-aws-sdk-scheduler SUBDIR += rubygem-aws-sdk-schemas SUBDIR += rubygem-aws-sdk-secretsmanager SUBDIR += rubygem-aws-sdk-securityhub SUBDIR += rubygem-aws-sdk-securitylake SUBDIR += rubygem-aws-sdk-serverlessapplicationrepository SUBDIR += rubygem-aws-sdk-servicecatalog SUBDIR += rubygem-aws-sdk-servicediscovery SUBDIR += rubygem-aws-sdk-servicequotas SUBDIR += rubygem-aws-sdk-ses SUBDIR += rubygem-aws-sdk-sesv2 SUBDIR += rubygem-aws-sdk-shield SUBDIR += rubygem-aws-sdk-signer SUBDIR += rubygem-aws-sdk-simpledb SUBDIR += rubygem-aws-sdk-simspaceweaver SUBDIR += rubygem-aws-sdk-sms SUBDIR += rubygem-aws-sdk-snowball SUBDIR += rubygem-aws-sdk-snowdevicemanagement SUBDIR += rubygem-aws-sdk-sns SUBDIR += rubygem-aws-sdk-sqs SUBDIR += rubygem-aws-sdk-ssm SUBDIR += rubygem-aws-sdk-ssmcontacts SUBDIR += rubygem-aws-sdk-ssmincidents SUBDIR += rubygem-aws-sdk-ssmsap SUBDIR += rubygem-aws-sdk-ssoadmin SUBDIR += rubygem-aws-sdk-ssooidc SUBDIR += rubygem-aws-sdk-states SUBDIR += rubygem-aws-sdk-storagegateway SUBDIR += rubygem-aws-sdk-supplychain SUBDIR += rubygem-aws-sdk-support SUBDIR += rubygem-aws-sdk-supportapp SUBDIR += rubygem-aws-sdk-swf SUBDIR += rubygem-aws-sdk-synthetics SUBDIR += rubygem-aws-sdk-textract SUBDIR += rubygem-aws-sdk-timestreamquery SUBDIR += rubygem-aws-sdk-timestreamwrite SUBDIR += rubygem-aws-sdk-tnb SUBDIR += rubygem-aws-sdk-transcribeservice SUBDIR += rubygem-aws-sdk-transcribestreamingservice SUBDIR += rubygem-aws-sdk-transfer SUBDIR += rubygem-aws-sdk-translate SUBDIR += rubygem-aws-sdk-trustedadvisor SUBDIR += rubygem-aws-sdk-verifiedpermissions SUBDIR += rubygem-aws-sdk-voiceid SUBDIR += rubygem-aws-sdk-vpclattice SUBDIR += rubygem-aws-sdk-waf SUBDIR += rubygem-aws-sdk-wafregional SUBDIR += rubygem-aws-sdk-wafv2 SUBDIR += rubygem-aws-sdk-wellarchitected SUBDIR += rubygem-aws-sdk-workdocs SUBDIR += rubygem-aws-sdk-worklink SUBDIR += rubygem-aws-sdk-workmail SUBDIR += rubygem-aws-sdk-workmailmessageflow SUBDIR += rubygem-aws-sdk-workspaces SUBDIR += rubygem-aws-sdk-workspacesthinclient SUBDIR += rubygem-aws-sdk-workspacesweb SUBDIR += rubygem-aws-sdk-xray SUBDIR += rubygem-aws-sdk2 SUBDIR += rubygem-aws-sigv2 SUBDIR += rubygem-aws-sigv4 SUBDIR += rubygem-axiom-types SUBDIR += rubygem-azure-storage SUBDIR += rubygem-azure-storage-blob SUBDIR += rubygem-azure-storage-common SUBDIR += rubygem-azure-storage-file SUBDIR += rubygem-azure-storage-queue SUBDIR += rubygem-azure-storage-table SUBDIR += rubygem-azure_cognitiveservices_anomalydetector SUBDIR += rubygem-azure_cognitiveservices_autosuggest SUBDIR += rubygem-azure_cognitiveservices_computervision SUBDIR += rubygem-azure_cognitiveservices_contentmoderator SUBDIR += rubygem-azure_cognitiveservices_customimagesearch SUBDIR += rubygem-azure_cognitiveservices_customsearch SUBDIR += rubygem-azure_cognitiveservices_customvisionprediction SUBDIR += rubygem-azure_cognitiveservices_customvisiontraining SUBDIR += rubygem-azure_cognitiveservices_entitysearch SUBDIR += rubygem-azure_cognitiveservices_face SUBDIR += rubygem-azure_cognitiveservices_formrecognizer SUBDIR += rubygem-azure_cognitiveservices_imagesearch SUBDIR += rubygem-azure_cognitiveservices_localsearch SUBDIR += rubygem-azure_cognitiveservices_luisauthoring SUBDIR += rubygem-azure_cognitiveservices_luisruntime SUBDIR += rubygem-azure_cognitiveservices_newssearch SUBDIR += rubygem-azure_cognitiveservices_personalizer SUBDIR += rubygem-azure_cognitiveservices_qnamaker SUBDIR += rubygem-azure_cognitiveservices_qnamakerruntime SUBDIR += rubygem-azure_cognitiveservices_spellcheck SUBDIR += rubygem-azure_cognitiveservices_textanalytics SUBDIR += rubygem-azure_cognitiveservices_videosearch SUBDIR += rubygem-azure_cognitiveservices_visualsearch SUBDIR += rubygem-azure_cognitiveservices_websearch SUBDIR += rubygem-azure_event_grid SUBDIR += rubygem-azure_graph_rbac SUBDIR += rubygem-azure_key_vault SUBDIR += rubygem-azure_mgmt_adhybridhealth_service SUBDIR += rubygem-azure_mgmt_advisor SUBDIR += rubygem-azure_mgmt_alerts_management SUBDIR += rubygem-azure_mgmt_analysis_services SUBDIR += rubygem-azure_mgmt_api_management SUBDIR += rubygem-azure_mgmt_appconfiguration SUBDIR += rubygem-azure_mgmt_attestation SUBDIR += rubygem-azure_mgmt_authorization SUBDIR += rubygem-azure_mgmt_automanage SUBDIR += rubygem-azure_mgmt_automation SUBDIR += rubygem-azure_mgmt_azurestack SUBDIR += rubygem-azure_mgmt_azurestack_hci SUBDIR += rubygem-azure_mgmt_batch SUBDIR += rubygem-azure_mgmt_batchai SUBDIR += rubygem-azure_mgmt_billing SUBDIR += rubygem-azure_mgmt_bot_service SUBDIR += rubygem-azure_mgmt_cdn SUBDIR += rubygem-azure_mgmt_cognitive_services SUBDIR += rubygem-azure_mgmt_commerce SUBDIR += rubygem-azure_mgmt_compute SUBDIR += rubygem-azure_mgmt_consumption SUBDIR += rubygem-azure_mgmt_container_instance SUBDIR += rubygem-azure_mgmt_container_registry SUBDIR += rubygem-azure_mgmt_container_service SUBDIR += rubygem-azure_mgmt_cosmosdb SUBDIR += rubygem-azure_mgmt_cost_management SUBDIR += rubygem-azure_mgmt_customer_insights SUBDIR += rubygem-azure_mgmt_data_factory SUBDIR += rubygem-azure_mgmt_data_migration SUBDIR += rubygem-azure_mgmt_databox SUBDIR += rubygem-azure_mgmt_datalake_analytics SUBDIR += rubygem-azure_mgmt_datalake_store SUBDIR += rubygem-azure_mgmt_datashare SUBDIR += rubygem-azure_mgmt_deployment_manager SUBDIR += rubygem-azure_mgmt_dev_spaces SUBDIR += rubygem-azure_mgmt_devtestlabs SUBDIR += rubygem-azure_mgmt_digitaltwins SUBDIR += rubygem-azure_mgmt_dns SUBDIR += rubygem-azure_mgmt_edgegateway SUBDIR += rubygem-azure_mgmt_event_grid SUBDIR += rubygem-azure_mgmt_event_hub SUBDIR += rubygem-azure_mgmt_features SUBDIR += rubygem-azure_mgmt_hanaonazure SUBDIR += rubygem-azure_mgmt_hdinsight SUBDIR += rubygem-azure_mgmt_hybrid_compute SUBDIR += rubygem-azure_mgmt_import_export SUBDIR += rubygem-azure_mgmt_iot_central SUBDIR += rubygem-azure_mgmt_iot_hub SUBDIR += rubygem-azure_mgmt_key_vault SUBDIR += rubygem-azure_mgmt_kubernetes_configuration SUBDIR += rubygem-azure_mgmt_kusto SUBDIR += rubygem-azure_mgmt_labservices SUBDIR += rubygem-azure_mgmt_links SUBDIR += rubygem-azure_mgmt_locks SUBDIR += rubygem-azure_mgmt_logic SUBDIR += rubygem-azure_mgmt_machine_learning SUBDIR += rubygem-azure_mgmt_machine_learning_services SUBDIR += rubygem-azure_mgmt_maintenance SUBDIR += rubygem-azure_mgmt_managed_applications SUBDIR += rubygem-azure_mgmt_mariadb SUBDIR += rubygem-azure_mgmt_marketplace_ordering SUBDIR += rubygem-azure_mgmt_media_services SUBDIR += rubygem-azure_mgmt_migrate SUBDIR += rubygem-azure_mgmt_mixedreality SUBDIR += rubygem-azure_mgmt_monitor SUBDIR += rubygem-azure_mgmt_msi SUBDIR += rubygem-azure_mgmt_mysql SUBDIR += rubygem-azure_mgmt_netapp SUBDIR += rubygem-azure_mgmt_network SUBDIR += rubygem-azure_mgmt_notification_hubs SUBDIR += rubygem-azure_mgmt_operational_insights SUBDIR += rubygem-azure_mgmt_operations_management SUBDIR += rubygem-azure_mgmt_peering SUBDIR += rubygem-azure_mgmt_policy SUBDIR += rubygem-azure_mgmt_policy_insights SUBDIR += rubygem-azure_mgmt_portal SUBDIR += rubygem-azure_mgmt_postgresql SUBDIR += rubygem-azure_mgmt_powerbi_dedicated SUBDIR += rubygem-azure_mgmt_powerbi_embedded SUBDIR += rubygem-azure_mgmt_privatedns SUBDIR += rubygem-azure_mgmt_recovery_services SUBDIR += rubygem-azure_mgmt_recovery_services_backup SUBDIR += rubygem-azure_mgmt_recovery_services_site_recovery SUBDIR += rubygem-azure_mgmt_redis SUBDIR += rubygem-azure_mgmt_relay SUBDIR += rubygem-azure_mgmt_reservations SUBDIR += rubygem-azure_mgmt_resource_health SUBDIR += rubygem-azure_mgmt_resourcegraph SUBDIR += rubygem-azure_mgmt_resources SUBDIR += rubygem-azure_mgmt_resources_management SUBDIR += rubygem-azure_mgmt_scheduler SUBDIR += rubygem-azure_mgmt_search SUBDIR += rubygem-azure_mgmt_security SUBDIR += rubygem-azure_mgmt_serialconsole SUBDIR += rubygem-azure_mgmt_service_bus SUBDIR += rubygem-azure_mgmt_service_fabric SUBDIR += rubygem-azure_mgmt_signalr SUBDIR += rubygem-azure_mgmt_sql SUBDIR += rubygem-azure_mgmt_sqlvirtualmachine SUBDIR += rubygem-azure_mgmt_stor_simple8000_series SUBDIR += rubygem-azure_mgmt_storage SUBDIR += rubygem-azure_mgmt_storagecache SUBDIR += rubygem-azure_mgmt_storagesync SUBDIR += rubygem-azure_mgmt_stream_analytics SUBDIR += rubygem-azure_mgmt_subscriptions SUBDIR += rubygem-azure_mgmt_support SUBDIR += rubygem-azure_mgmt_synapse SUBDIR += rubygem-azure_mgmt_time_series_insights SUBDIR += rubygem-azure_mgmt_traffic_manager SUBDIR += rubygem-azure_mgmt_vmware_cloudsimple SUBDIR += rubygem-azure_mgmt_web SUBDIR += rubygem-azure_sdk SUBDIR += rubygem-azure_service_fabric SUBDIR += rubygem-backports SUBDIR += rubygem-bacon SUBDIR += rubygem-baf SUBDIR += rubygem-batch-loader SUBDIR += rubygem-bcp47_spec SUBDIR += rubygem-benelux SUBDIR += rubygem-better_html-rails61 SUBDIR += rubygem-bin_utils SUBDIR += rubygem-bindata SUBDIR += rubygem-bindex SUBDIR += rubygem-binding_of_caller SUBDIR += rubygem-bit-struct SUBDIR += rubygem-blankslate SUBDIR += rubygem-blockenspiel SUBDIR += rubygem-bones SUBDIR += rubygem-bootsnap SUBDIR += rubygem-bootsnap117 SUBDIR += rubygem-bootstrap_form SUBDIR += rubygem-bson SUBDIR += rubygem-buftok SUBDIR += rubygem-bugspots SUBDIR += rubygem-builder SUBDIR += rubygem-byebug SUBDIR += rubygem-c21e SUBDIR += rubygem-cabin SUBDIR += rubygem-caesars SUBDIR += rubygem-cairo-gobject SUBDIR += rubygem-capybara SUBDIR += rubygem-capybara-screenshot SUBDIR += rubygem-cbor SUBDIR += rubygem-celluloid SUBDIR += rubygem-celluloid-essentials SUBDIR += rubygem-celluloid-extras SUBDIR += rubygem-celluloid-fsm SUBDIR += rubygem-celluloid-io SUBDIR += rubygem-celluloid-pool SUBDIR += rubygem-celluloid-supervision SUBDIR += rubygem-cf-uaa-lib SUBDIR += rubygem-cheffish SUBDIR += rubygem-childprocess SUBDIR += rubygem-childprocess3 SUBDIR += rubygem-childprocess40 SUBDIR += rubygem-chronic SUBDIR += rubygem-chronic_duration SUBDIR += rubygem-claide SUBDIR += rubygem-claide-plugins SUBDIR += rubygem-clamp SUBDIR += rubygem-classifier SUBDIR += rubygem-classifier-reborn SUBDIR += rubygem-climate_control SUBDIR += rubygem-clio SUBDIR += rubygem-cliprompt SUBDIR += rubygem-cloudfiles SUBDIR += rubygem-cms_scanner SUBDIR += rubygem-cocaine SUBDIR += rubygem-cocoon SUBDIR += rubygem-coercible SUBDIR += rubygem-coffee-rails-rails5 SUBDIR += rubygem-coffee-rails-rails50 SUBDIR += rubygem-coffee-rails-rails52 SUBDIR += rubygem-coffee-rails4 SUBDIR += rubygem-coffee-rails41 SUBDIR += rubygem-coffee-script SUBDIR += rubygem-coffee-script-source SUBDIR += rubygem-colorize SUBDIR += rubygem-columnize SUBDIR += rubygem-commander SUBDIR += rubygem-concurrent-ruby SUBDIR += rubygem-concurrent-ruby-edge SUBDIR += rubygem-concurrent-ruby-edge06 SUBDIR += rubygem-concurrent-ruby-ext SUBDIR += rubygem-concurrent-ruby11 SUBDIR += rubygem-configatron SUBDIR += rubygem-configstruct SUBDIR += rubygem-configuration SUBDIR += rubygem-console SUBDIR += rubygem-contracts SUBDIR += rubygem-contracts016 SUBDIR += rubygem-cookbook-omnifetch SUBDIR += rubygem-cool.io SUBDIR += rubygem-corefines SUBDIR += rubygem-corefoundation SUBDIR += rubygem-cork SUBDIR += rubygem-countries SUBDIR += rubygem-cow_proxy SUBDIR += rubygem-crack SUBDIR += rubygem-cri SUBDIR += rubygem-csv SUBDIR += rubygem-cucumber SUBDIR += rubygem-cucumber-ci-environment SUBDIR += rubygem-cucumber-core SUBDIR += rubygem-cucumber-core12 SUBDIR += rubygem-cucumber-cucumber-expressions SUBDIR += rubygem-cucumber-messages SUBDIR += rubygem-cucumber-messages22 SUBDIR += rubygem-cucumber-messages23 SUBDIR += rubygem-cucumber-rails SUBDIR += rubygem-cucumber-tag-expressions SUBDIR += rubygem-cucumber-tag-expressions5 SUBDIR += rubygem-cucumber-wire SUBDIR += rubygem-curses SUBDIR += rubygem-cyoi SUBDIR += rubygem-daemon_controller SUBDIR += rubygem-daemons SUBDIR += rubygem-danger SUBDIR += rubygem-danger-gitlab SUBDIR += rubygem-datadog-ci SUBDIR += rubygem-date SUBDIR += rubygem-ddmemoize SUBDIR += rubygem-ddmetrics SUBDIR += rubygem-ddplugin SUBDIR += rubygem-ddtrace SUBDIR += rubygem-deb_version SUBDIR += rubygem-debase-ruby_core_source SUBDIR += rubygem-debug SUBDIR += rubygem-debug_inspector SUBDIR += rubygem-debugger-linecache SUBDIR += rubygem-debugger-ruby_core_source SUBDIR += rubygem-debugger-xml SUBDIR += rubygem-declarative SUBDIR += rubygem-declarative-option SUBDIR += rubygem-deep_merge SUBDIR += rubygem-deep_test SUBDIR += rubygem-deface SUBDIR += rubygem-default_value_for SUBDIR += rubygem-delayed_job SUBDIR += rubygem-delayer SUBDIR += rubygem-delayer-deferred SUBDIR += rubygem-delegate SUBDIR += rubygem-deprecated SUBDIR += rubygem-deprecated2 SUBDIR += rubygem-descendants_tracker SUBDIR += rubygem-device_detector SUBDIR += rubygem-devise SUBDIR += rubygem-devise-rails5 SUBDIR += rubygem-devise-rails52 SUBDIR += rubygem-devise-rails60 SUBDIR += rubygem-devise-rails61 SUBDIR += rubygem-devise-rails70 SUBDIR += rubygem-did_you_mean SUBDIR += rubygem-dig_rb SUBDIR += rubygem-directory_watcher SUBDIR += rubygem-ditz SUBDIR += rubygem-diva SUBDIR += rubygem-docile SUBDIR += rubygem-docopt SUBDIR += rubygem-drb SUBDIR += rubygem-dry-cli SUBDIR += rubygem-dry-configurable SUBDIR += rubygem-dry-container SUBDIR += rubygem-dry-core SUBDIR += rubygem-dry-equalizer SUBDIR += rubygem-dry-inflector SUBDIR += rubygem-dry-logic SUBDIR += rubygem-dry-types SUBDIR += rubygem-drydock SUBDIR += rubygem-dynflow SUBDIR += rubygem-e2mmap SUBDIR += rubygem-ecma-re-validator SUBDIR += rubygem-edavis10-object_daddy SUBDIR += rubygem-elif SUBDIR += rubygem-emoji_regex SUBDIR += rubygem-english SUBDIR += rubygem-enumerize SUBDIR += rubygem-equalizer SUBDIR += rubygem-equatable SUBDIR += rubygem-erb SUBDIR += rubygem-errand SUBDIR += rubygem-error_highlight SUBDIR += rubygem-et-orbi SUBDIR += rubygem-etc SUBDIR += rubygem-event_emitter SUBDIR += rubygem-event_stream_parser SUBDIR += rubygem-event_stream_parser0 SUBDIR += rubygem-eventmachine SUBDIR += rubygem-excon SUBDIR += rubygem-execjs SUBDIR += rubygem-extlib SUBDIR += rubygem-extpp SUBDIR += rubygem-extras SUBDIR += rubygem-facets SUBDIR += rubygem-faker SUBDIR += rubygem-faraday-cookie_jar SUBDIR += rubygem-faraday-excon SUBDIR += rubygem-faraday-excon1 SUBDIR += rubygem-faraday_middleware-aws-sigv4 SUBDIR += rubygem-faraday_middleware-aws-sigv403 SUBDIR += rubygem-faraday_middleware-multi_json SUBDIR += rubygem-fast-stemmer SUBDIR += rubygem-fast_blank SUBDIR += rubygem-fast_gettext SUBDIR += rubygem-fast_stack SUBDIR += rubygem-fast_xor SUBDIR += rubygem-fastercsv SUBDIR += rubygem-fastri SUBDIR += rubygem-fattr SUBDIR += rubygem-fcntl SUBDIR += rubygem-ffaker SUBDIR += rubygem-ffi SUBDIR += rubygem-ffi-compiler SUBDIR += rubygem-ffi-libarchive SUBDIR += rubygem-ffi-win32-extensions SUBDIR += rubygem-ffi-yajl SUBDIR += rubygem-fiber-annotation SUBDIR += rubygem-fiber-local SUBDIR += rubygem-fiddle SUBDIR += rubygem-file-tail SUBDIR += rubygem-filesize SUBDIR += rubygem-fileutils SUBDIR += rubygem-find SUBDIR += rubygem-flexmock SUBDIR += rubygem-flipper SUBDIR += rubygem-flipper-active_support_cache_store SUBDIR += rubygem-flipper-active_support_cache_store-rails61 SUBDIR += rubygem-flipper-active_support_cache_store-rails70 SUBDIR += rubygem-flipper-ui SUBDIR += rubygem-flipper025 SUBDIR += rubygem-flipper026 SUBDIR += rubygem-fluent-logger SUBDIR += rubygem-fog SUBDIR += rubygem-fog-core SUBDIR += rubygem-fog-core1 SUBDIR += rubygem-fog-core210 SUBDIR += rubygem-fog-core220 SUBDIR += rubygem-fog-json SUBDIR += rubygem-font-awesome-rails SUBDIR += rubygem-font-awesome-rails-rails5 SUBDIR += rubygem-font-awesome-rails-rails52 SUBDIR += rubygem-font-awesome-rails-rails60 SUBDIR += rubygem-foreigner SUBDIR += rubygem-foreman SUBDIR += rubygem-formatador SUBDIR += rubygem-forwardable SUBDIR += rubygem-forwardable-extended SUBDIR += rubygem-fugit SUBDIR += rubygem-fugit18 SUBDIR += rubygem-fuubar SUBDIR += rubygem-fuzzy_match SUBDIR += rubygem-gapic-common SUBDIR += rubygem-gdata SUBDIR += rubygem-gem-compare SUBDIR += rubygem-gem_plugin SUBDIR += rubygem-gemcutter SUBDIR += rubygem-gemdiff SUBDIR += rubygem-gemnasium-parser SUBDIR += rubygem-gems SUBDIR += rubygem-generator SUBDIR += rubygem-generator_spec-rails4 SUBDIR += rubygem-generator_spec-rails5 SUBDIR += rubygem-georuby SUBDIR += rubygem-get_process_mem SUBDIR += rubygem-getopt SUBDIR += rubygem-getoptlong SUBDIR += rubygem-gettext SUBDIR += rubygem-gettext-setup SUBDIR += rubygem-gettext_i18n_rails SUBDIR += rubygem-gettext_i18n_rails111 SUBDIR += rubygem-gettext_i18n_rails_js-rails5 SUBDIR += rubygem-gettext_i18n_rails_js-rails50 SUBDIR += rubygem-gettext_i18n_rails_js-rails52 SUBDIR += rubygem-gettext_i18n_rails_js-rails61 SUBDIR += rubygem-gettext_i18n_rails_js-rails70 SUBDIR += rubygem-gh SUBDIR += rubygem-gibbler SUBDIR += rubygem-gio2 SUBDIR += rubygem-git SUBDIR += rubygem-git-version-bump SUBDIR += rubygem-github_api SUBDIR += rubygem-gitlab SUBDIR += rubygem-gitlab-chronic SUBDIR += rubygem-gitlab-dangerfiles SUBDIR += rubygem-gitlab-experiment SUBDIR += rubygem-gitlab-labkit SUBDIR += rubygem-gitlab-license SUBDIR += rubygem-gitlab-pygments.rb SUBDIR += rubygem-gitlab-sdk SUBDIR += rubygem-gitlab_chronic_duration SUBDIR += rubygem-gitlab_git SUBDIR += rubygem-gitlab_meta SUBDIR += rubygem-glib2 SUBDIR += rubygem-gobject-introspection SUBDIR += rubygem-google-api-client SUBDIR += rubygem-google-apis-androidpublisher_v3 SUBDIR += rubygem-google-apis-androidpublisher_v3034 SUBDIR += rubygem-google-apis-bigquery_v2 SUBDIR += rubygem-google-apis-cloudbilling_v1 SUBDIR += rubygem-google-apis-cloudresourcemanager_v1 SUBDIR += rubygem-google-apis-cloudresourcemanager_v2 SUBDIR += rubygem-google-apis-cloudresourcemanager_v3 SUBDIR += rubygem-google-apis-compute_v1 SUBDIR += rubygem-google-apis-compute_v1_057 SUBDIR += rubygem-google-apis-container_v1 SUBDIR += rubygem-google-apis-container_v1beta1 SUBDIR += rubygem-google-apis-core SUBDIR += rubygem-google-apis-core011 SUBDIR += rubygem-google-apis-discovery_v1 SUBDIR += rubygem-google-apis-drive_v3 SUBDIR += rubygem-google-apis-generator SUBDIR += rubygem-google-apis-iam_v1 SUBDIR += rubygem-google-apis-iam_v2 SUBDIR += rubygem-google-apis-iam_v2beta SUBDIR += rubygem-google-apis-iamcredentials_v1 SUBDIR += rubygem-google-apis-monitoring_v3 SUBDIR += rubygem-google-apis-playcustomapp_v1 SUBDIR += rubygem-google-apis-pubsub_v1 SUBDIR += rubygem-google-apis-serviceusage_v1 SUBDIR += rubygem-google-apis-sheets_v4 SUBDIR += rubygem-google-apis-sqladmin_v1beta4 SUBDIR += rubygem-google-apis-sqladmin_v1beta4_041 SUBDIR += rubygem-google-apis-storage_v1 SUBDIR += rubygem-google-cloud-common SUBDIR += rubygem-google-gax SUBDIR += rubygem-google-iam-credentials SUBDIR += rubygem-google-iam-credentials-v1 SUBDIR += rubygem-google-iam-v1 SUBDIR += rubygem-google-protobuf SUBDIR += rubygem-googleapis-common-protos SUBDIR += rubygem-googleapis-common-protos-types SUBDIR += rubygem-graf SUBDIR += rubygem-grape SUBDIR += rubygem-grape-entity SUBDIR += rubygem-grape-path-helpers SUBDIR += rubygem-grape-route-helpers SUBDIR += rubygem-grape-swagger SUBDIR += rubygem-grape-swagger-entity SUBDIR += rubygem-grape-swagger16 SUBDIR += rubygem-grape1 SUBDIR += rubygem-grape17 SUBDIR += rubygem-grape_logging SUBDIR += rubygem-graphiql-rails SUBDIR += rubygem-graphlient SUBDIR += rubygem-graphql SUBDIR += rubygem-graphql-client SUBDIR += rubygem-graphql-docs SUBDIR += rubygem-grpc-google-iam-v1 SUBDIR += rubygem-guess_html_encoding SUBDIR += rubygem-gyoku SUBDIR += rubygem-hamster SUBDIR += rubygem-hana SUBDIR += rubygem-hashdiff SUBDIR += rubygem-hashery SUBDIR += rubygem-hashie SUBDIR += rubygem-hashie-forbidden_attributes SUBDIR += rubygem-hashie4 SUBDIR += rubygem-health_check SUBDIR += rubygem-health_check-rails70 SUBDIR += rubygem-heapy SUBDIR += rubygem-highline SUBDIR += rubygem-highline1 SUBDIR += rubygem-highline2 SUBDIR += rubygem-hike SUBDIR += rubygem-hike1 SUBDIR += rubygem-hitimes SUBDIR += rubygem-hocon SUBDIR += rubygem-hoe SUBDIR += rubygem-holidays SUBDIR += rubygem-http_accept_language SUBDIR += rubygem-i18n SUBDIR += rubygem-i18n-tasks-rails61 SUBDIR += rubygem-i18n_data SUBDIR += rubygem-icalendar SUBDIR += rubygem-ice_cube SUBDIR += rubygem-ice_nine SUBDIR += rubygem-inflecto SUBDIR += rubygem-iniparse SUBDIR += rubygem-insist SUBDIR += rubygem-inspec-core SUBDIR += rubygem-instance_storage SUBDIR += rubygem-interact SUBDIR += rubygem-io-console SUBDIR += rubygem-io-event SUBDIR += rubygem-io-like SUBDIR += rubygem-io-nonblock SUBDIR += rubygem-io-wait SUBDIR += rubygem-io-wait01 SUBDIR += rubygem-iobuffer SUBDIR += rubygem-iostruct SUBDIR += rubygem-ipynbdiff SUBDIR += rubygem-irb SUBDIR += rubygem-iso8601 SUBDIR += rubygem-jaeger-client SUBDIR += rubygem-jammit SUBDIR += rubygem-jaro_winkler SUBDIR += rubygem-jasmine-core SUBDIR += rubygem-jbuilder SUBDIR += rubygem-jbuilder-rails5 SUBDIR += rubygem-jbuilder-rails50 SUBDIR += rubygem-jbuilder-rails52 SUBDIR += rubygem-jbuilder-rails60 SUBDIR += rubygem-jbuilder-rails61 SUBDIR += rubygem-jbuilder-rails71 SUBDIR += rubygem-jekyll-coffeescript SUBDIR += rubygem-jenkins_api_client SUBDIR += rubygem-jeweler SUBDIR += rubygem-jira-ruby SUBDIR += rubygem-jira-ruby21 SUBDIR += rubygem-jmespath SUBDIR += rubygem-jquery-ui-themes SUBDIR += rubygem-jruby-jars SUBDIR += rubygem-json SUBDIR += rubygem-json-canonicalization SUBDIR += rubygem-json-schema SUBDIR += rubygem-json1 SUBDIR += rubygem-json26 SUBDIR += rubygem-json_pure SUBDIR += rubygem-json_pure1 SUBDIR += rubygem-json_schema SUBDIR += rubygem-json_schemer SUBDIR += rubygem-jsonapi-renderer SUBDIR += rubygem-jsonpath SUBDIR += rubygem-kafo SUBDIR += rubygem-kafo_parsers SUBDIR += rubygem-kafo_wizards SUBDIR += rubygem-kgio SUBDIR += rubygem-kt-paperclip-rails61 SUBDIR += rubygem-language_server-protocol SUBDIR += rubygem-launchy SUBDIR += rubygem-lazy_priority_queue SUBDIR += rubygem-libdatadog SUBDIR += rubygem-libddprof SUBDIR += rubygem-libddwaf SUBDIR += rubygem-librarian SUBDIR += rubygem-librarianp SUBDIR += rubygem-libyajl2 SUBDIR += rubygem-license_finder SUBDIR += rubygem-licensee SUBDIR += rubygem-listen SUBDIR += rubygem-little-plugger SUBDIR += rubygem-local_time SUBDIR += rubygem-local_time-rails5 SUBDIR += rubygem-locale SUBDIR += rubygem-lockfile SUBDIR += rubygem-logger SUBDIR += rubygem-logging SUBDIR += rubygem-logster SUBDIR += rubygem-loquacious SUBDIR += rubygem-lrama SUBDIR += rubygem-lru_redux SUBDIR += rubygem-lumberjack SUBDIR += rubygem-main SUBDIR += rubygem-makara61 SUBDIR += rubygem-manpages SUBDIR += rubygem-map SUBDIR += rubygem-marcel SUBDIR += rubygem-memo_wise SUBDIR += rubygem-memoist SUBDIR += rubygem-memoizable SUBDIR += rubygem-memoize SUBDIR += rubygem-memory_profiler SUBDIR += rubygem-mercenary SUBDIR += rubygem-message_bus SUBDIR += rubygem-metaclass SUBDIR += rubygem-metaid SUBDIR += rubygem-metasm SUBDIR += rubygem-method_source SUBDIR += rubygem-micromachine SUBDIR += rubygem-middleware SUBDIR += rubygem-mini_histogram SUBDIR += rubygem-mini_portile2 SUBDIR += rubygem-mini_portile2-25 SUBDIR += rubygem-minitest SUBDIR += rubygem-mixlib-archive SUBDIR += rubygem-mixlib-authentication SUBDIR += rubygem-mixlib-cli SUBDIR += rubygem-mixlib-config SUBDIR += rubygem-mixlib-install SUBDIR += rubygem-mixlib-log SUBDIR += rubygem-mixlib-shellout SUBDIR += rubygem-mixlib-versioning SUBDIR += rubygem-mize SUBDIR += rubygem-mkrf SUBDIR += rubygem-mmap2 SUBDIR += rubygem-mocha SUBDIR += rubygem-molinillo SUBDIR += rubygem-moneta SUBDIR += rubygem-mongo SUBDIR += rubygem-mono_logger SUBDIR += rubygem-ms_rest SUBDIR += rubygem-ms_rest_azure SUBDIR += rubygem-msgpack SUBDIR += rubygem-mspec SUBDIR += rubygem-multi_json SUBDIR += rubygem-multi_json114 SUBDIR += rubygem-multi_test SUBDIR += rubygem-murmurhash3 SUBDIR += rubygem-mustache SUBDIR += rubygem-mustache-sinatra SUBDIR += rubygem-mustermann SUBDIR += rubygem-mustermann-grape SUBDIR += rubygem-mustermann-grape10 SUBDIR += rubygem-mutex_m SUBDIR += rubygem-mutter SUBDIR += rubygem-nakayoshi_fork SUBDIR += rubygem-nap SUBDIR += rubygem-native-package-installer SUBDIR += rubygem-naught SUBDIR += rubygem-necromancer SUBDIR += rubygem-needle SUBDIR += rubygem-nenv SUBDIR += rubygem-nesty SUBDIR += rubygem-netaddr SUBDIR += rubygem-newrelic-grape SUBDIR += rubygem-newrelic_rpm SUBDIR += rubygem-nice-ffi SUBDIR += rubygem-nio4r SUBDIR += rubygem-nori SUBDIR += rubygem-notiffany SUBDIR += rubygem-notify SUBDIR += rubygem-nprogress-rails SUBDIR += rubygem-nsa-rails5 SUBDIR += rubygem-nsa-rails61 SUBDIR += rubygem-numerizer SUBDIR += rubygem-observer SUBDIR += rubygem-oci SUBDIR += rubygem-octopress-hooks SUBDIR += rubygem-oj SUBDIR += rubygem-oj-introspect SUBDIR += rubygem-oj313 SUBDIR += rubygem-omniauth_crowd SUBDIR += rubygem-omnibus SUBDIR += rubygem-open3 SUBDIR += rubygem-open3_backport SUBDIR += rubygem-open4 SUBDIR += rubygem-opentelemetry-api SUBDIR += rubygem-opentelemetry-common SUBDIR += rubygem-opentelemetry-instrumentation-base SUBDIR += rubygem-opentelemetry-instrumentation-rack SUBDIR += rubygem-opentelemetry-registry SUBDIR += rubygem-opentelemetry-sdk SUBDIR += rubygem-opentelemetry-semantic_conventions SUBDIR += rubygem-opentracing SUBDIR += rubygem-opt_parse_validator SUBDIR += rubygem-optimist SUBDIR += rubygem-optparse SUBDIR += rubygem-orm_adapter SUBDIR += rubygem-os SUBDIR += rubygem-ostruct SUBDIR += rubygem-p4ruby SUBDIR += rubygem-paint SUBDIR += rubygem-pairing_heap SUBDIR += rubygem-paperclip-rails5 SUBDIR += rubygem-paperclip-rails50 SUBDIR += rubygem-parser SUBDIR += rubygem-pastel SUBDIR += rubygem-patch_finder SUBDIR += rubygem-pathname SUBDIR += rubygem-pathspec SUBDIR += rubygem-pathutil SUBDIR += rubygem-pdk SUBDIR += rubygem-pedump SUBDIR += rubygem-peek SUBDIR += rubygem-peek-gc-rails52 SUBDIR += rubygem-peek-host SUBDIR += rubygem-peek-performance_bar SUBDIR += rubygem-peek-rails4 SUBDIR += rubygem-peek-rails52 SUBDIR += rubygem-peek-rails60 SUBDIR += rubygem-peek-rails61 SUBDIR += rubygem-peek-rails70 SUBDIR += rubygem-peek-rblineprof-rails52 SUBDIR += rubygem-peek-redis-rails52 SUBDIR += rubygem-pkg-config SUBDIR += rubygem-platform SUBDIR += rubygem-pleaserun SUBDIR += rubygem-plist SUBDIR += rubygem-pluggaloid SUBDIR += rubygem-polyamorous SUBDIR += rubygem-polyglot SUBDIR += rubygem-popen4 SUBDIR += rubygem-posix-spawn SUBDIR += rubygem-power_assert SUBDIR += rubygem-powerbar SUBDIR += rubygem-powerpack SUBDIR += rubygem-pp SUBDIR += rubygem-pqueue SUBDIR += rubygem-prettier_print SUBDIR += rubygem-prettyprint SUBDIR += rubygem-profile SUBDIR += rubygem-progressbar SUBDIR += rubygem-prometheus-client-mmap SUBDIR += rubygem-protected_attributes SUBDIR += rubygem-protobuf-cucumber SUBDIR += rubygem-protocol SUBDIR += rubygem-pry SUBDIR += rubygem-pry-byebug SUBDIR += rubygem-pry-rails SUBDIR += rubygem-pry-remote SUBDIR += rubygem-pry-remote-em SUBDIR += rubygem-pstore SUBDIR += rubygem-ptreloaded SUBDIR += rubygem-puppet-resource_api SUBDIR += rubygem-pygments.rb SUBDIR += rubygem-que SUBDIR += rubygem-que-scheduler SUBDIR += rubygem-r18n-core SUBDIR += rubygem-r18n-desktop SUBDIR += rubygem-r18n-rails SUBDIR += rubygem-r18n-rails-api SUBDIR += rubygem-rabl SUBDIR += rubygem-rabl-rails50 SUBDIR += rubygem-racc SUBDIR += rubygem-rack-mini-profiler SUBDIR += rubygem-rack-raw-upload SUBDIR += rubygem-rails-deprecated_sanitizer SUBDIR += rubygem-rails-deprecated_sanitizer-rails5 SUBDIR += rubygem-rails-deprecated_sanitizer-rails50 SUBDIR += rubygem-rails-i18n-rails5 SUBDIR += rubygem-rails-i18n-rails50 SUBDIR += rubygem-rails-i18n-rails52 SUBDIR += rubygem-rails-i18n-rails60 SUBDIR += rubygem-rails-i18n-rails61 SUBDIR += rubygem-rails-i18n-rails70 SUBDIR += rubygem-rails-i18n-rails71 SUBDIR += rubygem-rails-observers SUBDIR += rubygem-rainbow SUBDIR += rubygem-rake SUBDIR += rubygem-rake-compiler SUBDIR += rubygem-rake-compiler-dock SUBDIR += rubygem-rake-contrib SUBDIR += rubygem-ransack SUBDIR += rubygem-rapt SUBDIR += rubygem-rash SUBDIR += rubygem-rash_alt SUBDIR += rubygem-rb-fsevent SUBDIR += rubygem-rb-inotify SUBDIR += rubygem-rb-kqueue SUBDIR += rubygem-rblineprof SUBDIR += rubygem-rbs SUBDIR += rubygem-rbs_json_schema SUBDIR += rubygem-rbtrace SUBDIR += rubygem-rbtree SUBDIR += rubygem-rdoc SUBDIR += rubygem-re2 SUBDIR += rubygem-react-rails SUBDIR += rubygem-react-rails-rails5 SUBDIR += rubygem-readline SUBDIR += rubygem-readline-ext SUBDIR += rubygem-readwritesettings SUBDIR += rubygem-recaptcha SUBDIR += rubygem-recursive-open-struct SUBDIR += rubygem-red-datasets SUBDIR += rubygem-redis-activesupport SUBDIR += rubygem-redis-activesupport-rails5 SUBDIR += rubygem-redis-activesupport-rails50 SUBDIR += rubygem-redis-activesupport-rails52 SUBDIR += rubygem-redis-activesupport-rails60 SUBDIR += rubygem-redis-activesupport-rails61 SUBDIR += rubygem-redis-store SUBDIR += rubygem-redlock SUBDIR += rubygem-redlock1 SUBDIR += rubygem-redmine_plugin_support SUBDIR += rubygem-reentrant_flock SUBDIR += rubygem-ref SUBDIR += rubygem-reline SUBDIR += rubygem-request_store SUBDIR += rubygem-request_store14 SUBDIR += rubygem-request_store15 SUBDIR += rubygem-require_all SUBDIR += rubygem-resque SUBDIR += rubygem-resque-scheduler SUBDIR += rubygem-retriable SUBDIR += rubygem-retryable SUBDIR += rubygem-rgen SUBDIR += rubygem-rgl SUBDIR += rubygem-rice SUBDIR += rubygem-rinda SUBDIR += rubygem-rodzilla SUBDIR += rubygem-rotp SUBDIR += rubygem-rr SUBDIR += rubygem-rrd-ffi SUBDIR += rubygem-rscm SUBDIR += rubygem-rsec SUBDIR += rubygem-rspec SUBDIR += rubygem-rspec-core SUBDIR += rubygem-rspec-expectations SUBDIR += rubygem-rspec-its SUBDIR += rubygem-rspec-logsplit SUBDIR += rubygem-rspec-mocks SUBDIR += rubygem-rspec-rails SUBDIR += rubygem-rspec-support SUBDIR += rubygem-rspec_junit_formatter SUBDIR += rubygem-rubocop SUBDIR += rubygem-rubocop-ast SUBDIR += rubygem-rubocop-capybara SUBDIR += rubygem-rubocop-factory_bot SUBDIR += rubygem-rubocop-performance SUBDIR += rubygem-rubocop-rails SUBDIR += rubygem-rubocop-rake SUBDIR += rubygem-rubocop-rspec SUBDIR += rubygem-ruby-atmos-pure SUBDIR += rubygem-ruby-bugzilla SUBDIR += rubygem-ruby-enum SUBDIR += rubygem-ruby-filemagic SUBDIR += rubygem-ruby-fogbugz SUBDIR += rubygem-ruby-libvirt SUBDIR += rubygem-ruby-lsp SUBDIR += rubygem-ruby-lsp-rails SUBDIR += rubygem-ruby-lsp-rspec SUBDIR += rubygem-ruby-macho SUBDIR += rubygem-ruby-magic SUBDIR += rubygem-ruby-ole SUBDIR += rubygem-ruby-prof SUBDIR += rubygem-ruby-progressbar SUBDIR += rubygem-ruby-statistics SUBDIR += rubygem-ruby2_keywords SUBDIR += rubygem-ruby2ruby SUBDIR += rubygem-ruby_dep SUBDIR += rubygem-ruby_memcheck SUBDIR += rubygem-ruby_parser SUBDIR += rubygem-rubygems-mirror SUBDIR += rubygem-rubygems-tasks SUBDIR += rubygem-rubygems-test SUBDIR += rubygem-rubyinline SUBDIR += rubygem-rubyinlineaccel SUBDIR += rubygem-rubytree SUBDIR += rubygem-rufus-scheduler SUBDIR += rubygem-rugged SUBDIR += rubygem-runt SUBDIR += rubygem-ruport SUBDIR += rubygem-safe_yaml SUBDIR += rubygem-scanf SUBDIR += rubygem-schash SUBDIR += rubygem-scientist SUBDIR += rubygem-sd_notify SUBDIR += rubygem-sdoc SUBDIR += rubygem-semantic_puppet SUBDIR += rubygem-semantic_range SUBDIR += rubygem-semi_semantic SUBDIR += rubygem-semver2 SUBDIR += rubygem-semver_dialects SUBDIR += rubygem-semver_dialects12 SUBDIR += rubygem-semverse SUBDIR += rubygem-sentry-rails SUBDIR += rubygem-sentry-raven SUBDIR += rubygem-sentry-ruby SUBDIR += rubygem-sentry-ruby-core SUBDIR += rubygem-sentry-sidekiq SUBDIR += rubygem-sequel SUBDIR += rubygem-server_sent_events SUBDIR += rubygem-set SUBDIR += rubygem-settingslogic SUBDIR += rubygem-sexp_processor SUBDIR += rubygem-shell SUBDIR += rubygem-shoulda SUBDIR += rubygem-shoulda-context SUBDIR += rubygem-shoulda-matchers SUBDIR += rubygem-sidekiq SUBDIR += rubygem-sidekiq-bulk SUBDIR += rubygem-sidekiq-cron SUBDIR += rubygem-sidekiq-cron-rails70 SUBDIR += rubygem-sidekiq-cron18 SUBDIR += rubygem-sidekiq-scheduler SUBDIR += rubygem-sidekiq-unique-jobs SUBDIR += rubygem-sidekiq6 SUBDIR += rubygem-sidekiq71 SUBDIR += rubygem-sidetiq SUBDIR += rubygem-sigdump SUBDIR += rubygem-simple-navigation SUBDIR += rubygem-simple-navigation-rails50 SUBDIR += rubygem-simple-navigation-rails61 SUBDIR += rubygem-simple_form SUBDIR += rubygem-simple_form-rails5 SUBDIR += rubygem-simple_form-rails50 SUBDIR += rubygem-simple_form-rails61 SUBDIR += rubygem-simple_po_parser SUBDIR += rubygem-simplecov SUBDIR += rubygem-simplecov_json_formatter SUBDIR += rubygem-singleton SUBDIR += rubygem-skiptrace SUBDIR += rubygem-slack-messenger SUBDIR += rubygem-slack-notifier SUBDIR += rubygem-slim SUBDIR += rubygem-slop SUBDIR += rubygem-slop3 SUBDIR += rubygem-slow_enumerator_tools SUBDIR += rubygem-smart_properties SUBDIR += rubygem-snaky_hash SUBDIR += rubygem-snowplow-tracker SUBDIR += rubygem-soap4r SUBDIR += rubygem-solve SUBDIR += rubygem-sorbet-runtime SUBDIR += rubygem-sorted_set SUBDIR += rubygem-spring SUBDIR += rubygem-spring-watcher-listen SUBDIR += rubygem-sprockets SUBDIR += rubygem-sprockets-es6 SUBDIR += rubygem-sprockets-helpers SUBDIR += rubygem-sprockets-rails-rails4 SUBDIR += rubygem-sprockets-rails-rails5 SUBDIR += rubygem-sprockets-rails-rails50 SUBDIR += rubygem-sprockets-rails-rails52 SUBDIR += rubygem-sprockets-rails-rails60 SUBDIR += rubygem-sprockets-rails-rails61 SUBDIR += rubygem-sprockets-rails-rails70 SUBDIR += rubygem-sprockets-rails-rails71 SUBDIR += rubygem-sprockets-sass SUBDIR += rubygem-sprockets2 SUBDIR += rubygem-sprockets3 SUBDIR += rubygem-spruz SUBDIR += rubygem-stackprof SUBDIR += rubygem-state_machine SUBDIR += rubygem-state_machines SUBDIR += rubygem-statsd SUBDIR += rubygem-statsd-instrument SUBDIR += rubygem-statsd-ruby SUBDIR += rubygem-stella SUBDIR += rubygem-stemmer SUBDIR += rubygem-stomp SUBDIR += rubygem-stoplight SUBDIR += rubygem-storable SUBDIR += rubygem-stream SUBDIR += rubygem-streetaddress SUBDIR += rubygem-stringex SUBDIR += rubygem-stringio SUBDIR += rubygem-strings SUBDIR += rubygem-strings-ansi SUBDIR += rubygem-strong_migrations SUBDIR += rubygem-strong_migrations61 SUBDIR += rubygem-strptime SUBDIR += rubygem-strscan SUBDIR += rubygem-structured_warnings SUBDIR += rubygem-stud SUBDIR += rubygem-subexec SUBDIR += rubygem-sucker_punch SUBDIR += rubygem-sugar-high SUBDIR += rubygem-sumbur SUBDIR += rubygem-sundawg_country_codes SUBDIR += rubygem-sus SUBDIR += rubygem-svn2git SUBDIR += rubygem-swagger-blocks SUBDIR += rubygem-sync SUBDIR += rubygem-syntax_suggest SUBDIR += rubygem-syntax_tree SUBDIR += rubygem-sysinfo SUBDIR += rubygem-syslog SUBDIR += rubygem-systemu SUBDIR += rubygem-table_print SUBDIR += rubygem-tdiff SUBDIR += rubygem-telesign SUBDIR += rubygem-telesignenterprise SUBDIR += rubygem-tempfile SUBDIR += rubygem-templater SUBDIR += rubygem-temple SUBDIR += rubygem-term-ansicolor SUBDIR += rubygem-terrapin SUBDIR += rubygem-test-unit SUBDIR += rubygem-thor SUBDIR += rubygem-thor0 SUBDIR += rubygem-thor12 SUBDIR += rubygem-thread_safe SUBDIR += rubygem-thrift SUBDIR += rubygem-thwait SUBDIR += rubygem-tilt SUBDIR += rubygem-tilt1 SUBDIR += rubygem-time SUBDIR += rubygem-timecop SUBDIR += rubygem-timeliness SUBDIR += rubygem-timeout SUBDIR += rubygem-timers SUBDIR += rubygem-tins SUBDIR += rubygem-titlecase SUBDIR += rubygem-tmpdir SUBDIR += rubygem-to_regexp SUBDIR += rubygem-tool SUBDIR += rubygem-tracer SUBDIR += rubygem-traces SUBDIR += rubygem-trailblazer-option SUBDIR += rubygem-transaction-simple SUBDIR += rubygem-travis SUBDIR += rubygem-treetop SUBDIR += rubygem-trollop SUBDIR += rubygem-trollop1 SUBDIR += rubygem-tsort SUBDIR += rubygem-tty SUBDIR += rubygem-tty-box SUBDIR += rubygem-tty-color SUBDIR += rubygem-tty-command SUBDIR += rubygem-tty-config SUBDIR += rubygem-tty-cursor SUBDIR += rubygem-tty-editor SUBDIR += rubygem-tty-file SUBDIR += rubygem-tty-font SUBDIR += rubygem-tty-logger SUBDIR += rubygem-tty-markdown SUBDIR += rubygem-tty-pager SUBDIR += rubygem-tty-pie SUBDIR += rubygem-tty-platform SUBDIR += rubygem-tty-progressbar SUBDIR += rubygem-tty-prompt SUBDIR += rubygem-tty-reader SUBDIR += rubygem-tty-screen SUBDIR += rubygem-tty-spinner SUBDIR += rubygem-tty-table SUBDIR += rubygem-tty-tree SUBDIR += rubygem-tty-which SUBDIR += rubygem-turn SUBDIR += rubygem-typed-array SUBDIR += rubygem-typeprof SUBDIR += rubygem-tzinfo SUBDIR += rubygem-tzinfo-data SUBDIR += rubygem-tzinfo1 SUBDIR += rubygem-uber SUBDIR += rubygem-un SUBDIR += rubygem-unicode SUBDIR += rubygem-unicode-display_width SUBDIR += rubygem-unicode_utils SUBDIR += rubygem-unleash SUBDIR += rubygem-useragent SUBDIR += rubygem-uuid SUBDIR += rubygem-uuidtools SUBDIR += rubygem-valid SUBDIR += rubygem-validatable SUBDIR += rubygem-validate_email SUBDIR += rubygem-validate_url SUBDIR += rubygem-validates_timeliness SUBDIR += rubygem-version_gem SUBDIR += rubygem-versionomy SUBDIR += rubygem-view_component-rails70 SUBDIR += rubygem-virtus SUBDIR += rubygem-vite_rails-rails70 SUBDIR += rubygem-vite_ruby SUBDIR += rubygem-vite_ruby33 SUBDIR += rubygem-warbler SUBDIR += rubygem-warden SUBDIR += rubygem-warning SUBDIR += rubygem-wdm SUBDIR += rubygem-weakref SUBDIR += rubygem-web-console-rails60 SUBDIR += rubygem-web-console-rails61 SUBDIR += rubygem-web-console-rails71 SUBDIR += rubygem-web-console2 SUBDIR += rubygem-web-console3-rails5 SUBDIR += rubygem-web-console3-rails50 SUBDIR += rubygem-web-console3-rails52 SUBDIR += rubygem-webby SUBDIR += rubygem-webfinger SUBDIR += rubygem-webpacker-rails60 SUBDIR += rubygem-webpacker-rails61 SUBDIR += rubygem-webpacker4-rails60 SUBDIR += rubygem-will_paginate SUBDIR += rubygem-windows_error SUBDIR += rubygem-wisper SUBDIR += rubygem-with_env SUBDIR += rubygem-wmi-lite SUBDIR += rubygem-xdg SUBDIR += rubygem-xdg2 SUBDIR += rubygem-xdg3 SUBDIR += rubygem-xdg4 SUBDIR += rubygem-xdg5 SUBDIR += rubygem-xdg6 SUBDIR += rubygem-xdg7 SUBDIR += rubygem-xorcist SUBDIR += rubygem-xpath SUBDIR += rubygem-xxhash SUBDIR += rubygem-yajl-ruby SUBDIR += rubygem-yui-compressor SUBDIR += rubygem-zeitwerk SUBDIR += rubygem-zentest SUBDIR += rubygem-zhexdump SUBDIR += rubygem-zlib SUBDIR += rubygem-zstd-ruby SUBDIR += rubymine SUBDIR += rudeconfig SUBDIR += rudiments SUBDIR += ruff SUBDIR += rust-analyzer SUBDIR += rust-bindgen-cli SUBDIR += rust-cbindgen SUBDIR += rust-mode SUBDIR += rust-script SUBDIR += rustc-demangle SUBDIR += rvi SUBDIR += rvm SUBDIR += rxcpp SUBDIR += rye SUBDIR += sabre SUBDIR += safe-iop SUBDIR += samurai SUBDIR += sasm SUBDIR += sbt SUBDIR += scalatest SUBDIR += scandoc SUBDIR += scc SUBDIR += sccache SUBDIR += sccs SUBDIR += schilybase SUBDIR += scons SUBDIR += sd-mux-ctrl SUBDIR += sdbus-cpp SUBDIR += sdl12 SUBDIR += sdl12-compat SUBDIR += sdl20 SUBDIR += sdl2pp SUBDIR += sdl_console SUBDIR += sdlmm SUBDIR += sdlskk SUBDIR += sdsl-lite SUBDIR += sedsed SUBDIR += seer-gdb SUBDIR += selene SUBDIR += sentry-cli SUBDIR += serd SUBDIR += serdisplib SUBDIR += sfml SUBDIR += sfml1 SUBDIR += sfsexp SUBDIR += sgb SUBDIR += shadered SUBDIR += shapelib SUBDIR += shards SUBDIR += shell-toolbox SUBDIR += shflags SUBDIR += shfmt SUBDIR += shiboken2 SUBDIR += shiboken6 SUBDIR += shmap SUBDIR += shroud SUBDIR += shtk SUBDIR += shtool SUBDIR += shunit2 SUBDIR += sigar SUBDIR += signal-fts5-extension SUBDIR += sigslot SUBDIR += silc-toolkit SUBDIR += silentbob SUBDIR += simavr SUBDIR += simde SUBDIR += simdjson SUBDIR += simgear SUBDIR += simian SUBDIR += simpleini SUBDIR += sjasmplus SUBDIR += skalibs SUBDIR += skypat SUBDIR += slf4j SUBDIR += slibtool SUBDIR += smake SUBDIR += smc SUBDIR += smooth SUBDIR += smv SUBDIR += snazy SUBDIR += snitch SUBDIR += soapui SUBDIR += sobjectizer SUBDIR += socket_wrapper SUBDIR += soft-serve SUBDIR += sol2 SUBDIR += sonar-scanner-cli SUBDIR += sonarqube-ant-task SUBDIR += sonarqube-community SUBDIR += sope SUBDIR += sope2 SUBDIR += sord SUBDIR += spark SUBDIR += sparsebitset SUBDIR += sparsehash SUBDIR += spatialindex SUBDIR += spdlog SUBDIR += spice-protocol SUBDIR += spin SUBDIR += spirv-llvm-translator SUBDIR += splint SUBDIR += spr SUBDIR += spread-sheet-widget SUBDIR += spyder SUBDIR += srecord SUBDIR += st SUBDIR += stack SUBDIR += staf SUBDIR += statcvs SUBDIR += statik SUBDIR += statsvn SUBDIR += stb SUBDIR += stdman SUBDIR += stdx-allocator SUBDIR += stfl SUBDIR += stlfilt SUBDIR += stlink SUBDIR += str SUBDIR += string_theory SUBDIR += stringencoders SUBDIR += stuffbin SUBDIR += stxxl SUBDIR += stylua SUBDIR += styx SUBDIR += subversion SUBDIR += subversion-book SUBDIR += subversion-lts SUBDIR += subversive SUBDIR += sunpromake SUBDIR += svk SUBDIR += svn2git SUBDIR += svn_load_dirs SUBDIR += svntrac SUBDIR += swank-clojure SUBDIR += swig SUBDIR += swig40 SUBDIR += sysconftool SUBDIR += sysfsutils SUBDIR += systemc SUBDIR += t1lib SUBDIR += ta-lib SUBDIR += tablist SUBDIR += tabulate SUBDIR += tagref SUBDIR += tailor SUBDIR += talloc SUBDIR += tarpaulin SUBDIR += taskctl SUBDIR += taskflow SUBDIR += tass64 SUBDIR += tbb SUBDIR += tcl-memchan SUBDIR += tcl-mmap SUBDIR += tcl-signal SUBDIR += tcl-trf SUBDIR += tclap SUBDIR += tclap12 SUBDIR += tclbsd SUBDIR += tclcheck SUBDIR += tcllauncher SUBDIR += tcllib SUBDIR += tcllibc SUBDIR += tclreadline SUBDIR += tclthread SUBDIR += tcltls SUBDIR += tclvfs SUBDIR += tclxml SUBDIR += tdl SUBDIR += template-glib SUBDIR += termbox SUBDIR += termcolor SUBDIR += terminality SUBDIR += test-drive SUBDIR += tevent SUBDIR += tex-kpathsea SUBDIR += tex-libtexlua SUBDIR += tex-libtexluajit SUBDIR += tex-synctex SUBDIR += tex-web2c SUBDIR += texlab SUBDIR += the-way SUBDIR += thonny SUBDIR += thrift SUBDIR += thrift-c_glib SUBDIR += thrift-cpp SUBDIR += thrust SUBDIR += thunar-vcs-plugin SUBDIR += ticcutils SUBDIR += tig SUBDIR += tigcc SUBDIR += tijmp SUBDIR += tinycbor SUBDIR += tinygo SUBDIR += tinylaf SUBDIR += tkcon SUBDIR += tkcvs SUBDIR += tkp4 SUBDIR += tl-expected SUBDIR += tla SUBDIR += tllist SUBDIR += tlsh SUBDIR += tlx SUBDIR += tnt SUBDIR += tokei SUBDIR += tokio-console SUBDIR += toml11 SUBDIR += tomlplusplus SUBDIR += tortoisehg SUBDIR += tpasm SUBDIR += tradcpp SUBDIR += transient SUBDIR += transient-devel SUBDIR += transwarp SUBDIR += tree-sitter SUBDIR += tree-sitter-graph SUBDIR += treefmt SUBDIR += treepy.el SUBDIR += trellis SUBDIR += trio SUBDIR += trompeloeil SUBDIR += truc SUBDIR += tup SUBDIR += twiggy SUBDIR += typeshare SUBDIR += ua_parser-core SUBDIR += uclcmd SUBDIR += ucommon SUBDIR += ucpp SUBDIR += udis86 SUBDIR += uid_wrapper SUBDIR += ultragetopt SUBDIR += umbrello SUBDIR += umlgraph SUBDIR += undead SUBDIR += unibilium SUBDIR += universal-ctags SUBDIR += unordered-dense SUBDIR += upnp SUBDIR += upp SUBDIR += upslug SUBDIR += urjtag SUBDIR += ut SUBDIR += utf8cpp SUBDIR += utf8cpp3 SUBDIR += uthash SUBDIR += util-linux SUBDIR += uv SUBDIR += valgrind SUBDIR += valgrind-devel SUBDIR += vasm SUBDIR += vc SUBDIR += vc-intrinsics SUBDIR += vcglib SUBDIR += vera++ SUBDIR += vexcl SUBDIR += viewvc-devel SUBDIR += violet SUBDIR += vipack SUBDIR += vitables SUBDIR += volk SUBDIR += vstr SUBDIR += vxlog SUBDIR += wand-libconfig SUBDIR += wandio SUBDIR += wasi-compiler-rt SUBDIR += wasi-compiler-rt12 SUBDIR += wasi-compiler-rt13 SUBDIR += wasi-compiler-rt14 SUBDIR += wasi-compiler-rt15 SUBDIR += wasi-compiler-rt16 SUBDIR += wasi-compiler-rt17 SUBDIR += wasi-libc SUBDIR += wasi-libcxx SUBDIR += wasi-libcxx12 SUBDIR += wasi-libcxx13 SUBDIR += wasi-libcxx14 SUBDIR += wasi-libcxx15 SUBDIR += wasi-libcxx16 SUBDIR += wasi-libcxx17 SUBDIR += wasm3 SUBDIR += wasmer SUBDIR += websocketpp SUBDIR += websvn SUBDIR += wf-config SUBDIR += wininfo SUBDIR += wizardkit SUBDIR += woff2 SUBDIR += wrangler SUBDIR += wxformbuilder SUBDIR += xa65 SUBDIR += xbyak SUBDIR += xc3sprog SUBDIR += xcscope.el SUBDIR += xdg-dbus-proxy SUBDIR += xdg-user-dirs SUBDIR += xdg-utils SUBDIR += xdgpaths SUBDIR += xelfviewer SUBDIR += xeus SUBDIR += xeus-cling SUBDIR += xeus-zmq SUBDIR += xfce4-dev-tools SUBDIR += xmake SUBDIR += xmltooling SUBDIR += xopcodecalc SUBDIR += xorg-macros SUBDIR += xparam SUBDIR += xpeviewer SUBDIR += xsd SUBDIR += xsimd SUBDIR += xtensa-esp32-elf SUBDIR += xtl SUBDIR += xtl-quant-stack SUBDIR += xwpe SUBDIR += xxgdb SUBDIR += xxhash SUBDIR += xxl SUBDIR += yaegi SUBDIR += yaggo SUBDIR += yajl SUBDIR += yajl-tcl SUBDIR += yaml-cpp SUBDIR += yaml2argdata SUBDIR += yasm SUBDIR += yder SUBDIR += youcompleteme SUBDIR += yuck SUBDIR += yyjson SUBDIR += z80-asm SUBDIR += z80asm SUBDIR += z80ex SUBDIR += z88dk SUBDIR += zanata-cli SUBDIR += zapcc SUBDIR += zeal SUBDIR += zfp SUBDIR += zix SUBDIR += zls SUBDIR += zookeeper SUBDIR += zthread SUBDIR += zug SUBDIR += zycore-c SUBDIR += zydis SUBDIR += zziplib .include diff --git a/devel/ocaml-annexlib/Makefile b/devel/ocaml-annexlib/Makefile index 9fa166c4b6c2..a2f94062349c 100644 --- a/devel/ocaml-annexlib/Makefile +++ b/devel/ocaml-annexlib/Makefile @@ -1,41 +1,41 @@ PORTNAME= annexlib PORTVERSION= 0.13.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel MASTER_SITES= http://raevnos.pennmush.org/code/extlib/ PKGNAMEPREFIX= ocaml- MAINTAINER= hrs@FreeBSD.org COMMENT= OCaml subroutines collection WWW= http://raevnos.pennmush.org/code/extlib/ LICENSE= LGPL21 BUILD_DEPENDS= ${SA_DIR}/pcre/pcre.a:devel/ocaml-pcre RUN_DEPENDS= ${SA_DIR}/pcre/pcre.a:devel/ocaml-pcre USES= gmake USE_OCAML= yes USE_OCAML_FINDLIB= yes USE_OCAML_LDCONFIG= yes USE_OCAMLFIND_PLIST= yes GNU_CONFIGURE= yes ALL_TARGET= all opt SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} DOCSDIR= ${PREFIX}/share/doc/ocaml/${PORTNAME} PORTDOCS= * OPTIONS_DEFINE= DOCS MAKE_JOBS_UNSAFE= yes post-install: cd ${STAGEDIR}${PREFIX} && \ ${STRIP_CMD} lib/ocaml/site-lib/annexlib/dllannexlib_stubs.so post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/doc/html/* \ ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/ocaml-astring/Makefile b/devel/ocaml-astring/Makefile new file mode 100644 index 000000000000..7166cedc78db --- /dev/null +++ b/devel/ocaml-astring/Makefile @@ -0,0 +1,54 @@ +PORTNAME= astring +PORTVERSION= 0.8.5 +CATEGORIES= devel +MASTER_SITES= https://erratique.ch/software/astring/releases/ +PKGNAMEPREFIX= ocaml- + +MAINTAINER= freebsd@dev.thsi.be +COMMENT= String library for Objective Caml +WWW= https://erratique.ch/software/astring + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +BUILD_DEPENDS= ${SA_DIR}/topkg/META:devel/ocaml-topkg \ + ocamlbuild:devel/ocaml-ocamlbuild \ + opam-installer:devel/ocaml-opam + +USES= tar:tbz +USE_OCAML= yes + +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} +EXAMPLESDIR= ${OCAML_EXAMPLESDIR}/${PORTNAME} +PORTDOCS= CHANGES.md LICENSE.md README.md +PORTEXAMPLES= examples examples.ml + +OPTIONS_DEFINE= DOCS EXAMPLES + +SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} + +do-build: + @(cd ${BUILD_WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} \ + ocaml pkg/pkg.ml build \ + --tests true --jobs ${MAKE_JOBS_NUMBER}) + +do-install: + @(cd ${INSTALL_WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} \ + opam-installer -i \ + --prefix=${STAGEDIR}${PREFIX} \ + --docdir=${OCAML_DOCSDIR:S,^${PREFIX}/,,} \ + --libdir=${OCAML_SITELIBDIR} ${PORTNAME}.install) + +do-install-EXAMPLES-on: + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/_build/test/examples.native ${STAGEDIR}${EXAMPLESDIR}/examples + ${MV} ${STAGEDIR}${DOCSDIR}/examples.ml ${STAGEDIR}${EXAMPLESDIR}/examples.ml + +do-install-EXAMPLES-off: + ${RM} ${STAGEDIR}${DOCSDIR}/examples.ml + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/astring.cmxs + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/astring_top.cmxs + +.include diff --git a/devel/ocaml-astring/distinfo b/devel/ocaml-astring/distinfo new file mode 100644 index 000000000000..08c2860669af --- /dev/null +++ b/devel/ocaml-astring/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1706836513 +SHA256 (astring-0.8.5.tbz) = 865692630c07c3ab87c66cdfc2734c0fdfc9c34a57f8e89ffec7c7d15e7a70fa +SIZE (astring-0.8.5.tbz) = 37499 diff --git a/devel/ocaml-astring/pkg-descr b/devel/ocaml-astring/pkg-descr new file mode 100644 index 000000000000..fa01d24ff6b7 --- /dev/null +++ b/devel/ocaml-astring/pkg-descr @@ -0,0 +1,3 @@ +Astring is an opiniated immutable-String library for OCaml. It is +highly recommended to compile your project in the -safe-string mode of +the OCaml compiler before using this library. diff --git a/devel/ocaml-astring/pkg-plist b/devel/ocaml-astring/pkg-plist new file mode 100644 index 000000000000..d7c58aa0efd2 --- /dev/null +++ b/devel/ocaml-astring/pkg-plist @@ -0,0 +1,22 @@ +%%OCAML_SITELIBDIR%%/astring/opam +%%OCAML_SITELIBDIR%%/astring/META +%%OCAML_SITELIBDIR%%/astring/astring.a +%%OCAML_SITELIBDIR%%/astring/astring.cma +%%OCAML_SITELIBDIR%%/astring/astring.cmi +%%OCAML_SITELIBDIR%%/astring/astring.cmti +%%OCAML_SITELIBDIR%%/astring/astring.cmx +%%OCAML_SITELIBDIR%%/astring/astring.cmxa +%%OCAML_SITELIBDIR%%/astring/astring.cmxs +%%OCAML_SITELIBDIR%%/astring/astring.mli +%%OCAML_SITELIBDIR%%/astring/astring_base.cmx +%%OCAML_SITELIBDIR%%/astring/astring_char.cmx +%%OCAML_SITELIBDIR%%/astring/astring_escape.cmx +%%OCAML_SITELIBDIR%%/astring/astring_string.cmx +%%OCAML_SITELIBDIR%%/astring/astring_sub.cmx +%%OCAML_SITELIBDIR%%/astring/astring_top.a +%%OCAML_SITELIBDIR%%/astring/astring_top.cma +%%OCAML_SITELIBDIR%%/astring/astring_top.cmx +%%OCAML_SITELIBDIR%%/astring/astring_top.cmxa +%%OCAML_SITELIBDIR%%/astring/astring_top.cmxs +%%OCAML_SITELIBDIR%%/astring/astring_top_init.ml +%%OCAML_SITELIBDIR%%/astring/astring_unsafe.cmx diff --git a/devel/ocaml-base/Makefile b/devel/ocaml-base/Makefile new file mode 100644 index 000000000000..ca035cf7cd06 --- /dev/null +++ b/devel/ocaml-base/Makefile @@ -0,0 +1,40 @@ +PORTNAME= base +PORTVERSION= 0.16.3 +DISTVERSIONPREFIX= v +CATEGORIES= devel +PKGNAMEPREFIX= ocaml- + +MAINTAINER= freebsd@dev.thsi.be +COMMENT= Standard library for OCaml +WWW= https://github.com/janestreet/base + +LICENSE= MIT + +BUILD_DEPENDS= ${SA_DIR}/sexplib0/META:devel/ocaml-sexplib0 \ + bash:shells/bash +RUN_DEPENDS= ${SA_DIR}/sexplib0/META:devel/ocaml-sexplib0 + +USES= ocaml:dune +USE_GITHUB= yes +GH_ACCOUNT= janestreet +USE_OCAML= yes +USE_OCAML_LDCONFIG= yes + +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} +PORTDOCS= CHANGES.md LICENSE.md README.org odoc-pages + +OPTIONS_DEFINE= DOCS + +SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} + +post-install: + @${STRIP_CMD} \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/base.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/base_internalhash_types/base_internalhash_types.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/caml/caml.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/dllbase_internalhash_types_stubs.so \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/dllbase_stubs.so \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/md5/md5_lib.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/shadow_stdlib/shadow_stdlib.cmxs + +.include diff --git a/devel/ocaml-base/distinfo b/devel/ocaml-base/distinfo new file mode 100644 index 000000000000..9066d478354e --- /dev/null +++ b/devel/ocaml-base/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1706853289 +SHA256 (janestreet-base-v0.16.3_GH0.tar.gz) = 9bf9e503e2bd010325c7b0f5ae007ce1e5d3da61f0e06d2fbb64e9d12ccff93c +SIZE (janestreet-base-v0.16.3_GH0.tar.gz) = 442632 diff --git a/devel/ocaml-base/pkg-descr b/devel/ocaml-base/pkg-descr new file mode 100644 index 000000000000..f9bec6d2ac95 --- /dev/null +++ b/devel/ocaml-base/pkg-descr @@ -0,0 +1,3 @@ +Standard library meant to be used in place of the OCaml standard +library. Input-output and OS dependent facilities are not provided by +this library. diff --git a/devel/ocaml-base/pkg-plist b/devel/ocaml-base/pkg-plist new file mode 100644 index 000000000000..dce1cff3a8be --- /dev/null +++ b/devel/ocaml-base/pkg-plist @@ -0,0 +1,766 @@ +%%OCAML_SITELIBDIR%%/base/META +%%OCAML_SITELIBDIR%%/base/applicative_intf.ml +%%OCAML_SITELIBDIR%%/base/applicative.ml +%%OCAML_SITELIBDIR%%/base/applicative.mli +%%OCAML_SITELIBDIR%%/base/array_permute.ml +%%OCAML_SITELIBDIR%%/base/array.ml +%%OCAML_SITELIBDIR%%/base/array.mli +%%OCAML_SITELIBDIR%%/base/array0.ml +%%OCAML_SITELIBDIR%%/base/backtrace.ml +%%OCAML_SITELIBDIR%%/base/base__.cmt +%%OCAML_SITELIBDIR%%/base/avltree.ml +%%OCAML_SITELIBDIR%%/base/avltree.mli +%%OCAML_SITELIBDIR%%/base/base__Applicative.cmi +%%OCAML_SITELIBDIR%%/base/backtrace.mli +%%OCAML_SITELIBDIR%%/base/base.a +%%OCAML_SITELIBDIR%%/base/base.cma +%%OCAML_SITELIBDIR%%/base/base.cmi +%%OCAML_SITELIBDIR%%/base/base.cmt +%%OCAML_SITELIBDIR%%/base/base.cmx +%%OCAML_SITELIBDIR%%/base/base.cmxa +%%OCAML_SITELIBDIR%%/base/base.cmxs +%%OCAML_SITELIBDIR%%/base/base.ml +%%OCAML_SITELIBDIR%%/base/base__.cmi +%%OCAML_SITELIBDIR%%/base/blit.ml +%%OCAML_SITELIBDIR%%/base/base__.cmx +%%OCAML_SITELIBDIR%%/base/base__.ml +%%OCAML_SITELIBDIR%%/base/base__Applicative_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Applicative.cmt +%%OCAML_SITELIBDIR%%/base/base__Applicative.cmti +%%OCAML_SITELIBDIR%%/base/base__Applicative.cmx +%%OCAML_SITELIBDIR%%/base/base__Binary_search.cmti +%%OCAML_SITELIBDIR%%/base/base__Applicative_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Applicative_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Array.cmi +%%OCAML_SITELIBDIR%%/base/base__Array.cmt +%%OCAML_SITELIBDIR%%/base/base__Array.cmti +%%OCAML_SITELIBDIR%%/base/base__Array.cmx +%%OCAML_SITELIBDIR%%/base/base__Array0.cmi +%%OCAML_SITELIBDIR%%/base/base__Array0.cmt +%%OCAML_SITELIBDIR%%/base/base__Array0.cmx +%%OCAML_SITELIBDIR%%/base/base__Array_permute.cmi +%%OCAML_SITELIBDIR%%/base/bool.ml +%%OCAML_SITELIBDIR%%/base/base__Array_permute.cmt +%%OCAML_SITELIBDIR%%/base/base__Array_permute.cmx +%%OCAML_SITELIBDIR%%/base/base__Avltree.cmi +%%OCAML_SITELIBDIR%%/base/base__Avltree.cmt +%%OCAML_SITELIBDIR%%/base/base__Avltree.cmti +%%OCAML_SITELIBDIR%%/base/base__Avltree.cmx +%%OCAML_SITELIBDIR%%/base/base__Backtrace.cmi +%%OCAML_SITELIBDIR%%/base/base__Backtrace.cmt +%%OCAML_SITELIBDIR%%/base/base__Backtrace.cmti +%%OCAML_SITELIBDIR%%/base/base__Backtrace.cmx +%%OCAML_SITELIBDIR%%/base/base__Binary_search.cmi +%%OCAML_SITELIBDIR%%/base/base__Binary_search.cmt +%%OCAML_SITELIBDIR%%/base/base__Binary_searchable.cmi +%%OCAML_SITELIBDIR%%/base/base__Binary_search.cmx +%%OCAML_SITELIBDIR%%/base/base__Binary_searchable.cmt +%%OCAML_SITELIBDIR%%/base/base__Binary_searchable_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Binary_searchable.cmti +%%OCAML_SITELIBDIR%%/base/base__Binary_searchable.cmx +%%OCAML_SITELIBDIR%%/base/base__Binary_searchable_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Binary_searchable_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Blit.cmi +%%OCAML_SITELIBDIR%%/base/base__Blit.cmt +%%OCAML_SITELIBDIR%%/base/base__Blit.cmti +%%OCAML_SITELIBDIR%%/base/base__Blit.cmx +%%OCAML_SITELIBDIR%%/base/base__Blit_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Blit_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Blit_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Bool.cmi +%%OCAML_SITELIBDIR%%/base/base__Bool.cmt +%%OCAML_SITELIBDIR%%/base/base__Bool.cmti +%%OCAML_SITELIBDIR%%/base/base__Bool.cmx +%%OCAML_SITELIBDIR%%/base/base__Bool0.cmi +%%OCAML_SITELIBDIR%%/base/base__Bytes_tr.cmi +%%OCAML_SITELIBDIR%%/base/base__T.cmi +%%OCAML_SITELIBDIR%%/base/base__Bool0.cmt +%%OCAML_SITELIBDIR%%/base/base__Bool0.cmti +%%OCAML_SITELIBDIR%%/base/base__Bool0.cmx +%%OCAML_SITELIBDIR%%/base/base__Buffer.cmi +%%OCAML_SITELIBDIR%%/base/base__Buffer.cmt +%%OCAML_SITELIBDIR%%/base/base__Buffer.cmti +%%OCAML_SITELIBDIR%%/base/base__Buffer.cmx +%%OCAML_SITELIBDIR%%/base/base__Buffer_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Buffer_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Buffer_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Bytes.cmi +%%OCAML_SITELIBDIR%%/base/base__Bytes.cmt +%%OCAML_SITELIBDIR%%/base/base__Bytes.cmti +%%OCAML_SITELIBDIR%%/base/base__Bytes.cmx +%%OCAML_SITELIBDIR%%/base/base__Bytes0.cmi +%%OCAML_SITELIBDIR%%/base/base__Bytes0.cmt +%%OCAML_SITELIBDIR%%/base/base__Bytes0.cmx +%%OCAML_SITELIBDIR%%/base/base__Comparable_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Bytes_tr.cmt +%%OCAML_SITELIBDIR%%/base/base__Bytes_tr.cmx +%%OCAML_SITELIBDIR%%/base/base__Char.cmi +%%OCAML_SITELIBDIR%%/base/base__Char.cmt +%%OCAML_SITELIBDIR%%/base/base__Char.cmti +%%OCAML_SITELIBDIR%%/base/base__Char.cmx +%%OCAML_SITELIBDIR%%/base/base__Char0.cmi +%%OCAML_SITELIBDIR%%/base/base__Char0.cmt +%%OCAML_SITELIBDIR%%/base/base__Char0.cmx +%%OCAML_SITELIBDIR%%/base/base__Comparable.cmi +%%OCAML_SITELIBDIR%%/base/base__Comparable.cmt +%%OCAML_SITELIBDIR%%/base/base__Comparable.cmti +%%OCAML_SITELIBDIR%%/base/base__Comparable.cmx +%%OCAML_SITELIBDIR%%/base/base__Comparable_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Comparable_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Comparator.cmi +%%OCAML_SITELIBDIR%%/base/base__Either.cmti +%%OCAML_SITELIBDIR%%/base/base__Either.cmx +%%OCAML_SITELIBDIR%%/base/base__Comparator.cmt +%%OCAML_SITELIBDIR%%/base/base__Comparator.cmti +%%OCAML_SITELIBDIR%%/base/base__Comparator.cmx +%%OCAML_SITELIBDIR%%/base/base__Comparisons.cmi +%%OCAML_SITELIBDIR%%/base/base__Comparisons.cmt +%%OCAML_SITELIBDIR%%/base/base__Comparisons.cmx +%%OCAML_SITELIBDIR%%/base/base__Container.cmi +%%OCAML_SITELIBDIR%%/base/base__Container.cmt +%%OCAML_SITELIBDIR%%/base/base__Container.cmti +%%OCAML_SITELIBDIR%%/base/base__Container.cmx +%%OCAML_SITELIBDIR%%/base/base__Container_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Container_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Container_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Either.cmi +%%OCAML_SITELIBDIR%%/base/base__Either.cmt +%%OCAML_SITELIBDIR%%/base/base__Either_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Either0.cmi +%%OCAML_SITELIBDIR%%/base/base__Either0.cmt +%%OCAML_SITELIBDIR%%/base/base__Either0.cmx +%%OCAML_SITELIBDIR%%/base/base__Either_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Either_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Equal.cmi +%%OCAML_SITELIBDIR%%/base/base__Equal.cmt +%%OCAML_SITELIBDIR%%/base/base__Equal.cmx +%%OCAML_SITELIBDIR%%/base/base__Error.cmi +%%OCAML_SITELIBDIR%%/base/base__Error.cmt +%%OCAML_SITELIBDIR%%/base/base__Error.cmti +%%OCAML_SITELIBDIR%%/base/base__Error.cmx +%%OCAML_SITELIBDIR%%/base/base__Exn.cmi +%%OCAML_SITELIBDIR%%/base/base__Exn.cmt +%%OCAML_SITELIBDIR%%/base/base__Exn.cmti +%%OCAML_SITELIBDIR%%/base/base__Exn.cmx +%%OCAML_SITELIBDIR%%/base/base__Field.cmi +%%OCAML_SITELIBDIR%%/base/base__Field.cmt +%%OCAML_SITELIBDIR%%/base/base__Fn.cmx +%%OCAML_SITELIBDIR%%/base/base__Hash.cmi +%%OCAML_SITELIBDIR%%/base/base__Field.cmti +%%OCAML_SITELIBDIR%%/base/base__Field.cmx +%%OCAML_SITELIBDIR%%/base/base__Fieldslib.cmi +%%OCAML_SITELIBDIR%%/base/base__Fieldslib.cmt +%%OCAML_SITELIBDIR%%/base/base__Fieldslib.cmx +%%OCAML_SITELIBDIR%%/base/base__Float.cmi +%%OCAML_SITELIBDIR%%/base/base__Float.cmt +%%OCAML_SITELIBDIR%%/base/base__Float.cmti +%%OCAML_SITELIBDIR%%/base/base__Float.cmx +%%OCAML_SITELIBDIR%%/base/base__Float0.cmi +%%OCAML_SITELIBDIR%%/base/base__Float0.cmt +%%OCAML_SITELIBDIR%%/base/base__Float0.cmx +%%OCAML_SITELIBDIR%%/base/base__Floatable.cmi +%%OCAML_SITELIBDIR%%/base/base__Floatable.cmt +%%OCAML_SITELIBDIR%%/base/base__Floatable.cmx +%%OCAML_SITELIBDIR%%/base/base__Fn.cmi +%%OCAML_SITELIBDIR%%/base/base__Fn.cmt +%%OCAML_SITELIBDIR%%/base/base__Fn.cmti +%%OCAML_SITELIBDIR%%/base/base__Formatter.cmi +%%OCAML_SITELIBDIR%%/base/base__Formatter.cmt +%%OCAML_SITELIBDIR%%/base/base__Formatter.cmti +%%OCAML_SITELIBDIR%%/base/base__Formatter.cmx +%%OCAML_SITELIBDIR%%/base/base__Globalize.cmi +%%OCAML_SITELIBDIR%%/base/base__Globalize.cmt +%%OCAML_SITELIBDIR%%/base/base__Globalize.cmti +%%OCAML_SITELIBDIR%%/base/base__Globalize.cmx +%%OCAML_SITELIBDIR%%/base/base__Hash.cmt +%%OCAML_SITELIBDIR%%/base/base__Hash.cmti +%%OCAML_SITELIBDIR%%/base/base__Hash.cmx +%%OCAML_SITELIBDIR%%/base/base__Hash_set_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Hash_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Hash_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Hash_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Hash_set.cmi +%%OCAML_SITELIBDIR%%/base/base__Hash_set.cmt +%%OCAML_SITELIBDIR%%/base/base__Hash_set.cmti +%%OCAML_SITELIBDIR%%/base/base__Hash_set.cmx +%%OCAML_SITELIBDIR%%/base/base__Hash_set_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Hash_set_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Hashable.cmi +%%OCAML_SITELIBDIR%%/base/base__Hashable.cmt +%%OCAML_SITELIBDIR%%/base/base__Hashable.cmti +%%OCAML_SITELIBDIR%%/base/base__Hashable.cmx +%%OCAML_SITELIBDIR%%/base/base__Hashable_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Hashable_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Hashable_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Hasher.cmi +%%OCAML_SITELIBDIR%%/base/base__Hasher.cmt +%%OCAML_SITELIBDIR%%/base/base__Hasher.cmx +%%OCAML_SITELIBDIR%%/base/base__Hashtbl.cmi +%%OCAML_SITELIBDIR%%/base/base__Hashtbl.cmt +%%OCAML_SITELIBDIR%%/base/base__Hashtbl.cmti +%%OCAML_SITELIBDIR%%/base/base__Hashtbl.cmx +%%OCAML_SITELIBDIR%%/base/base__Identifiable_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Hashtbl_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Hashtbl_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Hashtbl_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Hex_lexer.cmi +%%OCAML_SITELIBDIR%%/base/base__Hex_lexer.cmt +%%OCAML_SITELIBDIR%%/base/base__Hex_lexer.cmti +%%OCAML_SITELIBDIR%%/base/base__Hex_lexer.cmx +%%OCAML_SITELIBDIR%%/base/base__Identifiable.cmi +%%OCAML_SITELIBDIR%%/base/base__Identifiable.cmt +%%OCAML_SITELIBDIR%%/base/base__Identifiable.cmti +%%OCAML_SITELIBDIR%%/base/base__Identifiable.cmx +%%OCAML_SITELIBDIR%%/base/base__Indexed_container.cmi +%%OCAML_SITELIBDIR%%/base/base__Identifiable_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Identifiable_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Import.cmi +%%OCAML_SITELIBDIR%%/base/base__Import.cmt +%%OCAML_SITELIBDIR%%/base/base__Import.cmx +%%OCAML_SITELIBDIR%%/base/base__Import0.cmi +%%OCAML_SITELIBDIR%%/base/base__Import0.cmt +%%OCAML_SITELIBDIR%%/base/base__Import0.cmx +%%OCAML_SITELIBDIR%%/base/base__Indexed_container.cmt +%%OCAML_SITELIBDIR%%/base/base__Indexed_container.cmti +%%OCAML_SITELIBDIR%%/base/base__Indexed_container.cmx +%%OCAML_SITELIBDIR%%/base/base__Indexed_container_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Indexed_container_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Indexed_container_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Info.cmi +%%OCAML_SITELIBDIR%%/base/base__Info.cmt +%%OCAML_SITELIBDIR%%/base/base__Info.cmti +%%OCAML_SITELIBDIR%%/base/base__Info.cmx +%%OCAML_SITELIBDIR%%/base/base__Int32.cmti +%%OCAML_SITELIBDIR%%/base/base__Int.cmi +%%OCAML_SITELIBDIR%%/base/base__Info_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Info_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Info_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Int.cmt +%%OCAML_SITELIBDIR%%/base/base__Int.cmti +%%OCAML_SITELIBDIR%%/base/base__Int.cmx +%%OCAML_SITELIBDIR%%/base/base__Int0.cmi +%%OCAML_SITELIBDIR%%/base/base__Int0.cmt +%%OCAML_SITELIBDIR%%/base/base__Int0.cmx +%%OCAML_SITELIBDIR%%/base/base__Int32.cmi +%%OCAML_SITELIBDIR%%/base/base__Int32.cmt +%%OCAML_SITELIBDIR%%/base/base__Int32.cmx +%%OCAML_SITELIBDIR%%/base/base__Int63.cmi +%%OCAML_SITELIBDIR%%/base/base__Int63.cmt +%%OCAML_SITELIBDIR%%/base/base__Int63.cmti +%%OCAML_SITELIBDIR%%/base/base__Int63.cmx +%%OCAML_SITELIBDIR%%/base/base__Int63_emul.cmi +%%OCAML_SITELIBDIR%%/base/base__Int63_emul.cmt +%%OCAML_SITELIBDIR%%/base/base__Linked_queue.cmti +%%OCAML_SITELIBDIR%%/base/caml/caml.cma +%%OCAML_SITELIBDIR%%/base/caml/caml.a +%%OCAML_SITELIBDIR%%/base/caml/caml.cmi +%%OCAML_SITELIBDIR%%/base/caml/caml.cmt +%%OCAML_SITELIBDIR%%/base/caml/caml.cmx +%%OCAML_SITELIBDIR%%/base/caml/caml.cmxa +%%OCAML_SITELIBDIR%%/base/caml/caml.ml +%%OCAML_SITELIBDIR%%/base/caml/caml.cmxs +%%OCAML_SITELIBDIR%%/base/base__Int63_emul.cmti +%%OCAML_SITELIBDIR%%/base/base__Int63_emul.cmx +%%OCAML_SITELIBDIR%%/base/base__Int64.cmi +%%OCAML_SITELIBDIR%%/base/base__Int64.cmt +%%OCAML_SITELIBDIR%%/base/base__Int64.cmti +%%OCAML_SITELIBDIR%%/base/base__Int64.cmx +%%OCAML_SITELIBDIR%%/base/base__Int_conversions.cmi +%%OCAML_SITELIBDIR%%/base/base__Int_conversions.cmt +%%OCAML_SITELIBDIR%%/base/base__Int_conversions.cmti +%%OCAML_SITELIBDIR%%/base/base__Int_conversions.cmx +%%OCAML_SITELIBDIR%%/base/base__Int_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Int_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Int_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Int_math.cmi +%%OCAML_SITELIBDIR%%/base/base__Int_math.cmt +%%OCAML_SITELIBDIR%%/base/base__Int_math.cmti +%%OCAML_SITELIBDIR%%/base/base__Int_math.cmx +%%OCAML_SITELIBDIR%%/base/base__Intable.cmi +%%OCAML_SITELIBDIR%%/base/base__Intable.cmt +%%OCAML_SITELIBDIR%%/base/base__Intable.cmx +%%OCAML_SITELIBDIR%%/base/base__Invariant.cmi +%%OCAML_SITELIBDIR%%/base/base__Invariant.cmt +%%OCAML_SITELIBDIR%%/base/base__Invariant.cmti +%%OCAML_SITELIBDIR%%/base/base__Invariant.cmx +%%OCAML_SITELIBDIR%%/base/base__Invariant_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Invariant_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Invariant_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Lazy.cmi +%%OCAML_SITELIBDIR%%/base/base__Lazy.cmt +%%OCAML_SITELIBDIR%%/base/base__Lazy.cmti +%%OCAML_SITELIBDIR%%/base/base__Lazy.cmx +%%OCAML_SITELIBDIR%%/base/base__Linked_queue.cmi +%%OCAML_SITELIBDIR%%/base/base__Linked_queue.cmt +%%OCAML_SITELIBDIR%%/base/base__Ordered_collection_common.cmi +%%OCAML_SITELIBDIR%%/base/base__Linked_queue.cmx +%%OCAML_SITELIBDIR%%/base/base__Linked_queue0.cmi +%%OCAML_SITELIBDIR%%/base/base__Linked_queue0.cmt +%%OCAML_SITELIBDIR%%/base/base__Linked_queue0.cmx +%%OCAML_SITELIBDIR%%/base/base__List.cmi +%%OCAML_SITELIBDIR%%/base/base__List.cmt +%%OCAML_SITELIBDIR%%/base/base__List.cmti +%%OCAML_SITELIBDIR%%/base/base__List.cmx +%%OCAML_SITELIBDIR%%/base/base__List0.cmi +%%OCAML_SITELIBDIR%%/base/base__List0.cmt +%%OCAML_SITELIBDIR%%/base/base__List0.cmx +%%OCAML_SITELIBDIR%%/base/base__List1.cmi +%%OCAML_SITELIBDIR%%/base/base__List1.cmt +%%OCAML_SITELIBDIR%%/base/base__List1.cmx +%%OCAML_SITELIBDIR%%/base/base__Map.cmi +%%OCAML_SITELIBDIR%%/base/base__Map.cmt +%%OCAML_SITELIBDIR%%/base/base__Map.cmti +%%OCAML_SITELIBDIR%%/base/base__Map.cmx +%%OCAML_SITELIBDIR%%/base/base__Map_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__T.cmt +%%OCAML_SITELIBDIR%%/base/base__Map_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Map_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Maybe_bound.cmi +%%OCAML_SITELIBDIR%%/base/base__Maybe_bound.cmt +%%OCAML_SITELIBDIR%%/base/base__Maybe_bound.cmti +%%OCAML_SITELIBDIR%%/base/base__Maybe_bound.cmx +%%OCAML_SITELIBDIR%%/base/base__Monad.cmi +%%OCAML_SITELIBDIR%%/base/base__Monad.cmt +%%OCAML_SITELIBDIR%%/base/base__Monad.cmti +%%OCAML_SITELIBDIR%%/base/base__Monad.cmx +%%OCAML_SITELIBDIR%%/base/base__Monad_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Monad_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Monad_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Nativeint.cmi +%%OCAML_SITELIBDIR%%/base/base__Nativeint.cmt +%%OCAML_SITELIBDIR%%/base/base__Nativeint.cmti +%%OCAML_SITELIBDIR%%/base/base__Nativeint.cmx +%%OCAML_SITELIBDIR%%/base/char.ml +%%OCAML_SITELIBDIR%%/base/base__Nothing.cmi +%%OCAML_SITELIBDIR%%/base/base__Nothing.cmt +%%OCAML_SITELIBDIR%%/base/base__Nothing.cmti +%%OCAML_SITELIBDIR%%/base/base__Nothing.cmx +%%OCAML_SITELIBDIR%%/base/base__Obj_array.cmi +%%OCAML_SITELIBDIR%%/base/base__Obj_array.cmt +%%OCAML_SITELIBDIR%%/base/base__Obj_array.cmti +%%OCAML_SITELIBDIR%%/base/base__Obj_array.cmx +%%OCAML_SITELIBDIR%%/base/base__Obj_local.cmi +%%OCAML_SITELIBDIR%%/base/base__Obj_local.cmt +%%OCAML_SITELIBDIR%%/base/base__Obj_local.cmti +%%OCAML_SITELIBDIR%%/base/base__Obj_local.cmx +%%OCAML_SITELIBDIR%%/base/base__Option.cmi +%%OCAML_SITELIBDIR%%/base/base__Option.cmt +%%OCAML_SITELIBDIR%%/base/base__Option.cmti +%%OCAML_SITELIBDIR%%/base/base__Option.cmx +%%OCAML_SITELIBDIR%%/base/base__Option_array.cmi +%%OCAML_SITELIBDIR%%/base/base__Poly0.cmi +%%OCAML_SITELIBDIR%%/base/base__Option_array.cmt +%%OCAML_SITELIBDIR%%/base/base__Option_array.cmti +%%OCAML_SITELIBDIR%%/base/base__Option_array.cmx +%%OCAML_SITELIBDIR%%/base/base__Or_error.cmi +%%OCAML_SITELIBDIR%%/base/base__Or_error.cmt +%%OCAML_SITELIBDIR%%/base/base__Or_error.cmti +%%OCAML_SITELIBDIR%%/base/base__Or_error.cmx +%%OCAML_SITELIBDIR%%/base/base__Ordered_collection_common.cmt +%%OCAML_SITELIBDIR%%/base/base__Ordered_collection_common.cmti +%%OCAML_SITELIBDIR%%/base/base__Ordered_collection_common.cmx +%%OCAML_SITELIBDIR%%/base/base__Pow_overflow_bounds.cmi +%%OCAML_SITELIBDIR%%/base/base__Ordered_collection_common0.cmi +%%OCAML_SITELIBDIR%%/base/base__Ordered_collection_common0.cmt +%%OCAML_SITELIBDIR%%/base/base__Ordering.cmi +%%OCAML_SITELIBDIR%%/base/base__Ordered_collection_common0.cmti +%%OCAML_SITELIBDIR%%/base/base__Ordered_collection_common0.cmx +%%OCAML_SITELIBDIR%%/base/base__Ordering.cmt +%%OCAML_SITELIBDIR%%/base/base__Ordering.cmti +%%OCAML_SITELIBDIR%%/base/base__Ordering.cmx +%%OCAML_SITELIBDIR%%/base/base__Poly0.cmt +%%OCAML_SITELIBDIR%%/base/base__Poly0.cmti +%%OCAML_SITELIBDIR%%/base/base__Poly0.cmx +%%OCAML_SITELIBDIR%%/base/base__Popcount.cmi +%%OCAML_SITELIBDIR%%/base/base__Popcount.cmt +%%OCAML_SITELIBDIR%%/base/base__Popcount.cmti +%%OCAML_SITELIBDIR%%/base/base__Popcount.cmx +%%OCAML_SITELIBDIR%%/base/base__Pretty_printer.cmti +%%OCAML_SITELIBDIR%%/base/base__Pow_overflow_bounds.cmt +%%OCAML_SITELIBDIR%%/base/base__Pow_overflow_bounds.cmti +%%OCAML_SITELIBDIR%%/base/base__Printf.cmi +%%OCAML_SITELIBDIR%%/base/base__Pow_overflow_bounds.cmx +%%OCAML_SITELIBDIR%%/base/base__Ppx_compare_lib.cmi +%%OCAML_SITELIBDIR%%/base/base__Ppx_compare_lib.cmt +%%OCAML_SITELIBDIR%%/base/base__Ppx_compare_lib.cmti +%%OCAML_SITELIBDIR%%/base/base__Ppx_compare_lib.cmx +%%OCAML_SITELIBDIR%%/base/base__Ppx_enumerate_lib.cmi +%%OCAML_SITELIBDIR%%/base/base__Ppx_enumerate_lib.cmt +%%OCAML_SITELIBDIR%%/base/base__Ppx_enumerate_lib.cmx +%%OCAML_SITELIBDIR%%/base/base__Ppx_hash_lib.cmi +%%OCAML_SITELIBDIR%%/base/base__Ppx_hash_lib.cmt +%%OCAML_SITELIBDIR%%/base/base__Ppx_hash_lib.cmx +%%OCAML_SITELIBDIR%%/base/base__Pretty_printer.cmi +%%OCAML_SITELIBDIR%%/base/base__Pretty_printer.cmt +%%OCAML_SITELIBDIR%%/base/base__Sign.cmx +%%OCAML_SITELIBDIR%%/base/base__Sign0.cmi +%%OCAML_SITELIBDIR%%/base/base__Pretty_printer.cmx +%%OCAML_SITELIBDIR%%/base/base__Printf.cmt +%%OCAML_SITELIBDIR%%/base/base__Printf.cmti +%%OCAML_SITELIBDIR%%/base/base__Printf.cmx +%%OCAML_SITELIBDIR%%/base/base__Queue.cmi +%%OCAML_SITELIBDIR%%/base/base__Queue.cmt +%%OCAML_SITELIBDIR%%/base/base__Queue.cmti +%%OCAML_SITELIBDIR%%/base/base__Queue.cmx +%%OCAML_SITELIBDIR%%/base/base__Queue_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Queue_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Queue_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Random.cmi +%%OCAML_SITELIBDIR%%/base/base__Random.cmt +%%OCAML_SITELIBDIR%%/base/base__Random.cmti +%%OCAML_SITELIBDIR%%/base/base__Random.cmx +%%OCAML_SITELIBDIR%%/base/base__Random_repr.cmi +%%OCAML_SITELIBDIR%%/base/base__Random_repr.cmt +%%OCAML_SITELIBDIR%%/base/base__T.cmx +%%OCAML_SITELIBDIR%%/base/base__Random_repr.cmx +%%OCAML_SITELIBDIR%%/base/base__Ref.cmi +%%OCAML_SITELIBDIR%%/base/base__Ref.cmt +%%OCAML_SITELIBDIR%%/base/base__Ref.cmti +%%OCAML_SITELIBDIR%%/base/base__Ref.cmx +%%OCAML_SITELIBDIR%%/base/base__Result.cmi +%%OCAML_SITELIBDIR%%/base/base__Result.cmt +%%OCAML_SITELIBDIR%%/base/base__Result.cmti +%%OCAML_SITELIBDIR%%/base/base__Result.cmx +%%OCAML_SITELIBDIR%%/base/base__Sequence.cmi +%%OCAML_SITELIBDIR%%/base/base__Sequence.cmt +%%OCAML_SITELIBDIR%%/base/base__Sequence.cmti +%%OCAML_SITELIBDIR%%/base/base__Sequence.cmx +%%OCAML_SITELIBDIR%%/base/base__Set.cmi +%%OCAML_SITELIBDIR%%/base/base__Set.cmt +%%OCAML_SITELIBDIR%%/base/base__Set.cmti +%%OCAML_SITELIBDIR%%/base/base__Set.cmx +%%OCAML_SITELIBDIR%%/base/base__Set_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Set_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Set_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Sexp.cmi +%%OCAML_SITELIBDIR%%/base/base__Sexp.cmt +%%OCAML_SITELIBDIR%%/base/base__Sexp.cmti +%%OCAML_SITELIBDIR%%/base/base__Sexp.cmx +%%OCAML_SITELIBDIR%%/base/base__Sexp_with_comparable.cmi +%%OCAML_SITELIBDIR%%/base/base__Sexp_with_comparable.cmt +%%OCAML_SITELIBDIR%%/base/base__Sexp_with_comparable.cmti +%%OCAML_SITELIBDIR%%/base/base__Sexp_with_comparable.cmx +%%OCAML_SITELIBDIR%%/base/base__Sexpable.cmi +%%OCAML_SITELIBDIR%%/base/base__Sexpable.cmt +%%OCAML_SITELIBDIR%%/base/base__Sexpable.cmti +%%OCAML_SITELIBDIR%%/base/base__Sexpable.cmx +%%OCAML_SITELIBDIR%%/base/base__Sign.cmi +%%OCAML_SITELIBDIR%%/base/base__Sign.cmt +%%OCAML_SITELIBDIR%%/base/base__Sign.cmti +%%OCAML_SITELIBDIR%%/base/base__Source_code_position.cmi +%%OCAML_SITELIBDIR%%/base/base__Sign0.cmt +%%OCAML_SITELIBDIR%%/base/base__Sign0.cmx +%%OCAML_SITELIBDIR%%/base/base__Sign_or_nan.cmi +%%OCAML_SITELIBDIR%%/base/base__Sign_or_nan.cmt +%%OCAML_SITELIBDIR%%/base/base__Sign_or_nan.cmti +%%OCAML_SITELIBDIR%%/base/base__Sign_or_nan.cmx +%%OCAML_SITELIBDIR%%/base/base__Source_code_position.cmt +%%OCAML_SITELIBDIR%%/base/base__Source_code_position.cmti +%%OCAML_SITELIBDIR%%/base/base__Source_code_position.cmx +%%OCAML_SITELIBDIR%%/base/base__Source_code_position0.cmi +%%OCAML_SITELIBDIR%%/base/base__Source_code_position0.cmt +%%OCAML_SITELIBDIR%%/base/base__Source_code_position0.cmx +%%OCAML_SITELIBDIR%%/base/base__Stack.cmi +%%OCAML_SITELIBDIR%%/base/base__Stack.cmt +%%OCAML_SITELIBDIR%%/base/base_internalhash_types/base_internalhash_types.cmxa +%%OCAML_SITELIBDIR%%/base/base_internalhash_types/base_internalhash_types.a +%%OCAML_SITELIBDIR%%/base/base_internalhash_types/base_internalhash_types.cma +%%OCAML_SITELIBDIR%%/base/base_internalhash_types/base_internalhash_types.cmi +%%OCAML_SITELIBDIR%%/base/base_internalhash_types/base_internalhash_types.cmt +%%OCAML_SITELIBDIR%%/base/base_internalhash_types/base_internalhash_types.cmx +%%OCAML_SITELIBDIR%%/base/base_internalhash_types/libbase_internalhash_types_stubs.a +%%OCAML_SITELIBDIR%%/base/base_internalhash_types/base_internalhash_types.ml +%%OCAML_SITELIBDIR%%/base/base_internalhash_types/internalhash.h +%%OCAML_SITELIBDIR%%/base/base_internalhash_types/runtime.js +%%OCAML_SITELIBDIR%%/base/base_internalhash_types/base_internalhash_types.cmxs +%%OCAML_SITELIBDIR%%/base/exn.ml +%%OCAML_SITELIBDIR%%/base/base__Stack.cmti +%%OCAML_SITELIBDIR%%/base/base__Stack.cmx +%%OCAML_SITELIBDIR%%/base/base__Stack_intf.cmi +%%OCAML_SITELIBDIR%%/base/base__Stack_intf.cmt +%%OCAML_SITELIBDIR%%/base/base__Stack_intf.cmx +%%OCAML_SITELIBDIR%%/base/base__Staged.cmi +%%OCAML_SITELIBDIR%%/base/base__Staged.cmt +%%OCAML_SITELIBDIR%%/base/base__Staged.cmti +%%OCAML_SITELIBDIR%%/base/base__Staged.cmx +%%OCAML_SITELIBDIR%%/base/base__String.cmi +%%OCAML_SITELIBDIR%%/base/base__String.cmt +%%OCAML_SITELIBDIR%%/base/base__String.cmti +%%OCAML_SITELIBDIR%%/base/base__String.cmx +%%OCAML_SITELIBDIR%%/base/base__String0.cmi +%%OCAML_SITELIBDIR%%/base/base__String0.cmt +%%OCAML_SITELIBDIR%%/base/base__String0.cmx +%%OCAML_SITELIBDIR%%/base/base__Stringable.cmi +%%OCAML_SITELIBDIR%%/base/base__Sys.cmi +%%OCAML_SITELIBDIR%%/base/base__Stringable.cmt +%%OCAML_SITELIBDIR%%/base/base__Stringable.cmx +%%OCAML_SITELIBDIR%%/base/base__Sys.cmt +%%OCAML_SITELIBDIR%%/base/base__Sys.cmti +%%OCAML_SITELIBDIR%%/base/base__Sys.cmx +%%OCAML_SITELIBDIR%%/base/base__Sys0.cmi +%%OCAML_SITELIBDIR%%/base/base__Sys0.cmt +%%OCAML_SITELIBDIR%%/base/base__Sys0.cmx +%%OCAML_SITELIBDIR%%/base/base__Type_equal.cmi +%%OCAML_SITELIBDIR%%/base/base__Type_equal.cmt +%%OCAML_SITELIBDIR%%/base/base__Type_equal.cmti +%%OCAML_SITELIBDIR%%/base/base__Type_equal.cmx +%%OCAML_SITELIBDIR%%/base/base__Uchar.cmi +%%OCAML_SITELIBDIR%%/base/base__Uchar.cmt +%%OCAML_SITELIBDIR%%/base/base__Uchar.cmti +%%OCAML_SITELIBDIR%%/base/base__Uchar.cmx +%%OCAML_SITELIBDIR%%/base/base__Uchar0.cmi +%%OCAML_SITELIBDIR%%/base/base__Uchar0.cmt +%%OCAML_SITELIBDIR%%/base/blit.mli +%%OCAML_SITELIBDIR%%/base/base__Uchar0.cmx +%%OCAML_SITELIBDIR%%/base/base__Uniform_array.cmi +%%OCAML_SITELIBDIR%%/base/base__Uniform_array.cmt +%%OCAML_SITELIBDIR%%/base/base__Uniform_array.cmti +%%OCAML_SITELIBDIR%%/base/base__Uniform_array.cmx +%%OCAML_SITELIBDIR%%/base/base__Unit.cmi +%%OCAML_SITELIBDIR%%/base/base__Unit.cmt +%%OCAML_SITELIBDIR%%/base/base__Unit.cmti +%%OCAML_SITELIBDIR%%/base/base__Unit.cmx +%%OCAML_SITELIBDIR%%/base/base__Variant.cmi +%%OCAML_SITELIBDIR%%/base/base__Variant.cmt +%%OCAML_SITELIBDIR%%/base/base__Variant.cmti +%%OCAML_SITELIBDIR%%/base/base__Variant.cmx +%%OCAML_SITELIBDIR%%/base/base__Variantslib.cmi +%%OCAML_SITELIBDIR%%/base/base__Variantslib.cmt +%%OCAML_SITELIBDIR%%/base/base__Variantslib.cmx +%%OCAML_SITELIBDIR%%/base/base__With_return.cmi +%%OCAML_SITELIBDIR%%/base/exn.mli +%%OCAML_SITELIBDIR%%/base/base__With_return.cmt +%%OCAML_SITELIBDIR%%/base/base__With_return.cmti +%%OCAML_SITELIBDIR%%/base/base__With_return.cmx +%%OCAML_SITELIBDIR%%/base/base__Word_size.cmi +%%OCAML_SITELIBDIR%%/base/base__Word_size.cmt +%%OCAML_SITELIBDIR%%/base/base__Word_size.cmti +%%OCAML_SITELIBDIR%%/base/base__Word_size.cmx +%%OCAML_SITELIBDIR%%/base/binary_search.ml +%%OCAML_SITELIBDIR%%/base/binary_search.mli +%%OCAML_SITELIBDIR%%/base/binary_searchable.ml +%%OCAML_SITELIBDIR%%/base/binary_searchable.mli +%%OCAML_SITELIBDIR%%/base/binary_searchable_intf.ml +%%OCAML_SITELIBDIR%%/base/blit_intf.ml +%%OCAML_SITELIBDIR%%/base/bool.mli +%%OCAML_SITELIBDIR%%/base/bool0.ml +%%OCAML_SITELIBDIR%%/base/bool0.mli +%%OCAML_SITELIBDIR%%/base/buffer.ml +%%OCAML_SITELIBDIR%%/base/dllbase_internalhash_types_stubs.so +%%OCAML_SITELIBDIR%%/base/dllbase_stubs.so +%%OCAML_SITELIBDIR%%/base/dune-package +%%OCAML_SITELIBDIR%%/base/fn.ml +%%OCAML_SITELIBDIR%%/base/buffer.mli +%%OCAML_SITELIBDIR%%/base/buffer_intf.ml +%%OCAML_SITELIBDIR%%/base/bytes.ml +%%OCAML_SITELIBDIR%%/base/bytes.mli +%%OCAML_SITELIBDIR%%/base/bytes0.ml +%%OCAML_SITELIBDIR%%/base/bytes_tr.ml +%%OCAML_SITELIBDIR%%/base/char.mli +%%OCAML_SITELIBDIR%%/base/char0.ml +%%OCAML_SITELIBDIR%%/base/comparable.ml +%%OCAML_SITELIBDIR%%/base/comparable.mli +%%OCAML_SITELIBDIR%%/base/comparable_intf.ml +%%OCAML_SITELIBDIR%%/base/comparator.ml +%%OCAML_SITELIBDIR%%/base/comparator.mli +%%OCAML_SITELIBDIR%%/base/comparisons.ml +%%OCAML_SITELIBDIR%%/base/container.ml +%%OCAML_SITELIBDIR%%/base/container.mli +%%OCAML_SITELIBDIR%%/base/container_intf.ml +%%OCAML_SITELIBDIR%%/base/either.ml +%%OCAML_SITELIBDIR%%/base/either.mli +%%OCAML_SITELIBDIR%%/base/either0.ml +%%OCAML_SITELIBDIR%%/base/either_intf.ml +%%OCAML_SITELIBDIR%%/base/identifiable_intf.ml +%%OCAML_SITELIBDIR%%/base/equal.ml +%%OCAML_SITELIBDIR%%/base/error.ml +%%OCAML_SITELIBDIR%%/base/error.mli +%%OCAML_SITELIBDIR%%/base/field.ml +%%OCAML_SITELIBDIR%%/base/field.mli +%%OCAML_SITELIBDIR%%/base/fieldslib.ml +%%OCAML_SITELIBDIR%%/base/float.ml +%%OCAML_SITELIBDIR%%/base/float.mli +%%OCAML_SITELIBDIR%%/base/float0.ml +%%OCAML_SITELIBDIR%%/base/floatable.ml +%%OCAML_SITELIBDIR%%/base/fn.mli +%%OCAML_SITELIBDIR%%/base/formatter.ml +%%OCAML_SITELIBDIR%%/base/formatter.mli +%%OCAML_SITELIBDIR%%/base/globalize.ml +%%OCAML_SITELIBDIR%%/base/globalize.mli +%%OCAML_SITELIBDIR%%/base/hash.ml +%%OCAML_SITELIBDIR%%/base/hash.mli +%%OCAML_SITELIBDIR%%/base/hash_intf.ml +%%OCAML_SITELIBDIR%%/base/hash_set.ml +%%OCAML_SITELIBDIR%%/base/hash_set.mli +%%OCAML_SITELIBDIR%%/base/hash_set_intf.ml +%%OCAML_SITELIBDIR%%/base/hashable.ml +%%OCAML_SITELIBDIR%%/base/hashable.mli +%%OCAML_SITELIBDIR%%/base/info.ml +%%OCAML_SITELIBDIR%%/base/hashable_intf.ml +%%OCAML_SITELIBDIR%%/base/hasher.ml +%%OCAML_SITELIBDIR%%/base/hashtbl.ml +%%OCAML_SITELIBDIR%%/base/hashtbl.mli +%%OCAML_SITELIBDIR%%/base/hashtbl_intf.ml +%%OCAML_SITELIBDIR%%/base/hex_lexer.ml +%%OCAML_SITELIBDIR%%/base/hex_lexer.mli +%%OCAML_SITELIBDIR%%/base/identifiable.ml +%%OCAML_SITELIBDIR%%/base/identifiable.mli +%%OCAML_SITELIBDIR%%/base/import.ml +%%OCAML_SITELIBDIR%%/base/import0.ml +%%OCAML_SITELIBDIR%%/base/indexed_container.ml +%%OCAML_SITELIBDIR%%/base/indexed_container.mli +%%OCAML_SITELIBDIR%%/base/indexed_container_intf.ml +%%OCAML_SITELIBDIR%%/base/info.mli +%%OCAML_SITELIBDIR%%/base/info_intf.ml +%%OCAML_SITELIBDIR%%/base/int.ml +%%OCAML_SITELIBDIR%%/base/int.mli +%%OCAML_SITELIBDIR%%/base/int0.ml +%%OCAML_SITELIBDIR%%/base/int32.ml +%%OCAML_SITELIBDIR%%/base/lazy.ml +%%OCAML_SITELIBDIR%%/base/libbase_stubs.a +%%OCAML_SITELIBDIR%%/base/int32.mli +%%OCAML_SITELIBDIR%%/base/int63.ml +%%OCAML_SITELIBDIR%%/base/int63.mli +%%OCAML_SITELIBDIR%%/base/int63_emul.ml +%%OCAML_SITELIBDIR%%/base/int63_emul.mli +%%OCAML_SITELIBDIR%%/base/int64.ml +%%OCAML_SITELIBDIR%%/base/int64.mli +%%OCAML_SITELIBDIR%%/base/int_conversions.ml +%%OCAML_SITELIBDIR%%/base/int_conversions.mli +%%OCAML_SITELIBDIR%%/base/int_intf.ml +%%OCAML_SITELIBDIR%%/base/int_math.ml +%%OCAML_SITELIBDIR%%/base/int_math.mli +%%OCAML_SITELIBDIR%%/base/intable.ml +%%OCAML_SITELIBDIR%%/base/invariant.ml +%%OCAML_SITELIBDIR%%/base/invariant.mli +%%OCAML_SITELIBDIR%%/base/invariant_intf.ml +%%OCAML_SITELIBDIR%%/base/lazy.mli +%%OCAML_SITELIBDIR%%/base/linked_queue.ml +%%OCAML_SITELIBDIR%%/base/linked_queue.mli +%%OCAML_SITELIBDIR%%/base/linked_queue0.ml +%%OCAML_SITELIBDIR%%/base/list.ml +%%OCAML_SITELIBDIR%%/base/maybe_bound.ml +%%OCAML_SITELIBDIR%%/base/list.mli +%%OCAML_SITELIBDIR%%/base/list0.ml +%%OCAML_SITELIBDIR%%/base/list1.ml +%%OCAML_SITELIBDIR%%/base/map.ml +%%OCAML_SITELIBDIR%%/base/map.mli +%%OCAML_SITELIBDIR%%/base/map_intf.ml +%%OCAML_SITELIBDIR%%/base/md5/md5_lib.cmti +%%OCAML_SITELIBDIR%%/base/md5/md5_lib.a +%%OCAML_SITELIBDIR%%/base/md5/md5_lib.cma +%%OCAML_SITELIBDIR%%/base/md5/md5_lib.cmi +%%OCAML_SITELIBDIR%%/base/md5/md5_lib.cmt +%%OCAML_SITELIBDIR%%/base/md5/md5_lib.cmxa +%%OCAML_SITELIBDIR%%/base/md5/md5_lib.cmx +%%OCAML_SITELIBDIR%%/base/md5/md5_lib.cmxs +%%OCAML_SITELIBDIR%%/base/md5/md5_lib.ml +%%OCAML_SITELIBDIR%%/base/md5/md5_lib.mli +%%OCAML_SITELIBDIR%%/base/maybe_bound.mli +%%OCAML_SITELIBDIR%%/base/monad.ml +%%OCAML_SITELIBDIR%%/base/monad.mli +%%OCAML_SITELIBDIR%%/base/monad_intf.ml +%%OCAML_SITELIBDIR%%/base/nativeint.ml +%%OCAML_SITELIBDIR%%/base/nativeint.mli +%%OCAML_SITELIBDIR%%/base/nothing.ml +%%OCAML_SITELIBDIR%%/base/nothing.mli +%%OCAML_SITELIBDIR%%/base/obj_array.ml +%%OCAML_SITELIBDIR%%/base/obj_array.mli +%%OCAML_SITELIBDIR%%/base/obj_local.ml +%%OCAML_SITELIBDIR%%/base/obj_local.mli +%%OCAML_SITELIBDIR%%/base/opam +%%OCAML_SITELIBDIR%%/base/option.ml +%%OCAML_SITELIBDIR%%/base/option.mli +%%OCAML_SITELIBDIR%%/base/option_array.mli +%%OCAML_SITELIBDIR%%/base/option_array.ml +%%OCAML_SITELIBDIR%%/base/or_error.ml +%%OCAML_SITELIBDIR%%/base/or_error.mli +%%OCAML_SITELIBDIR%%/base/ordering.ml +%%OCAML_SITELIBDIR%%/base/ordered_collection_common.ml +%%OCAML_SITELIBDIR%%/base/ordered_collection_common.mli +%%OCAML_SITELIBDIR%%/base/ordered_collection_common0.ml +%%OCAML_SITELIBDIR%%/base/ordered_collection_common0.mli +%%OCAML_SITELIBDIR%%/base/ordering.mli +%%OCAML_SITELIBDIR%%/base/poly0.ml +%%OCAML_SITELIBDIR%%/base/poly0.mli +%%OCAML_SITELIBDIR%%/base/popcount.ml +%%OCAML_SITELIBDIR%%/base/popcount.mli +%%OCAML_SITELIBDIR%%/base/pow_overflow_bounds.ml +%%OCAML_SITELIBDIR%%/base/pow_overflow_bounds.mli +%%OCAML_SITELIBDIR%%/base/ppx_compare_lib.ml +%%OCAML_SITELIBDIR%%/base/ppx_compare_lib.mli +%%OCAML_SITELIBDIR%%/base/pretty_printer.ml +%%OCAML_SITELIBDIR%%/base/ppx_hash_lib.ml +%%OCAML_SITELIBDIR%%/base/ppx_enumerate_lib.ml +%%OCAML_SITELIBDIR%%/base/pretty_printer.mli +%%OCAML_SITELIBDIR%%/base/printf.ml +%%OCAML_SITELIBDIR%%/base/printf.mli +%%OCAML_SITELIBDIR%%/base/queue.ml +%%OCAML_SITELIBDIR%%/base/queue.mli +%%OCAML_SITELIBDIR%%/base/queue_intf.ml +%%OCAML_SITELIBDIR%%/base/random.ml +%%OCAML_SITELIBDIR%%/base/random.mli +%%OCAML_SITELIBDIR%%/base/random_repr.ml +%%OCAML_SITELIBDIR%%/base/ref.ml +%%OCAML_SITELIBDIR%%/base/ref.mli +%%OCAML_SITELIBDIR%%/base/result.ml +%%OCAML_SITELIBDIR%%/base/result.mli +%%OCAML_SITELIBDIR%%/base/runtime.js +%%OCAML_SITELIBDIR%%/base/sequence.ml +%%OCAML_SITELIBDIR%%/base/sequence.mli +%%OCAML_SITELIBDIR%%/base/set.ml +%%OCAML_SITELIBDIR%%/base/set.mli +%%OCAML_SITELIBDIR%%/base/set_intf.ml +%%OCAML_SITELIBDIR%%/base/sexp.ml +%%OCAML_SITELIBDIR%%/base/sexp.mli +%%OCAML_SITELIBDIR%%/base/sexpable.ml +%%OCAML_SITELIBDIR%%/base/shadow_stdlib/shadow_stdlib.cma +%%OCAML_SITELIBDIR%%/base/shadow_stdlib/shadow_stdlib.a +%%OCAML_SITELIBDIR%%/base/shadow_stdlib/shadow_stdlib.cmi +%%OCAML_SITELIBDIR%%/base/shadow_stdlib/shadow_stdlib.cmt +%%OCAML_SITELIBDIR%%/base/shadow_stdlib/shadow_stdlib.cmti +%%OCAML_SITELIBDIR%%/base/shadow_stdlib/shadow_stdlib.cmx +%%OCAML_SITELIBDIR%%/base/shadow_stdlib/shadow_stdlib.cmxa +%%OCAML_SITELIBDIR%%/base/shadow_stdlib/shadow_stdlib.ml +%%OCAML_SITELIBDIR%%/base/shadow_stdlib/shadow_stdlib.mli +%%OCAML_SITELIBDIR%%/base/shadow_stdlib/shadow_stdlib.cmxs +%%OCAML_SITELIBDIR%%/base/sign.ml +%%OCAML_SITELIBDIR%%/base/sexp_with_comparable.ml +%%OCAML_SITELIBDIR%%/base/sexp_with_comparable.mli +%%OCAML_SITELIBDIR%%/base/sexpable.mli +%%OCAML_SITELIBDIR%%/base/sign.mli +%%OCAML_SITELIBDIR%%/base/sign0.ml +%%OCAML_SITELIBDIR%%/base/sign_or_nan.ml +%%OCAML_SITELIBDIR%%/base/sign_or_nan.mli +%%OCAML_SITELIBDIR%%/base/source_code_position.ml +%%OCAML_SITELIBDIR%%/base/source_code_position.mli +%%OCAML_SITELIBDIR%%/base/source_code_position0.ml +%%OCAML_SITELIBDIR%%/base/stack.ml +%%OCAML_SITELIBDIR%%/base/stack.mli +%%OCAML_SITELIBDIR%%/base/stack_intf.ml +%%OCAML_SITELIBDIR%%/base/staged.ml +%%OCAML_SITELIBDIR%%/base/staged.mli +%%OCAML_SITELIBDIR%%/base/string.ml +%%OCAML_SITELIBDIR%%/base/string.mli +%%OCAML_SITELIBDIR%%/base/string0.ml +%%OCAML_SITELIBDIR%%/base/stringable.ml +%%OCAML_SITELIBDIR%%/base/sys.ml +%%OCAML_SITELIBDIR%%/base/sys.mli +%%OCAML_SITELIBDIR%%/base/sys0.ml +%%OCAML_SITELIBDIR%%/base/t.ml +%%OCAML_SITELIBDIR%%/base/type_equal.ml +%%OCAML_SITELIBDIR%%/base/type_equal.mli +%%OCAML_SITELIBDIR%%/base/uchar.ml +%%OCAML_SITELIBDIR%%/base/uchar.mli +%%OCAML_SITELIBDIR%%/base/uchar0.ml +%%OCAML_SITELIBDIR%%/base/uniform_array.ml +%%OCAML_SITELIBDIR%%/base/uniform_array.mli +%%OCAML_SITELIBDIR%%/base/unit.ml +%%OCAML_SITELIBDIR%%/base/unit.mli +%%OCAML_SITELIBDIR%%/base/variant.ml +%%OCAML_SITELIBDIR%%/base/variant.mli +%%OCAML_SITELIBDIR%%/base/variantslib.ml +%%OCAML_SITELIBDIR%%/base/with_return.ml +%%OCAML_SITELIBDIR%%/base/with_return.mli +%%OCAML_SITELIBDIR%%/base/word_size.ml +%%OCAML_SITELIBDIR%%/base/word_size.mli diff --git a/devel/ocaml-bos/Makefile b/devel/ocaml-bos/Makefile new file mode 100644 index 000000000000..804d48e750d0 --- /dev/null +++ b/devel/ocaml-bos/Makefile @@ -0,0 +1,57 @@ +PORTNAME= bos +PORTVERSION= 0.2.1 +CATEGORIES= devel +MASTER_SITES= https://erratique.ch/software/bos/releases/ +PKGNAMEPREFIX= ocaml- + +MAINTAINER= freebsd@dev.thsi.be +COMMENT= Basic OS interaction library for Objective Caml +WWW= https://erratique.ch/software/bos + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +BUILD_DEPENDS= ${SA_DIR}/astring/META:devel/ocaml-astring \ + ${SA_DIR}/fmt/META:devel/ocaml-fmt \ + ${SA_DIR}/fpath/META:devel/ocaml-fpath \ + ${SA_DIR}/logs/META:devel/ocaml-logs \ + ${SA_DIR}/mtime/META:devel/ocaml-mtime \ + ${SA_DIR}/rresult/META:devel/ocaml-rresult \ + ${SA_DIR}/topkg/META:devel/ocaml-topkg \ + ocamlbuild:devel/ocaml-ocamlbuild \ + opam-installer:devel/ocaml-opam +RUN_DEPENDS= ${SA_DIR}/astring/META:devel/ocaml-astring \ + ${SA_DIR}/fmt/META:devel/ocaml-fmt \ + ${SA_DIR}/fpath/META:devel/ocaml-fpath \ + ${SA_DIR}/logs/META:devel/ocaml-logs \ + ${SA_DIR}/mtime/META:devel/ocaml-mtime \ + ${SA_DIR}/rresult/META:devel/ocaml-rresult + +USES= tar:tbz +USE_OCAML= yes + +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} +PORTDOCS= CHANGES.md LICENSE.md README.md + +OPTIONS_DEFINE= DOCS + +SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} + +do-build: + @(cd ${BUILD_WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} \ + ocaml pkg/pkg.ml build \ + --jobs ${MAKE_JOBS_NUMBER}) + +do-install: + @(cd ${INSTALL_WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} \ + opam-installer -i \ + --prefix=${STAGEDIR}${PREFIX} \ + --docdir=${OCAML_DOCSDIR:S,^${PREFIX}/,,} \ + --libdir=${OCAML_SITELIBDIR} ${PORTNAME}.install) + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/bos.cmxs + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/bos_setup.cmxs + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/bos_top.cmxs + +.include diff --git a/devel/ocaml-bos/distinfo b/devel/ocaml-bos/distinfo new file mode 100644 index 000000000000..e5be60e273e5 --- /dev/null +++ b/devel/ocaml-bos/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1706842146 +SHA256 (bos-0.2.1.tbz) = d8d62e786b10d697e0457205a8eedeaa27ebcc90f1855f18df190cac2e3d8f37 +SIZE (bos-0.2.1.tbz) = 42330 diff --git a/devel/ocaml-bos/pkg-descr b/devel/ocaml-bos/pkg-descr new file mode 100644 index 000000000000..f49b018a1866 --- /dev/null +++ b/devel/ocaml-bos/pkg-descr @@ -0,0 +1,4 @@ +Basic OS interaction library for OCaml that works on POSIX and Windows +systems. It contains support for: building and executing command, +parsing command lines arguments, filesystem operations, environment +variables and some UNIX system calls. diff --git a/devel/ocaml-bos/pkg-plist b/devel/ocaml-bos/pkg-plist new file mode 100644 index 000000000000..1248f26b2ef9 --- /dev/null +++ b/devel/ocaml-bos/pkg-plist @@ -0,0 +1,36 @@ +%%OCAML_SITELIBDIR%%/bos/opam +%%OCAML_SITELIBDIR%%/bos/META +%%OCAML_SITELIBDIR%%/bos/bos.a +%%OCAML_SITELIBDIR%%/bos/bos.cma +%%OCAML_SITELIBDIR%%/bos/bos.cmi +%%OCAML_SITELIBDIR%%/bos/bos.cmti +%%OCAML_SITELIBDIR%%/bos/bos.cmx +%%OCAML_SITELIBDIR%%/bos/bos.cmxa +%%OCAML_SITELIBDIR%%/bos/bos.cmxs +%%OCAML_SITELIBDIR%%/bos/bos.mli +%%OCAML_SITELIBDIR%%/bos/bos_base.cmx +%%OCAML_SITELIBDIR%%/bos/bos_cmd.cmx +%%OCAML_SITELIBDIR%%/bos/bos_log.cmx +%%OCAML_SITELIBDIR%%/bos/bos_os_arg.cmx +%%OCAML_SITELIBDIR%%/bos/bos_os_cmd.cmx +%%OCAML_SITELIBDIR%%/bos/bos_os_dir.cmx +%%OCAML_SITELIBDIR%%/bos/bos_os_env.cmx +%%OCAML_SITELIBDIR%%/bos/bos_os_file.cmx +%%OCAML_SITELIBDIR%%/bos/bos_os_path.cmx +%%OCAML_SITELIBDIR%%/bos/bos_os_tmp.cmx +%%OCAML_SITELIBDIR%%/bos/bos_os_u.cmx +%%OCAML_SITELIBDIR%%/bos/bos_pat.cmx +%%OCAML_SITELIBDIR%%/bos/bos_setup.a +%%OCAML_SITELIBDIR%%/bos/bos_setup.cma +%%OCAML_SITELIBDIR%%/bos/bos_setup.cmi +%%OCAML_SITELIBDIR%%/bos/bos_setup.cmti +%%OCAML_SITELIBDIR%%/bos/bos_setup.cmx +%%OCAML_SITELIBDIR%%/bos/bos_setup.cmxa +%%OCAML_SITELIBDIR%%/bos/bos_setup.cmxs +%%OCAML_SITELIBDIR%%/bos/bos_setup.mli +%%OCAML_SITELIBDIR%%/bos/bos_top.a +%%OCAML_SITELIBDIR%%/bos/bos_top.cma +%%OCAML_SITELIBDIR%%/bos/bos_top.cmx +%%OCAML_SITELIBDIR%%/bos/bos_top.cmxa +%%OCAML_SITELIBDIR%%/bos/bos_top.cmxs +%%OCAML_SITELIBDIR%%/bos/bos_top_init.ml diff --git a/devel/ocaml-calendar/Makefile b/devel/ocaml-calendar/Makefile index 8460ec8bce2e..0e989f411b57 100644 --- a/devel/ocaml-calendar/Makefile +++ b/devel/ocaml-calendar/Makefile @@ -1,20 +1,20 @@ PORTNAME= calendar PORTVERSION= 2.03.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://forge.ocamlcore.org/frs/download.php/915/ PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= Date and time library for OCaml WWW= http://calendar.forge.ocamlcore.org/ LICENSE= LGPL21 GNU_CONFIGURE= yes USES= gmake USE_OCAML= yes USE_OCAML_FINDLIB= yes USE_OCAMLFIND_PLIST= yes .include diff --git a/devel/ocaml-camljava/Makefile b/devel/ocaml-camljava/Makefile index 0a19fa16bbb9..92fed506eca4 100644 --- a/devel/ocaml-camljava/Makefile +++ b/devel/ocaml-camljava/Makefile @@ -1,29 +1,29 @@ PORTNAME= camljava PORTVERSION= 0.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel java MASTER_SITES= http://caml.inria.fr/distrib/bazar-ocaml/ PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= OCaml-Java library interface WWW= https://caml.inria.fr/ USE_OCAML= yes USE_JAVA= yes post-patch: @${REINPLACE_CMD} -e "s,^\(JAVAC=\).*,\1${JAVAC},g" \ -e "s,^\(JDKHOME=\).*,\1${JAVA_HOME},g" \ -e "s,include/linux,include/freebsd,g" \ -e "s,^CFLAGS=.*,#\&,g" \ -e "s,^\(CC=\).*,#\&,g" \ -e "s,i386,${ARCH},g" \ ${WRKSRC}/Makefile.config @${REINPLACE_CMD} -e 's,(int64,&_t,' ${WRKSRC}/lib/jnistubs.c test: @${ECHO_CMD} "Testing IDL library" cd ${WRKSRC}/test && ${SETENV} ${MAKE_ENV} ${MAKE} all .include diff --git a/devel/ocaml-camlp-streams/Makefile b/devel/ocaml-camlp-streams/Makefile new file mode 100644 index 000000000000..781bcf482bdd --- /dev/null +++ b/devel/ocaml-camlp-streams/Makefile @@ -0,0 +1,31 @@ +PORTNAME= camlp-streams +PORTVERSION= 5.0.1 +DISTVERSIONPREFIX= v +CATEGORIES= devel +PKGNAMEPREFIX= ocaml- + +MAINTAINER= freebsd@dev.thsi.be +COMMENT= Stream and Genlex libraries for OCaml +WWW= https://github.com/ocaml/camlp-streams + +LICENSE= LGPL21 + +USES= ocaml:dune +USE_GITHUB= yes +GH_ACCOUNT= ocaml +USE_OCAML= yes + +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} +PORTDOCS= CHANGES.md LICENSE README.md + +OPTIONS_DEFINE= DOCS + +post-patch: + ${REINPLACE_CMD} \ + -e "s/(name ${PORTNAME})/&\n (version ${PORTVERSION})/" \ + ${WRKSRC}/dune-project + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/camlp_streams.cmxs + +.include diff --git a/devel/ocaml-camlp-streams/distinfo b/devel/ocaml-camlp-streams/distinfo new file mode 100644 index 000000000000..77bb582a62d9 --- /dev/null +++ b/devel/ocaml-camlp-streams/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1706843132 +SHA256 (ocaml-camlp-streams-v5.0.1_GH0.tar.gz) = ad71f62406e9bb4e7fb5d4593ede2af6c68f8b0d96f25574446e142c3eb0d9a4 +SIZE (ocaml-camlp-streams-v5.0.1_GH0.tar.gz) = 17392 diff --git a/devel/ocaml-camlp-streams/pkg-descr b/devel/ocaml-camlp-streams/pkg-descr new file mode 100644 index 000000000000..1d6a9860e668 --- /dev/null +++ b/devel/ocaml-camlp-streams/pkg-descr @@ -0,0 +1,10 @@ +OCaml library package providing the `Genlex' and the `Stream' +modules which used to be part of the standard library of the +OCaml compiler before its version 5.0. + +To ease the transition to OCaml 5, it is recommended for new OCaml +code to be compiled against this package, even if targetting on OCaml 4.x. + +Beware that due to the value-type (in)equality, it is not possible to +mix values produced by this library and values produced by the OCaml +4.x standard library equivalent as if they were of the same type. diff --git a/devel/ocaml-camlp-streams/pkg-plist b/devel/ocaml-camlp-streams/pkg-plist new file mode 100644 index 000000000000..7fb62db319fb --- /dev/null +++ b/devel/ocaml-camlp-streams/pkg-plist @@ -0,0 +1,19 @@ +%%OCAML_SITELIBDIR%%/camlp-streams/META +%%OCAML_SITELIBDIR%%/camlp-streams/camlp_streams.a +%%OCAML_SITELIBDIR%%/camlp-streams/camlp_streams.cma +%%OCAML_SITELIBDIR%%/camlp-streams/camlp_streams.cmxa +%%OCAML_SITELIBDIR%%/camlp-streams/dune-package +%%OCAML_SITELIBDIR%%/camlp-streams/genlex.cmi +%%OCAML_SITELIBDIR%%/camlp-streams/genlex.cmt +%%OCAML_SITELIBDIR%%/camlp-streams/genlex.cmti +%%OCAML_SITELIBDIR%%/camlp-streams/genlex.cmx +%%OCAML_SITELIBDIR%%/camlp-streams/genlex.ml +%%OCAML_SITELIBDIR%%/camlp-streams/genlex.mli +%%OCAML_SITELIBDIR%%/camlp-streams/opam +%%OCAML_SITELIBDIR%%/camlp-streams/stream.cmi +%%OCAML_SITELIBDIR%%/camlp-streams/stream.cmt +%%OCAML_SITELIBDIR%%/camlp-streams/stream.cmti +%%OCAML_SITELIBDIR%%/camlp-streams/stream.cmx +%%OCAML_SITELIBDIR%%/camlp-streams/stream.ml +%%OCAML_SITELIBDIR%%/camlp-streams/stream.mli +%%OCAML_SITELIBDIR%%/camlp-streams/camlp_streams.cmxs diff --git a/devel/ocaml-camlp4/Makefile b/devel/ocaml-camlp4/Makefile index 370fe1b15a4e..fb5f4d51eb6d 100644 --- a/devel/ocaml-camlp4/Makefile +++ b/devel/ocaml-camlp4/Makefile @@ -1,30 +1,30 @@ PORTNAME= camlp4 -PORTVERSION= 4.08+1 +PORTVERSION= 4.14+1 CATEGORIES= devel PKGNAMEPREFIX= ocaml- MAINTAINER= michipili@gmail.com COMMENT= System for writing extensible parsers for OCaml WWW= https://github.com/ocaml/camlp4 LICENSE= LGPL20 BUILD_DEPENDS= ocamlbuild:devel/ocaml-ocamlbuild USE_GITHUB= yes GH_ACCOUNT= ocaml USES= gmake USE_OCAML= yes HAS_CONFIGURE= yes MAKE_ENV+= DESTDIR="${STAGEDIR}" MAKE_JOBS_UNSAFE=yes ALL_TARGET= all camlp4/META INSTALL_TARGET= install install-META post-install: .for f in camlp4o camlp4of camlp4oof camlp4orf camlp4r camlp4rf ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${f}.opt .endfor .include diff --git a/devel/ocaml-camlp4/distinfo b/devel/ocaml-camlp4/distinfo index aac47793f324..88b2f8903504 100644 --- a/devel/ocaml-camlp4/distinfo +++ b/devel/ocaml-camlp4/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1681674686 -SHA256 (ocaml-camlp4-4.08+1_GH0.tar.gz) = 655cd3bdcafbf8435877f60f4b47dd2eb69feef5afd8881291ef01ba12bd9d88 -SIZE (ocaml-camlp4-4.08+1_GH0.tar.gz) = 649830 +TIMESTAMP = 1706800558 +SHA256 (ocaml-camlp4-4.14+1_GH0.tar.gz) = 553b6805dffc05eb4749b0293df47a18b82b9d9dcc125d688e55f13cbec0b93a +SIZE (ocaml-camlp4-4.14+1_GH0.tar.gz) = 653215 diff --git a/devel/ocaml-camlp5/Makefile b/devel/ocaml-camlp5/Makefile index 95618a8539b6..a4e713f0b71c 100644 --- a/devel/ocaml-camlp5/Makefile +++ b/devel/ocaml-camlp5/Makefile @@ -1,50 +1,61 @@ PORTNAME= camlp5 -PORTVERSION= 7.14 -PORTREVISION= 2 +PORTVERSION= 8.02.01 CATEGORIES= devel PKGNAMEPREFIX= ocaml- MAINTAINER= hrs@FreeBSD.org COMMENT= Preprocessor-pretty-printer of OCaml -WWW= http://camlp5.gforge.inria.fr/ +WWW= https://camlp5.github.io LICENSE= INRIA LICENSE_NAME= INRIA permissive license with copyright notice requirements LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -USES= perl5 tar:tgz +BUILD_DEPENDS= ${SA_DIR}/bos/META:devel/ocaml-bos \ + ${SA_DIR}/camlp-streams/META:devel/ocaml-camlp-streams \ + ${SA_DIR}/fmt/META:devel/ocaml-fmt \ + ${SA_DIR}/pcre2/META:devel/ocaml-pcre2 \ + ${SA_DIR}/re/META:devel/ocaml-re \ + ${SA_DIR}/rresult/META:devel/ocaml-rresult +RUN_DEPENDS= ${SA_DIR}/camlp-streams/META:devel/ocaml-camlp-streams \ + ${SA_DIR}/pcre2/META:devel/ocaml-pcre2 \ + ${SA_DIR}/re/META:devel/ocaml-re \ + ${SA_DIR}/rresult/META:devel/ocaml-rresult + +USES= gmake perl5 tar:tgz USE_GITHUB= yes -GH_TAGNAME= rel${PORTVERSION:S/.//} USE_OCAML= yes USE_PERL5= build HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix ${PREFIX} --mandir ${PREFIX}/share/man ALL_TARGET= world.opt MAKE_JOBS_UNSAFE=yes OPTIONS_SINGLE= MODE OPTIONS_SINGLE_MODE= TRANSITIONAL STRICT OPTIONS_DEFAULT= STRICT TRANSITIONAL_DESC= Compatible syntax tree with old versions STRICT_DESC= New syntax tree quotations kit OPTIONS_DEFINE= DOCS DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} PORTDOCS= CHANGES DEVEL ICHANGES MODE README.md UPGRADING STRICT_CONFIGURE_ON= --strict TRANSITIONAL_CONFIGURE_ON= --transitional +SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} + post-install: ${INSTALL_DATA} ${WRKSRC}/etc/META \ ${STAGEDIR}${PREFIX}/lib/ocaml/camlp5 ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/camlp5*.opt \ ${STAGEDIR}${PREFIX}/${OCAML_LIBDIR}/camlp5/*.o post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/ocaml-camlp5/distinfo b/devel/ocaml-camlp5/distinfo index 435704ed2e3e..7d5693e74202 100644 --- a/devel/ocaml-camlp5/distinfo +++ b/devel/ocaml-camlp5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1609024910 -SHA256 (camlp5-camlp5-7.14-rel714_GH0.tar.gz) = 6e84b9bc04e03b05bd1ec15500f0b8f4ef4ea81576a1aa7037ef01c84cf76da5 -SIZE (camlp5-camlp5-7.14-rel714_GH0.tar.gz) = 1044110 +TIMESTAMP = 1706825749 +SHA256 (camlp5-camlp5-8.02.01_GH0.tar.gz) = 58d4bce0c20fa1151fc2c15f172f5884472e2044a4b0da22aababf46c361e515 +SIZE (camlp5-camlp5-8.02.01_GH0.tar.gz) = 1260482 diff --git a/devel/ocaml-camlp5/pkg-plist b/devel/ocaml-camlp5/pkg-plist index b7cf43648feb..1e76e9d183e8 100644 --- a/devel/ocaml-camlp5/pkg-plist +++ b/devel/ocaml-camlp5/pkg-plist @@ -1,218 +1,248 @@ bin/camlp5 bin/camlp5o bin/camlp5o.opt bin/camlp5r bin/camlp5r.opt bin/camlp5sch bin/mkcamlp5 bin/mkcamlp5.opt bin/ocpp5 lib/ocaml/camlp5/META lib/ocaml/camlp5/ast2pt.cmi +lib/ocaml/camlp5/ast2pt.cmx lib/ocaml/camlp5/ast2pt.mli +lib/ocaml/camlp5/asttools.cmi +lib/ocaml/camlp5/asttools.cmx lib/ocaml/camlp5/camlp5.a lib/ocaml/camlp5/camlp5.cma lib/ocaml/camlp5/camlp5.cmxa lib/ocaml/camlp5/camlp5_top.cma +lib/ocaml/camlp5/camlp5_top_funs.cmi +lib/ocaml/camlp5/camlp5_top_funs.cmo lib/ocaml/camlp5/camlp5o.cma lib/ocaml/camlp5/camlp5r.cma lib/ocaml/camlp5/camlp5sch.cma lib/ocaml/camlp5/diff.cmi lib/ocaml/camlp5/diff.cmx lib/ocaml/camlp5/diff.mli lib/ocaml/camlp5/eprinter.cmi lib/ocaml/camlp5/eprinter.cmx lib/ocaml/camlp5/eprinter.mli lib/ocaml/camlp5/extfold.cmi lib/ocaml/camlp5/extfold.cmx lib/ocaml/camlp5/extfold.mli lib/ocaml/camlp5/extfun.cmi lib/ocaml/camlp5/extfun.cmx lib/ocaml/camlp5/extfun.mli lib/ocaml/camlp5/fstream.cmi lib/ocaml/camlp5/fstream.cmx lib/ocaml/camlp5/fstream.mli lib/ocaml/camlp5/gramext.cmi lib/ocaml/camlp5/gramext.cmx lib/ocaml/camlp5/gramext.mli lib/ocaml/camlp5/gramlib.a lib/ocaml/camlp5/gramlib.cma lib/ocaml/camlp5/gramlib.cmxa lib/ocaml/camlp5/grammar.cmi lib/ocaml/camlp5/grammar.cmx lib/ocaml/camlp5/grammar.mli lib/ocaml/camlp5/lib.sml lib/ocaml/camlp5/mLast.cmi lib/ocaml/camlp5/mLast.mli +lib/ocaml/camlp5/mlsyntax.cmi +lib/ocaml/camlp5/mlsyntax.cmx lib/ocaml/camlp5/ocpp.cmo lib/ocaml/camlp5/odyl.a lib/ocaml/camlp5/odyl.cma lib/ocaml/camlp5/odyl.cmo lib/ocaml/camlp5/odyl.cmx lib/ocaml/camlp5/odyl.cmxa lib/ocaml/camlp5/odyl.o +lib/ocaml/camlp5/pa_schemer.cmo +lib/ocaml/camlp5/pa_schemer.cmx +lib/ocaml/camlp5/pa_schemer.o lib/ocaml/camlp5/pa_extend.cmi lib/ocaml/camlp5/pa_extend.cmo lib/ocaml/camlp5/pa_extend.cmx lib/ocaml/camlp5/pa_extend.o lib/ocaml/camlp5/pa_extend_m.cmo lib/ocaml/camlp5/pa_extend_m.cmx lib/ocaml/camlp5/pa_extend_m.o lib/ocaml/camlp5/pa_extfold.cmo lib/ocaml/camlp5/pa_extfold.cmx lib/ocaml/camlp5/pa_extfold.o lib/ocaml/camlp5/pa_extfun.cmo lib/ocaml/camlp5/pa_extfun.cmx lib/ocaml/camlp5/pa_extfun.o lib/ocaml/camlp5/pa_extprint.cmo lib/ocaml/camlp5/pa_extprint.cmx lib/ocaml/camlp5/pa_extprint.o lib/ocaml/camlp5/pa_fstream.cmo lib/ocaml/camlp5/pa_fstream.cmx lib/ocaml/camlp5/pa_fstream.o lib/ocaml/camlp5/pa_lefteval.cmo lib/ocaml/camlp5/pa_lefteval.cmx lib/ocaml/camlp5/pa_lefteval.o lib/ocaml/camlp5/pa_lexer.cmo lib/ocaml/camlp5/pa_lexer.cmx lib/ocaml/camlp5/pa_lexer.o lib/ocaml/camlp5/pa_lisp.cmo lib/ocaml/camlp5/pa_lisp.cmx lib/ocaml/camlp5/pa_lisp.o lib/ocaml/camlp5/pa_macro.cmi lib/ocaml/camlp5/pa_macro.cmo lib/ocaml/camlp5/pa_macro.cmx lib/ocaml/camlp5/pa_macro.o lib/ocaml/camlp5/pa_macro_gram.cmi lib/ocaml/camlp5/pa_macro_gram.cmo lib/ocaml/camlp5/pa_macro_gram.cmx lib/ocaml/camlp5/pa_macro_gram.o lib/ocaml/camlp5/pa_macro_print.cmo lib/ocaml/camlp5/pa_macro_print.cmx lib/ocaml/camlp5/pa_macro_print.o lib/ocaml/camlp5/pa_mkast.cmo lib/ocaml/camlp5/pa_mkast.cmx lib/ocaml/camlp5/pa_mkast.o lib/ocaml/camlp5/pa_mktest.cmo lib/ocaml/camlp5/pa_mktest.cmx lib/ocaml/camlp5/pa_mktest.o lib/ocaml/camlp5/pa_o.cmo lib/ocaml/camlp5/pa_o.cmx lib/ocaml/camlp5/pa_o.o lib/ocaml/camlp5/pa_o_fast.cmx lib/ocaml/camlp5/pa_o_fast.o lib/ocaml/camlp5/pa_oop.cmo lib/ocaml/camlp5/pa_oop.cmx lib/ocaml/camlp5/pa_oop.o lib/ocaml/camlp5/pa_op.cmo lib/ocaml/camlp5/pa_op.cmx lib/ocaml/camlp5/pa_op.o lib/ocaml/camlp5/pa_pprintf.cmo lib/ocaml/camlp5/pa_pprintf.cmx lib/ocaml/camlp5/pa_pprintf.o lib/ocaml/camlp5/pa_pragma.cmo lib/ocaml/camlp5/pa_pragma.cmx lib/ocaml/camlp5/pa_pragma.o lib/ocaml/camlp5/pa_r.cmo lib/ocaml/camlp5/pa_r.cmx lib/ocaml/camlp5/pa_r.o lib/ocaml/camlp5/pa_reloc.cmo lib/ocaml/camlp5/pa_reloc.cmx lib/ocaml/camlp5/pa_reloc.o lib/ocaml/camlp5/pa_rp.cmo lib/ocaml/camlp5/pa_rp.cmx lib/ocaml/camlp5/pa_rp.o lib/ocaml/camlp5/pa_scheme.cmo lib/ocaml/camlp5/pa_scheme.cmx lib/ocaml/camlp5/pa_scheme.o lib/ocaml/camlp5/pa_sml.cmo lib/ocaml/camlp5/pa_sml.cmx lib/ocaml/camlp5/pa_sml.o +lib/ocaml/camlp5/papr_phony_macro.cmo +lib/ocaml/camlp5/papr_phony_macro.cmx +lib/ocaml/camlp5/papr_phony_macro.o lib/ocaml/camlp5/pcaml.cmi +lib/ocaml/camlp5/pcaml.cmx lib/ocaml/camlp5/pcaml.mli lib/ocaml/camlp5/plexer.cmi lib/ocaml/camlp5/plexer.cmx lib/ocaml/camlp5/plexer.mli lib/ocaml/camlp5/plexing.cmi lib/ocaml/camlp5/plexing.cmx lib/ocaml/camlp5/plexing.mli lib/ocaml/camlp5/ploc.cmi lib/ocaml/camlp5/ploc.cmx lib/ocaml/camlp5/ploc.mli +lib/ocaml/camlp5/pp_debug.cmi +lib/ocaml/camlp5/pp_debug.cmx lib/ocaml/camlp5/pprintf.cmi lib/ocaml/camlp5/pprintf.cmx lib/ocaml/camlp5/pprintf.mli lib/ocaml/camlp5/pr_depend.cmo lib/ocaml/camlp5/pr_depend.cmx lib/ocaml/camlp5/pr_depend.o lib/ocaml/camlp5/pr_dump.cmo lib/ocaml/camlp5/pr_dump.cmx lib/ocaml/camlp5/pr_dump.o lib/ocaml/camlp5/pr_extend.cmo lib/ocaml/camlp5/pr_extend.cmx lib/ocaml/camlp5/pr_extend.o lib/ocaml/camlp5/pr_extfun.cmo lib/ocaml/camlp5/pr_extfun.cmx lib/ocaml/camlp5/pr_extfun.o lib/ocaml/camlp5/pr_extprint.cmo lib/ocaml/camlp5/pr_extprint.cmx lib/ocaml/camlp5/pr_extprint.o lib/ocaml/camlp5/pr_null.cmo lib/ocaml/camlp5/pr_null.cmx lib/ocaml/camlp5/pr_null.o +lib/ocaml/camlp5/pr_o.cmi lib/ocaml/camlp5/pr_o.cmo lib/ocaml/camlp5/pr_o.cmx lib/ocaml/camlp5/pr_o.o +lib/ocaml/camlp5/pr_official.cmo +lib/ocaml/camlp5/pr_official.cmx +lib/ocaml/camlp5/pr_official.o lib/ocaml/camlp5/pr_op.cmo lib/ocaml/camlp5/pr_op.cmx lib/ocaml/camlp5/pr_op.o +lib/ocaml/camlp5/pr_r.cmi lib/ocaml/camlp5/pr_r.cmo lib/ocaml/camlp5/pr_r.cmx lib/ocaml/camlp5/pr_r.o lib/ocaml/camlp5/pr_ro.cmo lib/ocaml/camlp5/pr_ro.cmx lib/ocaml/camlp5/pr_ro.o lib/ocaml/camlp5/pr_rp.cmo lib/ocaml/camlp5/pr_rp.cmx lib/ocaml/camlp5/pr_rp.o lib/ocaml/camlp5/pr_scheme.cmo lib/ocaml/camlp5/pr_scheme.cmx lib/ocaml/camlp5/pr_scheme.o lib/ocaml/camlp5/pr_schemep.cmo lib/ocaml/camlp5/pr_schemep.cmx lib/ocaml/camlp5/pr_schemep.o lib/ocaml/camlp5/pretty.cmi lib/ocaml/camlp5/pretty.cmx lib/ocaml/camlp5/pretty.mli lib/ocaml/camlp5/prtools.cmi +lib/ocaml/camlp5/prtools.cmx lib/ocaml/camlp5/prtools.mli +lib/ocaml/camlp5/q_MLast.cmi lib/ocaml/camlp5/q_MLast.cmo lib/ocaml/camlp5/q_MLast.cmx lib/ocaml/camlp5/q_MLast.o +lib/ocaml/camlp5/q_ast.cmi lib/ocaml/camlp5/q_ast.cmo lib/ocaml/camlp5/q_ast.cmx lib/ocaml/camlp5/q_ast.o +lib/ocaml/camlp5/q_ast_base.cmi +lib/ocaml/camlp5/q_ast_base.cmo +lib/ocaml/camlp5/q_ast_base.cmx +lib/ocaml/camlp5/q_ast_base.o lib/ocaml/camlp5/q_phony.cmo lib/ocaml/camlp5/q_phony.cmx lib/ocaml/camlp5/q_phony.o lib/ocaml/camlp5/quotation.cmi +lib/ocaml/camlp5/quotation.cmx lib/ocaml/camlp5/quotation.mli lib/ocaml/camlp5/reloc.cmi +lib/ocaml/camlp5/reloc.cmx lib/ocaml/camlp5/reloc.mli lib/ocaml/camlp5/stdpp.cmi lib/ocaml/camlp5/stdpp.cmx lib/ocaml/camlp5/stdpp.mli lib/ocaml/camlp5/token.cmi lib/ocaml/camlp5/token.cmx lib/ocaml/camlp5/token.mli lib/ocaml/camlp5/versdep.cmi lib/ocaml/camlp5/versdep.cmx share/man/man1/camlp5.1.gz share/man/man1/camlp5o.1.gz share/man/man1/camlp5o.opt.1.gz share/man/man1/camlp5r.1.gz share/man/man1/camlp5r.opt.1.gz share/man/man1/camlp5sch.1.gz share/man/man1/mkcamlp5.1.gz share/man/man1/mkcamlp5.opt.1.gz share/man/man1/ocpp5.1.gz diff --git a/devel/ocaml-camomile/Makefile b/devel/ocaml-camomile/Makefile index 5f0c49154a86..fef9628df493 100644 --- a/devel/ocaml-camomile/Makefile +++ b/devel/ocaml-camomile/Makefile @@ -1,36 +1,40 @@ PORTNAME= camomile PORTVERSION= 1.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= ocaml- MAINTAINER= danfe@FreeBSD.org COMMENT= Comprehensive Unicode library for Objective Caml WWW= https://camomile.sourceforge.net/ LICENSE= LGPL21 -BUILD_DEPENDS= dune:devel/ocaml-dune +BUILD_DEPENDS= ${SA_DIR}/camlp-streams/META:devel/ocaml-camlp-streams \ + dune:devel/ocaml-dune +RUN_DEPENDS= ${SA_DIR}/camlp-streams/META:devel/ocaml-camlp-streams USES= gmake USE_GITHUB= yes GH_ACCOUNT= yoriyuki GH_PROJECT= Camomile USE_OCAML= yes MAKE_ENV= LIBDIR="${PREFIX}/${OCAML_SITELIBDIR}" DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} PORTDOCS= CHANGES.md LICENSE.md README.md OPTIONS_DEFINE= DOCS +SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} + post-patch: @${REINPLACE_CMD} -e '/^INSTALL_ARGS/ \ s:$$: $$(if $$(LIBDIR),--libdir $$(LIBDIR),):' \ ${WRKSRC}/Makefile @${REINPLACE_CMD} -e 's,(\*\*,(*,' \ ${WRKSRC}/Camomile/public/uCharInfo.mli \ ${WRKSRC}/Camomile/public/stringPrep.ml* .include diff --git a/devel/ocaml-camomile/files/patch-Camomile_dune b/devel/ocaml-camomile/files/patch-Camomile_dune new file mode 100644 index 000000000000..0cecc40282b3 --- /dev/null +++ b/devel/ocaml-camomile/files/patch-Camomile_dune @@ -0,0 +1,11 @@ +--- Camomile/dune.orig 2024-02-11 22:33:43 UTC ++++ Camomile/dune +@@ -9,7 +9,7 @@ + (name camomileLibrary) + (public_name camomile.library) + (wrapped true) +- (libraries bigarray camomileDefaultConfig) ++ (libraries bigarray camomileDefaultConfig camlp-streams) + (modules + :standard \ camomileDefaultConfig + camomile_do_not_use diff --git a/devel/ocaml-camomile/files/patch-Camomile_tools_dune b/devel/ocaml-camomile/files/patch-Camomile_tools_dune new file mode 100644 index 000000000000..d13b51aac180 --- /dev/null +++ b/devel/ocaml-camomile/files/patch-Camomile_tools_dune @@ -0,0 +1,10 @@ +--- Camomile/tools/dune.orig 2024-02-11 22:37:19 UTC ++++ Camomile/tools/dune +@@ -21,6 +21,6 @@ + + (executable + (name camomilelocaledef) +- (libraries toolslib camomile.library) ++ (libraries toolslib camomile.library camlp-streams) + (flags -I Camomile :standard) + (modules camomilelocaledef camomilelocaledef_lexer)) diff --git a/devel/ocaml-cfg/Makefile b/devel/ocaml-cfg/Makefile index a31b0fe69501..6040c5242df0 100644 --- a/devel/ocaml-cfg/Makefile +++ b/devel/ocaml-cfg/Makefile @@ -1,35 +1,35 @@ PORTNAME= cfg PORTVERSION= 2.2.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= Library for manipulating context-free grammars WWW= https://mmottl.github.io/cfg/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= dune:devel/ocaml-dune USE_GITHUB= yes GH_ACCOUNT= mmottl USE_OCAML= yes DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} EXAMPLESDIR= ${OCAML_EXAMPLESDIR}/${PORTNAME} OPTIONS_DEFINE= DOCS EXAMPLES do-build: cd ${BUILD_WRKSRC} && dune build --verbose do-install: cd ${INSTALL_WRKSRC} && dune install --destdir=${STAGEDIR} \ --libdir=${PREFIX}/${OCAML_SITELIBDIR} post-install-EXAMPLES-on: @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) .include diff --git a/devel/ocaml-classes/Makefile b/devel/ocaml-classes/Makefile index cb5f3034f938..d849d81a3e0f 100644 --- a/devel/ocaml-classes/Makefile +++ b/devel/ocaml-classes/Makefile @@ -1,20 +1,20 @@ PORTNAME= classes PORTVERSION= 4.00 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/dist/ PKGNAMEPREFIX= ocaml- DISTNAME= ocaml-${PORTNAME}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Ocaml Object interface for ocaml's standard library modules WWW= http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/classes/ LICENSE= LGPL21 USE_OCAML= yes USE_OCAML_FINDLIB= yes USE_OCAMLFIND_PLIST= yes MAKE_ENV= INSTALL="${INSTALL_DATA}" .include diff --git a/devel/ocaml-cmdliner/Makefile b/devel/ocaml-cmdliner/Makefile index b206944441e4..f2f7e811ae41 100644 --- a/devel/ocaml-cmdliner/Makefile +++ b/devel/ocaml-cmdliner/Makefile @@ -1,26 +1,26 @@ PORTNAME= cmdliner PORTVERSION= 1.0.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= https://erratique.ch/software/cmdliner/releases/ PKGNAMEPREFIX= ocaml- MAINTAINER= danfe@FreeBSD.org COMMENT= OCaml module for handling command-line interfaces WWW= https://erratique.ch/software/cmdliner LICENSE= ISCL LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gmake tar:tbz USE_OCAML= yes USE_OCAML_LDCONFIG= yes MAKE_JOBS_UNSAFE= tes MAKE_ARGS= DOCDIR=${STAGEDIR}${OCAML_DOCSDIR}/${PORTNAME} \ LIBDIR=${STAGEDIR}${PREFIX}/${OCAML_LDLIBS} INSTALL_TARGET= install OPTIONS_DEFINE= DOCS DOCS_INSTALL_TARGET= install-doc .include diff --git a/devel/ocaml-cppo/Makefile b/devel/ocaml-cppo/Makefile index dbcfb9d6dc68..997590c923a8 100644 --- a/devel/ocaml-cppo/Makefile +++ b/devel/ocaml-cppo/Makefile @@ -1,28 +1,28 @@ PORTNAME= cppo DISTVERSIONPREFIX= v DISTVERSION= 1.6.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= ocaml- MAINTAINER= eduardo@FreeBSD.org COMMENT= C-style preprocessor for OCaml WWW= https://github.com/ocaml-community/cppo LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= dune:devel/ocaml-dune \ ocamlbuild:devel/ocaml-ocamlbuild USE_GITHUB= yes GH_ACCOUNT= ocaml-community USE_OCAML= yes OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/cppo ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ocaml/cppo_ocamlbuild/cppo_ocamlbuild.cmxs .include diff --git a/devel/ocaml-csexp/Makefile b/devel/ocaml-csexp/Makefile new file mode 100644 index 000000000000..6c8196f68fee --- /dev/null +++ b/devel/ocaml-csexp/Makefile @@ -0,0 +1,32 @@ +PORTNAME= csexp +PORTVERSION= 1.5.2 +PORTREVISION= 1 +CATEGORIES= devel +PKGNAMEPREFIX= ocaml- + +MAINTAINER= freebsd@dev.thsi.be +COMMENT= Canonical S-expressions for OCaml +WWW= https://github.com/ocaml-dune/csexp + +LICENSE= MIT + +USES= ocaml:dune +USE_GITHUB= yes +GH_ACCOUNT= ocaml-dune +GH_PROJECT= csexp +USE_OCAML= yes + +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} +PORTDOCS= CHANGES.md LICENSE.md README.md + +OPTIONS_DEFINE= DOCS + +post-patch: + ${REINPLACE_CMD} \ + -e "s/(name ${PORTNAME})/&\n (version ${PORTVERSION})/" \ + ${WRKSRC}/dune-project + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/csexp.cmxs + +.include diff --git a/devel/ocaml-csexp/distinfo b/devel/ocaml-csexp/distinfo new file mode 100644 index 000000000000..a0155adad411 --- /dev/null +++ b/devel/ocaml-csexp/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1706803601 +SHA256 (ocaml-dune-csexp-1.5.2_GH0.tar.gz) = de3fda861ec8210a404fcb76afa162b08ed1cd11228645c78b53e1f82b24e236 +SIZE (ocaml-dune-csexp-1.5.2_GH0.tar.gz) = 12005 diff --git a/devel/ocaml-csexp/pkg-descr b/devel/ocaml-csexp/pkg-descr new file mode 100644 index 000000000000..ea46915e25f0 --- /dev/null +++ b/devel/ocaml-csexp/pkg-descr @@ -0,0 +1,2 @@ +Csexp is an OCaml library for parsing and printing S-expressions in +canonical form, which are binary representations of S-expressions. diff --git a/devel/ocaml-csexp/pkg-plist b/devel/ocaml-csexp/pkg-plist new file mode 100644 index 000000000000..099e1d0d8968 --- /dev/null +++ b/devel/ocaml-csexp/pkg-plist @@ -0,0 +1,13 @@ +%%OCAML_SITELIBDIR%%/csexp/META +%%OCAML_SITELIBDIR%%/csexp/csexp.a +%%OCAML_SITELIBDIR%%/csexp/csexp.cma +%%OCAML_SITELIBDIR%%/csexp/csexp.cmi +%%OCAML_SITELIBDIR%%/csexp/csexp.cmt +%%OCAML_SITELIBDIR%%/csexp/csexp.cmti +%%OCAML_SITELIBDIR%%/csexp/csexp.cmx +%%OCAML_SITELIBDIR%%/csexp/csexp.cmxa +%%OCAML_SITELIBDIR%%/csexp/csexp.cmxs +%%OCAML_SITELIBDIR%%/csexp/csexp.ml +%%OCAML_SITELIBDIR%%/csexp/csexp.mli +%%OCAML_SITELIBDIR%%/csexp/dune-package +%%OCAML_SITELIBDIR%%/csexp/opam diff --git a/devel/ocaml-dune/Makefile b/devel/ocaml-dune/Makefile index 179ee59f8897..bdd5ba6295f1 100644 --- a/devel/ocaml-dune/Makefile +++ b/devel/ocaml-dune/Makefile @@ -1,42 +1,73 @@ PORTNAME= dune PORTVERSION= 3.7.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= ocaml- MAINTAINER= danfe@FreeBSD.org COMMENT= Composable build system for OCaml (formerly jbuilder) WWW= https://dune.build/ LICENSE= MIT USES= gmake USE_GITHUB= yes GH_ACCOUNT= ocaml USE_OCAML= yes -USE_OCAML_FINDLIB= yes +USE_OCAML_LDCONFIG= yes SUB_FILES= setup.ml SUB_LIST= OCAML_SITELIBDIR="${PREFIX}/${OCAML_SITELIBDIR}" \ OCAML_LIBDIR="${PREFIX}/${OCAML_LIBDIR}" \ OCAML_DOCSDIR="${OCAML_DOCSDIR}" CONFLICTS_INSTALL= wdune ALL_TARGET= release -MAKE_ENV= LIBDIR="${PREFIX}/${OCAML_SITELIBDIR}" +MAKE_ENV= LIBDIR="${PREFIX}/${OCAML_SITELIBDIR}" \ + DUNE_FREEBSD_STUBLIBS_RELATIVE_TO_LIBDIR=${PORTNAME} DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} OPTIONS_DEFINE= DOCS post-patch: # FreeBSD-specific hack, do not nag upstream (for now) @${REINPLACE_CMD} -e '/doc_root = Path.relative/ \ s:"doc:"${OCAML_DOCSDIR:S,^${PREFIX}/,,}:' \ ${WRKSRC}/src/dune_rules/install.ml @${REINPLACE_CMD} -e 's|\"man\"|\"share/man\"|g' \ ${WRKSRC}/src/dune_rules/install.ml + @${REINPLACE_CMD} -e 's|\"stublibs\"|(try (ignore(Sys.getenv \"DUNE_FREEBSD_STUBLIBS_IN_PACKAGE\"); package) with Not_found -> (try Sys.getenv \"DUNE_FREEBSD_STUBLIBS_RELATIVE_TO_LIBDIR\" with Not_found -> \"stublibs\"))|g' \ + ${WRKSRC}/src/dune_rules/install.ml pre-configure: @${MV} ${WRKDIR}/setup.ml ${WRKSRC}/src/dune_rules/setup.ml +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/dune + @${STRIP_CMD} \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/dllxdg_stubs.so \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/dlldune_filesystem_stubs_stubs.so \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/dllstdune_stubs.so + @${STRIP_CMD} \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dune-action-plugin/dune_action_plugin.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dune-build-info/build_info.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dune-configurator/configurator.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dune-glob/dune_glob.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dune-private-libs/dune-section/dune_section.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dune-private-libs/dune_re/dune_re.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dune-private-libs/meta_parser/dune_meta_parser.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dune-private-libs/ocaml-config/ocaml_config.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dune-rpc/dune_rpc.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dune-rpc/private/dune_rpc_private.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dune-site/dune_site.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dune-site/plugins/dune_site_plugins.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dune-site/private/dune_site_private.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dyn/dyn.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dyn/pp/pp.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/ordering/ordering.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/stdune/csexp/csexp.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/stdune/filesystem_stubs/dune_filesystem_stubs.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/stdune/stdune.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/xdg/xdg.cmxs + .include diff --git a/devel/ocaml-dune/pkg-plist b/devel/ocaml-dune/pkg-plist index df6d7cb6c05e..a81385ce886d 100644 --- a/devel/ocaml-dune/pkg-plist +++ b/devel/ocaml-dune/pkg-plist @@ -1,1023 +1,1023 @@ bin/dune %%OCAML_SITELIBDIR%%/dune-action-plugin/META %%OCAML_SITELIBDIR%%/dune-action-plugin/dune-package %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin.a %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin.cma %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin.cmi %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin.cmt %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin.cmti %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin.cmx %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin.cmxa %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin.cmxs %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin.ml %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin.mli %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__.cmi %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__.cmt %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__.cmx %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__.ml %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__Import.cmi %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__Import.cmt %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__Import.cmx %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__Path.cmi %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__Path.cmt %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__Path.cmti %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__Path.cmx %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__Protocol.cmi %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__Protocol.cmt %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__Protocol.cmti %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__Protocol.cmx %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__Sexpable_intf.cmi %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__Sexpable_intf.cmt %%OCAML_SITELIBDIR%%/dune-action-plugin/dune_action_plugin__Sexpable_intf.cmx %%OCAML_SITELIBDIR%%/dune-action-plugin/import.ml %%OCAML_SITELIBDIR%%/dune-action-plugin/opam %%OCAML_SITELIBDIR%%/dune-action-plugin/path.ml %%OCAML_SITELIBDIR%%/dune-action-plugin/path.mli %%OCAML_SITELIBDIR%%/dune-action-plugin/protocol.ml %%OCAML_SITELIBDIR%%/dune-action-plugin/protocol.mli %%OCAML_SITELIBDIR%%/dune-action-plugin/sexpable_intf.ml %%OCAML_SITELIBDIR%%/dune-build-info/META %%OCAML_SITELIBDIR%%/dune-build-info/build_info.a %%OCAML_SITELIBDIR%%/dune-build-info/build_info.cma %%OCAML_SITELIBDIR%%/dune-build-info/build_info.cmi %%OCAML_SITELIBDIR%%/dune-build-info/build_info.cmt %%OCAML_SITELIBDIR%%/dune-build-info/build_info.cmti %%OCAML_SITELIBDIR%%/dune-build-info/build_info.cmx %%OCAML_SITELIBDIR%%/dune-build-info/build_info.cmxa %%OCAML_SITELIBDIR%%/dune-build-info/build_info.cmxs %%OCAML_SITELIBDIR%%/dune-build-info/build_info.ml %%OCAML_SITELIBDIR%%/dune-build-info/build_info.mli %%OCAML_SITELIBDIR%%/dune-build-info/build_info__.cmi %%OCAML_SITELIBDIR%%/dune-build-info/build_info__.cmt %%OCAML_SITELIBDIR%%/dune-build-info/build_info__.cmx %%OCAML_SITELIBDIR%%/dune-build-info/build_info__.ml %%OCAML_SITELIBDIR%%/dune-build-info/build_info__Build_info_data.cmi %%OCAML_SITELIBDIR%%/dune-build-info/build_info__Build_info_data.cmti %%OCAML_SITELIBDIR%%/dune-build-info/build_info_data.mli %%OCAML_SITELIBDIR%%/dune-build-info/dune-package %%OCAML_SITELIBDIR%%/dune-build-info/opam %%OCAML_SITELIBDIR%%/dune-configurator/.private/configurator__Dune_lang.cmi %%OCAML_SITELIBDIR%%/dune-configurator/.private/configurator__Dune_lang.cmt %%OCAML_SITELIBDIR%%/dune-configurator/.private/configurator__Dune_lang.cmti %%OCAML_SITELIBDIR%%/dune-configurator/.private/configurator__Import.cmi %%OCAML_SITELIBDIR%%/dune-configurator/.private/configurator__Import.cmt %%OCAML_SITELIBDIR%%/dune-configurator/.private/configurator__Ocaml_config.cmi %%OCAML_SITELIBDIR%%/dune-configurator/.private/configurator__Ocaml_config.cmt %%OCAML_SITELIBDIR%%/dune-configurator/.private/configurator__Ocaml_config.cmti %%OCAML_SITELIBDIR%%/dune-configurator/META %%OCAML_SITELIBDIR%%/dune-configurator/configurator.a %%OCAML_SITELIBDIR%%/dune-configurator/configurator.cma %%OCAML_SITELIBDIR%%/dune-configurator/configurator.cmi %%OCAML_SITELIBDIR%%/dune-configurator/configurator.cmt %%OCAML_SITELIBDIR%%/dune-configurator/configurator.cmx %%OCAML_SITELIBDIR%%/dune-configurator/configurator.cmxa %%OCAML_SITELIBDIR%%/dune-configurator/configurator.cmxs %%OCAML_SITELIBDIR%%/dune-configurator/configurator.ml %%OCAML_SITELIBDIR%%/dune-configurator/configurator__.cmi %%OCAML_SITELIBDIR%%/dune-configurator/configurator__.cmt %%OCAML_SITELIBDIR%%/dune-configurator/configurator__.cmx %%OCAML_SITELIBDIR%%/dune-configurator/configurator__.ml %%OCAML_SITELIBDIR%%/dune-configurator/configurator__Dune_lang.cmx %%OCAML_SITELIBDIR%%/dune-configurator/configurator__Extract_obj.cmi %%OCAML_SITELIBDIR%%/dune-configurator/configurator__Extract_obj.cmt %%OCAML_SITELIBDIR%%/dune-configurator/configurator__Extract_obj.cmti %%OCAML_SITELIBDIR%%/dune-configurator/configurator__Extract_obj.cmx %%OCAML_SITELIBDIR%%/dune-configurator/configurator__Import.cmx %%OCAML_SITELIBDIR%%/dune-configurator/configurator__Ocaml_config.cmx %%OCAML_SITELIBDIR%%/dune-configurator/configurator__V1.cmi %%OCAML_SITELIBDIR%%/dune-configurator/configurator__V1.cmt %%OCAML_SITELIBDIR%%/dune-configurator/configurator__V1.cmti %%OCAML_SITELIBDIR%%/dune-configurator/configurator__V1.cmx %%OCAML_SITELIBDIR%%/dune-configurator/dune-package %%OCAML_SITELIBDIR%%/dune-configurator/dune_lang.ml %%OCAML_SITELIBDIR%%/dune-configurator/dune_lang.mli %%OCAML_SITELIBDIR%%/dune-configurator/extract_obj.ml %%OCAML_SITELIBDIR%%/dune-configurator/extract_obj.mli %%OCAML_SITELIBDIR%%/dune-configurator/import.ml %%OCAML_SITELIBDIR%%/dune-configurator/ocaml_config.ml %%OCAML_SITELIBDIR%%/dune-configurator/ocaml_config.mli %%OCAML_SITELIBDIR%%/dune-configurator/opam %%OCAML_SITELIBDIR%%/dune-configurator/v1.ml %%OCAML_SITELIBDIR%%/dune-configurator/v1.mli %%OCAML_SITELIBDIR%%/dune-glob/META %%OCAML_SITELIBDIR%%/dune-glob/dune-package %%OCAML_SITELIBDIR%%/dune-glob/dune_glob.a %%OCAML_SITELIBDIR%%/dune-glob/dune_glob.cma %%OCAML_SITELIBDIR%%/dune-glob/dune_glob.cmi %%OCAML_SITELIBDIR%%/dune-glob/dune_glob.cmt %%OCAML_SITELIBDIR%%/dune-glob/dune_glob.cmx %%OCAML_SITELIBDIR%%/dune-glob/dune_glob.cmxa %%OCAML_SITELIBDIR%%/dune-glob/dune_glob.cmxs %%OCAML_SITELIBDIR%%/dune-glob/dune_glob.ml %%OCAML_SITELIBDIR%%/dune-glob/dune_glob__.cmi %%OCAML_SITELIBDIR%%/dune-glob/dune_glob__.cmt %%OCAML_SITELIBDIR%%/dune-glob/dune_glob__.cmx %%OCAML_SITELIBDIR%%/dune-glob/dune_glob__.ml %%OCAML_SITELIBDIR%%/dune-glob/dune_glob__Glob.cmi %%OCAML_SITELIBDIR%%/dune-glob/dune_glob__Glob.cmt %%OCAML_SITELIBDIR%%/dune-glob/dune_glob__Glob.cmti %%OCAML_SITELIBDIR%%/dune-glob/dune_glob__Glob.cmx %%OCAML_SITELIBDIR%%/dune-glob/dune_glob__Lexer.cmi %%OCAML_SITELIBDIR%%/dune-glob/dune_glob__Lexer.cmt %%OCAML_SITELIBDIR%%/dune-glob/dune_glob__Lexer.cmti %%OCAML_SITELIBDIR%%/dune-glob/dune_glob__Lexer.cmx %%OCAML_SITELIBDIR%%/dune-glob/glob.ml %%OCAML_SITELIBDIR%%/dune-glob/glob.mli %%OCAML_SITELIBDIR%%/dune-glob/lexer.ml %%OCAML_SITELIBDIR%%/dune-glob/lexer.mli %%OCAML_SITELIBDIR%%/dune-glob/opam %%OCAML_SITELIBDIR%%/dune-private-libs/META %%OCAML_SITELIBDIR%%/dune-private-libs/dune-package %%OCAML_SITELIBDIR%%/dune-private-libs/dune-section/dune_section.a %%OCAML_SITELIBDIR%%/dune-private-libs/dune-section/dune_section.cma %%OCAML_SITELIBDIR%%/dune-private-libs/dune-section/dune_section.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune-section/dune_section.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune-section/dune_section.cmti %%OCAML_SITELIBDIR%%/dune-private-libs/dune-section/dune_section.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune-section/dune_section.cmxa %%OCAML_SITELIBDIR%%/dune-private-libs/dune-section/dune_section.cmxs %%OCAML_SITELIBDIR%%/dune-private-libs/dune-section/dune_section.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune-section/dune_section.mli %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/automata.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/automata.mli %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/category.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/category.mli %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/color_map.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/color_map.mli %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/core.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/core.mli %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/cset.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/cset.mli %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re.a %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re.cma %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re.cmxa %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re.cmxs %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Automata.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Automata.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Automata.cmti %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Automata.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Category.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Category.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Category.cmti %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Category.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Color_map.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Color_map.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Color_map.cmti %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Color_map.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Core.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Core.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Core.cmti %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Core.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Cset.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Cset.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Cset.cmti %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Cset.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Emacs.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Emacs.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Emacs.cmti %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Emacs.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Fmt.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Fmt.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Fmt.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Glob.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Glob.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Glob.cmti %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Glob.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Group.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Group.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Group.cmti %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Group.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Pcre.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Pcre.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Pcre.cmti %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Pcre.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Perl.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Perl.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Perl.cmti %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Perl.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Pmark.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Pmark.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Pmark.cmti %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Pmark.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Posix.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Posix.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Posix.cmti %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Posix.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Re.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Re.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Re.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Str.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Str.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Str.cmti %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/dune_re__Str.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/emacs.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/emacs.mli %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/fmt.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/glob.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/glob.mli %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/group.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/group.mli %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/pcre.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/pcre.mli %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/perl.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/perl.mli %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/pmark.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/pmark.mli %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/posix.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/posix.mli %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/re.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/str.ml %%OCAML_SITELIBDIR%%/dune-private-libs/dune_re/str.mli %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/dune_meta_parser.a %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/dune_meta_parser.cma %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/dune_meta_parser.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/dune_meta_parser.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/dune_meta_parser.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/dune_meta_parser.cmxa %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/dune_meta_parser.cmxs %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/dune_meta_parser.ml %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/dune_meta_parser__Meta_lexer.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/dune_meta_parser__Meta_lexer.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/dune_meta_parser__Meta_lexer.cmti %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/dune_meta_parser__Meta_lexer.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/dune_meta_parser__Meta_parser.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/dune_meta_parser__Meta_parser.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/dune_meta_parser__Meta_parser.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/meta_lexer.ml %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/meta_lexer.mli %%OCAML_SITELIBDIR%%/dune-private-libs/meta_parser/meta_parser.ml %%OCAML_SITELIBDIR%%/dune-private-libs/ocaml-config/ocaml_config.a %%OCAML_SITELIBDIR%%/dune-private-libs/ocaml-config/ocaml_config.cma %%OCAML_SITELIBDIR%%/dune-private-libs/ocaml-config/ocaml_config.cmi %%OCAML_SITELIBDIR%%/dune-private-libs/ocaml-config/ocaml_config.cmt %%OCAML_SITELIBDIR%%/dune-private-libs/ocaml-config/ocaml_config.cmti %%OCAML_SITELIBDIR%%/dune-private-libs/ocaml-config/ocaml_config.cmx %%OCAML_SITELIBDIR%%/dune-private-libs/ocaml-config/ocaml_config.cmxa %%OCAML_SITELIBDIR%%/dune-private-libs/ocaml-config/ocaml_config.cmxs %%OCAML_SITELIBDIR%%/dune-private-libs/ocaml-config/ocaml_config.ml %%OCAML_SITELIBDIR%%/dune-private-libs/ocaml-config/ocaml_config.mli %%OCAML_SITELIBDIR%%/dune-private-libs/opam %%OCAML_SITELIBDIR%%/dune-rpc/META %%OCAML_SITELIBDIR%%/dune-rpc/dune-package %%OCAML_SITELIBDIR%%/dune-rpc/dune_rpc.a %%OCAML_SITELIBDIR%%/dune-rpc/dune_rpc.cma %%OCAML_SITELIBDIR%%/dune-rpc/dune_rpc.cmi %%OCAML_SITELIBDIR%%/dune-rpc/dune_rpc.cmt %%OCAML_SITELIBDIR%%/dune-rpc/dune_rpc.cmti %%OCAML_SITELIBDIR%%/dune-rpc/dune_rpc.cmx %%OCAML_SITELIBDIR%%/dune-rpc/dune_rpc.cmxa %%OCAML_SITELIBDIR%%/dune-rpc/dune_rpc.cmxs %%OCAML_SITELIBDIR%%/dune-rpc/dune_rpc.ml %%OCAML_SITELIBDIR%%/dune-rpc/dune_rpc.mli %%OCAML_SITELIBDIR%%/dune-rpc/opam %%OCAML_SITELIBDIR%%/dune-rpc/private/conv.ml %%OCAML_SITELIBDIR%%/dune-rpc/private/conv.mli %%OCAML_SITELIBDIR%%/dune-rpc/private/dbus_address.ml %%OCAML_SITELIBDIR%%/dune-rpc/private/dbus_address.mli %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private.a %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private.cma %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private.cmi %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private.cmt %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private.cmti %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private.cmx %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private.cmxa %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private.cmxs %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private.ml %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private.mli %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__.cmi %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__.cmt %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__.cmx %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__.ml %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Conv.cmi %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Conv.cmt %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Conv.cmti %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Conv.cmx %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Dbus_address.cmi %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Dbus_address.cmt %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Dbus_address.cmti %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Dbus_address.cmx %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Exported_types.cmi %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Exported_types.cmt %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Exported_types.cmti %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Exported_types.cmx %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Fiber_intf.cmi %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Fiber_intf.cmt %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Fiber_intf.cmx %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Import.cmi %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Import.cmt %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Import.cmx %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Menu.cmi %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Menu.cmt %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Menu.cmti %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Menu.cmx %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Procedures.cmi %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Procedures.cmt %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Procedures.cmti %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Procedures.cmx %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Registry.cmi %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Registry.cmt %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Registry.cmti %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Registry.cmx %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Sub.cmi %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Sub.cmt %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Sub.cmti %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Sub.cmx %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Types.cmi %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Types.cmt %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Types.cmti %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Types.cmx %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Versioned.cmi %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Versioned.cmt %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Versioned.cmti %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Versioned.cmx %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Where.cmi %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Where.cmt %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Where.cmti %%OCAML_SITELIBDIR%%/dune-rpc/private/dune_rpc_private__Where.cmx %%OCAML_SITELIBDIR%%/dune-rpc/private/exported_types.ml %%OCAML_SITELIBDIR%%/dune-rpc/private/exported_types.mli %%OCAML_SITELIBDIR%%/dune-rpc/private/fiber_intf.ml %%OCAML_SITELIBDIR%%/dune-rpc/private/import.ml %%OCAML_SITELIBDIR%%/dune-rpc/private/menu.ml %%OCAML_SITELIBDIR%%/dune-rpc/private/menu.mli %%OCAML_SITELIBDIR%%/dune-rpc/private/procedures.ml %%OCAML_SITELIBDIR%%/dune-rpc/private/procedures.mli %%OCAML_SITELIBDIR%%/dune-rpc/private/registry.ml %%OCAML_SITELIBDIR%%/dune-rpc/private/registry.mli %%OCAML_SITELIBDIR%%/dune-rpc/private/sub.ml %%OCAML_SITELIBDIR%%/dune-rpc/private/sub.mli %%OCAML_SITELIBDIR%%/dune-rpc/private/types.ml %%OCAML_SITELIBDIR%%/dune-rpc/private/types.mli %%OCAML_SITELIBDIR%%/dune-rpc/private/versioned.ml %%OCAML_SITELIBDIR%%/dune-rpc/private/versioned.mli %%OCAML_SITELIBDIR%%/dune-rpc/private/where.ml %%OCAML_SITELIBDIR%%/dune-rpc/private/where.mli %%OCAML_SITELIBDIR%%/dune-site/META %%OCAML_SITELIBDIR%%/dune-site/dune-package %%OCAML_SITELIBDIR%%/dune-site/dune_site.a %%OCAML_SITELIBDIR%%/dune-site/dune_site.cma %%OCAML_SITELIBDIR%%/dune-site/dune_site.cmi %%OCAML_SITELIBDIR%%/dune-site/dune_site.cmt %%OCAML_SITELIBDIR%%/dune-site/dune_site.cmx %%OCAML_SITELIBDIR%%/dune-site/dune_site.cmxa %%OCAML_SITELIBDIR%%/dune-site/dune_site.cmxs %%OCAML_SITELIBDIR%%/dune-site/dune_site.ml %%OCAML_SITELIBDIR%%/dune-site/dune_site__.cmi %%OCAML_SITELIBDIR%%/dune-site/dune_site__.cmt %%OCAML_SITELIBDIR%%/dune-site/dune_site__.cmx %%OCAML_SITELIBDIR%%/dune-site/dune_site__.ml %%OCAML_SITELIBDIR%%/dune-site/dune_site__Dune_site_data.cmi %%OCAML_SITELIBDIR%%/dune-site/dune_site__Dune_site_data.cmti %%OCAML_SITELIBDIR%%/dune-site/dune_site__Helpers.cmi %%OCAML_SITELIBDIR%%/dune-site/dune_site__Helpers.cmt %%OCAML_SITELIBDIR%%/dune-site/dune_site__Helpers.cmti %%OCAML_SITELIBDIR%%/dune-site/dune_site__Helpers.cmx %%OCAML_SITELIBDIR%%/dune-site/dune_site_data.mli %%OCAML_SITELIBDIR%%/dune-site/helpers.ml %%OCAML_SITELIBDIR%%/dune-site/helpers.mli %%OCAML_SITELIBDIR%%/dune-site/opam %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins.a %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins.cma %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins.cmi %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins.cmt %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins.cmti %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins.cmx %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins.cmxa %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins.cmxs %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins.ml %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins.mli %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins__.cmi %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins__.cmt %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins__.cmx %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins__.ml %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins__Dune_site_plugins_data.cmi %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins__Dune_site_plugins_data.cmti %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins__Meta_parser.cmi %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins__Meta_parser.cmt %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins__Meta_parser.cmti %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins__Meta_parser.cmx %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins__Plugins.cmi %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins__Plugins.cmt %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins__Plugins.cmti %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins__Plugins.cmx %%OCAML_SITELIBDIR%%/dune-site/plugins/dune_site_plugins_data.mli %%OCAML_SITELIBDIR%%/dune-site/plugins/meta_parser.ml %%OCAML_SITELIBDIR%%/dune-site/plugins/meta_parser.mli %%OCAML_SITELIBDIR%%/dune-site/plugins/plugins.ml %%OCAML_SITELIBDIR%%/dune-site/plugins/plugins.mli %%OCAML_SITELIBDIR%%/dune-site/private/dune_site_private.a %%OCAML_SITELIBDIR%%/dune-site/private/dune_site_private.cma %%OCAML_SITELIBDIR%%/dune-site/private/dune_site_private.cmi %%OCAML_SITELIBDIR%%/dune-site/private/dune_site_private.cmt %%OCAML_SITELIBDIR%%/dune-site/private/dune_site_private.cmti %%OCAML_SITELIBDIR%%/dune-site/private/dune_site_private.cmx %%OCAML_SITELIBDIR%%/dune-site/private/dune_site_private.cmxa %%OCAML_SITELIBDIR%%/dune-site/private/dune_site_private.cmxs %%OCAML_SITELIBDIR%%/dune-site/private/dune_site_private.ml %%OCAML_SITELIBDIR%%/dune-site/private/dune_site_private.mli %%OCAML_SITELIBDIR%%/dune/META +%%OCAML_SITELIBDIR%%/dune/dlldune_filesystem_stubs_stubs.so +%%OCAML_SITELIBDIR%%/dune/dllstdune_stubs.so +%%OCAML_SITELIBDIR%%/dune/dllxdg_stubs.so %%OCAML_SITELIBDIR%%/dune/dune-package %%OCAML_SITELIBDIR%%/dune/opam %%OCAML_SITELIBDIR%%/dyn/META %%OCAML_SITELIBDIR%%/dyn/dune-package %%OCAML_SITELIBDIR%%/dyn/dyn.a %%OCAML_SITELIBDIR%%/dyn/dyn.cma %%OCAML_SITELIBDIR%%/dyn/dyn.cmi %%OCAML_SITELIBDIR%%/dyn/dyn.cmt %%OCAML_SITELIBDIR%%/dyn/dyn.cmti %%OCAML_SITELIBDIR%%/dyn/dyn.cmx %%OCAML_SITELIBDIR%%/dyn/dyn.cmxa %%OCAML_SITELIBDIR%%/dyn/dyn.cmxs %%OCAML_SITELIBDIR%%/dyn/dyn.ml %%OCAML_SITELIBDIR%%/dyn/dyn.mli %%OCAML_SITELIBDIR%%/dyn/opam %%OCAML_SITELIBDIR%%/dyn/pp/pp.a %%OCAML_SITELIBDIR%%/dyn/pp/pp.cma %%OCAML_SITELIBDIR%%/dyn/pp/pp.cmi %%OCAML_SITELIBDIR%%/dyn/pp/pp.cmt %%OCAML_SITELIBDIR%%/dyn/pp/pp.cmti %%OCAML_SITELIBDIR%%/dyn/pp/pp.cmx %%OCAML_SITELIBDIR%%/dyn/pp/pp.cmxa %%OCAML_SITELIBDIR%%/dyn/pp/pp.cmxs %%OCAML_SITELIBDIR%%/dyn/pp/pp.ml %%OCAML_SITELIBDIR%%/dyn/pp/pp.mli %%OCAML_SITELIBDIR%%/ordering/META %%OCAML_SITELIBDIR%%/ordering/dune-package %%OCAML_SITELIBDIR%%/ordering/opam %%OCAML_SITELIBDIR%%/ordering/ordering.a %%OCAML_SITELIBDIR%%/ordering/ordering.cma %%OCAML_SITELIBDIR%%/ordering/ordering.cmi %%OCAML_SITELIBDIR%%/ordering/ordering.cmt %%OCAML_SITELIBDIR%%/ordering/ordering.cmti %%OCAML_SITELIBDIR%%/ordering/ordering.cmx %%OCAML_SITELIBDIR%%/ordering/ordering.cmxa %%OCAML_SITELIBDIR%%/ordering/ordering.cmxs %%OCAML_SITELIBDIR%%/ordering/ordering.ml %%OCAML_SITELIBDIR%%/ordering/ordering.mli %%OCAML_SITELIBDIR%%/stdune/META %%OCAML_SITELIBDIR%%/stdune/ansi_color.ml %%OCAML_SITELIBDIR%%/stdune/ansi_color.mli %%OCAML_SITELIBDIR%%/stdune/appendable_list.ml %%OCAML_SITELIBDIR%%/stdune/appendable_list.mli %%OCAML_SITELIBDIR%%/stdune/applicative.ml %%OCAML_SITELIBDIR%%/stdune/applicative.mli %%OCAML_SITELIBDIR%%/stdune/applicative_intf.ml %%OCAML_SITELIBDIR%%/stdune/array.ml %%OCAML_SITELIBDIR%%/stdune/bin.ml %%OCAML_SITELIBDIR%%/stdune/bin.mli %%OCAML_SITELIBDIR%%/stdune/bool.ml %%OCAML_SITELIBDIR%%/stdune/bool.mli %%OCAML_SITELIBDIR%%/stdune/bytes.ml %%OCAML_SITELIBDIR%%/stdune/bytes.mli %%OCAML_SITELIBDIR%%/stdune/bytes_unit.ml %%OCAML_SITELIBDIR%%/stdune/bytes_unit.mli %%OCAML_SITELIBDIR%%/stdune/caller_id.ml %%OCAML_SITELIBDIR%%/stdune/caller_id.mli %%OCAML_SITELIBDIR%%/stdune/char.ml %%OCAML_SITELIBDIR%%/stdune/char.mli %%OCAML_SITELIBDIR%%/stdune/code_error.ml %%OCAML_SITELIBDIR%%/stdune/code_error.mli %%OCAML_SITELIBDIR%%/stdune/comparable.ml %%OCAML_SITELIBDIR%%/stdune/comparable.mli %%OCAML_SITELIBDIR%%/stdune/comparable_intf.ml %%OCAML_SITELIBDIR%%/stdune/comparator.ml %%OCAML_SITELIBDIR%%/stdune/comparator.mli %%OCAML_SITELIBDIR%%/stdune/csexp/csexp.a %%OCAML_SITELIBDIR%%/stdune/csexp/csexp.cma %%OCAML_SITELIBDIR%%/stdune/csexp/csexp.cmi %%OCAML_SITELIBDIR%%/stdune/csexp/csexp.cmt %%OCAML_SITELIBDIR%%/stdune/csexp/csexp.cmti %%OCAML_SITELIBDIR%%/stdune/csexp/csexp.cmx %%OCAML_SITELIBDIR%%/stdune/csexp/csexp.cmxa %%OCAML_SITELIBDIR%%/stdune/csexp/csexp.cmxs %%OCAML_SITELIBDIR%%/stdune/csexp/csexp.ml %%OCAML_SITELIBDIR%%/stdune/csexp/csexp.mli %%OCAML_SITELIBDIR%%/stdune/dune-package %%OCAML_SITELIBDIR%%/stdune/either.ml %%OCAML_SITELIBDIR%%/stdune/either.mli %%OCAML_SITELIBDIR%%/stdune/env.ml %%OCAML_SITELIBDIR%%/stdune/env.mli %%OCAML_SITELIBDIR%%/stdune/env_path.ml %%OCAML_SITELIBDIR%%/stdune/env_path.mli %%OCAML_SITELIBDIR%%/stdune/escape.ml %%OCAML_SITELIBDIR%%/stdune/escape.mli %%OCAML_SITELIBDIR%%/stdune/exn.ml %%OCAML_SITELIBDIR%%/stdune/exn.mli %%OCAML_SITELIBDIR%%/stdune/exn_with_backtrace.ml %%OCAML_SITELIBDIR%%/stdune/exn_with_backtrace.mli %%OCAML_SITELIBDIR%%/stdune/fdecl.ml %%OCAML_SITELIBDIR%%/stdune/fdecl.mli %%OCAML_SITELIBDIR%%/stdune/filename.ml %%OCAML_SITELIBDIR%%/stdune/filename.mli %%OCAML_SITELIBDIR%%/stdune/filesystem_stubs/dune_filesystem_stubs.a %%OCAML_SITELIBDIR%%/stdune/filesystem_stubs/dune_filesystem_stubs.cma %%OCAML_SITELIBDIR%%/stdune/filesystem_stubs/dune_filesystem_stubs.cmi %%OCAML_SITELIBDIR%%/stdune/filesystem_stubs/dune_filesystem_stubs.cmt %%OCAML_SITELIBDIR%%/stdune/filesystem_stubs/dune_filesystem_stubs.cmti %%OCAML_SITELIBDIR%%/stdune/filesystem_stubs/dune_filesystem_stubs.cmx %%OCAML_SITELIBDIR%%/stdune/filesystem_stubs/dune_filesystem_stubs.cmxa %%OCAML_SITELIBDIR%%/stdune/filesystem_stubs/dune_filesystem_stubs.cmxs %%OCAML_SITELIBDIR%%/stdune/filesystem_stubs/dune_filesystem_stubs.ml %%OCAML_SITELIBDIR%%/stdune/filesystem_stubs/dune_filesystem_stubs.mli %%OCAML_SITELIBDIR%%/stdune/filesystem_stubs/libdune_filesystem_stubs_stubs.a %%OCAML_SITELIBDIR%%/stdune/float.ml %%OCAML_SITELIBDIR%%/stdune/float.mli %%OCAML_SITELIBDIR%%/stdune/fpath.ml %%OCAML_SITELIBDIR%%/stdune/fpath.mli %%OCAML_SITELIBDIR%%/stdune/hashable.ml %%OCAML_SITELIBDIR%%/stdune/hashtbl.ml %%OCAML_SITELIBDIR%%/stdune/hashtbl.mli %%OCAML_SITELIBDIR%%/stdune/hashtbl_intf.ml %%OCAML_SITELIBDIR%%/stdune/id.ml %%OCAML_SITELIBDIR%%/stdune/id.mli %%OCAML_SITELIBDIR%%/stdune/int.ml %%OCAML_SITELIBDIR%%/stdune/int.mli %%OCAML_SITELIBDIR%%/stdune/io.ml %%OCAML_SITELIBDIR%%/stdune/io.mli %%OCAML_SITELIBDIR%%/stdune/io_intf.ml %%OCAML_SITELIBDIR%%/stdune/lexbuf.ml %%OCAML_SITELIBDIR%%/stdune/lexbuf.mli %%OCAML_SITELIBDIR%%/stdune/libstdune_stubs.a %%OCAML_SITELIBDIR%%/stdune/list.ml %%OCAML_SITELIBDIR%%/stdune/list.mli %%OCAML_SITELIBDIR%%/stdune/loc.ml %%OCAML_SITELIBDIR%%/stdune/loc.mli %%OCAML_SITELIBDIR%%/stdune/loc0.ml %%OCAML_SITELIBDIR%%/stdune/map.ml %%OCAML_SITELIBDIR%%/stdune/map.mli %%OCAML_SITELIBDIR%%/stdune/map_intf.ml %%OCAML_SITELIBDIR%%/stdune/monad.ml %%OCAML_SITELIBDIR%%/stdune/monad.mli %%OCAML_SITELIBDIR%%/stdune/monad_intf.ml %%OCAML_SITELIBDIR%%/stdune/monoid.ml %%OCAML_SITELIBDIR%%/stdune/monoid.mli %%OCAML_SITELIBDIR%%/stdune/monoid_intf.ml %%OCAML_SITELIBDIR%%/stdune/nonempty_list.ml %%OCAML_SITELIBDIR%%/stdune/nonempty_list.mli %%OCAML_SITELIBDIR%%/stdune/nothing.ml %%OCAML_SITELIBDIR%%/stdune/nothing.mli %%OCAML_SITELIBDIR%%/stdune/opam %%OCAML_SITELIBDIR%%/stdune/option.ml %%OCAML_SITELIBDIR%%/stdune/option.mli %%OCAML_SITELIBDIR%%/stdune/or_exn.ml %%OCAML_SITELIBDIR%%/stdune/or_exn.mli %%OCAML_SITELIBDIR%%/stdune/path.ml %%OCAML_SITELIBDIR%%/stdune/path.mli %%OCAML_SITELIBDIR%%/stdune/path_intf.ml %%OCAML_SITELIBDIR%%/stdune/pid.ml %%OCAML_SITELIBDIR%%/stdune/pid.mli %%OCAML_SITELIBDIR%%/stdune/poly.ml %%OCAML_SITELIBDIR%%/stdune/poly.mli %%OCAML_SITELIBDIR%%/stdune/predicate.ml %%OCAML_SITELIBDIR%%/stdune/predicate.mli %%OCAML_SITELIBDIR%%/stdune/proc.ml %%OCAML_SITELIBDIR%%/stdune/proc.mli %%OCAML_SITELIBDIR%%/stdune/queue.ml %%OCAML_SITELIBDIR%%/stdune/queue.mli %%OCAML_SITELIBDIR%%/stdune/result.ml %%OCAML_SITELIBDIR%%/stdune/result.mli %%OCAML_SITELIBDIR%%/stdune/scanf.ml %%OCAML_SITELIBDIR%%/stdune/scanf.mli %%OCAML_SITELIBDIR%%/stdune/seq.ml %%OCAML_SITELIBDIR%%/stdune/seq.mli %%OCAML_SITELIBDIR%%/stdune/set.ml %%OCAML_SITELIBDIR%%/stdune/set.mli %%OCAML_SITELIBDIR%%/stdune/set_intf.ml %%OCAML_SITELIBDIR%%/stdune/sexp.ml %%OCAML_SITELIBDIR%%/stdune/sexp.mli %%OCAML_SITELIBDIR%%/stdune/signal.ml %%OCAML_SITELIBDIR%%/stdune/signal.mli %%OCAML_SITELIBDIR%%/stdune/staged.ml %%OCAML_SITELIBDIR%%/stdune/staged.mli %%OCAML_SITELIBDIR%%/stdune/state.ml %%OCAML_SITELIBDIR%%/stdune/state.mli %%OCAML_SITELIBDIR%%/stdune/stdune.a %%OCAML_SITELIBDIR%%/stdune/stdune.cma %%OCAML_SITELIBDIR%%/stdune/stdune.cmi %%OCAML_SITELIBDIR%%/stdune/stdune.cmt %%OCAML_SITELIBDIR%%/stdune/stdune.cmx %%OCAML_SITELIBDIR%%/stdune/stdune.cmxa %%OCAML_SITELIBDIR%%/stdune/stdune.cmxs %%OCAML_SITELIBDIR%%/stdune/stdune.ml %%OCAML_SITELIBDIR%%/stdune/stdune__.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__.ml %%OCAML_SITELIBDIR%%/stdune/stdune__Ansi_color.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Ansi_color.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Ansi_color.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Ansi_color.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Appendable_list.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Appendable_list.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Appendable_list.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Appendable_list.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Applicative.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Applicative.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Applicative.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Applicative.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Applicative_intf.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Applicative_intf.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Applicative_intf.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Array.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Array.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Array.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Bin.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Bin.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Bin.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Bin.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Bool.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Bool.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Bool.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Bool.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Bytes.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Bytes.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Bytes.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Bytes.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Bytes_unit.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Bytes_unit.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Bytes_unit.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Bytes_unit.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Caller_id.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Caller_id.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Caller_id.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Caller_id.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Char.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Char.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Char.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Char.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Code_error.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Code_error.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Code_error.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Code_error.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Comparable.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Comparable.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Comparable.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Comparable.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Comparable_intf.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Comparable_intf.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Comparable_intf.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Comparator.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Comparator.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Comparator.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Comparator.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Either.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Either.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Either.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Either.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Env.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Env.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Env.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Env.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Env_path.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Env_path.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Env_path.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Env_path.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Escape.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Escape.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Escape.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Escape.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Exn.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Exn.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Exn.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Exn.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Exn_with_backtrace.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Exn_with_backtrace.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Exn_with_backtrace.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Exn_with_backtrace.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Fdecl.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Fdecl.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Fdecl.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Fdecl.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Filename.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Filename.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Filename.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Filename.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Float.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Float.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Float.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Float.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Fpath.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Fpath.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Fpath.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Fpath.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Hashable.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Hashable.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Hashable.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Hashtbl.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Hashtbl.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Hashtbl.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Hashtbl.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Hashtbl_intf.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Hashtbl_intf.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Hashtbl_intf.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Id.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Id.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Id.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Id.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Int.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Int.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Int.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Int.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Io.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Io.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Io.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Io.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Io_intf.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Io_intf.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Io_intf.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Lexbuf.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Lexbuf.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Lexbuf.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Lexbuf.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__List.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__List.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__List.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__List.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Loc.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Loc.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Loc.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Loc.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Loc0.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Loc0.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Loc0.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Map.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Map.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Map.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Map.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Map_intf.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Map_intf.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Map_intf.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Monad.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Monad.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Monad.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Monad.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Monad_intf.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Monad_intf.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Monad_intf.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Monoid.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Monoid.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Monoid.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Monoid.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Monoid_intf.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Monoid_intf.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Monoid_intf.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Nonempty_list.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Nonempty_list.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Nonempty_list.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Nonempty_list.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Nothing.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Nothing.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Nothing.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Nothing.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Option.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Option.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Option.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Option.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Or_exn.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Or_exn.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Or_exn.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Or_exn.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Path.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Path.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Path.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Path.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Path_intf.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Path_intf.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Path_intf.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Pid.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Pid.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Pid.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Pid.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Poly.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Poly.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Poly.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Poly.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Predicate.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Predicate.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Predicate.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Predicate.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Proc.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Proc.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Proc.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Proc.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Queue.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Queue.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Queue.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Queue.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Result.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Result.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Result.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Result.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Scanf.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Scanf.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Scanf.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Scanf.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Seq.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Seq.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Seq.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Seq.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Set.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Set.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Set.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Set.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Set_intf.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Set_intf.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Set_intf.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Sexp.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Sexp.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Sexp.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Sexp.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Signal.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Signal.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Signal.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Signal.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Staged.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Staged.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Staged.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Staged.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__State.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__State.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__State.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__State.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__String.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__String.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__String.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__String.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__String_split.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__String_split.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__String_split.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__String_split.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Sys.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Sys.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Sys.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Sys.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Table.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Table.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Table.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Table.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Temp.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Temp.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Temp.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Temp.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Top_closure.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Top_closure.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Top_closure.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Top_closure.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Top_closure_intf.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Top_closure_intf.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Top_closure_intf.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Tuple.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Tuple.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Tuple.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Tuple.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Type_eq.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Type_eq.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Type_eq.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Type_eq.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Unit.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Unit.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Unit.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Unit.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Univ_map.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Univ_map.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Univ_map.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__Univ_map.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__Univ_map_intf.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__Univ_map_intf.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__Univ_map_intf.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__User_error.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__User_error.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__User_error.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__User_error.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__User_message.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__User_message.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__User_message.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__User_message.cmx %%OCAML_SITELIBDIR%%/stdune/stdune__User_warning.cmi %%OCAML_SITELIBDIR%%/stdune/stdune__User_warning.cmt %%OCAML_SITELIBDIR%%/stdune/stdune__User_warning.cmti %%OCAML_SITELIBDIR%%/stdune/stdune__User_warning.cmx %%OCAML_SITELIBDIR%%/stdune/string.ml %%OCAML_SITELIBDIR%%/stdune/string.mli %%OCAML_SITELIBDIR%%/stdune/string_split.ml %%OCAML_SITELIBDIR%%/stdune/string_split.mli %%OCAML_SITELIBDIR%%/stdune/sys.ml %%OCAML_SITELIBDIR%%/stdune/sys.mli %%OCAML_SITELIBDIR%%/stdune/table.ml %%OCAML_SITELIBDIR%%/stdune/table.mli %%OCAML_SITELIBDIR%%/stdune/temp.ml %%OCAML_SITELIBDIR%%/stdune/temp.mli %%OCAML_SITELIBDIR%%/stdune/top_closure.ml %%OCAML_SITELIBDIR%%/stdune/top_closure.mli %%OCAML_SITELIBDIR%%/stdune/top_closure_intf.ml %%OCAML_SITELIBDIR%%/stdune/tuple.ml %%OCAML_SITELIBDIR%%/stdune/tuple.mli %%OCAML_SITELIBDIR%%/stdune/type_eq.ml %%OCAML_SITELIBDIR%%/stdune/type_eq.mli %%OCAML_SITELIBDIR%%/stdune/unit.ml %%OCAML_SITELIBDIR%%/stdune/unit.mli %%OCAML_SITELIBDIR%%/stdune/univ_map.ml %%OCAML_SITELIBDIR%%/stdune/univ_map.mli %%OCAML_SITELIBDIR%%/stdune/univ_map_intf.ml %%OCAML_SITELIBDIR%%/stdune/user_error.ml %%OCAML_SITELIBDIR%%/stdune/user_error.mli %%OCAML_SITELIBDIR%%/stdune/user_message.ml %%OCAML_SITELIBDIR%%/stdune/user_message.mli %%OCAML_SITELIBDIR%%/stdune/user_warning.ml %%OCAML_SITELIBDIR%%/stdune/user_warning.mli -%%OCAML_SITELIBDIR%%/stublibs/dlldune_filesystem_stubs_stubs.so -%%OCAML_SITELIBDIR%%/stublibs/dllstdune_stubs.so -%%OCAML_SITELIBDIR%%/stublibs/dllxdg_stubs.so %%OCAML_SITELIBDIR%%/xdg/META %%OCAML_SITELIBDIR%%/xdg/dune-package %%OCAML_SITELIBDIR%%/xdg/libxdg_stubs.a %%OCAML_SITELIBDIR%%/xdg/opam %%OCAML_SITELIBDIR%%/xdg/xdg.a %%OCAML_SITELIBDIR%%/xdg/xdg.cma %%OCAML_SITELIBDIR%%/xdg/xdg.cmi %%OCAML_SITELIBDIR%%/xdg/xdg.cmt %%OCAML_SITELIBDIR%%/xdg/xdg.cmti %%OCAML_SITELIBDIR%%/xdg/xdg.cmx %%OCAML_SITELIBDIR%%/xdg/xdg.cmxa %%OCAML_SITELIBDIR%%/xdg/xdg.cmxs %%OCAML_SITELIBDIR%%/xdg/xdg.ml %%OCAML_SITELIBDIR%%/xdg/xdg.mli share/man/man1/dune-build.1.gz share/man/man1/dune-cache.1.gz share/man/man1/dune-clean.1.gz share/man/man1/dune-coq.1.gz share/man/man1/dune-describe.1.gz share/man/man1/dune-diagnostics.1.gz share/man/man1/dune-exec.1.gz share/man/man1/dune-external-lib-deps.1.gz share/man/man1/dune-fmt.1.gz share/man/man1/dune-format-dune-file.1.gz share/man/man1/dune-help.1.gz share/man/man1/dune-init.1.gz share/man/man1/dune-install.1.gz share/man/man1/dune-installed-libraries.1.gz share/man/man1/dune-internal.1.gz share/man/man1/dune-ocaml-merlin.1.gz share/man/man1/dune-ocaml.1.gz share/man/man1/dune-printenv.1.gz share/man/man1/dune-promote.1.gz share/man/man1/dune-promotion.1.gz share/man/man1/dune-rpc.1.gz share/man/man1/dune-rules.1.gz share/man/man1/dune-runtest.1.gz share/man/man1/dune-shutdown.1.gz share/man/man1/dune-subst.1.gz share/man/man1/dune-test.1.gz share/man/man1/dune-top.1.gz share/man/man1/dune-uninstall.1.gz share/man/man1/dune-upgrade.1.gz share/man/man1/dune-utop.1.gz share/man/man1/dune.1.gz share/man/man5/dune-config.5.gz %%PORTDOCS%%share/doc/ocaml/dune-action-plugin/CHANGES.md %%PORTDOCS%%share/doc/ocaml/dune-action-plugin/LICENSE.md %%PORTDOCS%%share/doc/ocaml/dune-action-plugin/README.md %%PORTDOCS%%share/doc/ocaml/dune-build-info/CHANGES.md %%PORTDOCS%%share/doc/ocaml/dune-build-info/LICENSE.md %%PORTDOCS%%share/doc/ocaml/dune-build-info/README.md %%PORTDOCS%%share/doc/ocaml/dune-configurator/CHANGES.md %%PORTDOCS%%share/doc/ocaml/dune-configurator/LICENSE.md %%PORTDOCS%%share/doc/ocaml/dune-configurator/README.md %%PORTDOCS%%share/doc/ocaml/dune-glob/CHANGES.md %%PORTDOCS%%share/doc/ocaml/dune-glob/LICENSE.md %%PORTDOCS%%share/doc/ocaml/dune-glob/README.md %%PORTDOCS%%share/doc/ocaml/dune-private-libs/CHANGES.md %%PORTDOCS%%share/doc/ocaml/dune-private-libs/LICENSE.md %%PORTDOCS%%share/doc/ocaml/dune-private-libs/README.md %%PORTDOCS%%share/doc/ocaml/dune-rpc/CHANGES.md %%PORTDOCS%%share/doc/ocaml/dune-rpc/LICENSE.md %%PORTDOCS%%share/doc/ocaml/dune-rpc/README.md %%PORTDOCS%%share/doc/ocaml/dune-site/CHANGES.md %%PORTDOCS%%share/doc/ocaml/dune-site/LICENSE.md %%PORTDOCS%%share/doc/ocaml/dune-site/README.md %%PORTDOCS%%share/doc/ocaml/dune/CHANGES.md %%PORTDOCS%%share/doc/ocaml/dune/LICENSE.md %%PORTDOCS%%share/doc/ocaml/dune/README.md %%PORTDOCS%%share/doc/ocaml/dyn/CHANGES.md %%PORTDOCS%%share/doc/ocaml/dyn/LICENSE.md %%PORTDOCS%%share/doc/ocaml/dyn/README.md %%PORTDOCS%%share/doc/ocaml/ordering/CHANGES.md %%PORTDOCS%%share/doc/ocaml/ordering/LICENSE.md %%PORTDOCS%%share/doc/ocaml/ordering/README.md %%PORTDOCS%%share/doc/ocaml/stdune/CHANGES.md %%PORTDOCS%%share/doc/ocaml/stdune/LICENSE.md %%PORTDOCS%%share/doc/ocaml/stdune/README.md %%PORTDOCS%%share/doc/ocaml/xdg/CHANGES.md %%PORTDOCS%%share/doc/ocaml/xdg/LICENSE.md %%PORTDOCS%%share/doc/ocaml/xdg/README.md share/emacs/site-lisp/dune-flymake.el share/emacs/site-lisp/dune-watch.el share/emacs/site-lisp/dune.el diff --git a/devel/ocaml-extlib/Makefile b/devel/ocaml-extlib/Makefile index ffcf3a7f3fae..6410ed659b03 100644 --- a/devel/ocaml-extlib/Makefile +++ b/devel/ocaml-extlib/Makefile @@ -1,41 +1,41 @@ PORTNAME= extlib DISTVERSION= 1.7.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= https://github.com/ygrek/ocaml-extlib/releases/download/${DISTVERSION}/ PKGNAMEPREFIX= ocaml- MAINTAINER= eduardo@FreeBSD.org COMMENT= Complete - yet small - standard library for OCaml WWW= https://github.com/ygrek/ocaml-extlib LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/../LICENSE BROKEN_mips= depends on Ocaml(not available for mips) BUILD_DEPENDS= cppo:devel/ocaml-cppo USES= gmake USE_OCAML= yes USE_OCAML_CAMLP4= yes USE_OCAML_FINDLIB= yes USE_OCAMLFIND_PLIST= yes MAKE_ARGS= VERSION="${DISTVERSION}" ALL_TARGET= all opt doc DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} WRKSRC_SUBDIR= src PORTDOCS= * OPTIONS_DEFINE= DOCS post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC}/doc && ${INSTALL_DATA} * ${STAGEDIR}${DOCSDIR}) .include diff --git a/devel/ocaml-findlib/Makefile b/devel/ocaml-findlib/Makefile index 8de85e2b19c5..f61db9ce2bce 100644 --- a/devel/ocaml-findlib/Makefile +++ b/devel/ocaml-findlib/Makefile @@ -1,67 +1,60 @@ PORTNAME= findlib PORTVERSION= 1.9.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://download.camlcity.org/download/ PKGNAMEPREFIX= ocaml- MAINTAINER= hrs@FreeBSD.org COMMENT= OCaml package manager WWW= http://projects.camlcity.org/projects/findlib.html LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gmake USE_OCAML= yes USE_OCAML_CAMLP4=yes -USE_OCAML_FINDLIB=yes -OCAMLFIND_DEPEND= # Avoid dependency loop HAS_CONFIGURE= yes CONFIGURE_ARGS= -bindir "${PREFIX}/bin" -mandir "${PREFIX}/share/man" \ -sitelib "${PREFIX}/${OCAML_SITELIBDIR}" \ -config "${PREFIX}/etc/findlib.conf" MAKE_ENV= OCAML_LIBDIR="${PREFIX}/${OCAML_LIBDIR}" ALL_TARGET= all opt MAKE_JOBS_UNSAFE= yes -DOCSDIR= ${PREFIX}/share/doc/ocaml/${PORTNAME} +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} PORTDOCS= * OPTIONS_DEFINE= TOOLBOX DOCS OPTIONS_DEFAULT=TOOLBOX OPTIONS_SUB= yes TOOLBOX_DESC= Include toolbox interface (requires OCaml with Tk) TOOLBOX_CONFIGURE_ON= -with-toolbox TOOLBOX_RUN_DEPENDS= labltk:x11-toolkits/ocaml-labltk TOOLBOX_BUILD_DEPENDS= ${TOOLBOX_RUN_DEPENDS} .include post-install: - cd ${STAGEDIR}${PREFIX} && \ + # META files provided by the respective ocaml-* package, + # (those libraries used to be belong in the core ocaml + # compiler package). + @for oldlib in camlp4 graphics labltk ocamlbuild; \ + do ${RM} -r ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/$$oldlib ; done + @(cd ${STAGEDIR}${PREFIX} && \ ${STRIP_CMD} bin/ocamlfind \ ${OCAML_SITELIBDIR}/findlib/findlib.cmxs \ ${OCAML_SITELIBDIR}/findlib/findlib_dynload.cmxs \ - ${OCAML_SITELIBDIR}/findlib/findlib_top.cmxs -.if !exists(${LOCALBASE}/lib/ocaml/graphics.cmi) - @${REINPLACE_CMD} -e '/graphics\/META/d' ${TMPPLIST} -.endif -.if !exists(${LOCALBASE}/lib/ocaml/ocamlbuild/ocamlbuildlib.cma) - @${REINPLACE_CMD} -e '/ocamlbuild\/META/d' ${TMPPLIST} -.endif -# Spacetime profiling is only available for native code on 64-bit targets -.if ${ARCH} == armv7 || ${ARCH} == i386 || ${ARCH} == powerpc || ${ARCH} == powerpcspe - @${REINPLACE_CMD} -e '/raw_spacetime/d' ${TMPPLIST} -.endif + ${OCAML_SITELIBDIR}/findlib/findlib_top.cmxs) post-install-TOOLBOX-on: ${CHMOD} 755 ${STAGEDIR}${PREFIX}/bin/ocamlfind \ ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/findlib/make_wizard post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR} \ "! -regex .*ref-man.*" .include diff --git a/devel/ocaml-findlib/files/patch-configure b/devel/ocaml-findlib/files/patch-configure new file mode 100644 index 000000000000..b70bddb841fd --- /dev/null +++ b/devel/ocaml-findlib/files/patch-configure @@ -0,0 +1,12 @@ +--- configure.orig 2024-03-01 00:17:41 UTC ++++ configure +@@ -457,9 +457,7 @@ if [ -d "${ocaml_sitelib}" ] && [ ${ocaml_major} -lt 5 + echo "Installation has: $findlib_installed_meta" + else + previous_config='' +- check_before_install=1 + echo "Querying installation: META list not found" +- echo "make install will double-check installed META files" + fi + else + previous_config='' diff --git a/devel/ocaml-findlib/files/patch-src_findlib-toolbox_Makefile b/devel/ocaml-findlib/files/patch-src_findlib-toolbox_Makefile new file mode 100644 index 000000000000..629b264f1aea --- /dev/null +++ b/devel/ocaml-findlib/files/patch-src_findlib-toolbox_Makefile @@ -0,0 +1,11 @@ +--- src/findlib-toolbox/Makefile.orig 2024-03-01 00:20:34 UTC ++++ src/findlib-toolbox/Makefile +@@ -9,7 +9,7 @@ make_wizard$(EXEC_SUFFIX): make_wizard.ml + true + + make_wizard$(EXEC_SUFFIX): make_wizard.ml +- ocamlc -o make_wizard$(EXEC_SUFFIX) -I +unix -I +labltk -I ../findlib \ ++ ocamlc -o make_wizard$(EXEC_SUFFIX) -I +unix -I +site-lib/labltk -I ../findlib \ + unix.cma str.cma labltk.cma findlib.cma make_wizard.ml + + install: diff --git a/devel/ocaml-findlib/pkg-plist b/devel/ocaml-findlib/pkg-plist index b30e436e3923..034467e6b8f1 100644 --- a/devel/ocaml-findlib/pkg-plist +++ b/devel/ocaml-findlib/pkg-plist @@ -1,57 +1,53 @@ bin/ocamlfind bin/safe_camlp4 %%ETCDIR%%.conf %%OCAML_SITELIBDIR%%/bigarray/META %%OCAML_SITELIBDIR%%/bytes/META -%%OCAML_SITELIBDIR%%/camlp4/META %%OCAML_SITELIBDIR%%/compiler-libs/META %%OCAML_SITELIBDIR%%/dynlink/META %%OCAML_SITELIBDIR%%/findlib/META %%OCAML_SITELIBDIR%%/findlib/Makefile.config %%OCAML_SITELIBDIR%%/findlib/Makefile.packages %%OCAML_SITELIBDIR%%/findlib/findlib.a %%OCAML_SITELIBDIR%%/findlib/findlib.cma %%OCAML_SITELIBDIR%%/findlib/findlib.cmi %%OCAML_SITELIBDIR%%/findlib/findlib.cmxa %%OCAML_SITELIBDIR%%/findlib/findlib.cmxs %%OCAML_SITELIBDIR%%/findlib/findlib.mli %%OCAML_SITELIBDIR%%/findlib/findlib_config.cmi %%OCAML_SITELIBDIR%%/findlib/findlib_config.ml %%OCAML_SITELIBDIR%%/findlib/findlib_dynload.a %%OCAML_SITELIBDIR%%/findlib/findlib_dynload.cma %%OCAML_SITELIBDIR%%/findlib/findlib_dynload.cmxa %%OCAML_SITELIBDIR%%/findlib/findlib_dynload.cmxs %%OCAML_SITELIBDIR%%/findlib/findlib_top.a %%OCAML_SITELIBDIR%%/findlib/findlib_top.cma %%OCAML_SITELIBDIR%%/findlib/findlib_top.cmxa %%OCAML_SITELIBDIR%%/findlib/findlib_top.cmxs %%OCAML_SITELIBDIR%%/findlib/fl_args.cmi %%OCAML_SITELIBDIR%%/findlib/fl_dynload.cmi %%OCAML_SITELIBDIR%%/findlib/fl_dynload.mli %%OCAML_SITELIBDIR%%/findlib/fl_lint.cmi %%OCAML_SITELIBDIR%%/findlib/fl_meta.cmi %%OCAML_SITELIBDIR%%/findlib/fl_metascanner.cmi %%OCAML_SITELIBDIR%%/findlib/fl_metascanner.mli %%OCAML_SITELIBDIR%%/findlib/fl_metatoken.cmi %%OCAML_SITELIBDIR%%/findlib/fl_package_base.cmi %%OCAML_SITELIBDIR%%/findlib/fl_package_base.mli %%OCAML_SITELIBDIR%%/findlib/fl_split.cmi %%OCAML_SITELIBDIR%%/findlib/fl_topo.cmi %%OCAML_SITELIBDIR%%/findlib/ocaml_args.cmi %%TOOLBOX%%%%OCAML_SITELIBDIR%%/findlib/make_wizard %%TOOLBOX%%%%OCAML_SITELIBDIR%%/findlib/make_wizard.pattern %%OCAML_SITELIBDIR%%/findlib/topfind.cmi %%OCAML_SITELIBDIR%%/findlib/topfind.mli -%%OCAML_SITELIBDIR%%/graphics/META -%%TOOLBOX%%%%OCAML_SITELIBDIR%%/labltk/META -%%OCAML_SITELIBDIR%%/ocamlbuild/META %%OCAML_SITELIBDIR%%/ocamldoc/META %%OCAML_SITELIBDIR%%/stdlib/META %%OCAML_SITELIBDIR%%/str/META %%OCAML_SITELIBDIR%%/threads/META %%OCAML_SITELIBDIR%%/unix/META lib/ocaml/topfind share/man/man1/ocamlfind.1.gz share/man/man5/META.5.gz share/man/man5/findlib.conf.5.gz share/man/man5/site-lib.5.gz diff --git a/devel/ocaml-fmt/Makefile b/devel/ocaml-fmt/Makefile new file mode 100644 index 000000000000..47970ec861f5 --- /dev/null +++ b/devel/ocaml-fmt/Makefile @@ -0,0 +1,48 @@ +PORTNAME= fmt +PORTVERSION= 0.9.0 +CATEGORIES= devel +MASTER_SITES= https://erratique.ch/software/fmt/releases/ +PKGNAMEPREFIX= ocaml- + +MAINTAINER= freebsd@dev.thsi.be +COMMENT= Pretty-printer combinator library for Objective Caml +WWW= https://erratique.ch/software/fmt + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +BUILD_DEPENDS= ${SA_DIR}/cmdliner/META:devel/ocaml-cmdliner \ + ${SA_DIR}/topkg/META:devel/ocaml-topkg \ + ocamlbuild:devel/ocaml-ocamlbuild \ + opam-installer:devel/ocaml-opam +RUN_DEPENDS= ${SA_DIR}/cmdliner/META:devel/ocaml-cmdliner + +USES= tar:tbz +USE_OCAML= yes + +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} +PORTDOCS= CHANGES.md LICENSE.md README.md + +OPTIONS_DEFINE= DOCS + +SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} + +do-build: + @(cd ${BUILD_WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} \ + ocaml pkg/pkg.ml build \ + --tests true --jobs ${MAKE_JOBS_NUMBER} --with-cmdliner true) + +do-install: + @(cd ${INSTALL_WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} \ + opam-installer -i \ + --prefix=${STAGEDIR}${PREFIX} \ + --docdir=${OCAML_DOCSDIR:S,^${PREFIX}/,,} \ + --libdir=${OCAML_SITELIBDIR} ${PORTNAME}.install) + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/fmt.cmxs + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/fmt_cli.cmxs + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/fmt_top.cmxs + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/fmt_tty.cmxs + +.include diff --git a/devel/ocaml-fmt/distinfo b/devel/ocaml-fmt/distinfo new file mode 100644 index 000000000000..9e70c78d4724 --- /dev/null +++ b/devel/ocaml-fmt/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1706838807 +SHA256 (fmt-0.9.0.tbz) = f1fb20805a22dd75a137d72704a370e7789cf6bdf63948e6817d1c226c141261 +SIZE (fmt-0.9.0.tbz) = 22699 diff --git a/devel/ocaml-fmt/pkg-descr b/devel/ocaml-fmt/pkg-descr new file mode 100644 index 000000000000..b3e5026127a5 --- /dev/null +++ b/devel/ocaml-fmt/pkg-descr @@ -0,0 +1,2 @@ +Combinator library to produce pretty-printers compatible with +the Format module of the OCaml standard distribution. diff --git a/devel/ocaml-fmt/pkg-plist b/devel/ocaml-fmt/pkg-plist new file mode 100644 index 000000000000..cda6dfcbb240 --- /dev/null +++ b/devel/ocaml-fmt/pkg-plist @@ -0,0 +1,32 @@ +%%OCAML_SITELIBDIR%%/fmt/opam +%%OCAML_SITELIBDIR%%/fmt/META +%%OCAML_SITELIBDIR%%/fmt/fmt.a +%%OCAML_SITELIBDIR%%/fmt/fmt.cma +%%OCAML_SITELIBDIR%%/fmt/fmt.cmi +%%OCAML_SITELIBDIR%%/fmt/fmt.cmti +%%OCAML_SITELIBDIR%%/fmt/fmt.cmx +%%OCAML_SITELIBDIR%%/fmt/fmt.cmxa +%%OCAML_SITELIBDIR%%/fmt/fmt.cmxs +%%OCAML_SITELIBDIR%%/fmt/fmt.mli +%%OCAML_SITELIBDIR%%/fmt/fmt_cli.a +%%OCAML_SITELIBDIR%%/fmt/fmt_cli.cma +%%OCAML_SITELIBDIR%%/fmt/fmt_cli.cmi +%%OCAML_SITELIBDIR%%/fmt/fmt_cli.cmti +%%OCAML_SITELIBDIR%%/fmt/fmt_cli.cmx +%%OCAML_SITELIBDIR%%/fmt/fmt_cli.cmxa +%%OCAML_SITELIBDIR%%/fmt/fmt_cli.cmxs +%%OCAML_SITELIBDIR%%/fmt/fmt_cli.mli +%%OCAML_SITELIBDIR%%/fmt/fmt_top.a +%%OCAML_SITELIBDIR%%/fmt/fmt_top.cma +%%OCAML_SITELIBDIR%%/fmt/fmt_top.cmx +%%OCAML_SITELIBDIR%%/fmt/fmt_top.cmxa +%%OCAML_SITELIBDIR%%/fmt/fmt_top.cmxs +%%OCAML_SITELIBDIR%%/fmt/fmt_tty.a +%%OCAML_SITELIBDIR%%/fmt/fmt_tty.cma +%%OCAML_SITELIBDIR%%/fmt/fmt_tty.cmi +%%OCAML_SITELIBDIR%%/fmt/fmt_tty.cmti +%%OCAML_SITELIBDIR%%/fmt/fmt_tty.cmx +%%OCAML_SITELIBDIR%%/fmt/fmt_tty.cmxa +%%OCAML_SITELIBDIR%%/fmt/fmt_tty.cmxs +%%OCAML_SITELIBDIR%%/fmt/fmt_tty.mli +%%OCAML_SITELIBDIR%%/fmt/fmt_tty_top_init.ml diff --git a/devel/ocaml-fpath/Makefile b/devel/ocaml-fpath/Makefile new file mode 100644 index 000000000000..1add595d5b39 --- /dev/null +++ b/devel/ocaml-fpath/Makefile @@ -0,0 +1,46 @@ +PORTNAME= fpath +PORTVERSION= 0.7.3 +CATEGORIES= devel +MASTER_SITES= https://erratique.ch/software/fpath/releases/ +PKGNAMEPREFIX= ocaml- + +MAINTAINER= freebsd@dev.thsi.be +COMMENT= File system paths library for Objective Caml +WWW= https://erratique.ch/software/fpath + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +BUILD_DEPENDS= ${SA_DIR}/astring/META:devel/ocaml-astring \ + ${SA_DIR}/topkg/META:devel/ocaml-topkg \ + ocamlbuild:devel/ocaml-ocamlbuild \ + opam-installer:devel/ocaml-opam +RUN_DEPENDS= ${SA_DIR}/astring/META:devel/ocaml-astring + +USES= tar:tbz +USE_OCAML= yes +USE_OCAML_FINDLIB= yes + +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} +PORTDOCS= CHANGES.md LICENSE.md README.md + +OPTIONS_DEFINE= DOCS + +SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} + +do-build: + @(cd ${BUILD_WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} \ + ocaml pkg/pkg.ml build --tests true --jobs ${MAKE_JOBS_NUMBER}) + +do-install: + @(cd ${INSTALL_WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} \ + opam-installer -i \ + --prefix=${STAGEDIR}${PREFIX} \ + --docdir=${OCAML_DOCSDIR:S,^${PREFIX}/,,} \ + --libdir=${OCAML_SITELIBDIR} ${PORTNAME}.install) + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/fpath.cmxs + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/fpath_top.cmxs + +.include diff --git a/devel/ocaml-fpath/distinfo b/devel/ocaml-fpath/distinfo new file mode 100644 index 000000000000..e31d3900bf49 --- /dev/null +++ b/devel/ocaml-fpath/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1706838459 +SHA256 (fpath-0.7.3.tbz) = 12b08ff192d037d9b6d69e9ca19d1d385184f20b3237c27231e437ac81ace70f +SIZE (fpath-0.7.3.tbz) = 24345 diff --git a/devel/ocaml-fpath/pkg-descr b/devel/ocaml-fpath/pkg-descr new file mode 100644 index 000000000000..a962d24bf8cf --- /dev/null +++ b/devel/ocaml-fpath/pkg-descr @@ -0,0 +1,4 @@ +OCaml library to manipulate filesystem paths, file extensions, +operating system conventions for POSIX and Windows, Set and Map of +paths, independently from the operating system the program is running +on. diff --git a/devel/ocaml-fpath/pkg-plist b/devel/ocaml-fpath/pkg-plist new file mode 100644 index 000000000000..255c3e2211fa --- /dev/null +++ b/devel/ocaml-fpath/pkg-plist @@ -0,0 +1,16 @@ +%%OCAML_SITELIBDIR%%/fpath/opam +%%OCAML_SITELIBDIR%%/fpath/META +%%OCAML_SITELIBDIR%%/fpath/fpath.a +%%OCAML_SITELIBDIR%%/fpath/fpath.cma +%%OCAML_SITELIBDIR%%/fpath/fpath.cmi +%%OCAML_SITELIBDIR%%/fpath/fpath.cmti +%%OCAML_SITELIBDIR%%/fpath/fpath.cmx +%%OCAML_SITELIBDIR%%/fpath/fpath.cmxa +%%OCAML_SITELIBDIR%%/fpath/fpath.cmxs +%%OCAML_SITELIBDIR%%/fpath/fpath.mli +%%OCAML_SITELIBDIR%%/fpath/fpath_top.a +%%OCAML_SITELIBDIR%%/fpath/fpath_top.cma +%%OCAML_SITELIBDIR%%/fpath/fpath_top.cmx +%%OCAML_SITELIBDIR%%/fpath/fpath_top.cmxa +%%OCAML_SITELIBDIR%%/fpath/fpath_top.cmxs +%%OCAML_SITELIBDIR%%/fpath/fpath_top_init.ml diff --git a/devel/ocaml-ipaddr/Makefile b/devel/ocaml-ipaddr/Makefile index dc894031e18b..ca61059e39a1 100644 --- a/devel/ocaml-ipaddr/Makefile +++ b/devel/ocaml-ipaddr/Makefile @@ -1,33 +1,34 @@ PORTNAME= ipaddr DISTVERSIONPREFIX= v PORTVERSION= 3.1.0 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= OCaml library for manipulation of IP address representations BUILD_DEPENDS= ${LOCALBASE}/${OCAML_SITELIBDIR}/sexplib0/sexplib0.a:devel/ocaml-sexplib0 \ dune:devel/ocaml-dune RUN_DEPENDS= ${LOCALBASE}/${OCAML_SITELIBDIR}/sexplib0/sexplib0.a:devel/ocaml-sexplib0 USE_GITHUB= yes GH_ACCOUNT= mirage GH_PROJECT= ocaml-ipaddr USES= gmake USE_OCAML= yes USE_OCAML_FINDLIB= yes USE_OCAML_CAMLP4= yes USE_OCAML_LDCONFIG= yes post-patch: @${REINPLACE_CMD} -e '/^SETUP =/s,ocaml,& -unsafe-string,' \ ${WRKSRC}/Makefile do-install: cd ${INSTALL_WRKSRC} && dune install --destdir=${STAGEDIR} \ --prefix=${PREFIX} --libdir=${PREFIX}/${OCAML_SITELIBDIR} .include diff --git a/devel/ocaml-lacaml/Makefile b/devel/ocaml-lacaml/Makefile index dadd1921f56a..a2990756c479 100644 --- a/devel/ocaml-lacaml/Makefile +++ b/devel/ocaml-lacaml/Makefile @@ -1,63 +1,63 @@ PORTNAME= lacaml PORTVERSION= 8.0.7 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= devel MASTER_SITES= https://github.com/mmottl/lacaml/releases/download/v${PORTVERSION}/ PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= OCaml interface to BLAS and LAPACK libraries WWW= https://mmottl.github.io/lacaml/ LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING.txt BUILD_DEPENDS= ocamlbuild:devel/ocaml-ocamlbuild USE_OCAML= yes USE_OCAML_FINDLIB=yes USE_OCAMLFIND_PLIST=yes USE_OCAML_LDCONFIG=yes USE_OCAML_WASH= yes OCAMLFIND_LDCONF=ignore USES= blaslapack fortran HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix ${PREFIX} --disable-docs --disable-examples \ --override conf_ccopt "${CFLAGS}" \ --override conf_cclib "${LDFLAGS}" MAKE_JOBS_UNSAFE=yes CFLAGS+= -fPIC -DEXTERNAL_EXP10 LDFLAGS+= -L${LOCALBASE}/lib DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} EXAMPLESDIR= ${OCAML_EXAMPLESDIR}/${PORTNAME} PORTDOCS= * PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES post-patch: @${REINPLACE_CMD} -e \ 's|%%BLASLIB%%|${BLASLIB}| ; \ s|%%LAPACKLIB%%|${LAPACKLIB}| ; \ s|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/myocamlbuild.ml post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/lacaml/*.cmxs @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/lacaml/*.so post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in AUTHORS.txt CHANGES.txt README.md TODO.md (cd ${WRKSRC} && ${INSTALL_DATA} ${i} \ ${STAGEDIR}${DOCSDIR}) .endfor post-install-EXAMPLES-on: @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . \ ${STAGEDIR}${EXAMPLESDIR}) .include diff --git a/devel/ocaml-logs/Makefile b/devel/ocaml-logs/Makefile new file mode 100644 index 000000000000..e9ad8ccf1409 --- /dev/null +++ b/devel/ocaml-logs/Makefile @@ -0,0 +1,55 @@ +PORTNAME= logs +PORTVERSION= 0.7.0 +CATEGORIES= devel +MASTER_SITES= https://erratique.ch/software/logs/releases/ +PKGNAMEPREFIX= ocaml- + +MAINTAINER= freebsd@dev.thsi.be +COMMENT= Logging library for Objective Caml +WWW= https://erratique.ch/software/logs + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +BUILD_DEPENDS= ${SA_DIR}/cmdliner/META:devel/ocaml-cmdliner \ + ${SA_DIR}/fmt/META:devel/ocaml-fmt \ + ${SA_DIR}/lwt/META:devel/ocaml-lwt \ + ${SA_DIR}/mtime/META:devel/ocaml-mtime \ + ${SA_DIR}/topkg/META:devel/ocaml-topkg \ + ocamlbuild:devel/ocaml-ocamlbuild \ + opam-installer:devel/ocaml-opam +RUN_DEPENDS= ${SA_DIR}/cmdliner/META:devel/ocaml-cmdliner \ + ${SA_DIR}/fmt/META:devel/ocaml-fmt \ + ${SA_DIR}/lwt/META:devel/ocaml-lwt + +USES= tar:tbz +USE_OCAML= yes + +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} +PORTDOCS= CHANGES.md LICENSE.md README.md tags.ml tool.ml + +OPTIONS_DEFINE= DOCS + +SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} + +do-build: + cd ${BUILD_WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} \ + ocaml pkg/pkg.ml build \ + --jobs ${MAKE_JOBS_NUMBER} --with-js_of_ocaml 'false' + +do-install: + cd ${INSTALL_WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} \ + opam-installer -i \ + --prefix=${STAGEDIR}${PREFIX} \ + --docdir=${OCAML_DOCSDIR:S,^${PREFIX}/,,} \ + --libdir=${OCAML_SITELIBDIR} ${PORTNAME}.install + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/logs.cmxs + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/logs_cli.cmxs + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/logs_fmt.cmxs + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/logs_lwt.cmxs + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/logs_top.cmxs + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/logs_threaded.cmxs + +.include diff --git a/devel/ocaml-logs/distinfo b/devel/ocaml-logs/distinfo new file mode 100644 index 000000000000..2714adc55e54 --- /dev/null +++ b/devel/ocaml-logs/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1706841086 +SHA256 (logs-0.7.0.tbz) = 86f4a02807eb1a297aae44977d9f61e419c31458a5d7b23c6f55575e8e69d5ca +SIZE (logs-0.7.0.tbz) = 18458 diff --git a/devel/ocaml-logs/pkg-descr b/devel/ocaml-logs/pkg-descr new file mode 100644 index 000000000000..85977dcb1fdb --- /dev/null +++ b/devel/ocaml-logs/pkg-descr @@ -0,0 +1,2 @@ +Logging library for OCaml. The optional module Logs_cli, Logs_fmt and Logs_lwt +are included. The Logs_browser module for js_of_ocaml is not. diff --git a/devel/ocaml-logs/pkg-plist b/devel/ocaml-logs/pkg-plist new file mode 100644 index 000000000000..408d4e4cd8f7 --- /dev/null +++ b/devel/ocaml-logs/pkg-plist @@ -0,0 +1,49 @@ +%%OCAML_SITELIBDIR%%/logs/opam +%%OCAML_SITELIBDIR%%/logs/META +%%OCAML_SITELIBDIR%%/logs/logs.a +%%OCAML_SITELIBDIR%%/logs/logs.cma +%%OCAML_SITELIBDIR%%/logs/logs.cmi +%%OCAML_SITELIBDIR%%/logs/logs.cmti +%%OCAML_SITELIBDIR%%/logs/logs.cmx +%%OCAML_SITELIBDIR%%/logs/logs.cmxa +%%OCAML_SITELIBDIR%%/logs/logs.cmxs +%%OCAML_SITELIBDIR%%/logs/logs.mli +%%OCAML_SITELIBDIR%%/logs/logs_cli.a +%%OCAML_SITELIBDIR%%/logs/logs_cli.cma +%%OCAML_SITELIBDIR%%/logs/logs_cli.cmi +%%OCAML_SITELIBDIR%%/logs/logs_cli.cmti +%%OCAML_SITELIBDIR%%/logs/logs_cli.cmx +%%OCAML_SITELIBDIR%%/logs/logs_cli.cmxa +%%OCAML_SITELIBDIR%%/logs/logs_cli.cmxs +%%OCAML_SITELIBDIR%%/logs/logs_cli.mli +%%OCAML_SITELIBDIR%%/logs/logs_fmt.a +%%OCAML_SITELIBDIR%%/logs/logs_fmt.cma +%%OCAML_SITELIBDIR%%/logs/logs_fmt.cmi +%%OCAML_SITELIBDIR%%/logs/logs_fmt.cmti +%%OCAML_SITELIBDIR%%/logs/logs_fmt.cmx +%%OCAML_SITELIBDIR%%/logs/logs_fmt.cmxa +%%OCAML_SITELIBDIR%%/logs/logs_fmt.cmxs +%%OCAML_SITELIBDIR%%/logs/logs_fmt.mli +%%OCAML_SITELIBDIR%%/logs/logs_fmt_top_init.ml +%%OCAML_SITELIBDIR%%/logs/logs_lwt.a +%%OCAML_SITELIBDIR%%/logs/logs_lwt.cma +%%OCAML_SITELIBDIR%%/logs/logs_lwt.cmi +%%OCAML_SITELIBDIR%%/logs/logs_lwt.cmti +%%OCAML_SITELIBDIR%%/logs/logs_lwt.cmx +%%OCAML_SITELIBDIR%%/logs/logs_lwt.cmxa +%%OCAML_SITELIBDIR%%/logs/logs_lwt.cmxs +%%OCAML_SITELIBDIR%%/logs/logs_lwt.mli +%%OCAML_SITELIBDIR%%/logs/logs_threaded.a +%%OCAML_SITELIBDIR%%/logs/logs_threaded.cma +%%OCAML_SITELIBDIR%%/logs/logs_threaded.cmi +%%OCAML_SITELIBDIR%%/logs/logs_threaded.cmti +%%OCAML_SITELIBDIR%%/logs/logs_threaded.cmx +%%OCAML_SITELIBDIR%%/logs/logs_threaded.cmxa +%%OCAML_SITELIBDIR%%/logs/logs_threaded.cmxs +%%OCAML_SITELIBDIR%%/logs/logs_threaded.mli +%%OCAML_SITELIBDIR%%/logs/logs_top.a +%%OCAML_SITELIBDIR%%/logs/logs_top.cma +%%OCAML_SITELIBDIR%%/logs/logs_top.cmx +%%OCAML_SITELIBDIR%%/logs/logs_top.cmxa +%%OCAML_SITELIBDIR%%/logs/logs_top.cmxs +%%OCAML_SITELIBDIR%%/logs/logs_top_init.ml diff --git a/devel/ocaml-lwt/Makefile b/devel/ocaml-lwt/Makefile index ea8e70e5115d..0df0951b8cc2 100644 --- a/devel/ocaml-lwt/Makefile +++ b/devel/ocaml-lwt/Makefile @@ -1,72 +1,72 @@ PORTNAME= lwt PORTVERSION= 2.5.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= ocaml- MAINTAINER= danfe@FreeBSD.org COMMENT= Cooperative threading library for OCaml LICENSE= LGPL21 BUILD_DEPENDS= ${SA_DIR}/react/react.a:devel/ocaml-react \ ${SA_DIR}/ssl/ssl.a:security/ocaml-ssl BUILD_DEPENDS+= ocamlbuild:devel/ocaml-ocamlbuild RUN_DEPENDS= ${SA_DIR}/react/react.a:devel/ocaml-react \ ${SA_DIR}/ssl/ssl.a:security/ocaml-ssl USE_GITHUB= yes GH_ACCOUNT= ocsigen MAKE_JOBS_UNSAFE= yes USES= gmake USE_OCAML= yes -OCAMLC_DEPEND= ocaml>=3.11:${OCAMLC_PORT} +OCAMLC_DEPEND= ocaml>=4.14:${OCAMLC_PORT} USE_OCAML_FINDLIB= yes USE_OCAML_CAMLP4= yes USE_OCAMLFIND_PLIST= yes USE_OCAML_LDCONFIG= yes HAS_CONFIGURE= yes CONFIGURE_ARGS= --destdir "${STAGEDIR}" \ --prefix "${PREFIX}" \ --enable-camlp4 \ --enable-ssl \ --enable-react \ --disable-libev \ --disable-glib DOCSDIR= ${PREFIX}/share/doc/ocaml/${PORTNAME} SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} OPTIONS_DEFINE= DOCS DOCS_CONFIGURE_ENABLE= docs DOCS_CONFIGURE_ON= --docdir ${STAGEDIR}${DOCSDIR} # For some reason, ocaml-text is needed when building documentation DOCS_BUILD_DEPENDS= ${SA_DIR}/text/text.a:textproc/ocaml-text DOCS_RUN_DEPENDS= ${SA_DIR}/text/text.a:textproc/ocaml-text post-patch: @${REINPLACE_CMD} -e 's,"install" :: findlib_name,"install" :: "-destdir ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib" :: "-ldconf /dev/null" :: findlib_name,' \ ${WRKSRC}/setup.ml @${REINPLACE_CMD} -e 's,| O_CLOEXEC,& | O_KEEPEXEC, \ ; s,else Unix\.socketpair ,&?cloexec:None,' \ ${WRKSRC}/src/unix/lwt_unix.ml \ ${WRKSRC}/src/unix/lwt_unix.mli @${REINPLACE_CMD} -e 's,socket -> string,socket -> bytes,' \ ${WRKSRC}/src/ssl/lwt_ssl.mli do-configure: cd ${WRKSRC}; ocaml setup.ml -configure ${CONFIGURE_ARGS} @${REINPLACE_CMD} -e 's%"-lev"%"-lev -L${PREFIX}/lib/ev -Wl,-R${PREFIX}/lib/ev"%' \ ${WRKSRC}/setup.data do-build: cd ${WRKSRC}; ocaml setup.ml -build do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR} cd ${WRKSRC}; ocaml setup.ml -install .include diff --git a/devel/ocaml-lwt/files/patch-src_unix_lwt__unix.ml b/devel/ocaml-lwt/files/patch-src_unix_lwt__unix.ml new file mode 100644 index 000000000000..bb800a8b59f2 --- /dev/null +++ b/devel/ocaml-lwt/files/patch-src_unix_lwt__unix.ml @@ -0,0 +1,10 @@ +--- src/unix/lwt_unix.ml.orig 2024-02-01 21:33:02 UTC ++++ src/unix/lwt_unix.ml +@@ -1471,6 +1471,7 @@ type socket_bool_option = + | SO_ACCEPTCONN + | TCP_NODELAY + | IPV6_ONLY ++ | SO_REUSEPORT + + type socket_int_option = + Unix.socket_int_option = diff --git a/devel/ocaml-lwt/files/patch-src_unix_lwt__unix.mli b/devel/ocaml-lwt/files/patch-src_unix_lwt__unix.mli new file mode 100644 index 000000000000..de1c8c4a7d8b --- /dev/null +++ b/devel/ocaml-lwt/files/patch-src_unix_lwt__unix.mli @@ -0,0 +1,10 @@ +--- src/unix/lwt_unix.mli.orig 2016-04-25 14:32:43 UTC ++++ src/unix/lwt_unix.mli +@@ -806,6 +806,7 @@ type socket_bool_option = + | SO_ACCEPTCONN + | TCP_NODELAY + | IPV6_ONLY ++ | SO_REUSEPORT + + type socket_int_option = + Unix.socket_int_option = diff --git a/devel/ocaml-magic/Makefile b/devel/ocaml-magic/Makefile index 2c197bc480ee..8baf52fc6ade 100644 --- a/devel/ocaml-magic/Makefile +++ b/devel/ocaml-magic/Makefile @@ -1,39 +1,39 @@ PORTNAME= magic PORTVERSION= 0.7.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel MASTER_SITES= SF/ocaml-${PORTNAME}/ocaml-${PORTNAME}/0.7 PKGNAMEPREFIX= ocaml- DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= OCaml binding for libmagic(3) WWW= https://sourceforge.net/projects/ocaml-magic/ LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE USE_OCAML= yes USE_OCAML_FINDLIB= yes USE_OCAML_LDCONFIG= yes MAKE_JOBS_UNSAFE= yes USES= gmake GNU_CONFIGURE= yes ALL_TARGET= doc examples DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} EXAMPLESDIR= ${OCAML_EXAMPLESDIR}/${PORTNAME} OPTIONS_DEFINE= DOCS EXAMPLES post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/html/* ${STAGEDIR}${DOCSDIR} post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR} .include diff --git a/devel/ocaml-mtime/Makefile b/devel/ocaml-mtime/Makefile new file mode 100644 index 000000000000..17b5851c53e7 --- /dev/null +++ b/devel/ocaml-mtime/Makefile @@ -0,0 +1,59 @@ +PORTNAME= mtime +PORTVERSION= 2.0.0 +CATEGORIES= devel +MASTER_SITES= https://erratique.ch/software/mtime/releases/ +PKGNAMEPREFIX= ocaml- + +MAINTAINER= freebsd@dev.thsi.be +COMMENT= Platform independent wall-clock monotonic time for OCaml +WWW= https://erratique.ch/software/mtime + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +BUILD_DEPENDS= ${SA_DIR}/topkg/META:devel/ocaml-topkg \ + ocamlbuild:devel/ocaml-ocamlbuild \ + opam-installer:devel/ocaml-opam + +USES= tar:tbz +USE_OCAML= yes +USE_OCAML_LDCONFIG= yes + +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} +EXAMPLESDIR= ${OCAML_EXAMPLESDIR}/${PORTNAME} +PORTDOCS= CHANGES.md LICENSE.md README.md odoc-pages +PORTEXAMPLES= examples.ml + +OPTIONS_DEFINE= DOCS EXAMPLES + +SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} + +do-build: + @(cd ${BUILD_WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} \ + ocaml pkg/pkg.ml build --tests true --jobs ${MAKE_JOBS_NUMBER}) + +do-install: + @(cd ${INSTALL_WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} \ + opam-installer -i \ + --prefix=${STAGEDIR}${PREFIX} \ + --docdir=${OCAML_DOCSDIR:S,^${PREFIX}/,,} \ + --libdir=${OCAML_SITELIBDIR} ${PORTNAME}.install) + +do-install-EXAMPLES-off: + ${RM} ${STAGEDIR}${DOCSDIR}/min_clock.ml + +do-install-EXAMPLES-on: + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${MV} ${STAGEDIR}${DOCSDIR}/min_clock.ml ${STAGEDIR}${EXAMPLESDIR}/examples.ml + +post-install: + @${INSTALL_LIB} \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/stublibs/dllmtime_clock_stubs.so \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/dllmtime_clock_stubs.so + @${RM} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/stublibs/dllmtime_clock_stubs.so + @${RMDIR} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/stublibs + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/mtime.cmxs + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/clock/os/mtime_clock.cmxs + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/top/mtime_top.cmxs + +.include diff --git a/devel/ocaml-mtime/distinfo b/devel/ocaml-mtime/distinfo new file mode 100644 index 000000000000..4408bf6e0b76 --- /dev/null +++ b/devel/ocaml-mtime/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1706839766 +SHA256 (mtime-2.0.0.tbz) = 3f3da0ea006db34465b03084de7a58ab15a0f16f47828c500be53addf1e044eb +SIZE (mtime-2.0.0.tbz) = 16284 diff --git a/devel/ocaml-mtime/pkg-descr b/devel/ocaml-mtime/pkg-descr new file mode 100644 index 000000000000..bbf0cc320d35 --- /dev/null +++ b/devel/ocaml-mtime/pkg-descr @@ -0,0 +1,5 @@ +A monotonic time source provides time samples or measurements which are +always increasing, regardless of any adjustments made to the computer clock. + +This library provides a pure OCaml implementation, and another implementation +relying on the operating system or the JavaScript runtime. diff --git a/devel/ocaml-mtime/pkg-plist b/devel/ocaml-mtime/pkg-plist new file mode 100644 index 000000000000..727407383a59 --- /dev/null +++ b/devel/ocaml-mtime/pkg-plist @@ -0,0 +1,27 @@ +%%OCAML_SITELIBDIR%%/mtime/opam +%%OCAML_SITELIBDIR%%/mtime/META +%%OCAML_SITELIBDIR%%/mtime/clock/os/libmtime_clock_stubs.a +%%OCAML_SITELIBDIR%%/mtime/clock/os/mtime_clock.a +%%OCAML_SITELIBDIR%%/mtime/clock/os/mtime_clock.cma +%%OCAML_SITELIBDIR%%/mtime/clock/os/mtime_clock.cmi +%%OCAML_SITELIBDIR%%/mtime/clock/os/mtime_clock.cmti +%%OCAML_SITELIBDIR%%/mtime/clock/os/mtime_clock.cmx +%%OCAML_SITELIBDIR%%/mtime/clock/os/mtime_clock.cmxa +%%OCAML_SITELIBDIR%%/mtime/clock/os/mtime_clock.cmxs +%%OCAML_SITELIBDIR%%/mtime/clock/os/mtime_clock.mli +%%OCAML_SITELIBDIR%%/mtime/clock/os/runtime.js +%%OCAML_SITELIBDIR%%/mtime/dllmtime_clock_stubs.so +%%OCAML_SITELIBDIR%%/mtime/mtime.a +%%OCAML_SITELIBDIR%%/mtime/mtime.cma +%%OCAML_SITELIBDIR%%/mtime/mtime.cmi +%%OCAML_SITELIBDIR%%/mtime/mtime.cmti +%%OCAML_SITELIBDIR%%/mtime/mtime.cmx +%%OCAML_SITELIBDIR%%/mtime/mtime.cmxa +%%OCAML_SITELIBDIR%%/mtime/mtime.cmxs +%%OCAML_SITELIBDIR%%/mtime/mtime.mli +%%OCAML_SITELIBDIR%%/mtime/top/mtime_top.a +%%OCAML_SITELIBDIR%%/mtime/top/mtime_top.cma +%%OCAML_SITELIBDIR%%/mtime/top/mtime_top.cmx +%%OCAML_SITELIBDIR%%/mtime/top/mtime_top.cmxa +%%OCAML_SITELIBDIR%%/mtime/top/mtime_top.cmxs +%%OCAML_SITELIBDIR%%/mtime/mtime_top_init.ml diff --git a/devel/ocaml-ocamlbuild/Makefile b/devel/ocaml-ocamlbuild/Makefile index d7d186e2092c..98bf668cb0e7 100644 --- a/devel/ocaml-ocamlbuild/Makefile +++ b/devel/ocaml-ocamlbuild/Makefile @@ -1,23 +1,23 @@ PORTNAME= ocamlbuild PORTVERSION= 0.14.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel PKGNAMEPREFIX= ocaml- MAINTAINER= danfe@FreeBSD.org COMMENT= Legacy build tool for OCaml libraries and programs WWW= https://github.com/ocaml/ocamlbuild LICENSE= GPLv2 USES= gmake USE_GITHUB= yes GH_ACCOUNT= ocaml USE_OCAML= yes ALL_TARGET= configure all MAKE_ENV= OCAMLBUILD_LIBDIR=${PREFIX}/${OCAML_LIBDIR} TEST_TARGET= test TEST_ENV= VERBOSE=1 .include diff --git a/devel/ocaml-ounit/Makefile b/devel/ocaml-ounit/Makefile index 65b162d4b094..e6a9c60cbd81 100644 --- a/devel/ocaml-ounit/Makefile +++ b/devel/ocaml-ounit/Makefile @@ -1,34 +1,34 @@ PORTNAME= ounit PORTVERSION= 1.0.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= http://www.xs4all.nl/~mmzeeman/ocaml/ PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= OCaml unit test framework WWW= http://home.wanadoo.nl/maas/ocaml LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENCE USES= gmake USE_OCAML= yes USE_OCAML_FINDLIB= yes USE_OCAMLFIND_PLIST= yes OCAML_PKGDIRS= oUnit ALL_TARGET= all allopt testall doc MAKE_ENV= OCAMLFIND_DESTDIR=${PREFIX}/lib/ocaml/site-lib DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} OPTIONS_DEFINE= DOCS post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/style.css ${STAGEDIR}${DOCSDIR} ${FIND} ${WRKSRC}/doc -type f -name "*.html" -exec \ ${INSTALL_DATA} {} ${STAGEDIR}${DOCSDIR} \; .include diff --git a/devel/ocaml-parmap/Makefile b/devel/ocaml-parmap/Makefile index e9f79c67349e..6eab20e552b5 100644 --- a/devel/ocaml-parmap/Makefile +++ b/devel/ocaml-parmap/Makefile @@ -1,32 +1,33 @@ PORTNAME= parmap DISTVERSION= 1.2.4 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= ocaml- MAINTAINER= dumbbell@FreeBSD.org COMMENT= Minimalistic library allowing to exploit multicore architecture WWW= https://github.com/rdicosmo/parmap LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= dune:devel/ocaml-dune USE_GITHUB= yes GH_ACCOUNT= rdicosmo USES= gmake USE_OCAML= yes USE_OCAML_FINDLIB= yes USE_OCAML_LDCONFIG= yes TARGETS= ${PORTNAME} do-build: cd ${BUILD_WRKSRC} && dune build --verbose -p ${TARGETS:ts,} -j ${MAKE_JOBS_NUMBER} do-install: cd ${INSTALL_WRKSRC} && dune install --destdir=${STAGEDIR} \ --libdir=${PREFIX}/${OCAML_SITELIBDIR} ${TARGETS} .include diff --git a/devel/ocaml-pcre/Makefile b/devel/ocaml-pcre/Makefile index 135d07b78a60..0704a97d12a0 100644 --- a/devel/ocaml-pcre/Makefile +++ b/devel/ocaml-pcre/Makefile @@ -1,46 +1,46 @@ PORTNAME= pcre PORTVERSION= 7.2.3 DISTVERSIONPREFIX= v -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel PKGNAMEPREFIX= ocaml- MAINTAINER= hrs@FreeBSD.org COMMENT= Perl compatible regular expressions for Objective Caml WWW= http://www.ocaml.info/home/ocaml_sources.html #pcre-ocaml LICENSE= LGPL21 BUILD_DEPENDS= ocamlbuild:devel/ocaml-ocamlbuild LIB_DEPENDS= libpcre.so:devel/pcre USE_GITHUB= yes GH_ACCOUNT= mmottl GH_PROJECT= ${PORTNAME}-ocaml USE_OCAML= yes USE_OCAML_FINDLIB= yes USE_OCAML_LDCONFIG= yes EXAMPLESDIR= ${OCAML_EXAMPLESDIR}/${PORTNAME} PORTEXAMPLES= cloc count_hash pcregrep subst DOCSDIR= ${PREFIX}/share/doc/pcre-ocaml PORTDOCS= api OPTIONS_DEFINE= DOCS EXAMPLES DOCS_CONFIGURE_OFF= --disable-docs post-patch: ${REINPLACE_CMD} -e 's|$$prefix"/"share|${STAGEDIR}${PREFIX}/share|' \ -e '/datarootdir/s|$$pkg_name|&-ocaml|' \ ${WRKSRC}/setup.ml ${REINPLACE_CMD} -e 's| safe_string,||' ${WRKSRC}/_tags post-install: cd ${STAGEDIR}${PREFIX} && ${STRIP_CMD} \ lib/ocaml/site-lib/pcre/dllpcre_stubs.so \ lib/ocaml/site-lib/pcre/pcre.cmxs post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} .include diff --git a/devel/ocaml-pcre2/Makefile b/devel/ocaml-pcre2/Makefile new file mode 100644 index 000000000000..4358f5652f39 --- /dev/null +++ b/devel/ocaml-pcre2/Makefile @@ -0,0 +1,46 @@ +PORTNAME= pcre2 +PORTVERSION= 7.5.2 +CATEGORIES= devel +PKGNAMEPREFIX= ocaml- + +MAINTAINER= freebsd@dev.thsi.be +COMMENT= Perl compatible regular expressions for Objective Caml +WWW= https://github.com/camlp5/pcre2-ocaml + +LICENSE= LGPL21 + +LIB_DEPENDS= libpcre2-8.so:devel/pcre2 + +USES= ocaml:dune pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= camlp5 +GH_PROJECT= ${PORTNAME}-ocaml +USE_OCAML= yes +USE_OCAML_LDCONFIG= yes + +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} +EXAMPLESDIR= ${OCAML_EXAMPLESDIR}/${PORTNAME} +PORTDOCS= CHANGES.md LICENSE.md README.md +PORTEXAMPLES= * + +OPTIONS_DEFINE= DOCS EXAMPLES +DOCS_ALL_TARGET= examples/ @install + +post-patch: + ${REINPLACE_CMD} \ + -e "s/(name ${PORTNAME})/&\n (version ${PORTVERSION})/" \ + ${WRKSRC}/dune-project + +do-install-EXAMPLES-on: + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + for exe in ${WRKSRC}/_build/default/examples/*.exe ; \ + do ${INSTALL_PROGRAM} $$exe ${STAGEDIR}${EXAMPLESDIR} ; \ + done + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} + +post-install: + @${STRIP_CMD} \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/dllpcre2_stubs.so \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/pcre2.cmxs + +.include diff --git a/devel/ocaml-pcre2/distinfo b/devel/ocaml-pcre2/distinfo new file mode 100644 index 000000000000..aeab594b48e6 --- /dev/null +++ b/devel/ocaml-pcre2/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1706826587 +SHA256 (camlp5-pcre2-ocaml-7.5.2_GH0.tar.gz) = 469c3e446a32cef877f438c61d28ac1e1178e798b8e6e735bcde6d0f2c264bc8 +SIZE (camlp5-pcre2-ocaml-7.5.2_GH0.tar.gz) = 39945 diff --git a/devel/ocaml-pcre2/pkg-descr b/devel/ocaml-pcre2/pkg-descr new file mode 100644 index 000000000000..b69579da72cf --- /dev/null +++ b/devel/ocaml-pcre2/pkg-descr @@ -0,0 +1,2 @@ +OCaml binding to the libpcre2, the Perl compatible regular expressions +library. diff --git a/devel/ocaml-pcre2/pkg-plist b/devel/ocaml-pcre2/pkg-plist new file mode 100644 index 000000000000..97fa5843fcd3 --- /dev/null +++ b/devel/ocaml-pcre2/pkg-plist @@ -0,0 +1,15 @@ +%%OCAML_SITELIBDIR%%/pcre2/META +%%OCAML_SITELIBDIR%%/pcre2/dllpcre2_stubs.so +%%OCAML_SITELIBDIR%%/pcre2/dune-package +%%OCAML_SITELIBDIR%%/pcre2/libpcre2_stubs.a +%%OCAML_SITELIBDIR%%/pcre2/opam +%%OCAML_SITELIBDIR%%/pcre2/pcre2.a +%%OCAML_SITELIBDIR%%/pcre2/pcre2.cma +%%OCAML_SITELIBDIR%%/pcre2/pcre2.cmi +%%OCAML_SITELIBDIR%%/pcre2/pcre2.cmt +%%OCAML_SITELIBDIR%%/pcre2/pcre2.cmti +%%OCAML_SITELIBDIR%%/pcre2/pcre2.cmx +%%OCAML_SITELIBDIR%%/pcre2/pcre2.cmxa +%%OCAML_SITELIBDIR%%/pcre2/pcre2.cmxs +%%OCAML_SITELIBDIR%%/pcre2/pcre2.ml +%%OCAML_SITELIBDIR%%/pcre2/pcre2.mli diff --git a/devel/ocaml-pomap/Makefile b/devel/ocaml-pomap/Makefile index 03e292283e57..0ff463fe5814 100644 --- a/devel/ocaml-pomap/Makefile +++ b/devel/ocaml-pomap/Makefile @@ -1,40 +1,40 @@ PORTNAME= pomap PORTVERSION= 4.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= OCaml library to maintain a list of partially ordered elements WWW= https://mmottl.github.io/pomap/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= dune:devel/ocaml-dune USE_OCAML= yes USE_GITHUB= yes GH_ACCOUNT= mmottl DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} EXAMPLESDIR= ${OCAML_EXAMPLESDIR}/${PORTNAME} OPTIONS_DEFINE= DOCS EXAMPLES do-build: cd ${BUILD_WRKSRC} && dune build --verbose do-install: cd ${INSTALL_WRKSRC} && dune install --destdir=${STAGEDIR} \ --libdir=${PREFIX}/${OCAML_SITELIBDIR} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/pomap/pomap.cmxs post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} @(cd ${WRKSRC}/examples && \ ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) .include diff --git a/devel/ocaml-ppx-tools/Makefile b/devel/ocaml-ppx-tools/Makefile index 0113247e8ea0..72f367f5c73f 100644 --- a/devel/ocaml-ppx-tools/Makefile +++ b/devel/ocaml-ppx-tools/Makefile @@ -1,28 +1,29 @@ PORTNAME= ppx-tools PORTVERSION= 6.6 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= ocaml- MAINTAINER= michipili@gmail.com COMMENT= Tools for authors of ppx rewriters WWW= https://github.com/ocaml-ppx/ppx_tools LICENSE= MIT BUILD_DEPENDS= dune:devel/ocaml-dune \ cppo:devel/ocaml-cppo USES= gmake ALL_TARGET= release USE_OCAML= yes USE_OCAML_FINDLIB=yes USE_GITHUB= yes GH_ACCOUNT= ocaml-ppx GH_PROJECT= ${PORTNAME:C/-/_/} DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME:C/-/_/} PORTDOCS= CHANGES LICENSE README.md OPTIONS_DEFINE= DOCS .include diff --git a/devel/ocaml-re/Makefile b/devel/ocaml-re/Makefile index 5b529d7135f2..f5caaef47b8f 100644 --- a/devel/ocaml-re/Makefile +++ b/devel/ocaml-re/Makefile @@ -1,33 +1,43 @@ PORTNAME= re -PORTVERSION= 1.4.1 -DISTVERSIONPREFIX= ${PKGNAMEPREFIX}${PORTNAME}- -PORTREVISION= 1 +PORTVERSION= 1.11.0 CATEGORIES= devel PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= Pure OCaml regular expressions WWW= https://github.com/ocaml/ocaml-re LICENSE= LGPL21 -BUILD_DEPENDS= ocamlbuild:devel/ocaml-ocamlbuild - -USES= gmake -HAS_CONFIGURE= yes -MAKE_JOBS_UNSAFE= yes +BUILD_DEPENDS= ${SA_DIR}/seq/META:devel/ocaml-seq +RUN_DEPENDS= ${SA_DIR}/seq/META:devel/ocaml-seq +USES= ocaml:dune USE_GITHUB= yes GH_ACCOUNT= ocaml GH_PROJECT= ${PKGNAMEPREFIX}${PORTNAME} +USE_OCAML= yes + +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} +PORTDOCS= CHANGES.md LICENSE.md README.md + +OPTIONS_DEFINE= DOCS -USE_OCAML= yes -USE_OCAML_FINDLIB= yes -USE_OCAMLFIND_PLIST= yes +SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} -CONFIGURE_ARGS= --destdir "${DESTDIRNAME}" +post-patch: + ${REINPLACE_CMD} \ + -e "s/(name ${PORTNAME})/&\n (version ${PORTVERSION})/" \ + ${WRKSRC}/dune-project -do-configure: - cd ${WRKSRC} && ocaml setup.ml -configure ${CONFIGURE_ARGS} +post-install: + ${STRIP_CMD} \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/emacs/re_emacs.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/glob/re_glob.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/pcre/re_pcre.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/str/re_str.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/perl/re_perl.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/posix/re_posix.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/re.cmxs .include diff --git a/devel/ocaml-re/distinfo b/devel/ocaml-re/distinfo index 47c3b9dac106..1c459b47b7bf 100644 --- a/devel/ocaml-re/distinfo +++ b/devel/ocaml-re/distinfo @@ -1,2 +1,3 @@ -SHA256 (ocaml-ocaml-re-ocaml-re-1.4.1_GH0.tar.gz) = 262554309d645f4126a2a2e21e3a798d250293264fda34d6271243cc6c16e576 -SIZE (ocaml-ocaml-re-ocaml-re-1.4.1_GH0.tar.gz) = 99877 +TIMESTAMP = 1706844132 +SHA256 (ocaml-ocaml-re-1.11.0_GH0.tar.gz) = e32660b6068b78a8588ca065a6a2b01ae7339584d8261356beac0e26dbc5f854 +SIZE (ocaml-ocaml-re-1.11.0_GH0.tar.gz) = 93319 diff --git a/devel/ocaml-re/pkg-plist b/devel/ocaml-re/pkg-plist new file mode 100644 index 000000000000..7e8b129e4d9f --- /dev/null +++ b/devel/ocaml-re/pkg-plist @@ -0,0 +1,145 @@ +%%OCAML_SITELIBDIR%%/re/META +%%OCAML_SITELIBDIR%%/re/automata.ml +%%OCAML_SITELIBDIR%%/re/automata.mli +%%OCAML_SITELIBDIR%%/re/category.ml +%%OCAML_SITELIBDIR%%/re/category.mli +%%OCAML_SITELIBDIR%%/re/color_map.ml +%%OCAML_SITELIBDIR%%/re/color_map.mli +%%OCAML_SITELIBDIR%%/re/core.ml +%%OCAML_SITELIBDIR%%/re/core.mli +%%OCAML_SITELIBDIR%%/re/cset.ml +%%OCAML_SITELIBDIR%%/re/cset.mli +%%OCAML_SITELIBDIR%%/re/dune-package +%%OCAML_SITELIBDIR%%/re/emacs.ml +%%OCAML_SITELIBDIR%%/re/emacs.mli +%%OCAML_SITELIBDIR%%/re/emacs/re_emacs.a +%%OCAML_SITELIBDIR%%/re/emacs/re_emacs.cma +%%OCAML_SITELIBDIR%%/re/emacs/re_emacs.cmi +%%OCAML_SITELIBDIR%%/re/emacs/re_emacs.cmt +%%OCAML_SITELIBDIR%%/re/emacs/re_emacs.cmx +%%OCAML_SITELIBDIR%%/re/emacs/re_emacs.cmxa +%%OCAML_SITELIBDIR%%/re/emacs/re_emacs.cmxs +%%OCAML_SITELIBDIR%%/re/emacs/re_emacs.ml +%%OCAML_SITELIBDIR%%/re/fmt.ml +%%OCAML_SITELIBDIR%%/re/glob.ml +%%OCAML_SITELIBDIR%%/re/glob.mli +%%OCAML_SITELIBDIR%%/re/glob/re_glob.a +%%OCAML_SITELIBDIR%%/re/glob/re_glob.cma +%%OCAML_SITELIBDIR%%/re/glob/re_glob.cmi +%%OCAML_SITELIBDIR%%/re/glob/re_glob.cmt +%%OCAML_SITELIBDIR%%/re/glob/re_glob.cmx +%%OCAML_SITELIBDIR%%/re/glob/re_glob.cmxa +%%OCAML_SITELIBDIR%%/re/glob/re_glob.cmxs +%%OCAML_SITELIBDIR%%/re/glob/re_glob.ml +%%OCAML_SITELIBDIR%%/re/group.ml +%%OCAML_SITELIBDIR%%/re/group.mli +%%OCAML_SITELIBDIR%%/re/opam +%%OCAML_SITELIBDIR%%/re/pcre.ml +%%OCAML_SITELIBDIR%%/re/pcre.mli +%%OCAML_SITELIBDIR%%/re/pcre/re_pcre.a +%%OCAML_SITELIBDIR%%/re/pcre/re_pcre.cma +%%OCAML_SITELIBDIR%%/re/pcre/re_pcre.cmi +%%OCAML_SITELIBDIR%%/re/pcre/re_pcre.cmt +%%OCAML_SITELIBDIR%%/re/pcre/re_pcre.cmx +%%OCAML_SITELIBDIR%%/re/pcre/re_pcre.cmxa +%%OCAML_SITELIBDIR%%/re/pcre/re_pcre.cmxs +%%OCAML_SITELIBDIR%%/re/pcre/re_pcre.ml +%%OCAML_SITELIBDIR%%/re/perl.ml +%%OCAML_SITELIBDIR%%/re/perl.mli +%%OCAML_SITELIBDIR%%/re/perl/re_perl.a +%%OCAML_SITELIBDIR%%/re/perl/re_perl.cma +%%OCAML_SITELIBDIR%%/re/perl/re_perl.cmi +%%OCAML_SITELIBDIR%%/re/perl/re_perl.cmt +%%OCAML_SITELIBDIR%%/re/perl/re_perl.cmx +%%OCAML_SITELIBDIR%%/re/perl/re_perl.cmxa +%%OCAML_SITELIBDIR%%/re/perl/re_perl.cmxs +%%OCAML_SITELIBDIR%%/re/perl/re_perl.ml +%%OCAML_SITELIBDIR%%/re/pmark.ml +%%OCAML_SITELIBDIR%%/re/pmark.mli +%%OCAML_SITELIBDIR%%/re/posix.ml +%%OCAML_SITELIBDIR%%/re/posix.mli +%%OCAML_SITELIBDIR%%/re/posix/re_posix.a +%%OCAML_SITELIBDIR%%/re/posix/re_posix.cma +%%OCAML_SITELIBDIR%%/re/posix/re_posix.cmi +%%OCAML_SITELIBDIR%%/re/posix/re_posix.cmt +%%OCAML_SITELIBDIR%%/re/posix/re_posix.cmx +%%OCAML_SITELIBDIR%%/re/posix/re_posix.cmxa +%%OCAML_SITELIBDIR%%/re/posix/re_posix.cmxs +%%OCAML_SITELIBDIR%%/re/posix/re_posix.ml +%%OCAML_SITELIBDIR%%/re/re.a +%%OCAML_SITELIBDIR%%/re/re.cma +%%OCAML_SITELIBDIR%%/re/re.cmi +%%OCAML_SITELIBDIR%%/re/re.cmt +%%OCAML_SITELIBDIR%%/re/re.cmx +%%OCAML_SITELIBDIR%%/re/re.cmxa +%%OCAML_SITELIBDIR%%/re/re.cmxs +%%OCAML_SITELIBDIR%%/re/re.ml +%%OCAML_SITELIBDIR%%/re/re__.cmi +%%OCAML_SITELIBDIR%%/re/re__.cmt +%%OCAML_SITELIBDIR%%/re/re__.cmx +%%OCAML_SITELIBDIR%%/re/re__.ml +%%OCAML_SITELIBDIR%%/re/re__Automata.cmi +%%OCAML_SITELIBDIR%%/re/re__Automata.cmt +%%OCAML_SITELIBDIR%%/re/re__Automata.cmti +%%OCAML_SITELIBDIR%%/re/re__Automata.cmx +%%OCAML_SITELIBDIR%%/re/re__Category.cmi +%%OCAML_SITELIBDIR%%/re/re__Category.cmt +%%OCAML_SITELIBDIR%%/re/re__Category.cmti +%%OCAML_SITELIBDIR%%/re/re__Category.cmx +%%OCAML_SITELIBDIR%%/re/re__Color_map.cmi +%%OCAML_SITELIBDIR%%/re/re__Color_map.cmt +%%OCAML_SITELIBDIR%%/re/re__Color_map.cmti +%%OCAML_SITELIBDIR%%/re/re__Color_map.cmx +%%OCAML_SITELIBDIR%%/re/re__Core.cmi +%%OCAML_SITELIBDIR%%/re/re__Core.cmt +%%OCAML_SITELIBDIR%%/re/re__Core.cmti +%%OCAML_SITELIBDIR%%/re/re__Core.cmx +%%OCAML_SITELIBDIR%%/re/re__Cset.cmi +%%OCAML_SITELIBDIR%%/re/re__Cset.cmt +%%OCAML_SITELIBDIR%%/re/re__Cset.cmti +%%OCAML_SITELIBDIR%%/re/re__Cset.cmx +%%OCAML_SITELIBDIR%%/re/re__Emacs.cmi +%%OCAML_SITELIBDIR%%/re/re__Emacs.cmt +%%OCAML_SITELIBDIR%%/re/re__Emacs.cmti +%%OCAML_SITELIBDIR%%/re/re__Emacs.cmx +%%OCAML_SITELIBDIR%%/re/re__Fmt.cmi +%%OCAML_SITELIBDIR%%/re/re__Fmt.cmt +%%OCAML_SITELIBDIR%%/re/re__Fmt.cmx +%%OCAML_SITELIBDIR%%/re/re__Glob.cmi +%%OCAML_SITELIBDIR%%/re/re__Glob.cmt +%%OCAML_SITELIBDIR%%/re/re__Glob.cmti +%%OCAML_SITELIBDIR%%/re/re__Glob.cmx +%%OCAML_SITELIBDIR%%/re/re__Group.cmi +%%OCAML_SITELIBDIR%%/re/re__Group.cmt +%%OCAML_SITELIBDIR%%/re/re__Group.cmti +%%OCAML_SITELIBDIR%%/re/re__Group.cmx +%%OCAML_SITELIBDIR%%/re/re__Pcre.cmi +%%OCAML_SITELIBDIR%%/re/re__Pcre.cmt +%%OCAML_SITELIBDIR%%/re/re__Pcre.cmti +%%OCAML_SITELIBDIR%%/re/re__Pcre.cmx +%%OCAML_SITELIBDIR%%/re/re__Perl.cmi +%%OCAML_SITELIBDIR%%/re/re__Perl.cmt +%%OCAML_SITELIBDIR%%/re/re__Perl.cmti +%%OCAML_SITELIBDIR%%/re/re__Perl.cmx +%%OCAML_SITELIBDIR%%/re/re__Pmark.cmi +%%OCAML_SITELIBDIR%%/re/re__Pmark.cmt +%%OCAML_SITELIBDIR%%/re/re__Pmark.cmti +%%OCAML_SITELIBDIR%%/re/re__Pmark.cmx +%%OCAML_SITELIBDIR%%/re/re__Posix.cmi +%%OCAML_SITELIBDIR%%/re/re__Posix.cmt +%%OCAML_SITELIBDIR%%/re/re__Posix.cmti +%%OCAML_SITELIBDIR%%/re/re__Posix.cmx +%%OCAML_SITELIBDIR%%/re/re__Str.cmi +%%OCAML_SITELIBDIR%%/re/re__Str.cmt +%%OCAML_SITELIBDIR%%/re/re__Str.cmti +%%OCAML_SITELIBDIR%%/re/re__Str.cmx +%%OCAML_SITELIBDIR%%/re/str.ml +%%OCAML_SITELIBDIR%%/re/str.mli +%%OCAML_SITELIBDIR%%/re/str/re_str.a +%%OCAML_SITELIBDIR%%/re/str/re_str.cma +%%OCAML_SITELIBDIR%%/re/str/re_str.cmi +%%OCAML_SITELIBDIR%%/re/str/re_str.cmt +%%OCAML_SITELIBDIR%%/re/str/re_str.cmx +%%OCAML_SITELIBDIR%%/re/str/re_str.cmxa +%%OCAML_SITELIBDIR%%/re/str/re_str.cmxs +%%OCAML_SITELIBDIR%%/re/str/re_str.ml diff --git a/devel/ocaml-rresult/Makefile b/devel/ocaml-rresult/Makefile new file mode 100644 index 000000000000..6298bacc6428 --- /dev/null +++ b/devel/ocaml-rresult/Makefile @@ -0,0 +1,44 @@ +PORTNAME= rresult +PORTVERSION= 0.7.0 +CATEGORIES= devel +MASTER_SITES= https://erratique.ch/software/rresult/releases/ +PKGNAMEPREFIX= ocaml- + +MAINTAINER= freebsd@dev.thsi.be +COMMENT= Result combinator library for Objective Caml +WWW= https://erratique.ch/software/rresult + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +BUILD_DEPENDS= ${SA_DIR}/topkg/META:devel/ocaml-topkg \ + ocamlbuild:devel/ocaml-ocamlbuild \ + opam-installer:devel/ocaml-opam + +USES= tar:tbz +USE_OCAML= yes + +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} +PORTDOCS= CHANGES.md LICENSE.md README.md odoc-pages + +OPTIONS_DEFINE= DOCS + +SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} + +do-build: + @(cd ${BUILD_WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} \ + ocaml pkg/pkg.ml build \ + --jobs ${MAKE_JOBS_NUMBER}) + +do-install: + @(cd ${INSTALL_WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} \ + opam-installer -i \ + --prefix=${STAGEDIR}${PREFIX} \ + --docdir=${OCAML_DOCSDIR:S,^${PREFIX}/,,} \ + --libdir=${OCAML_SITELIBDIR} ${PORTNAME}.install) + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/rresult.cmxs + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/rresult_top.cmxs + +.include diff --git a/devel/ocaml-rresult/distinfo b/devel/ocaml-rresult/distinfo new file mode 100644 index 000000000000..3356373d5ab3 --- /dev/null +++ b/devel/ocaml-rresult/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1706833340 +SHA256 (rresult-0.7.0.tbz) = 11aa7f5b83460e60431e3154e3e32c071d46e151ea5760cf24377805bf975540 +SIZE (rresult-0.7.0.tbz) = 8506 diff --git a/devel/ocaml-rresult/pkg-descr b/devel/ocaml-rresult/pkg-descr new file mode 100644 index 000000000000..9bdc7493e311 --- /dev/null +++ b/devel/ocaml-rresult/pkg-descr @@ -0,0 +1,7 @@ +This library defines cominators to operate on the standard Result type +(introduced in OCaml 4.03). Using Result as return type of a +computation that can fail forces explicit handling of error, as oposed +to e.g. raising an exception. + +As the author puts it: "OCaml 4.08 provides the Stdlib.Result module +which you should prefer to Rresult." diff --git a/devel/ocaml-rresult/pkg-plist b/devel/ocaml-rresult/pkg-plist new file mode 100644 index 000000000000..293fbe6dde56 --- /dev/null +++ b/devel/ocaml-rresult/pkg-plist @@ -0,0 +1,16 @@ +%%OCAML_SITELIBDIR%%/rresult/opam +%%OCAML_SITELIBDIR%%/rresult/META +%%OCAML_SITELIBDIR%%/rresult/rresult.a +%%OCAML_SITELIBDIR%%/rresult/rresult.cma +%%OCAML_SITELIBDIR%%/rresult/rresult.cmi +%%OCAML_SITELIBDIR%%/rresult/rresult.cmti +%%OCAML_SITELIBDIR%%/rresult/rresult.cmx +%%OCAML_SITELIBDIR%%/rresult/rresult.cmxa +%%OCAML_SITELIBDIR%%/rresult/rresult.cmxs +%%OCAML_SITELIBDIR%%/rresult/rresult.mli +%%OCAML_SITELIBDIR%%/rresult/rresult_top.a +%%OCAML_SITELIBDIR%%/rresult/rresult_top.cma +%%OCAML_SITELIBDIR%%/rresult/rresult_top.cmx +%%OCAML_SITELIBDIR%%/rresult/rresult_top.cmxa +%%OCAML_SITELIBDIR%%/rresult/rresult_top.cmxs +%%OCAML_SITELIBDIR%%/rresult/rresult_top_init.ml diff --git a/devel/ocaml-sdl/Makefile b/devel/ocaml-sdl/Makefile index 620252222f48..20ee67ffb511 100644 --- a/devel/ocaml-sdl/Makefile +++ b/devel/ocaml-sdl/Makefile @@ -1,63 +1,63 @@ PORTNAME= sdl PORTVERSION= 0.9.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel MASTER_SITES= SF/ocaml${PORTNAME}/OCamlSDL/ocaml${PORTNAME}-${PORTVERSION} PKGNAMEPREFIX= ocaml- DISTNAME= ocamlsdl-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= OCaml interface to the SDL WWW= https://ocamlsdl.sourceforge.net/ LICENSE= LGPL20+ # source says LGPL20+, COPYING says LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ocaml-lablgl>0:graphics/ocaml-lablgl USE_OCAML= yes USE_OCAML_FINDLIB=yes USE_OCAMLFIND_PLIST=yes USE_OCAML_LDCONFIG=yes USES= gmake sdl USE_SDL= sdl GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-lablgldir=${LOCALBASE} \ +CONFIGURE_ARGS= --with-lablgldir=${LOCALBASE}/${OCAML_SITELIBDIR}/lablGL \ --with-sdl-prefix=${LOCALBASE} \ --with-installdir=${PREFIX} DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} INFO= ocamlsdl PORTDOCS= * OPTIONS_DEFINE= SDL_GFX SDL_IMAGE SDL_MIXER SDL_TTF DOCS OPTIONS_DEFAULT=SDL_GFX SDL_IMAGE SDL_MIXER SDL_TTF SDL_GFX_DESC= Enable SDL_gfx support SDL_IMAGE_DESC= Enable SDL_image support SDL_MIXER_DESC= Enable SDL_mixer support SDL_TTF_DESC= Enable SDL_ttf support SDL_GFX_USE= SDL=gfx SDL_GFX_CONFIGURE_OFF= --disable-sdl-gfx SDL_IMAGE_USE= SDL=image SDL_IMAGE_CONFIGURE_OFF=--disable-sdl-image SDL_MIXER_USE= SDL=mixer SDL_MIXER_CONFIGURE_OFF=--disable-sdl-mixer SDL_TTF_USE= SDL=ttf SDL_TTF_CONFIGURE_OFF= --disable-sdl-ttf post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib/sdl/*.so ${INSTALL_DATA} ${WRKSRC}/doc/ocamlsdl.info ${STAGEDIR}${PREFIX}/${INFO_PATH} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/html/* ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/ocaml-sem/Makefile b/devel/ocaml-sem/Makefile index 957dcaecffdb..ffa0e5aae9f1 100644 --- a/devel/ocaml-sem/Makefile +++ b/devel/ocaml-sem/Makefile @@ -1,37 +1,37 @@ PORTNAME= sem PORTVERSION= 0.0.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel MASTER_SITES= http://ocaml-sem.sourceforge.net/files/ \ SF/ocaml-${PORTNAME}/${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= POSIX semaphores for OCaml WWW= https://ocaml-sem.sourceforge.net/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= gmake tar:bzip2 USE_OCAML= yes USE_OCAML_LDCONFIG= yes USE_OCAML_FINDLIB= yes MAKE_ENV= OCAML_LIB_INSTALL="${PREFIX}/lib/ocaml/site-lib/sem" \ INCDIRS="${LOCALBASE}/include" LIBDIRS="${LOCALBASE}/lib" MAKE_JOBS_UNSAFE= yes ALL_TARGET= all DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} .if !defined(WITH_CUSTOM) MAKE_ENV+= NO_CUSTOM=y .endif OPTIONS_DEFINE= DOCS post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/ocaml-seq/Makefile b/devel/ocaml-seq/Makefile new file mode 100644 index 000000000000..12ca80077edc --- /dev/null +++ b/devel/ocaml-seq/Makefile @@ -0,0 +1,27 @@ +PORTNAME= seq +PORTVERSION= 0.2.2 +DISTVERSIONPREFIX= ${PKGNAMEPREFIX}${PORTNAME}- +CATEGORIES= devel +PKGNAMEPREFIX= ocaml- + +MAINTAINER= freebsd@dev.thsi.be +COMMENT= Compatibility library for the iterator type of OCaml +WWW= https://github.com/c-cube/seq + +LICENSE= LGPL21 + +USES= ocaml:dune +USE_GITHUB= yes +GH_ACCOUNT= c-cube +GH_TAGNAME= 6934813195285661cba3e017e7d3cd79d362bb2f +USE_OCAML= yes + +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} +PORTDOCS= LICENSE README.md + +OPTIONS_DEFINE= DOCS + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/seq.cmxs + +.include diff --git a/devel/ocaml-seq/distinfo b/devel/ocaml-seq/distinfo new file mode 100644 index 000000000000..1d03ee04a794 --- /dev/null +++ b/devel/ocaml-seq/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1643120146 +SHA256 (c-cube-seq-ocaml-seq-0.2.2-6934813195285661cba3e017e7d3cd79d362bb2f_GH0.tar.gz) = 13ead3e517ddc0a8e1ae95d5987fc093864de9a697d585c2012327c96067a5a3 +SIZE (c-cube-seq-ocaml-seq-0.2.2-6934813195285661cba3e017e7d3cd79d362bb2f_GH0.tar.gz) = 12246 diff --git a/devel/ocaml-seq/pkg-descr b/devel/ocaml-seq/pkg-descr new file mode 100644 index 000000000000..eade4ef7caee --- /dev/null +++ b/devel/ocaml-seq/pkg-descr @@ -0,0 +1,2 @@ +Compatibility package for the standard iterator type `Seq' introduced +in OCaml 4.07. diff --git a/devel/ocaml-seq/pkg-plist b/devel/ocaml-seq/pkg-plist new file mode 100644 index 000000000000..04ab3b7aea8e --- /dev/null +++ b/devel/ocaml-seq/pkg-plist @@ -0,0 +1,13 @@ +%%OCAML_SITELIBDIR%%/seq/META +%%OCAML_SITELIBDIR%%/seq/dune-package +%%OCAML_SITELIBDIR%%/seq/opam +%%OCAML_SITELIBDIR%%/seq/seq.a +%%OCAML_SITELIBDIR%%/seq/seq.cma +%%OCAML_SITELIBDIR%%/seq/seq.cmi +%%OCAML_SITELIBDIR%%/seq/seq.cmt +%%OCAML_SITELIBDIR%%/seq/seq.cmti +%%OCAML_SITELIBDIR%%/seq/seq.cmx +%%OCAML_SITELIBDIR%%/seq/seq.cmxa +%%OCAML_SITELIBDIR%%/seq/seq.cmxs +%%OCAML_SITELIBDIR%%/seq/seq.ml +%%OCAML_SITELIBDIR%%/seq/seq.mli diff --git a/devel/ocaml-sexplib0/Makefile b/devel/ocaml-sexplib0/Makefile index 7d55d297d57e..9517c7248a43 100644 --- a/devel/ocaml-sexplib0/Makefile +++ b/devel/ocaml-sexplib0/Makefile @@ -1,47 +1,48 @@ PORTNAME= sexplib0 DISTVERSIONPREFIX= v DISTVERSION= 0.16.0 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= OCaml library for working with S-expressions WWW= https://janestreet.github.io/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= dune:devel/ocaml-dune \ ocaml-type_conv>=0:devel/ocaml-type_conv \ ${LOCALBASE}/${OCAML_SITELIBDIR}/num/META:math/ocaml-num RUN_DEPENDS= ocaml-type_conv>=0:devel/ocaml-type_conv USES= gmake ALL_TARGET= default USE_OCAML= yes USE_OCAML_FINDLIB= yes USE_OCAML_CAMLP4= yes USE_OCAMLFIND_PLIST= yes CONFIGURE_ARGS= --disable-docs --prefix ${PREFIX} USE_GITHUB= yes GH_ACCOUNT= janestreet OPTIONS_DEFINE= DOCS DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} OCAML_PKGDIRS= ${PORTNAME} ${PORTNAME}_num ${PORTNAME}_unix PORTDOCS= * do-install: cd ${INSTALL_WRKSRC} && dune install --destdir=${STAGEDIR} \ --prefix=${PREFIX} --libdir=${PREFIX}/${OCAML_SITELIBDIR} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/sexplib*/*.cmxs #post-install-DOCS-on: # ${MKDIR} ${STAGEDIR}${DOCSDIR}/ # cd ${WRKSRC}/ && ${INSTALL_DATA} CHANGES.md README.md ${STAGEDIR}${DOCSDIR}/ .include diff --git a/devel/ocaml-stdio/Makefile b/devel/ocaml-stdio/Makefile new file mode 100644 index 000000000000..847e2f0eeb50 --- /dev/null +++ b/devel/ocaml-stdio/Makefile @@ -0,0 +1,32 @@ +PORTNAME= stdio +PORTVERSION= 0.16.0 +DISTVERSIONPREFIX= v +CATEGORIES= devel +PKGNAMEPREFIX= ocaml- + +MAINTAINER= freebsd@dev.thsi.be +COMMENT= Standard IO library for Objective-Caml +WWW= https://github.com/janestreet/stdio + +LICENSE= MIT + +BUILD_DEPENDS= ${SA_DIR}/base/META:devel/ocaml-base +RUN_DEPENDS= ${SA_DIR}/base/META:devel/ocaml-base + +USES= ocaml:dune +USE_GITHUB= yes +GH_ACCOUNT= janestreet +USE_OCAML= yes +USE_OCAML_LDCONFIG= yes + +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} +PORTDOCS= CHANGES.md LICENSE.md README.md odoc-pages + +OPTIONS_DEFINE= DOCS + +SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/${PORTNAME}.cmxs + +.include diff --git a/devel/ocaml-stdio/distinfo b/devel/ocaml-stdio/distinfo new file mode 100644 index 000000000000..89eebc70ecd0 --- /dev/null +++ b/devel/ocaml-stdio/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1706852893 +SHA256 (janestreet-stdio-v0.16.0_GH0.tar.gz) = 388561b483894ae27b5968358b7978ae6a242f426e8c26fd92b39852d68b856e +SIZE (janestreet-stdio-v0.16.0_GH0.tar.gz) = 7836 diff --git a/devel/ocaml-stdio/pkg-descr b/devel/ocaml-stdio/pkg-descr new file mode 100644 index 000000000000..5c116cd08138 --- /dev/null +++ b/devel/ocaml-stdio/pkg-descr @@ -0,0 +1,2 @@ +Library for Objective-Caml providing extra functionality for OCaml's +input and output channels. diff --git a/devel/ocaml-stdio/pkg-plist b/devel/ocaml-stdio/pkg-plist new file mode 100644 index 000000000000..6dce8dfd9e58 --- /dev/null +++ b/devel/ocaml-stdio/pkg-plist @@ -0,0 +1,29 @@ +%%OCAML_SITELIBDIR%%/stdio/META +%%OCAML_SITELIBDIR%%/stdio/dune-package +%%OCAML_SITELIBDIR%%/stdio/in_channel.ml +%%OCAML_SITELIBDIR%%/stdio/in_channel.mli +%%OCAML_SITELIBDIR%%/stdio/opam +%%OCAML_SITELIBDIR%%/stdio/out_channel.ml +%%OCAML_SITELIBDIR%%/stdio/out_channel.mli +%%OCAML_SITELIBDIR%%/stdio/stdio.a +%%OCAML_SITELIBDIR%%/stdio/stdio.cma +%%OCAML_SITELIBDIR%%/stdio/stdio.cmi +%%OCAML_SITELIBDIR%%/stdio/stdio.cmt +%%OCAML_SITELIBDIR%%/stdio/stdio.cmti +%%OCAML_SITELIBDIR%%/stdio/stdio.cmx +%%OCAML_SITELIBDIR%%/stdio/stdio.cmxa +%%OCAML_SITELIBDIR%%/stdio/stdio.ml +%%OCAML_SITELIBDIR%%/stdio/stdio.mli +%%OCAML_SITELIBDIR%%/stdio/stdio__.cmi +%%OCAML_SITELIBDIR%%/stdio/stdio__.cmt +%%OCAML_SITELIBDIR%%/stdio/stdio__.cmx +%%OCAML_SITELIBDIR%%/stdio/stdio__.ml +%%OCAML_SITELIBDIR%%/stdio/stdio__In_channel.cmi +%%OCAML_SITELIBDIR%%/stdio/stdio__In_channel.cmt +%%OCAML_SITELIBDIR%%/stdio/stdio__In_channel.cmti +%%OCAML_SITELIBDIR%%/stdio/stdio__In_channel.cmx +%%OCAML_SITELIBDIR%%/stdio/stdio__Out_channel.cmi +%%OCAML_SITELIBDIR%%/stdio/stdio__Out_channel.cmt +%%OCAML_SITELIBDIR%%/stdio/stdio__Out_channel.cmti +%%OCAML_SITELIBDIR%%/stdio/stdio__Out_channel.cmx +%%OCAML_SITELIBDIR%%/stdio/stdio.cmxs diff --git a/devel/ocaml-topkg/Makefile b/devel/ocaml-topkg/Makefile index 62093b947d61..dba355964cf2 100644 --- a/devel/ocaml-topkg/Makefile +++ b/devel/ocaml-topkg/Makefile @@ -1,33 +1,33 @@ PORTNAME= topkg PORTVERSION= 1.0.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= https://erratique.ch/software/topkg/releases/ PKGNAMEPREFIX= ocaml- MAINTAINER= danfe@FreeBSD.org COMMENT= Transitory OCaml software packager WWW= https://erratique.ch/software/topkg LICENSE= ISCL LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= ocamlbuild:devel/ocaml-ocamlbuild \ opam-installer:devel/ocaml-opam USES= tar:tbz USE_OCAML= yes USE_OCAML_FINDLIB= yes OPTIONS_DEFINE= DOCS do-build: cd ${BUILD_WRKSRC} && ocaml pkg/pkg.ml build do-install: cd ${INSTALL_WRKSRC} && opam-installer -i \ --prefix=${STAGEDIR}${PREFIX} \ --docdir=${OCAML_DOCSDIR:S,^${PREFIX}/,,} \ --libdir=${OCAML_SITELIBDIR} ${PORTNAME}.install .include diff --git a/devel/ocaml-type_conv/Makefile b/devel/ocaml-type_conv/Makefile index 03ac03fdc094..a3cfb6591937 100644 --- a/devel/ocaml-type_conv/Makefile +++ b/devel/ocaml-type_conv/Makefile @@ -1,38 +1,38 @@ PORTNAME= type_conv PORTVERSION= 113.00.02 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= https://ocaml.janestreet.com/ocaml-core/${PORTVERSION:R}/files/ PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= Type conversion routines for OCaml WWW= https://janestreet.github.io/ LICENSE= APACHE20 BSD3CLAUSE LICENSE_COMB= multi BUILD_DEPENDS= ocamlbuild:devel/ocaml-ocamlbuild OPTIONS_DEFINE= DOCS CONFIGURE_ARGS= --disable-docs --prefix ${PREFIX} HAS_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes USE_OCAML= yes USE_OCAML_CAMLP4= yes USE_OCAML_FINDLIB= yes USE_OCAMLFIND_PLIST= yes USES= gmake DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} PORTDOCS= * post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/type_conv/pa_type_conv.cmxs post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} CHANGES.md README.md ${STAGEDIR}${DOCSDIR}/ .include diff --git a/devel/ocaml-uchar/Makefile b/devel/ocaml-uchar/Makefile index 5eddd32d3cf4..e7e02b570b2b 100644 --- a/devel/ocaml-uchar/Makefile +++ b/devel/ocaml-uchar/Makefile @@ -1,33 +1,33 @@ PORTNAME= uchar PORTVERSION= 0.0.2 -PORTREVISION= 2 DISTVERSIONPREFIX= v +PORTREVISION= 3 CATEGORIES= devel PKGNAMEPREFIX= ocaml- MAINTAINER= danfe@FreeBSD.org COMMENT= Compatibility library for OCaml's Uchar module WWW= https://ocaml.github.io/uchar/ LICENSE= LGPL21 # (with linking exception) LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ocamlbuild:devel/ocaml-ocamlbuild \ opam-installer:devel/ocaml-opam USE_GITHUB= yes GH_ACCOUNT= ocaml USE_OCAML= yes PLIST_FILES= ${OCAML_SITELIBDIR}/${PORTNAME}/META do-build: cd ${BUILD_WRKSRC} && ocaml pkg/build.ml \ native=true native-dynlink=true do-install: cd ${INSTALL_WRKSRC} && opam-installer -i \ --prefix=${STAGEDIR}${PREFIX} \ --libdir=${OCAML_SITELIBDIR} ${PORTNAME}.install .include diff --git a/devel/ocaml-ulex/Makefile b/devel/ocaml-ulex/Makefile index 9b5b8720afad..ba212140c8a6 100644 --- a/devel/ocaml-ulex/Makefile +++ b/devel/ocaml-ulex/Makefile @@ -1,38 +1,38 @@ PORTNAME= ulex PORTVERSION= 1.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= http://www.cduce.org/download/ PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= Lexer generator for Unicode and OCaml BUILD_DEPENDS= ocamlbuild:devel/ocaml-ocamlbuild USES= gmake USE_OCAML= true USE_OCAML_FINDLIB= true USE_OCAML_CAMLP4= true USE_OCAML_LDCONFIG= true USE_OCAMLFIND_PLIST= yes ALL_TARGET= all all.opt MAKE_JOBS_UNSAFE= yes DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} PORTDOCS= * OPTIONS_DEFINE= DOCS DOCS_ALL_TARGET= doc post-patch: @${REINPLACE_CMD} -e '/^let latin1_sub_lexeme/,+3 \ s,^ s, Bytes.to_string s,' ${WRKSRC}/ulexing.ml post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/*.html ${WRKSRC}/*.css ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/ocaml-uutf/Makefile b/devel/ocaml-uutf/Makefile index 03b036ad8d82..f4e15dbc5af7 100644 --- a/devel/ocaml-uutf/Makefile +++ b/devel/ocaml-uutf/Makefile @@ -1,36 +1,36 @@ PORTNAME= uutf PORTVERSION= 1.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= https://erratique.ch/software/uutf/releases/ PKGNAMEPREFIX= ocaml- MAINTAINER= danfe@FreeBSD.org COMMENT= Non-blocking streaming Unicode codec for OCaml WWW= https://erratique.ch/software/uutf LICENSE= ISCL LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= ocamlbuild:devel/ocaml-ocamlbuild BUILD_DEPENDS+= opam-installer:devel/ocaml-opam \ ${LOCALBASE}/${OCAML_SITELIBDIR}/cmdliner/META:devel/ocaml-cmdliner \ ${LOCALBASE}/${OCAML_SITELIBDIR}/topkg/META:devel/ocaml-topkg \ ${LOCALBASE}/${OCAML_SITELIBDIR}/uchar/META:devel/ocaml-uchar USES= tar:tbz USE_OCAML= yes USE_OCAML_FINDLIB= yes OPTIONS_DEFINE= DOCS do-build: cd ${BUILD_WRKSRC} && ocaml pkg/pkg.ml build do-install: cd ${INSTALL_WRKSRC} && opam-installer -i \ --prefix=${STAGEDIR}${PREFIX} \ --docdir=${OCAML_DOCSDIR:S,^${PREFIX}/,,} \ --libdir=${OCAML_SITELIBDIR} ${PORTNAME}.install .include diff --git a/devel/ocaml-xstr/Makefile b/devel/ocaml-xstr/Makefile index a9ecefc747bb..5a1787260dc4 100644 --- a/devel/ocaml-xstr/Makefile +++ b/devel/ocaml-xstr/Makefile @@ -1,23 +1,23 @@ PORTNAME= xstr PORTVERSION= 0.2.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= http://download.camlcity.org/download/ PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= Thread-safe implementation of string searching/matching WWW= http://projects.camlcity.org/projects/xstr.html LICENSE= MIT WRKSRC= ${WRKDIR}/${PORTNAME} USE_OCAML= yes USE_OCAML_FINDLIB=yes USE_OCAMLFIND_PLIST=yes USES= gmake ALL_TARGET= all opt .include diff --git a/devel/ocaml-xstrp4/Makefile b/devel/ocaml-xstrp4/Makefile index 0c9e0cc61044..7737317f1fc2 100644 --- a/devel/ocaml-xstrp4/Makefile +++ b/devel/ocaml-xstrp4/Makefile @@ -1,30 +1,30 @@ PORTNAME= xstrp4 PORTVERSION= 1.8.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://download.camlcity.org/download/ PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= OCaml extension to expands brace expansions WWW= https://www.ocaml-programming.de/packages/ LICENSE= MIT OPTIONS_DEFINE= EXAMPLES USES= gmake USE_OCAML= yes USE_OCAML_FINDLIB= yes USE_OCAML_CAMLP4= yes USE_OCAMLFIND_PLIST= yes HAS_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes PORTEXAMPLES= * EXAMPLESDIR= ${OCAML_EXAMPLESDIR}/${PORTNAME} post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} (cd ${WRKSRC} && ${INSTALL_DATA} sample.* ${STAGEDIR}${EXAMPLESDIR}) .include diff --git a/ftp/ocaml-ocurl/Makefile b/ftp/ocaml-ocurl/Makefile index 08bced3c5d90..5c56b6286220 100644 --- a/ftp/ocaml-ocurl/Makefile +++ b/ftp/ocaml-ocurl/Makefile @@ -1,51 +1,51 @@ PORTNAME= ocurl PORTVERSION= 0.9.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= ftp PKGNAMEPREFIX= ocaml- MAINTAINER= danfe@FreeBSD.org COMMENT= Interface for OCaml to the curl lib WWW= https://ygrek.org/p/ocurl/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ocamlc:lang/ocaml \ ocamlfind:devel/ocaml-findlib RUN_DEPENDS:= ${BUILD_DEPENDS} LIB_DEPENDS= libcurl.so:ftp/curl USES= gmake GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes USE_GITHUB= yes GH_ACCOUNT= ygrek USE_OCAML= yes USE_OCAML_CAMLP4= yes USE_OCAML_FINDLIB= yes USE_OCAML_LDCONFIG= yes OCAML_PKGDIRS= curl OPTIONS_DEFINE= LWT OPTIONS_DEFAULT= LWT OPTIONS_SUB= yes LWT_DESC= Include threading support (ocaml-lwt) LWT_RUN_DEPENDS= ${LOCALBASE}/${OCAML_SITELIBDIR}/lwt/lwt.a:devel/ocaml-lwt LWT_BUILD_DEPENDS= ${LWT_RUN_DEPENDS} post-install-LWT-on: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/curl/curl_lwt.cmxs post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/curl/dllcurl-helper.so \ ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/curl/curl.cmxs \ post-configure-LWT-off: # Override auto-detection ${REINPLACE_CMD} 's/(lwt,no)/(no,no)/' ${WRKSRC}/Makefile \ ${WRKSRC}/examples/Makefile .include diff --git a/games/freetennis/Makefile b/games/freetennis/Makefile index 4dc5dedf8f48..c44c0cca5137 100644 --- a/games/freetennis/Makefile +++ b/games/freetennis/Makefile @@ -1,45 +1,46 @@ PORTNAME= freetennis PORTVERSION= 0.4.8 PORTREVISION= 18 CATEGORIES= games MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= Tennis simulation WWW= https://freetennis.sourceforge.net/ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= ocamlopt:lang/ocaml \ - ocaml-images>3.0:graphics/ocaml-images \ - ${OCAML_DEPENDS} -RUN_DEPENDS= ${OCAML_DEPENDS} -LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ - libfreetype.so:print/freetype2 +BUILD_DEPENDS= ${OCAMLFIND_DEPEND} \ + ${SA_DIR}/camlimages/META:graphics/ocaml-images \ + ${SA_DIR}/lablGL/gl.ml:graphics/ocaml-lablgl \ + ${SA_DIR}/lablgtk2/gtk.ml:x11-toolkits/ocaml-lablgtk2 \ + ${SA_DIR}/sdl/sdl.mli:devel/ocaml-sdl -OCAML_DEPENDS= ${LOCALBASE}/lib/ocaml/site-lib/lablgtk2/gtk.ml:x11-toolkits/ocaml-lablgtk2 \ - ${LOCALBASE}/lib/ocaml/lablGL/gl.ml:graphics/ocaml-lablgl \ - ${LOCALBASE}/lib/ocaml/site-lib/sdl/sdl.mli:devel/ocaml-sdl +LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ + libgtkgl-2.0.so:x11-toolkits/gtkglarea2 \ + libharfbuzz.so:print/harfbuzz USES= gettext gl gnome sdl tar:bzip2 xorg +USE_OCAML= yes USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 pango USE_GL= gl glu USE_SDL= ttf mixer sdl USE_XORG= x11 xext xmu PLIST_FILES= bin/freetennis PORTDATA= * +SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} + post-patch: @${REINPLACE_CMD} -e 's|sfxDir = "sfx"|sfxDir = "${DATADIR}/sfx"|; \ s|gfxDir = "graphics"|gfxDir = "${DATADIR}/graphics"|' \ ${WRKSRC}/freetennis.ml - @${REINPLACE_CMD} -Ee 's@(\+)(lablgtk2)@\1site-lib/\2@' \ - ${WRKSRC}/Makefile do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/freetennis ${STAGEDIR}${PREFIX}/bin - (cd ${WRKSRC} && ${COPYTREE_SHARE} "graphics sfx" ${STAGEDIR}${DATADIR}) + @${INSTALL_PROGRAM} ${WRKSRC}/freetennis ${STAGEDIR}${PREFIX}/bin + @(cd ${WRKSRC} && ${COPYTREE_SHARE} "graphics sfx" ${STAGEDIR}${DATADIR}) .include diff --git a/games/freetennis/files/patch-Makefile b/games/freetennis/files/patch-Makefile index ec48c1eca801..9ea952a205c4 100644 --- a/games/freetennis/files/patch-Makefile +++ b/games/freetennis/files/patch-Makefile @@ -1,7 +1,7 @@ --- Makefile.orig 2005-11-21 21:20:33 UTC +++ Makefile -@@ -1,3 +1,3 @@ +@@ -1,3 +1,3 @@ all: freetennis.ml # add -noassert for speedup all: freetennis.ml - ocamlopt -I +camlimages -I +lablGL -I +lablgtk2 -I +sdl -o freetennis bigarray.cmxa sdl.cmxa lablgtk.cmxa lablgl.cmxa ci_core.cmxa sdlmixer.cmxa sdlttf.cmxa unix.cmxa freetennis.ml -+ ocamlopt -noassert -cclib -pthread -I +site-lib/camlimages -I +lablGL -I +lablgtk2 -I +site-lib/sdl -o freetennis bigarray.cmxa sdl.cmxa lablgtk.cmxa lablgl.cmxa camlimages_core.cmxa sdlmixer.cmxa sdlttf.cmxa unix.cmxa freetennis.ml ++ ocamlfind ocamlopt -linkpkg -noassert -package threads.posix -package bigarray -package camlimages.core -package lablgtk2.gl -package sdl.sdlmixer -package sdl.sdlttf -I +site-lib/lablGL -o freetennis lablgl.cmxa freetennis.ml diff --git a/games/freetennis/files/patch-freetennis.ml b/games/freetennis/files/patch-freetennis.ml new file mode 100644 index 000000000000..6bddc6ff45b8 --- /dev/null +++ b/games/freetennis/files/patch-freetennis.ml @@ -0,0 +1,63 @@ +--- freetennis.ml.orig 2005-11-21 21:20:33 UTC ++++ freetennis.ml +@@ -764,13 +764,9 @@ module StringMap = Map.Make (String) + module StringMap = Map.Make (String) + + (* "bool IntMap.t" is a map int -> bool *) +-module IntMap = Map.Make (struct +- type t = int +- let compare = compare +- end ) ++module IntMap = Map.Make(Int) + + +- + type leftOrRight = Right | Left + + let oppositeDir d = match d with Right -> Left | Left -> Right +@@ -2317,7 +2313,7 @@ let setAnim ~animName ~o ~restartIfSameAnimation = + let setAnim ~animName ~o ~restartIfSameAnimation = + + let an , fr, st = +- if 0 != (compare animName o.o3d_curAnimName) then ++ if 0 != (String.compare animName o.o3d_curAnimName) then + animName, 0, Animated 0.0 + else + if restartIfSameAnimation then +@@ -6641,6 +6637,7 @@ let _ = + else if !realisticPar && !newbiePar then + ArgumentError ("You cannot speficy both -realistic and -newbie. These are mutually exclusive flags.") + else ++ let compare = String.compare in + let translateName n = + if 0 = compare n "mats" then Some Mats + else if 0 = compare n "pete" then Some Pete +@@ -6714,7 +6711,7 @@ let _ = + Server ( (soc, clientSocket), Unix.in_channel_of_descr clientSocket, Unix.out_channel_of_descr clientSocket) + ) + +- else if 0 != compare !client "" then ++ else if 0 != String.compare !client "" then + let soc = Unix.socket Unix.PF_INET Unix.SOCK_STREAM 0 in + let inet_a = Unix.inet_addr_of_string !client in + print_endline "Connecting to server..."; +@@ -6913,7 +6910,7 @@ let _ = + assert (not (mem "CVS" l)); + List.map (fun x -> dir ^ "/" ^ x) l in + let notCVS x = +- 0 != (compare x "CVS") in ++ 0 != (String.compare x "CVS") in + addPath (filter notCVS (Array.to_list (Sys.readdir dir))) in + accumulate ~list:allFilesInDir ~f:makeTextureOfFile ~state:(handleOfTexture, nextFreeTextureIndex) + +@@ -7226,8 +7223,8 @@ let _ = + let filesWithIndices = + let files = + let notCVS x = +- 0 != (compare x "CVS") in +- List.sort compare (filter notCVS (Array.to_list (Sys.readdir d))) in ++ 0 != (String.compare x "CVS") in ++ List.sort String.compare (filter notCVS (Array.to_list (Sys.readdir d))) in + if List.length files != Array.length times then + (print_endline (d); + assert(false)) diff --git a/graphics/ocaml-cairo/Makefile b/graphics/ocaml-cairo/Makefile index a5068dbdefcf..d85c7179bd62 100644 --- a/graphics/ocaml-cairo/Makefile +++ b/graphics/ocaml-cairo/Makefile @@ -1,40 +1,41 @@ PORTNAME= cairo PORTVERSION= 0.6.4 +PORTREVISION= 1 CATEGORIES= graphics PKGNAMEPREFIX= ocaml- MAINTAINER= madpilot@FreeBSD.org COMMENT= Objective Caml binding for the Cairo library WWW= https://github.com/Chris00/ocaml-cairo LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= dune:devel/ocaml-dune LIB_DEPENDS+= libfreetype.so:print/freetype2 \ libfontconfig.so:x11-fonts/fontconfig USES= gnome pkgconfig USE_GNOME= cairo USE_OCAML= yes USE_GITHUB= yes GH_ACCOUNT= Chris00 GH_PROJECT= ${PKGNAMEPREFIX}${PORTNAME} DOCSDIR= ${OCAML_DOCSDIR}/cairo2 EXAMPLESDIR= ${OCAML_EXAMPLESDIR}/${PORTNAME} OPTIONS_DEFINE= DOCS EXAMPLES do-build: cd ${BUILD_WRKSRC} && dune build --verbose -j ${MAKE_JOBS_NUMBER} -p cairo2 do-install: cd ${INSTALL_WRKSRC} && dune install --destdir=${STAGEDIR} \ --libdir=${PREFIX}/${OCAML_SITELIBDIR} cairo2 post-install-EXAMPLES-on: @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) .include diff --git a/graphics/ocaml-images/Makefile b/graphics/ocaml-images/Makefile index e7b8b66e8708..1ae483880840 100644 --- a/graphics/ocaml-images/Makefile +++ b/graphics/ocaml-images/Makefile @@ -1,92 +1,103 @@ PORTNAME= images -PORTVERSION= 4.0.1 -PORTREVISION= 13 +PORTVERSION= 5.0.4 PORTEPOCH= 2 CATEGORIES= graphics -MASTER_SITES= https://bitbucket.org/camlspotter/camlimages/get/ PKGNAMEPREFIX= ocaml- DISTNAME= v${PORTVERSION} -DIST_SUBDIR= ocaml-images MAINTAINER= michael.grunewald@laposte.net COMMENT= Objective Caml image processing library WWW= http://pauillac.inria.fr/camlimages/ -BROKEN= Unfetchable and fails to build -DEPRECATED= Upstream is gone and failing to build for months -EXPIRATION_DATE=2024-03-31 +LICENSE= LGPL21 -BUILD_DEPENDS= ${LOCALBASE}/share/aclocal/ocaml.m4:lang/ocaml-autoconf -BUILD_DEPENDS+= omake:devel/omake +BUILD_DEPENDS= cppo:devel/ocaml-cppo \ + ${SA_DIR}/stdio/META:devel/ocaml-stdio +USES= ocaml:dune +USE_GITLAB= yes +GL_ACCOUNT= camlspotter +GL_PROJECT= camlimages USE_OCAML= yes -USE_OCAML_FINDLIB= yes +USE_OCAML_LDCONFIG= yes +OCAML_LDLIBS= +OCAML_PACKAGES= camlimages -OCAML_PKGDIRS= camlimages -OCAML_LDLIBS= ${OCAML_SITELIBDIR}/camlimages - -OMAKESUBS+= -e s@%%INCLUDESPORTS%%@${LOCALBASE}/include@ -OMAKESUBS+= -e s@%%INCLUDESX11%%@${LOCALBASE}/include/X11@ -OMAKESUBS+= -e s@%%INCLUDESPNG%%@${LOCALBASE}/include/libpng15@ -OMAKESUBS+= -e s@%%LDFLAGSPORTS%%@-L${LOCALBASE}/lib@ - -OMAKE= omake 'PREFIX=${STAGEDIR}${PREFIX}' -OMARGS= --dotomake .omake --force-dotomake -WRKSRC= ${WRKDIR}/camlspotter-camlimages-c803efa9d5d3 - -MAKE_JOBS_UNSAFE= yes +DOCSDIR= ${OCAML_DOCSDIR}/camlimages +PORTDOCS= README.md OPTIONS_DEFINE= PNG JPEG TIFF XPM GIF FREETYPE GHOSTSCRIPT GTK2 DOCS OPTIONS_DEFAULT=PNG JPEG TIFF XPM GIF FREETYPE GHOSTSCRIPT OPTIONS_SUB= yes PNG_CONFIGURE_WITH= png PNG_LIB_DEPENDS= libpng.so:graphics/png JPEG_CONFIGURE_WITH= jpeg JPEG_USES= jpeg TIFF_CONFIGURE_WITH= tiff TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff XPM_CONFIGURE_WITH= xpm GIF_CONFIGURE_WITH= gif GIF_LIB_DEPENDS= libgif.so:graphics/giflib FREETYPE_USES= pkgconfig FREETYPE_CONFIGURE_WITH=freetype FREETYPE_LIB_DEPENDS= libfreetype.so:print/freetype2 GHOSTSCRIPT_CONFIGURE_WITH= gs GHOSTSCRIPT_USES= ghostscript GTK2_CONFIGURE_WITH= liblgtk2 GTK2_BUILD_DEPENDS= lablgtk2:x11-toolkits/ocaml-lablgtk2 GTK2_RUN_DEPENDS= lablgtk2:x11-toolkits/ocaml-lablgtk2 -BINARY_ALIAS= freetype-config=true - .include .if ${PORT_OPTIONS:MXPM} USES+= xorg -USE_XORG= xpm +USE_XORG= x11 xpm .endif -post-patch: - @${REINPLACE_CMD} -e 's,shell-success-null,shell-success,' \ - ${WRKSRC}/OMyMakeroot - -do-configure: - @(cd ${WRKSRC} && ${REINPLACE_CMD} ${OMAKESUBS} OMakefile) - (cd ${WRKSRC} && ${OMAKE} ${OMARGS} configure) - -do-build: - (cd ${WRKSRC} && ${OMAKE} ${OMARGS}) - -do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/${OCAML_LDLIBS} - (cd ${WRKSRC} && ${OMAKE} ${OMARGS} install) +SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} + +post-install: + @${STRIP_CMD} \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/camlimages/dllcamlimages_exif_stubs.so \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/camlimages/core/camlimages.cmxs \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/camlimages/exif/camlimages_exif.cmxs + +post-install-FREETYPE-on: + ${STRIP_CMD} \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/camlimages/dllcamlimages_freetype_stubs.so \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/camlimages/freetype/camlimages_freetype.cmxs + +post-install-GIF-on: + ${STRIP_CMD} \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/camlimages/dllcamlimages_gif_stubs.so \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/camlimages/gif/camlimages_gif.cmxs + +post-install-JPEG-on: + ${STRIP_CMD} \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/camlimages/dllcamlimages_jpeg_stubs.so \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/camlimages/jpeg/camlimages_jpeg.cmxs + +post-install-PNG-on: + ${STRIP_CMD} \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/camlimages/dllcamlimages_png_stubs.so \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/camlimages/png/camlimages_png.cmxs + +post-install-TIFF-on: + ${STRIP_CMD} \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/camlimages/dllcamlimages_tiff_stubs.so \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/camlimages/tiff/camlimages_tiff.cmxs + +post-install-XPM-on: + ${STRIP_CMD} \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/camlimages/dllcamlimages_xpm_stubs.so \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/camlimages/xpm/camlimages_xpm.cmxs .include diff --git a/graphics/ocaml-images/distinfo b/graphics/ocaml-images/distinfo index 292653df98ca..2a12e87b0792 100644 --- a/graphics/ocaml-images/distinfo +++ b/graphics/ocaml-images/distinfo @@ -1,2 +1,3 @@ -SHA256 (ocaml-images/v4.0.1.tar.gz) = b40237c1505487049799a7af296eb3996b3fa08eab94415546f46d61355747c4 -SIZE (ocaml-images/v4.0.1.tar.gz) = 2190274 +TIMESTAMP = 1706851240 +SHA256 (camlimages-5.0.4.tar.bz2) = 1c9a68bdc3d348c9f859d490dadf384926213e47a584159832f7fc4a20242865 +SIZE (camlimages-5.0.4.tar.bz2) = 788111 diff --git a/graphics/ocaml-images/files/patch-OMakefile b/graphics/ocaml-images/files/patch-OMakefile deleted file mode 100644 index 8f6675f254fc..000000000000 --- a/graphics/ocaml-images/files/patch-OMakefile +++ /dev/null @@ -1,46 +0,0 @@ ---- OMakefile.orig 2011-06-22 18:04:32 UTC -+++ OMakefile -@@ -22,13 +22,13 @@ if $(defined WithOMyApt) - - # Specify non standard include directories - INCLUDES[]= -- /usr/include/X11 -- /usr/local/include -+ %%INCLUDESPORTS%% -+ %%INCLUDESX11%% -+ %%INCLUDESPNG%% - - # Specify non standard library directories - LDFLAGS[]+= --# for example, --# LDFLAGS[]+= -L/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/ -+ %%LDFLAGSPORTS%% - - # Specify directories where X's rgb.txt can be found - PATH_RGB_TXT[]= -@@ -95,6 +95,8 @@ print_configured() = - exit 1 - - CFLAGS = $(addprefix -I , $(INCLUDES)) -+ OCAMLCFLAGS = -unsafe-string -+ OCAMLOPTFLAGS = -unsafe-string - - WORD_SIZE = $(Word_size) - -@@ -175,13 +177,13 @@ print_configured() = - OCAMLPACKS+=graphics - export - -- SUPPORT_FREETYPE = $(Check_prog_in_path freetype-config) -+ SUPPORT_FREETYPE = $(Check_prog_in_path pkg-config) - PATH_FREETYPE_CONFIG = $(WHERE) - LDFLAGS_freetype= - if $(SUPPORT_FREETYPE) - println(SUPPORT_FREETYPE=$(SUPPORT_FREETYPE)!) -- CFLAGS= $(CFLAGS) $(shell freetype-config --cflags) -- LDFLAGS_freetype= $(shell freetype-config --libs) -+ CFLAGS= $(CFLAGS) $(shell pkg-config freetype2 --cflags) -+ LDFLAGS_freetype= $(shell pkg-config freetype2 --libs) - export - if $(SUPPORT_FREETYPE) - SUPPORTED_NON_FORMATS+=freetype diff --git a/graphics/ocaml-images/files/patch-configure b/graphics/ocaml-images/files/patch-configure deleted file mode 100644 index 224ee1fca92e..000000000000 --- a/graphics/ocaml-images/files/patch-configure +++ /dev/null @@ -1,13 +0,0 @@ ---- configure.orig 2021-08-07 07:17:08 UTC -+++ configure -@@ -8108,8 +8108,8 @@ fi - - - if test -n "$FREETYPE_CONFIG"; then -- LIBFREETYPE=`freetype-config --libs` -- INCFREETYPE=`freetype-config --cflags` -+ LIBFREETYPE=`pkg-config freetype2 --libs` -+ INCFREETYPE=`pkg-config freetype2 --cflags` - SUPPORT_FREETYPE="true" - fi - fi diff --git a/graphics/ocaml-images/files/patch-src_OMakefile b/graphics/ocaml-images/files/patch-src_OMakefile deleted file mode 100644 index c6d85cfd4037..000000000000 --- a/graphics/ocaml-images/files/patch-src_OMakefile +++ /dev/null @@ -1,15 +0,0 @@ ---- src/OMakefile.orig 2012-11-07 22:43:27.000000000 +0100 -+++ src/OMakefile 2012-11-07 22:44:22.000000000 +0100 -@@ -262,10 +262,10 @@ - $(glob i, *.so) - - INSTALL()= -- value $(OCAMLFIND) install $(LIBRARY_PREFIX) $(INSTALL_TARGETS) -+ value $(OCAMLFIND) install -ldconf ignore -destdir $(PREFIX)/lib/ocaml/site-lib $(LIBRARY_PREFIX) $(INSTALL_TARGETS) - - UNINSTALL()= -- value $(OCAMLFIND) remove $(LIBRARY_PREFIX) -+ value $(OCAMLFIND) remove -ldconf ignore -destdir $(PREFIX)/lib/ocaml/site-lib $(LIBRARY_PREFIX) - - install: all - $(INSTALL) diff --git a/graphics/ocaml-images/files/patch-src_bitmap.ml b/graphics/ocaml-images/files/patch-src_bitmap.ml deleted file mode 100644 index eec47155e7a5..000000000000 --- a/graphics/ocaml-images/files/patch-src_bitmap.ml +++ /dev/null @@ -1,11 +0,0 @@ ---- src/bitmap.ml.orig 2011-06-22 18:04:32 UTC -+++ src/bitmap.ml -@@ -186,7 +186,7 @@ module Make(B:Bitdepth) = struct - - let swap_out_eldest words = - let sorted = -- Sort.list (fun b1 b2 -> b1.last_used < b2.last_used) !swappable_blocks in -+ List.sort (fun b1 b2 -> compare b1.last_used b2.last_used) !swappable_blocks in - let rec swapper sorted i = - match sorted with - | [] -> () diff --git a/graphics/ocaml-images/files/patch-src_gifread.c b/graphics/ocaml-images/files/patch-src_gifread.c deleted file mode 100644 index c2b49558342c..000000000000 --- a/graphics/ocaml-images/files/patch-src_gifread.c +++ /dev/null @@ -1,34 +0,0 @@ ---- src/gifread.c.orig 2011-06-22 18:04:32 UTC -+++ src/gifread.c -@@ -140,7 +140,11 @@ value dGifOpenFileName( value name ) - GifFileType *GifFile; - int i; - -+#if GIFLIB_MAJOR >= 5 -+ if((GifFile = DGifOpenFileName( String_val(name), NULL )) == NULL){ -+#else - if((GifFile = DGifOpenFileName( String_val(name) )) == NULL){ -+#endif - failwith("DGifOpenFileName"); - } - -@@ -161,7 +165,11 @@ value dGifCloseFile( value hdl ) - segmentation faults */ - ((GifFileType *)hdl)->Image.ColorMap = NULL; - -+#if GIFLIB_MAJOR == 5 && GIFLIB_MINOR >= 1 || GIFLIB_MAJOR > 5 -+ DGifCloseFile( (GifFileType *) hdl, NULL ); -+#else - DGifCloseFile( (GifFileType *) hdl ); -+#endif - CAMLreturn(Val_unit); - } - -@@ -200,7 +208,6 @@ value dGifGetLine( value hdl ) - - if( DGifGetLine(GifFile, String_val(buf), GifFile->Image.Width ) - == GIF_ERROR ){ -- PrintGifError (); - failwith("DGifGetLine"); - } - CAMLreturn(buf); diff --git a/graphics/ocaml-images/files/patch-src_gifwrite.c b/graphics/ocaml-images/files/patch-src_gifwrite.c deleted file mode 100644 index 0fbcede2549c..000000000000 --- a/graphics/ocaml-images/files/patch-src_gifwrite.c +++ /dev/null @@ -1,55 +0,0 @@ ---- src/gifwrite.c.orig 2011-06-22 18:04:32 UTC -+++ src/gifwrite.c -@@ -25,7 +25,7 @@ - - #include - --int list_length( value list ) -+static int list_length( value list ) - { - CAMLparam1(list); - CAMLlocal1(l); -@@ -52,7 +52,11 @@ ColorMapObject *ColorMapObject_val( valu - fprintf(stderr, "Creating map with length = %d ...\n", len); - fflush(stderr); - */ -+#if GIFLIB_MAJOR >= 5 -+ cmapobj = GifMakeMapObject( len, NULL ); -+#else - cmapobj = MakeMapObject( len, NULL ); -+#endif - for(i=0; i< len; i++){ - cmapobj->Colors[i].Red = Int_val(Field(Field(cmap,i),0)); - cmapobj->Colors[i].Green = Int_val(Field(Field(cmap,i),1)); -@@ -68,7 +72,11 @@ value eGifOpenFileName( name ) - - GifFileType *GifFileOut; - -+#if GIFLIB_MAJOR >= 5 -+ if ((GifFileOut = EGifOpenFileName( String_val( name ), 0, NULL) )== NULL) { -+#else - if ((GifFileOut = EGifOpenFileName( String_val( name ), 0) )== NULL) { -+#endif - failwith("EGifOpenFileName"); - } - /* gcc -fwritable-strings is required to compile libungif */ -@@ -88,7 +96,11 @@ value eGifCloseFile( value hdl ) - segmentation faults */ - ((GifFileType *)hdl)->Image.ColorMap = NULL; - -+#if GIFLIB_MAJOR == 5 && GIFLIB_MINOR >= 1 || GIFLIB_MAJOR > 5 -+ EGifCloseFile( (GifFileType *) hdl, NULL ); -+#else - EGifCloseFile( (GifFileType *) hdl ); -+#endif - CAMLreturn(Val_unit); - } - -@@ -133,7 +145,6 @@ value eGifPutLine( value oc, value buf ) - - if ( EGifPutLine(GifFileOut, String_val(buf), GifFileOut->Image.Width) - == GIF_ERROR ){ -- PrintGifError (); - failwith("EGifPutLine"); - } - CAMLreturn(Val_unit); diff --git a/graphics/ocaml-images/files/patch-src_jpegread.c b/graphics/ocaml-images/files/patch-src_jpegread.c deleted file mode 100644 index 4369ab05fd9d..000000000000 --- a/graphics/ocaml-images/files/patch-src_jpegread.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/jpegread.c.orig 2011-06-22 20:04:32.000000000 +0200 -+++ src/jpegread.c -@@ -417,7 +417,7 @@ - jpeg_read_scanlines( cinfop, row, 1 ); - row[0] += scanline_bytes; - } -- CAMLreturn0; -+ CAMLreturn(0); - } - - value close_jpeg_file_for_read( jpegh ) diff --git a/graphics/ocaml-images/files/patch-src_pngread.c b/graphics/ocaml-images/files/patch-src_pngread.c deleted file mode 100644 index 2e5a49bf9c4f..000000000000 --- a/graphics/ocaml-images/files/patch-src_pngread.c +++ /dev/null @@ -1,38 +0,0 @@ ---- src/pngread.c.orig 2009-10-26 13:42:03.000000000 +0100 -+++ src/pngread.c 2012-05-05 07:08:53.000000000 +0200 -@@ -69,7 +69,7 @@ - } - - /* error handling */ -- if (setjmp(png_ptr->jmpbuf)) { -+ if (setjmp(png_jmpbuf(png_ptr))) { - /* Free all of the memory associated with the png_ptr and info_ptr */ - png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL); - fclose(fp); -@@ -134,7 +134,7 @@ - png_set_rows(png_ptr, info_ptr, row_pointers); - - /* Later, we can return something */ -- if (setjmp(png_ptr->jmpbuf)) { -+ if (setjmp(png_jmpbuf(png_ptr))) { - /* Free all of the memory associated with the png_ptr and info_ptr */ - png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL); - fclose(fp); -@@ -243,7 +243,7 @@ - } - - /* error handling */ -- if (setjmp(png_ptr->jmpbuf)) { -+ if (setjmp(png_jmpbuf(png_ptr))) { - /* Free all of the memory associated with the png_ptr and info_ptr */ - png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL); - fclose(fp); -@@ -302,7 +302,7 @@ - png_set_rows(png_ptr, info_ptr, row_pointers); - - /* Later, we can return something */ -- if (setjmp(png_ptr->jmpbuf)) { -+ if (setjmp(png_jmpbuf(png_ptr))) { - /* Free all of the memory associated with the png_ptr and info_ptr */ - png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL); - fclose(fp); diff --git a/graphics/ocaml-images/files/patch-src_pngwrite.c b/graphics/ocaml-images/files/patch-src_pngwrite.c deleted file mode 100644 index dc6872e299d7..000000000000 --- a/graphics/ocaml-images/files/patch-src_pngwrite.c +++ /dev/null @@ -1,20 +0,0 @@ ---- src/pngwrite.c.orig 2009-10-26 13:42:03.000000000 +0100 -+++ src/pngwrite.c 2012-05-06 13:01:28.000000000 +0200 -@@ -62,7 +62,7 @@ - } - - /* error handling */ -- if (setjmp(png_ptr->jmpbuf)) { -+ if (setjmp(png_jmpbuf(png_ptr))) { - /* Free all of the memory associated with the png_ptr and info_ptr */ - png_destroy_write_struct(&png_ptr, &info_ptr); - fclose(fp); -@@ -171,7 +171,7 @@ - } - - /* error handling */ -- if (setjmp(png_ptr->jmpbuf)) { -+ if (setjmp(png_jmpbuf(png_ptr))) { - /* Free all of the memory associated with the png_ptr and info_ptr */ - png_destroy_write_struct(&png_ptr, &info_ptr); - fclose(fp); diff --git a/graphics/ocaml-images/files/patch-src_tiffread.c b/graphics/ocaml-images/files/patch-src_tiffread.c deleted file mode 100644 index 73b684a3408e..000000000000 --- a/graphics/ocaml-images/files/patch-src_tiffread.c +++ /dev/null @@ -1,36 +0,0 @@ ---- src/tiffread.c.orig 2011-06-22 20:04:32.000000000 +0200 -+++ src/tiffread.c -@@ -23,14 +23,22 @@ - - #include "oversized.h" - -+/* Avoid redefinitions */ -+#undef int16 -+#undef uint16 - /* These are defined in caml/config.h */ - #define int16 int16tiff - #define uint16 uint16tiff - #define int32 int32tiff - #define uint32 uint32tiff -+#define int64 int64tiff -+#define uint64 uint64tiff - - #include - -+#undef int64 -+#undef uint64 -+ - extern value *imglib_error; - - value open_tiff_file_for_read( name ) -@@ -70,6 +78,10 @@ - failwith_oversized("tiff"); - } - -+ if (oversized (imagewidth, imagelength)) { -+ failwith_oversized("tiff"); -+ } -+ - if( imagesample == 3 && photometric == PHOTOMETRIC_RGB ){ - if( imagebits != 8 ){ - failwith("Sorry, tiff rgb file must be 24bit-color"); diff --git a/graphics/ocaml-images/files/patch-src_tiffwrite.c b/graphics/ocaml-images/files/patch-src_tiffwrite.c deleted file mode 100644 index 280158a1d7dd..000000000000 --- a/graphics/ocaml-images/files/patch-src_tiffwrite.c +++ /dev/null @@ -1,39 +0,0 @@ ---- src/tiffwrite.c.orig 2011-06-22 20:04:32.000000000 +0200 -+++ src/tiffwrite.c -@@ -20,11 +20,16 @@ - #include - #include - -+/* Avoid redefinitions */ -+#undef int16 -+#undef uint16 - /* These are defined in caml/config.h */ - #define int16 int16tiff - #define uint16 uint16tiff - #define int32 int32tiff - #define uint32 uint32tiff -+#define int64 int64tiff -+#define uint64 uint64tiff - - #include - -@@ -32,6 +37,8 @@ - #undef uint16 - #undef int32 - #undef uint32 -+#undef int64 -+#undef uint64 - - extern value *imglib_error; - -@@ -56,8 +63,8 @@ value open_tiff_file_for_write( value file, - /* Resolution */ - /* FillOrder */ - -- TIFFSetField(tif, TIFFTAG_IMAGEWIDTH, (uint32) image_width); -- TIFFSetField(tif, TIFFTAG_IMAGELENGTH, (uint32) image_height); -+ TIFFSetField(tif, TIFFTAG_IMAGEWIDTH, image_width); -+ TIFFSetField(tif, TIFFTAG_IMAGELENGTH, image_height); - TIFFSetField(tif, TIFFTAG_ORIENTATION, ORIENTATION_TOPLEFT); - TIFFSetField(tif, TIFFTAG_SAMPLESPERPIXEL, 3); - TIFFSetField(tif, TIFFTAG_BITSPERSAMPLE, 8); diff --git a/graphics/ocaml-images/pkg-plist b/graphics/ocaml-images/pkg-plist index 695d08fae127..925614efe999 100644 --- a/graphics/ocaml-images/pkg-plist +++ b/graphics/ocaml-images/pkg-plist @@ -1,146 +1,325 @@ -lib/ocaml/site-lib/camlimages/META -lib/ocaml/site-lib/camlimages/bitmap.cmi -lib/ocaml/site-lib/camlimages/bitmap.mli -lib/ocaml/site-lib/camlimages/blend.cmi -lib/ocaml/site-lib/camlimages/blend.mli -lib/ocaml/site-lib/camlimages/bmp.cmi -lib/ocaml/site-lib/camlimages/bmp.mli -lib/ocaml/site-lib/camlimages/camlimages.cmi -lib/ocaml/site-lib/camlimages/camlimages_all.a -lib/ocaml/site-lib/camlimages/camlimages_all.cma -lib/ocaml/site-lib/camlimages/camlimages_all.cmxa -lib/ocaml/site-lib/camlimages/camlimages_core.a -lib/ocaml/site-lib/camlimages/camlimages_core.cma -lib/ocaml/site-lib/camlimages/camlimages_core.cmxa -%%FREETYPE%%lib/ocaml/site-lib/camlimages/camlimages_freetype.a -%%FREETYPE%%lib/ocaml/site-lib/camlimages/camlimages_freetype.cma -%%FREETYPE%%lib/ocaml/site-lib/camlimages/camlimages_freetype.cmxa -%%GIF%%lib/ocaml/site-lib/camlimages/camlimages_gif.a -%%GIF%%lib/ocaml/site-lib/camlimages/camlimages_gif.cma -%%GIF%%lib/ocaml/site-lib/camlimages/camlimages_gif.cmxa -lib/ocaml/site-lib/camlimages/camlimages_graphics.a -lib/ocaml/site-lib/camlimages/camlimages_graphics.cma -lib/ocaml/site-lib/camlimages/camlimages_graphics.cmxa -lib/ocaml/site-lib/camlimages/camlimages_jpeg.a -lib/ocaml/site-lib/camlimages/camlimages_jpeg.cma -lib/ocaml/site-lib/camlimages/camlimages_jpeg.cmxa -%%GTK2%%lib/ocaml/site-lib/camlimages/camlimages_lablgtk2.a -%%GTK2%%lib/ocaml/site-lib/camlimages/camlimages_lablgtk2.cma -%%GTK2%%lib/ocaml/site-lib/camlimages/camlimages_lablgtk2.cmxa -lib/ocaml/site-lib/camlimages/camlimages_png.a -lib/ocaml/site-lib/camlimages/camlimages_png.cma -lib/ocaml/site-lib/camlimages/camlimages_png.cmxa -lib/ocaml/site-lib/camlimages/camlimages_ps.a -lib/ocaml/site-lib/camlimages/camlimages_ps.cma -lib/ocaml/site-lib/camlimages/camlimages_ps.cmxa -lib/ocaml/site-lib/camlimages/camlimages_supported.a -lib/ocaml/site-lib/camlimages/camlimages_supported.cma -lib/ocaml/site-lib/camlimages/camlimages_supported.cmxa -lib/ocaml/site-lib/camlimages/camlimages_tiff.a -lib/ocaml/site-lib/camlimages/camlimages_tiff.cma -lib/ocaml/site-lib/camlimages/camlimages_tiff.cmxa -lib/ocaml/site-lib/camlimages/camlimages_xpm.a -lib/ocaml/site-lib/camlimages/camlimages_xpm.cma -lib/ocaml/site-lib/camlimages/camlimages_xpm.cmxa -lib/ocaml/site-lib/camlimages/cmyk32.cmi -lib/ocaml/site-lib/camlimages/cmyk32.mli -lib/ocaml/site-lib/camlimages/color.cmi -lib/ocaml/site-lib/camlimages/color.mli -lib/ocaml/site-lib/camlimages/colorhist.cmi -lib/ocaml/site-lib/camlimages/colorhist.mli -lib/ocaml/site-lib/camlimages/dllcamlimages_all.so -%%FREETYPE%%lib/ocaml/site-lib/camlimages/dllcamlimages_freetype.so -lib/ocaml/site-lib/camlimages/dllcamlimages_gif.so -lib/ocaml/site-lib/camlimages/dllcamlimages_jpeg.so -lib/ocaml/site-lib/camlimages/dllcamlimages_png.so -lib/ocaml/site-lib/camlimages/dllcamlimages_supported.so -lib/ocaml/site-lib/camlimages/dllcamlimages_tiff.so -lib/ocaml/site-lib/camlimages/dllcamlimages_xpm.so -%%FREETYPE%%lib/ocaml/site-lib/camlimages/freetype.cmi -lib/ocaml/site-lib/camlimages/freetype.mli -%%FREETYPE%%lib/ocaml/site-lib/camlimages/ftlow.cmi -lib/ocaml/site-lib/camlimages/ftlow.mli -%%FREETYPE%%lib/ocaml/site-lib/camlimages/fttext.cmi -lib/ocaml/site-lib/camlimages/fttext.mli -lib/ocaml/site-lib/camlimages/genimage.cmi -lib/ocaml/site-lib/camlimages/genimage.mli -lib/ocaml/site-lib/camlimages/geometry.cmi -lib/ocaml/site-lib/camlimages/geometry.mli -lib/ocaml/site-lib/camlimages/gif.cmi -lib/ocaml/site-lib/camlimages/gif.mli -lib/ocaml/site-lib/camlimages/graphic_image.cmi -lib/ocaml/site-lib/camlimages/graphic_image.mli -lib/ocaml/site-lib/camlimages/image_intf.cmi -lib/ocaml/site-lib/camlimages/image_intf.mli -%%GTK2%%lib/ocaml/site-lib/camlimages/imagegdk.cmi -lib/ocaml/site-lib/camlimages/imagegdk.mli -lib/ocaml/site-lib/camlimages/images.cmi -lib/ocaml/site-lib/camlimages/images.mli -lib/ocaml/site-lib/camlimages/index16.cmi -lib/ocaml/site-lib/camlimages/index16.mli -lib/ocaml/site-lib/camlimages/index8.cmi -lib/ocaml/site-lib/camlimages/index8.mli -lib/ocaml/site-lib/camlimages/info.cmi -lib/ocaml/site-lib/camlimages/info.mli -lib/ocaml/site-lib/camlimages/jis_table.cmi -lib/ocaml/site-lib/camlimages/jis_unicode.cmi -lib/ocaml/site-lib/camlimages/jis_unicode.mli -lib/ocaml/site-lib/camlimages/jpeg.cmi -lib/ocaml/site-lib/camlimages/jpeg.mli -lib/ocaml/site-lib/camlimages/libcamlimages_all.a -%%FREETYPE%%lib/ocaml/site-lib/camlimages/libcamlimages_freetype.a -lib/ocaml/site-lib/camlimages/libcamlimages_gif.a -lib/ocaml/site-lib/camlimages/libcamlimages_jpeg.a -lib/ocaml/site-lib/camlimages/libcamlimages_png.a -lib/ocaml/site-lib/camlimages/libcamlimages_supported.a -lib/ocaml/site-lib/camlimages/libcamlimages_tiff.a -lib/ocaml/site-lib/camlimages/libcamlimages_xpm.a -lib/ocaml/site-lib/camlimages/mstring.cmi -lib/ocaml/site-lib/camlimages/mstring.mli -lib/ocaml/site-lib/camlimages/oBmp.cmi -lib/ocaml/site-lib/camlimages/oColor.cmi -lib/ocaml/site-lib/camlimages/oColor.mli -%%FREETYPE%%lib/ocaml/site-lib/camlimages/oFreetype.cmi -lib/ocaml/site-lib/camlimages/oGif.cmi -lib/ocaml/site-lib/camlimages/oGraphic.cmi -lib/ocaml/site-lib/camlimages/oImages.cmi -lib/ocaml/site-lib/camlimages/oImages.mli -lib/ocaml/site-lib/camlimages/oJpeg.cmi -lib/ocaml/site-lib/camlimages/oJpeg.mli -lib/ocaml/site-lib/camlimages/oPng.cmi -lib/ocaml/site-lib/camlimages/oPng.mli -lib/ocaml/site-lib/camlimages/oPpm.cmi -lib/ocaml/site-lib/camlimages/oPs.cmi -lib/ocaml/site-lib/camlimages/oTiff.cmi -%%GTK2%%lib/ocaml/site-lib/camlimages/oXimage.cmi -lib/ocaml/site-lib/camlimages/oXimage.mli -%%GTK2%%lib/ocaml/site-lib/camlimages/oXimage2.cmi -lib/ocaml/site-lib/camlimages/oXpm.cmi -lib/ocaml/site-lib/camlimages/oXvthumb.cmi -lib/ocaml/site-lib/camlimages/oXvthumb.mli -lib/ocaml/site-lib/camlimages/png.cmi -lib/ocaml/site-lib/camlimages/png.mli -lib/ocaml/site-lib/camlimages/ppm.cmi -lib/ocaml/site-lib/camlimages/ppm.mli -lib/ocaml/site-lib/camlimages/ps.cmi -lib/ocaml/site-lib/camlimages/ps.mli -lib/ocaml/site-lib/camlimages/reduce.cmi -lib/ocaml/site-lib/camlimages/reduce.mli -lib/ocaml/site-lib/camlimages/region.cmi -lib/ocaml/site-lib/camlimages/region.mli -lib/ocaml/site-lib/camlimages/rgb24.cmi -lib/ocaml/site-lib/camlimages/rgb24.mli -lib/ocaml/site-lib/camlimages/rgba32.cmi -lib/ocaml/site-lib/camlimages/rgba32.mli -lib/ocaml/site-lib/camlimages/tiff.cmi -lib/ocaml/site-lib/camlimages/tiff.mli -lib/ocaml/site-lib/camlimages/tmpfile.cmi -lib/ocaml/site-lib/camlimages/tmpfile.mli -lib/ocaml/site-lib/camlimages/units.cmi -%%GTK2%%lib/ocaml/site-lib/camlimages/ximage.cmi -lib/ocaml/site-lib/camlimages/ximage.mli -%%GTK2%%lib/ocaml/site-lib/camlimages/ximage2.cmi -lib/ocaml/site-lib/camlimages/xpm.cmi -lib/ocaml/site-lib/camlimages/xpm.mli -lib/ocaml/site-lib/camlimages/xvthumb.cmi -lib/ocaml/site-lib/camlimages/xvthumb.mli +%%OCAML_SITELIBDIR%%/camlimages/META +%%OCAML_SITELIBDIR%%/camlimages/dune-package +%%OCAML_SITELIBDIR%%/camlimages/opam +%%OCAML_SITELIBDIR%%/camlimages/dllcamlimages_exif_stubs.so +%%OCAML_SITELIBDIR%%/camlimages/core/camlimages.a +%%OCAML_SITELIBDIR%%/camlimages/core/bitmap.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/bitmap.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/bitmap.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/bitmap.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/bitmap.ml +%%OCAML_SITELIBDIR%%/camlimages/core/bitmap.mli +%%OCAML_SITELIBDIR%%/camlimages/core/blend.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/blend.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/blend.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/blend.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/blend.ml +%%OCAML_SITELIBDIR%%/camlimages/core/blend.mli +%%OCAML_SITELIBDIR%%/camlimages/core/bmp.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/bmp.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/bmp.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/bmp.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/bmp.ml +%%OCAML_SITELIBDIR%%/camlimages/core/bmp.mli +%%OCAML_SITELIBDIR%%/camlimages/core/dummy_supported.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/camlimages.cma +%%OCAML_SITELIBDIR%%/camlimages/core/camlimages.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/camlimages.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/images.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/camlimages.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/camlimages.cmxa +%%OCAML_SITELIBDIR%%/camlimages/core/camlimages.ml +%%OCAML_SITELIBDIR%%/camlimages/core/cmyk32.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/cmyk32.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/cmyk32.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/cmyk32.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/cmyk32.ml +%%OCAML_SITELIBDIR%%/camlimages/core/cmyk32.mli +%%OCAML_SITELIBDIR%%/camlimages/core/color.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/color.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/color.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/color.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/color.ml +%%OCAML_SITELIBDIR%%/camlimages/core/color.mli +%%OCAML_SITELIBDIR%%/camlimages/core/colorhist.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/colorhist.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/colorhist.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/colorhist.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/colorhist.ml +%%OCAML_SITELIBDIR%%/camlimages/core/colorhist.mli +%%OCAML_SITELIBDIR%%/camlimages/core/genimage.mli +%%OCAML_SITELIBDIR%%/camlimages/core/genimage.ml +%%OCAML_SITELIBDIR%%/camlimages/core/dummy_supported.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/dummy_supported.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/dummy_supported.ml +%%OCAML_SITELIBDIR%%/camlimages/core/genimage.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/genimage.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/genimage.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/genimage.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/jis_unicode.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/geometry.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/geometry.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/geometry.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/geometry.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/geometry.ml +%%OCAML_SITELIBDIR%%/camlimages/core/geometry.mli +%%OCAML_SITELIBDIR%%/camlimages/core/image_intf.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/image_intf.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/image_intf.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/image_intf.ml +%%OCAML_SITELIBDIR%%/camlimages/core/images.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/images.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/images.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/images.ml +%%OCAML_SITELIBDIR%%/camlimages/core/images.mli +%%OCAML_SITELIBDIR%%/camlimages/core/index16.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/index16.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/index16.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/index16.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/index16.ml +%%OCAML_SITELIBDIR%%/camlimages/core/index16.mli +%%OCAML_SITELIBDIR%%/camlimages/core/index8.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/index8.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/index8.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/index8.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/index8.ml +%%OCAML_SITELIBDIR%%/camlimages/core/index8.mli +%%OCAML_SITELIBDIR%%/camlimages/core/info.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/info.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/info.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/info.ml +%%OCAML_SITELIBDIR%%/camlimages/core/jis_table.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/jis_table.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/jis_table.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/jis_table.ml +%%OCAML_SITELIBDIR%%/camlimages/core/jis_unicode.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/jis_unicode.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/jis_unicode.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/jis_unicode.ml +%%OCAML_SITELIBDIR%%/camlimages/core/jis_unicode.mli +%%OCAML_SITELIBDIR%%/camlimages/core/mstring.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/mstring.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/mstring.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/mstring.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/mstring.ml +%%OCAML_SITELIBDIR%%/camlimages/core/mstring.mli +%%OCAML_SITELIBDIR%%/camlimages/core/oBmp.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/oBmp.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/oBmp.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/oBmp.ml +%%OCAML_SITELIBDIR%%/camlimages/core/oColor.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/oColor.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/oColor.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/oColor.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/oColor.ml +%%OCAML_SITELIBDIR%%/camlimages/core/oColor.mli +%%OCAML_SITELIBDIR%%/camlimages/core/oImages.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/oImages.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/oImages.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/oImages.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/ps.ml +%%OCAML_SITELIBDIR%%/camlimages/core/ps.mli +%%OCAML_SITELIBDIR%%/camlimages/core/oImages.ml +%%OCAML_SITELIBDIR%%/camlimages/core/oImages.mli +%%OCAML_SITELIBDIR%%/camlimages/core/oPpm.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/oPpm.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/oPpm.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/oPpm.ml +%%OCAML_SITELIBDIR%%/camlimages/core/oPs.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/oPs.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/oPs.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/oPs.ml +%%OCAML_SITELIBDIR%%/camlimages/core/oXvthumb.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/oXvthumb.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/oXvthumb.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/oXvthumb.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/oXvthumb.ml +%%OCAML_SITELIBDIR%%/camlimages/core/oXvthumb.mli +%%OCAML_SITELIBDIR%%/camlimages/core/ppm.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/ppm.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/ppm.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/ppm.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/ppm.ml +%%OCAML_SITELIBDIR%%/camlimages/core/ppm.mli +%%OCAML_SITELIBDIR%%/camlimages/core/ps.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/ps.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/ps.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/ps.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/reduce.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/tmpfile.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/reduce.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/reduce.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/reduce.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/reduce.ml +%%OCAML_SITELIBDIR%%/camlimages/core/reduce.mli +%%OCAML_SITELIBDIR%%/camlimages/core/region.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/region.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/region.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/region.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/region.ml +%%OCAML_SITELIBDIR%%/camlimages/core/region.mli +%%OCAML_SITELIBDIR%%/camlimages/core/rgb24.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/rgb24.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/rgb24.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/rgb24.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/rgb24.ml +%%OCAML_SITELIBDIR%%/camlimages/core/rgb24.mli +%%OCAML_SITELIBDIR%%/camlimages/core/rgba32.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/rgba32.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/rgba32.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/rgba32.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/rgba32.ml +%%OCAML_SITELIBDIR%%/camlimages/core/rgba32.mli +%%OCAML_SITELIBDIR%%/camlimages/core/tmpfile.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/tmpfile.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/tmpfile.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/tmpfile.ml +%%OCAML_SITELIBDIR%%/camlimages/core/tmpfile.mli +%%OCAML_SITELIBDIR%%/camlimages/core/units.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/units.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/units.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/units.ml +%%OCAML_SITELIBDIR%%/camlimages/core/util.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/util.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/util.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/util.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/util.ml +%%OCAML_SITELIBDIR%%/camlimages/core/util.mli +%%OCAML_SITELIBDIR%%/camlimages/core/xvthumb.cmi +%%OCAML_SITELIBDIR%%/camlimages/core/xvthumb.cmt +%%OCAML_SITELIBDIR%%/camlimages/core/xvthumb.cmti +%%OCAML_SITELIBDIR%%/camlimages/core/xvthumb.cmx +%%OCAML_SITELIBDIR%%/camlimages/core/xvthumb.ml +%%OCAML_SITELIBDIR%%/camlimages/core/xvthumb.mli +%%OCAML_SITELIBDIR%%/camlimages/core/camlimages.cmxs +%%OCAML_SITELIBDIR%%/camlimages/exif/camlimages_exif.cmxa +%%OCAML_SITELIBDIR%%/camlimages/exif/camlimages_exif.a +%%OCAML_SITELIBDIR%%/camlimages/exif/camlimages_exif.cma +%%OCAML_SITELIBDIR%%/camlimages/exif/exifanalyze.cmi +%%OCAML_SITELIBDIR%%/camlimages/exif/exif.cmi +%%OCAML_SITELIBDIR%%/camlimages/exif/exif.cmt +%%OCAML_SITELIBDIR%%/camlimages/exif/exif.cmti +%%OCAML_SITELIBDIR%%/camlimages/exif/exif.cmx +%%OCAML_SITELIBDIR%%/camlimages/exif/exif.ml +%%OCAML_SITELIBDIR%%/camlimages/exif/exif.mli +%%OCAML_SITELIBDIR%%/camlimages/exif/exifanalyze.cmt +%%OCAML_SITELIBDIR%%/camlimages/exif/exifanalyze.cmx +%%OCAML_SITELIBDIR%%/camlimages/exif/exifanalyze.ml +%%OCAML_SITELIBDIR%%/camlimages/exif/exifutil.cmi +%%OCAML_SITELIBDIR%%/camlimages/exif/exifutil.cmt +%%OCAML_SITELIBDIR%%/camlimages/exif/exifutil.cmx +%%OCAML_SITELIBDIR%%/camlimages/exif/exifutil.ml +%%OCAML_SITELIBDIR%%/camlimages/exif/libcamlimages_exif_stubs.a +%%OCAML_SITELIBDIR%%/camlimages/exif/camlimages_exif.cmxs +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/dllcamlimages_freetype_stubs.so +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/camlimages_freetype.cmxa +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/camlimages_freetype.a +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/camlimages_freetype.cma +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/camlimages_freetype.cmxs +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/freetype.cmi +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/freetype.cmt +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/freetype.cmti +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/freetype.cmx +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/freetype.ml +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/freetype.mli +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/ftlow.cmi +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/ftlow.cmt +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/ftlow.cmti +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/ftlow.cmx +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/ftlow.ml +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/ftlow.mli +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/fttext.cmi +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/fttext.cmt +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/fttext.cmti +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/fttext.cmx +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/fttext.ml +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/fttext.mli +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/oFreetype.cmi +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/oFreetype.cmt +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/libcamlimages_freetype_stubs.a +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/oFreetype.cmx +%%FREETYPE%%%%OCAML_SITELIBDIR%%/camlimages/freetype/oFreetype.ml +%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/dllcamlimages_gif_stubs.so +%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/gif/libcamlimages_gif_stubs.a +%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/gif/camlimages_gif.a +%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/gif/camlimages_gif.cma +%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/gif/camlimages_gif.cmxa +%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/gif/gif.cmi +%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/gif/gif.cmt +%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/gif/gif.cmti +%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/gif/gif.cmx +%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/gif/gif.ml +%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/gif/gif.mli +%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/gif/camlimages_gif.cmxs +%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/gif/oGif.cmi +%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/gif/oGif.cmt +%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/gif/oGif.cmx +%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/gif/oGif.ml +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/dllcamlimages_jpeg_stubs.so +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/camlimages_jpeg.cmxa +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/camlimages_jpeg.a +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/camlimages_jpeg.cma +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/camlimages_jpeg.cmxs +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/jpeg.cmi +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/jpeg.cmt +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/jpeg.cmti +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/jpeg.cmx +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/jpeg.ml +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/jpeg.mli +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/oJpeg.cmi +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/oJpeg.cmt +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/libcamlimages_jpeg_stubs.a +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/oJpeg.cmti +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/oJpeg.cmx +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/oJpeg.ml +%%JPEG%%%%OCAML_SITELIBDIR%%/camlimages/jpeg/oJpeg.mli +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/dllcamlimages_png_stubs.so +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/libcamlimages_png_stubs.a +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/camlimages_png.a +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/camlimages_png.cma +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/camlimages_png.cmxa +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/camlimages_png.cmxs +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/oPng.cmi +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/oPng.cmt +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/oPng.cmti +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/oPng.cmx +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/oPng.ml +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/oPng.mli +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/png.cmi +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/png.cmt +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/png.cmti +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/png.cmx +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/png.ml +%%PNG%%%%OCAML_SITELIBDIR%%/camlimages/png/png.mli +%%TIFF%%%%OCAML_SITELIBDIR%%/camlimages/dllcamlimages_tiff_stubs.so +%%TIFF%%%%OCAML_SITELIBDIR%%/camlimages/tiff/camlimages_tiff.cmxa +%%TIFF%%%%OCAML_SITELIBDIR%%/camlimages/tiff/camlimages_tiff.a +%%TIFF%%%%OCAML_SITELIBDIR%%/camlimages/tiff/camlimages_tiff.cma +%%TIFF%%%%OCAML_SITELIBDIR%%/camlimages/tiff/tiff.mli +%%TIFF%%%%OCAML_SITELIBDIR%%/camlimages/tiff/tiff.ml +%%TIFF%%%%OCAML_SITELIBDIR%%/camlimages/tiff/libcamlimages_tiff_stubs.a +%%TIFF%%%%OCAML_SITELIBDIR%%/camlimages/tiff/oTiff.cmi +%%TIFF%%%%OCAML_SITELIBDIR%%/camlimages/tiff/oTiff.cmt +%%TIFF%%%%OCAML_SITELIBDIR%%/camlimages/tiff/oTiff.cmx +%%TIFF%%%%OCAML_SITELIBDIR%%/camlimages/tiff/oTiff.ml +%%TIFF%%%%OCAML_SITELIBDIR%%/camlimages/tiff/tiff.cmi +%%TIFF%%%%OCAML_SITELIBDIR%%/camlimages/tiff/tiff.cmt +%%TIFF%%%%OCAML_SITELIBDIR%%/camlimages/tiff/tiff.cmti +%%TIFF%%%%OCAML_SITELIBDIR%%/camlimages/tiff/tiff.cmx +%%TIFF%%%%OCAML_SITELIBDIR%%/camlimages/tiff/camlimages_tiff.cmxs +%%XPM%%%%OCAML_SITELIBDIR%%/camlimages/dllcamlimages_xpm_stubs.so +%%XPM%%%%OCAML_SITELIBDIR%%/camlimages/xpm/libcamlimages_xpm_stubs.a +%%XPM%%%%OCAML_SITELIBDIR%%/camlimages/xpm/camlimages_xpm.a +%%XPM%%%%OCAML_SITELIBDIR%%/camlimages/xpm/camlimages_xpm.cma +%%XPM%%%%OCAML_SITELIBDIR%%/camlimages/xpm/camlimages_xpm.cmxa +%%XPM%%%%OCAML_SITELIBDIR%%/camlimages/xpm/camlimages_xpm.cmxs +%%XPM%%%%OCAML_SITELIBDIR%%/camlimages/xpm/oXpm.cmi +%%XPM%%%%OCAML_SITELIBDIR%%/camlimages/xpm/oXpm.cmt +%%XPM%%%%OCAML_SITELIBDIR%%/camlimages/xpm/oXpm.cmx +%%XPM%%%%OCAML_SITELIBDIR%%/camlimages/xpm/oXpm.ml +%%XPM%%%%OCAML_SITELIBDIR%%/camlimages/xpm/xpm.cmi +%%XPM%%%%OCAML_SITELIBDIR%%/camlimages/xpm/xpm.cmt +%%XPM%%%%OCAML_SITELIBDIR%%/camlimages/xpm/xpm.cmti +%%XPM%%%%OCAML_SITELIBDIR%%/camlimages/xpm/xpm.cmx +%%XPM%%%%OCAML_SITELIBDIR%%/camlimages/xpm/xpm.ml +%%XPM%%%%OCAML_SITELIBDIR%%/camlimages/xpm/xpm.mli diff --git a/graphics/ocaml-lablgl/Makefile b/graphics/ocaml-lablgl/Makefile index d42088005a9f..f5f5ca506bc8 100644 --- a/graphics/ocaml-lablgl/Makefile +++ b/graphics/ocaml-lablgl/Makefile @@ -1,82 +1,86 @@ PORTNAME= lablgl PORTVERSION= 1.05 -PORTREVISION= 5 +PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= graphics MASTER_SITES= http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/dist/ \ https://forge.ocamlcore.org/frs/download.php/1254/ PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= OpenGL interface for Objective Caml WWW= https://forge.ocamlcore.org/projects/lablgl/ LICENSE= BSD3CLAUSE CONFLICTS= ocaml-nox11 USES= gl gmake tk xorg USE_XORG= x11 xext xmu -USE_GL= glut +USE_GL= gl glu glut USE_OCAML= yes -USE_OCAML_WASH= yes -USE_OCAML_CAMLP4=yes +USE_OCAML_CAMLP4= yes +USE_OCAML_LDCONFIG= yes USE_OCAML_TK= yes +OCAML_LDLIBS= ${OCAML_SITELIBDIR}/lablGL + ALL_TARGET= all opt MAKE_JOBS_UNSAFE= yes DOCSDIR= ${PREFIX}/share/doc/ocaml/lablgl EXAMPLESDIR= ${PREFIX}/share/examples/ocaml/lablgl PATTERN= [[:space:]]*(do|then)?[[:space:]]*)cp([[:space:]] OPTIONS_DEFINE= THREADS DOCS OPTIONS_DEFAULT= THREADS THREADS_DESC= Threaded Tcl/Tk (must match lang/ocaml) .include .if ${PORT_OPTIONS:MTHREADS} THR_LD= -lpthread .endif post-extract: @${CP} ${WRKSRC}/Makefile.config.freebsd ${WRKSRC}/Makefile.config post-patch: @${REINPLACE_CMD} -e "s,/usr/X11R6,${LOCALBASE},g" \ -e "s,/usr/local,${LOCALBASE},g" \ -e "s,^\(BINDIR[ \t]*=\).*,\1${STAGEDIR}${PREFIX}/bin,g" \ -e "s,^\(RANLIB[ \t]*=\).*,\1ranlib,g" \ - -e "s,^#\(LIBDIR[ \t]*=\).*,\1${PREFIX}/lib/ocaml,g" \ - -e "s,^#\(DLLDIR[ \t]*=\).*,\1${STAGEDIR}${PREFIX}/lib/ocaml/stublibs,g" \ - -e "s,^#\(INSTALLDIR[ \t]*=\).*,\1${STAGEDIR}${PREFIX}/lib/ocaml/lablGL,g" \ + -e "s,^#\(LIBDIR[ \t]*=\).*,\1${PREFIX}/${OCAML_LIBDIR},g" \ + -e "s,^#\(DLLDIR[ \t]*=\).*,\1${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/lablGL,g" \ + -e "s,^#\(INSTALLDIR[ \t]*=\).*,\1${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/lablGL,g" \ -e "s!^#\(COPTS[ \t]*=\).*!\1-c ${CFLAGS}!g" \ -e "/^TKINCLUDES/s,=.*$$,= -I${TCL_INCLUDEDIR} -I${TK_INCLUDEDIR}," \ -e "/^TKLIBS/s,=.*$$,= -L${LOCALBASE}/lib -ltk${TK_SHLIB_VER}\ -ltcl${TCL_SHLIB_VER} ${THR_LD}," \ ${WRKSRC}/Makefile.config @${REINPLACE_CMD} -E \ -e '/exec ocaml/s,\$$\(INSTALLDIR\),${PREFIX}/lib/ocaml/lablGL,' \ -e 's,^(${PATTERN}+.*INSTALLDIR),\1\$${BSD_INSTALL_DATA} \3,' \ -e 's,^(${PATTERN}+.*BINDIR),\1\$${BSD_INSTALL_SCRIPT} \3,' \ -e 's,^(${PATTERN}+.*LIBDIR),\1\$${BSD_INSTALL_DATA} \3,' \ + -e '/^OCAMLINC=/s,\+labltk,+site-lib/labltk -I +labltk,' \ ${WRKSRC}/src/Makefile ${WRKSRC}/LablGlut/src/Makefile \ ${WRKSRC}/Togl/src/Makefile -pre-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/lib/ocaml/stublibs - post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/lablglut @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/togl @(cd ${WRKSRC}/LablGlut/examples && ${COPYTREE_SHARE} . \ ${STAGEDIR}${EXAMPLESDIR}/lablglut '! -name Makefile') @(cd ${WRKSRC}/Togl/examples && ${COPYTREE_SHARE} . \ ${STAGEDIR}${EXAMPLESDIR}/togl '! -name Makefile') @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} + @${STRIP_CMD} \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/lablGL/dlllablgl.so \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/lablGL/dlllablglut.so \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/lablGL/dlltogl.so .include diff --git a/graphics/ocaml-lablgl/pkg-plist b/graphics/ocaml-lablgl/pkg-plist index 6334fb4e8db3..ab121d1c4262 100644 --- a/graphics/ocaml-lablgl/pkg-plist +++ b/graphics/ocaml-lablgl/pkg-plist @@ -1,133 +1,133 @@ bin/lablgl bin/lablglut -lib/ocaml/lablGL/build.ml -lib/ocaml/lablGL/gl.cmi -lib/ocaml/lablGL/gl.cmx -lib/ocaml/lablGL/gl.ml -lib/ocaml/lablGL/gl.mli -lib/ocaml/lablGL/glArray.cmi -lib/ocaml/lablGL/glArray.cmx -lib/ocaml/lablGL/glArray.ml -lib/ocaml/lablGL/glArray.mli -lib/ocaml/lablGL/glClear.cmi -lib/ocaml/lablGL/glClear.cmx -lib/ocaml/lablGL/glClear.ml -lib/ocaml/lablGL/glClear.mli -lib/ocaml/lablGL/glDraw.cmi -lib/ocaml/lablGL/glDraw.cmx -lib/ocaml/lablGL/glDraw.ml -lib/ocaml/lablGL/glDraw.mli -lib/ocaml/lablGL/glFunc.cmi -lib/ocaml/lablGL/glFunc.cmx -lib/ocaml/lablGL/glFunc.ml -lib/ocaml/lablGL/glFunc.mli -lib/ocaml/lablGL/glLight.cmi -lib/ocaml/lablGL/glLight.cmx -lib/ocaml/lablGL/glLight.ml -lib/ocaml/lablGL/glLight.mli -lib/ocaml/lablGL/glList.cmi -lib/ocaml/lablGL/glList.cmx -lib/ocaml/lablGL/glList.ml -lib/ocaml/lablGL/glList.mli -lib/ocaml/lablGL/glMap.cmi -lib/ocaml/lablGL/glMap.cmx -lib/ocaml/lablGL/glMap.ml -lib/ocaml/lablGL/glMap.mli -lib/ocaml/lablGL/glMat.cmi -lib/ocaml/lablGL/glMat.cmx -lib/ocaml/lablGL/glMat.ml -lib/ocaml/lablGL/glMat.mli -lib/ocaml/lablGL/glMisc.cmi -lib/ocaml/lablGL/glMisc.cmx -lib/ocaml/lablGL/glMisc.ml -lib/ocaml/lablGL/glMisc.mli -lib/ocaml/lablGL/glPix.cmi -lib/ocaml/lablGL/glPix.cmx -lib/ocaml/lablGL/glPix.ml -lib/ocaml/lablGL/glPix.mli -lib/ocaml/lablGL/glShader.cmi -lib/ocaml/lablGL/glShader.cmx -lib/ocaml/lablGL/glShader.ml -lib/ocaml/lablGL/glShader.mli -lib/ocaml/lablGL/glTex.cmi -lib/ocaml/lablGL/glTex.cmx -lib/ocaml/lablGL/glTex.ml -lib/ocaml/lablGL/glTex.mli -lib/ocaml/lablGL/gluMat.cmi -lib/ocaml/lablGL/gluMat.cmx -lib/ocaml/lablGL/gluMat.ml -lib/ocaml/lablGL/gluMat.mli -lib/ocaml/lablGL/gluMisc.cmi -lib/ocaml/lablGL/gluMisc.cmx -lib/ocaml/lablGL/gluMisc.ml -lib/ocaml/lablGL/gluMisc.mli -lib/ocaml/lablGL/gluNurbs.cmi -lib/ocaml/lablGL/gluNurbs.cmx -lib/ocaml/lablGL/gluNurbs.ml -lib/ocaml/lablGL/gluNurbs.mli -lib/ocaml/lablGL/gluQuadric.cmi -lib/ocaml/lablGL/gluQuadric.cmx -lib/ocaml/lablGL/gluQuadric.ml -lib/ocaml/lablGL/gluQuadric.mli -lib/ocaml/lablGL/gluTess.cmi -lib/ocaml/lablGL/gluTess.cmx -lib/ocaml/lablGL/gluTess.ml -lib/ocaml/lablGL/gluTess.mli -lib/ocaml/lablGL/glut.cmi -lib/ocaml/lablGL/glut.cmx -lib/ocaml/lablGL/glut.ml -lib/ocaml/lablGL/glut.mli -lib/ocaml/lablGL/lablgl.a -lib/ocaml/lablGL/lablgl.cma -lib/ocaml/lablGL/lablgl.cmxa -lib/ocaml/lablGL/lablglut.a -lib/ocaml/lablGL/lablglut.cma -lib/ocaml/lablGL/lablglut.cmxa -lib/ocaml/lablGL/liblablgl.a -lib/ocaml/lablGL/liblablglut.a -lib/ocaml/lablGL/libtogl.a -lib/ocaml/lablGL/raw.cmi -lib/ocaml/lablGL/raw.cmx -lib/ocaml/lablGL/raw.ml -lib/ocaml/lablGL/raw.mli -lib/ocaml/lablGL/togl.a -lib/ocaml/lablGL/togl.cma -lib/ocaml/lablGL/togl.cmi -lib/ocaml/lablGL/togl.cmx -lib/ocaml/lablGL/togl.cmxa -lib/ocaml/lablGL/togl.ml -lib/ocaml/lablGL/togl.mli -lib/ocaml/stublibs/dlllablgl.so -lib/ocaml/stublibs/dlllablglut.so -lib/ocaml/stublibs/dlltogl.so +%%OCAML_SITELIBDIR%%/lablGL/build.ml +%%OCAML_SITELIBDIR%%/lablGL/dlllablgl.so +%%OCAML_SITELIBDIR%%/lablGL/dlllablglut.so +%%OCAML_SITELIBDIR%%/lablGL/dlltogl.so +%%OCAML_SITELIBDIR%%/lablGL/gl.cmi +%%OCAML_SITELIBDIR%%/lablGL/gl.cmx +%%OCAML_SITELIBDIR%%/lablGL/gl.ml +%%OCAML_SITELIBDIR%%/lablGL/gl.mli +%%OCAML_SITELIBDIR%%/lablGL/glArray.cmi +%%OCAML_SITELIBDIR%%/lablGL/glArray.cmx +%%OCAML_SITELIBDIR%%/lablGL/glArray.ml +%%OCAML_SITELIBDIR%%/lablGL/glArray.mli +%%OCAML_SITELIBDIR%%/lablGL/glClear.cmi +%%OCAML_SITELIBDIR%%/lablGL/glClear.cmx +%%OCAML_SITELIBDIR%%/lablGL/glClear.ml +%%OCAML_SITELIBDIR%%/lablGL/glClear.mli +%%OCAML_SITELIBDIR%%/lablGL/glDraw.cmi +%%OCAML_SITELIBDIR%%/lablGL/glDraw.cmx +%%OCAML_SITELIBDIR%%/lablGL/glDraw.ml +%%OCAML_SITELIBDIR%%/lablGL/glDraw.mli +%%OCAML_SITELIBDIR%%/lablGL/glFunc.cmi +%%OCAML_SITELIBDIR%%/lablGL/glFunc.cmx +%%OCAML_SITELIBDIR%%/lablGL/glFunc.ml +%%OCAML_SITELIBDIR%%/lablGL/glFunc.mli +%%OCAML_SITELIBDIR%%/lablGL/glLight.cmi +%%OCAML_SITELIBDIR%%/lablGL/glLight.cmx +%%OCAML_SITELIBDIR%%/lablGL/glLight.ml +%%OCAML_SITELIBDIR%%/lablGL/glLight.mli +%%OCAML_SITELIBDIR%%/lablGL/glList.cmi +%%OCAML_SITELIBDIR%%/lablGL/glList.cmx +%%OCAML_SITELIBDIR%%/lablGL/glList.ml +%%OCAML_SITELIBDIR%%/lablGL/glList.mli +%%OCAML_SITELIBDIR%%/lablGL/glMap.cmi +%%OCAML_SITELIBDIR%%/lablGL/glMap.cmx +%%OCAML_SITELIBDIR%%/lablGL/glMap.ml +%%OCAML_SITELIBDIR%%/lablGL/glMap.mli +%%OCAML_SITELIBDIR%%/lablGL/glMat.cmi +%%OCAML_SITELIBDIR%%/lablGL/glMat.cmx +%%OCAML_SITELIBDIR%%/lablGL/glMat.ml +%%OCAML_SITELIBDIR%%/lablGL/glMat.mli +%%OCAML_SITELIBDIR%%/lablGL/glMisc.cmi +%%OCAML_SITELIBDIR%%/lablGL/glMisc.cmx +%%OCAML_SITELIBDIR%%/lablGL/glMisc.ml +%%OCAML_SITELIBDIR%%/lablGL/glMisc.mli +%%OCAML_SITELIBDIR%%/lablGL/glPix.cmi +%%OCAML_SITELIBDIR%%/lablGL/glPix.cmx +%%OCAML_SITELIBDIR%%/lablGL/glPix.ml +%%OCAML_SITELIBDIR%%/lablGL/glPix.mli +%%OCAML_SITELIBDIR%%/lablGL/glShader.cmi +%%OCAML_SITELIBDIR%%/lablGL/glShader.cmx +%%OCAML_SITELIBDIR%%/lablGL/glShader.ml +%%OCAML_SITELIBDIR%%/lablGL/glShader.mli +%%OCAML_SITELIBDIR%%/lablGL/glTex.cmi +%%OCAML_SITELIBDIR%%/lablGL/glTex.cmx +%%OCAML_SITELIBDIR%%/lablGL/glTex.ml +%%OCAML_SITELIBDIR%%/lablGL/glTex.mli +%%OCAML_SITELIBDIR%%/lablGL/gluMat.cmi +%%OCAML_SITELIBDIR%%/lablGL/gluMat.cmx +%%OCAML_SITELIBDIR%%/lablGL/gluMat.ml +%%OCAML_SITELIBDIR%%/lablGL/gluMat.mli +%%OCAML_SITELIBDIR%%/lablGL/gluMisc.cmi +%%OCAML_SITELIBDIR%%/lablGL/gluMisc.cmx +%%OCAML_SITELIBDIR%%/lablGL/gluMisc.ml +%%OCAML_SITELIBDIR%%/lablGL/gluMisc.mli +%%OCAML_SITELIBDIR%%/lablGL/gluNurbs.cmi +%%OCAML_SITELIBDIR%%/lablGL/gluNurbs.cmx +%%OCAML_SITELIBDIR%%/lablGL/gluNurbs.ml +%%OCAML_SITELIBDIR%%/lablGL/gluNurbs.mli +%%OCAML_SITELIBDIR%%/lablGL/gluQuadric.cmi +%%OCAML_SITELIBDIR%%/lablGL/gluQuadric.cmx +%%OCAML_SITELIBDIR%%/lablGL/gluQuadric.ml +%%OCAML_SITELIBDIR%%/lablGL/gluQuadric.mli +%%OCAML_SITELIBDIR%%/lablGL/gluTess.cmi +%%OCAML_SITELIBDIR%%/lablGL/gluTess.cmx +%%OCAML_SITELIBDIR%%/lablGL/gluTess.ml +%%OCAML_SITELIBDIR%%/lablGL/gluTess.mli +%%OCAML_SITELIBDIR%%/lablGL/glut.cmi +%%OCAML_SITELIBDIR%%/lablGL/glut.cmx +%%OCAML_SITELIBDIR%%/lablGL/glut.ml +%%OCAML_SITELIBDIR%%/lablGL/glut.mli +%%OCAML_SITELIBDIR%%/lablGL/lablgl.a +%%OCAML_SITELIBDIR%%/lablGL/lablgl.cma +%%OCAML_SITELIBDIR%%/lablGL/lablgl.cmxa +%%OCAML_SITELIBDIR%%/lablGL/lablglut.a +%%OCAML_SITELIBDIR%%/lablGL/lablglut.cma +%%OCAML_SITELIBDIR%%/lablGL/lablglut.cmxa +%%OCAML_SITELIBDIR%%/lablGL/liblablgl.a +%%OCAML_SITELIBDIR%%/lablGL/liblablglut.a +%%OCAML_SITELIBDIR%%/lablGL/libtogl.a +%%OCAML_SITELIBDIR%%/lablGL/raw.cmi +%%OCAML_SITELIBDIR%%/lablGL/raw.cmx +%%OCAML_SITELIBDIR%%/lablGL/raw.ml +%%OCAML_SITELIBDIR%%/lablGL/raw.mli +%%OCAML_SITELIBDIR%%/lablGL/togl.a +%%OCAML_SITELIBDIR%%/lablGL/togl.cma +%%OCAML_SITELIBDIR%%/lablGL/togl.cmi +%%OCAML_SITELIBDIR%%/lablGL/togl.cmx +%%OCAML_SITELIBDIR%%/lablGL/togl.cmxa +%%OCAML_SITELIBDIR%%/lablGL/togl.ml +%%OCAML_SITELIBDIR%%/lablGL/togl.mli %%PORTDOCS%%%%DOCSDIR%%/README %%EXAMPLESDIR%%/lablglut/README %%EXAMPLESDIR%%/lablglut/caml-images/ChangeLog %%EXAMPLESDIR%%/lablglut/caml-images/OCamlMakefile %%EXAMPLESDIR%%/lablglut/caml-images/main.ml %%EXAMPLESDIR%%/lablglut/caml-images/ppm.ppm %%EXAMPLESDIR%%/lablglut/lablGL/README %%EXAMPLESDIR%%/lablglut/lablGL/checker.ml %%EXAMPLESDIR%%/lablglut/lablGL/gears.ml %%EXAMPLESDIR%%/lablglut/lablGL/morph3d.ml %%EXAMPLESDIR%%/lablglut/lablGL/planet.ml %%EXAMPLESDIR%%/lablglut/lablGL/scene.ml %%EXAMPLESDIR%%/lablglut/lablGL/simple.ml %%EXAMPLESDIR%%/lablglut/lablGL/test_glsl.ml %%EXAMPLESDIR%%/lablglut/lablGL/texturesurf.ml %%EXAMPLESDIR%%/lablglut/nehe/lesson2.ml %%EXAMPLESDIR%%/lablglut/nehe/lesson3.ml %%EXAMPLESDIR%%/lablglut/nehe/lesson4.ml %%EXAMPLESDIR%%/lablglut/nehe/lesson5.ml %%EXAMPLESDIR%%/togl/README %%EXAMPLESDIR%%/togl/checker.ml %%EXAMPLESDIR%%/togl/double.ml %%EXAMPLESDIR%%/togl/gears.ml %%EXAMPLESDIR%%/togl/gears_a.ml %%EXAMPLESDIR%%/togl/morph3d.ml %%EXAMPLESDIR%%/togl/planet.ml %%EXAMPLESDIR%%/togl/scene.ml %%EXAMPLESDIR%%/togl/simple.ml %%EXAMPLESDIR%%/togl/tennis.ml %%EXAMPLESDIR%%/togl/tesselate.ml %%EXAMPLESDIR%%/togl/texturesurf.ml diff --git a/lang/ocaml/Makefile b/lang/ocaml/Makefile index 9ced7c1cccbc..72c02c607a64 100644 --- a/lang/ocaml/Makefile +++ b/lang/ocaml/Makefile @@ -1,123 +1,63 @@ # for committer: bump PORTREVISION for math/facile whenever ocaml gets updated PORTNAME= ocaml -PORTVERSION= 4.08.1 -PORTREVISION= 2 +PORTVERSION= 4.14.1 CATEGORIES= lang -MASTER_SITES= http://caml.inria.fr/pub/distrib/${DISTNAME:R}/ GENTOO \ +MASTER_SITES= http://caml.inria.fr/pub/distrib/${DISTNAME:R}/ \ + GENTOO \ http://caml.inria.fr/pub/distrib/${DISTNAME:R}/:docs DISTFILES= ${DISTNAME}${EXTRACT_SUFX} EXTRACT_ONLY= ${_DISTFILES:M*.tar.*} PKGNAMESUFFIX= ${SFX} MAINTAINER= michipili@gmail.com COMMENT= Objective Caml compiler and programming environment WWW= https://ocaml.org/ -LICENSE= QPL10 LGPL20 -LICENSE_COMB= multi -LICENSE_NAME_QPL10= Q Public License, Version 1.0 -LICENSE_FILE_QPL10= ${WRKSRC}/LICENSE -LICENSE_PERMS_QPL10= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +LICENSE= LGPL21 -BROKEN_riscv64= fails to build: hasgot.c:3:12: use of undeclared identifier 'secure_getenv' -BROKEN_mips64= No ASM support -BROKEN_mips= No ASM support +BROKEN_riscv64= fails to build: hasgot.c:3:12: use of undeclared identifier 'secure_getenv' -BUILD_DEPENDS= as:devel/binutils -RUN_DEPENDS= as:devel/binutils +RUN_DEPENDS= ${RUN_DEPENDS_${ARCH}} +RUN_DEPENDS_armv7= as:devel/binutils -USES= cpe compiler:c11 gmake shebangfix tar:xz -USE_LDCONFIG= yes +USES= compiler:c11 cpe gmake tar:xz +ARCH!= uname -p +.if ${ARCH} == armv6 || ${ARCH} == armv7 +USE_BINUTILS= yes +.endif CPE_VENDOR= inria +USE_LDCONFIG= yes GNU_CONFIGURE= yes -GNU_CONFIGURE_MANPREFIX=${PREFIX}/share +CONFIGURE_ARGS= --disable-force-safe-string \ + --enable-ocamltest +GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share + ALL_TARGET= world.opt -STRIP= +TEST_TARGET= tests +LDFLAGS_armv7= -Wl,-z,notext +LDFLAGS_i386= -Wl,-z,notext +LDFLAGS_powerpc= -Wl,-z,notext PIE_UNSAFE= yes SSP_UNSAFE= yes -LDFLAGS_armv6= -Wl,-znotext -LDFLAGS_armv7= -Wl,-znotext -LDFLAGS_i386= -Wl,-znotext -SHEBANG_LANG= awk -awk_OLD_CMD= /bin/awk -awk_CMD= /usr/bin/awk -SHEBANG_FILES= tools/ocaml-instr-graph tools/ocaml-instr-report +CONFLICTS= metaocaml ocaml-nox11 +STRIP= -CONFIGURE_ARGS= --prefix="${PREFIX}" -CONFIGURE_ENV= LDFLAGS="${LDFLAGS}" \ - ASPP="${CC} -c" \ - PARTIALLD="${LD} -r" +PORTDOCS= ${DISTNAME:R}-refman.pdf htmlman -OPTIONS_DEFINE= X11 THREADS DOCS EXAMPLES -OPTIONS_DEFAULT=X11 THREADS +OPTIONS_DEFINE= DOCS EXAMPLES MANPAGES THREADS +OPTIONS_DEFAULT= MANPAGES THREADS OPTIONS_SUB= yes +DOCS_DISTFILES= ${DISTNAME:R}-refman-html.tar.gz:docs \ + ${DISTNAME:R}-refman.pdf:docs THREADS_CONFIGURE_ENABLE= systhreads -X11_USES= xorg -X11_CONFLICTS= ocaml-nox11 -X11_CONFLICTS_OFF= ocaml -X11_USE= XORG=x11 -X11_CONFIGURE_WITH= x -X11_CONFIGURE_ON= --x-includes="${LOCALBASE}/include" \ - --x-libraries="${LOCALBASE}/lib" - -CONFLICTS= metaocaml - -PORTDOCS= htmlman ${DISTNAME:R}-refman.pdf - -DOCS_DISTFILES= ${DISTNAME:R}-refman-html.tar.gz:docs \ - ${DISTNAME:R}-refman.pdf:docs - -.include - -.if ${ARCH} == aarch64 -PLIST_SUB+= RAWSPACETIMELIB=" " -.else -PLIST_SUB+= RAWSPACETIMELIB="@comment " -.endif - -.if ${ARCH} == armv6 || ${ARCH} == armv7 -CONFIGURE_ENV+= AS="${AS} ${ASFLAGS} -meabi=5" \ - CC="${CC}" -.elif ${ARCH} == powerpc || ${ARCH} == powerpc64 || ${ARCH} == powerpc64le -CONFIGURE_ENV+= CC="${CC} -fuse-ld=bfd" -.else -CONFIGURE_ENV+= AS="${AS} ${ASFLAGS}" \ - CC="${CC}" -.endif - -.if defined(NO_PROFILE) -PLIST_SUB+= PROF="@comment " -.else -PLIST_SUB+= PROF="" -.endif - -post-patch: - @${REINPLACE_CMD} \ - -e '\|MKLIB=|s|ar rc|${AR} rc|' \ - -e '\|RANLIB|s|ranlib|${RANLIB}|' \ - -e '\|^ldflags=|s|""|"${LDFLAGS}"|' \ - ${WRKSRC}/configure - -check-test: do-install - @cd ${WRKSRC}/testsuite; ${RM} _log; for d in tests/* ; do \ - ${SETENVI} ${WRK_ENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} one \ - DIR=$${d} 2>&1 | tee -a _log || ${TRUE} ; done ; \ - ${SETENVI} ${WRK_ENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} report - -post-install: -.if ${PORT_OPTIONS:MDOCS} +post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKDIR} && ${COPYTREE_SHARE} htmlman ${STAGEDIR}${DOCSDIR}) ${INSTALL_DATA} ${_DISTDIR}${DISTNAME:R}-refman.pdf ${STAGEDIR}${DOCSDIR} -.endif -# Spacetime profiling is only available for native code on 64-bit targets -.if ${ARCH} == armv6 || ${ARCH} == armv7 || ${ARCH} == i386 || ${ARCH} == powerpc - @${REINPLACE_CMD} -e '/raw_spacetime_lib/d' ${TMPPLIST} -.endif -.include +.include diff --git a/lang/ocaml/distinfo b/lang/ocaml/distinfo index d4fc1a4d65cf..25ed65bd973d 100644 --- a/lang/ocaml/distinfo +++ b/lang/ocaml/distinfo @@ -1,7 +1,7 @@ -TIMESTAMP = 1681369878 -SHA256 (ocaml-4.08.1.tar.xz) = cd4f180453ffd7cc6028bb18954b3d7c3f715af13157df2f7c68bdfa07655ea3 -SIZE (ocaml-4.08.1.tar.xz) = 3382960 -SHA256 (ocaml-4.08-refman-html.tar.gz) = 7e27bfb9e45b1618ab7c8461cb6c6244b006125593475c87ba49dd09746b5e77 -SIZE (ocaml-4.08-refman-html.tar.gz) = 1704609 -SHA256 (ocaml-4.08-refman.pdf) = 805f5128a99a180be0e2f11c28ddbd92af3cf48965669f67407353750e272a68 -SIZE (ocaml-4.08-refman.pdf) = 2161226 +TIMESTAMP = 1706795905 +SHA256 (ocaml-4.14.1.tar.xz) = c127974d0242576cf47061b20aa9c86d17be0d6aa9687f6ec9835de67be7bb6f +SIZE (ocaml-4.14.1.tar.xz) = 3803356 +SHA256 (ocaml-4.14-refman-html.tar.gz) = f9d20b8f3c573bbf7bfc99155731472b91b9bf084e9dd2b5539d2ae473406ca7 +SIZE (ocaml-4.14-refman-html.tar.gz) = 1982462 +SHA256 (ocaml-4.14-refman.pdf) = d1b61c3faab3d3ff2a2780ec98e5b7904d9c10b12798527e593cbab1821ddac6 +SIZE (ocaml-4.14-refman.pdf) = 2658634 diff --git a/lang/ocaml/files/patch-asmcomp_power_arch.ml b/lang/ocaml/files/patch-asmcomp_power_arch.ml index 47d5a54f4a11..5ac77d6bfa11 100644 --- a/lang/ocaml/files/patch-asmcomp_power_arch.ml +++ b/lang/ocaml/files/patch-asmcomp_power_arch.ml @@ -1,11 +1,11 @@ ---- asmcomp/power/arch.ml.orig 2019-12-02 10:44:34 UTC +--- asmcomp/power/arch.ml.orig 2024-02-01 14:00:12 UTC +++ asmcomp/power/arch.ml -@@ -28,7 +28,7 @@ type abi = ELF32 | ELF64v1 | ELF64v2 +@@ -28,7 +28,7 @@ let abi = let abi = match Config.model with | "ppc" -> ELF32 - | "ppc64" -> ELF64v1 + | "ppc64" -> ELF64v2 | "ppc64le" -> ELF64v2 | _ -> assert false diff --git a/lang/ocaml/files/patch-configure b/lang/ocaml/files/patch-configure index c3e62de2bf07..5f1b980257d6 100644 --- a/lang/ocaml/files/patch-configure +++ b/lang/ocaml/files/patch-configure @@ -1,116 +1,37 @@ ---- configure.orig 2019-08-05 17:32:44 UTC +--- configure.orig 2022-12-20 12:26:44 UTC +++ configure -@@ -9857,7 +9857,7 @@ fi - - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | dragonfly*) -- archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' -+ archive_cmds='$CC -shared $pic_flag -o $lib $LDFLAGS $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - hardcode_shlibpath_var=no -@@ -13342,7 +13342,7 @@ esac ;; #( - *-*-linux*|*-*-freebsd[3-9]*|*-*-freebsd[1-9][0-9]*\ - |*-*-openbsd*|*-*-netbsd*|*-*-dragonfly*|*-*-gnu*|*-*-haiku*) : - sharedlib_cflags="-fPIC" -- mksharedlib="$CC -shared" -+ mksharedlib="$CC -shared $LDFLAGS" - oc_ldflags="$oc_ldflags -Wl,-E" - rpath="-Wl,-rpath," - mksharedlibrpath="-Wl,-rpath," -@@ -13385,6 +13385,8 @@ fi ;; #( +@@ -14169,10 +14169,14 @@ if test x"$supports_shared_libraries" = 'xtrue'; then natdynlink=true ;; #( - powerpc*-*-linux*) : + x86_64-*-dragonfly*) : natdynlink=true ;; #( -+ powerpc*-*-freebsd*) : -+ natdynlink=true ;; #( - i686-*-kfreebsd*) : - natdynlink=true ;; #( - x86_64-*-kfreebsd*) : -@@ -13395,6 +13397,8 @@ fi ;; #( - natdynlink=true ;; #( - x86_64-*-freebsd*) : +- i[3456]86-*-freebsd*) : ++ aarch64-*-freebsd*) : natdynlink=true ;; #( +- x86_64-*-freebsd*) : + amd64-*-freebsd*) : + natdynlink=true ;; #( ++ armv7-*-freebsd*) : ++ natdynlink=true ;; #( ++ i[3456]86-*-freebsd*) : + natdynlink=true ;; #( i[3456]86-*-openbsd*) : natdynlink=true ;; #( x86_64-*-openbsd*) : -@@ -13415,6 +13419,8 @@ fi ;; #( - natdynlink=true ;; #( - aarch64-*-linux*) : - natdynlink=true ;; #( -+ aarch64-*-freebsd*) : -+ natdynlink=true ;; #( - *) : - ;; - esac -@@ -13488,6 +13494,14 @@ fi; system=elf ;; #( - else - model=ppc - fi; system=elf ;; #( -+ powerpc64le*-*-freebsd*) : -+ arch=power; model=ppc64le; system=freebsd;; #( -+ powerpc*-*-freebsd*) : -+ arch=power; if $arch64; then : -+ model=ppc64 -+else -+ model=ppc -+fi; system=freebsd ;; #( - powerpc-*-netbsd*) : - arch=power; model=ppc; system=netbsd ;; #( - powerpc-*-openbsd*) : -@@ -13510,6 +13524,8 @@ fi; system=elf ;; #( +@@ -14338,6 +14342,8 @@ fi; system=elf ;; #( arch=arm; model=armv6; system=linux_eabi ;; #( armv6*-*-freebsd*) : arch=arm; model=armv6; system=freebsd ;; #( + armv7*-*-freebsd*) : + arch=arm; model=armv7; system=freebsd ;; #( earmv6*-*-netbsd*) : arch=arm; model=armv6; system=netbsd ;; #( earmv7*-*-netbsd*) : -@@ -13534,6 +13550,8 @@ fi; system=elf ;; #( +@@ -14362,7 +14368,7 @@ fi; system=elf ;; #( arch=amd64; system=dragonfly ;; #( - x86_64-*-freebsd*) : - arch=amd64; system=freebsd ;; #( + x86_64-*-solaris*) : + arch=amd64; system=solaris ;; #( +- x86_64-*-freebsd*) : + amd64-*-freebsd*) : -+ arch=amd64; system=freebsd ;; #( + arch=amd64; system=freebsd ;; #( x86_64-*-netbsd*) : arch=amd64; system=netbsd ;; #( - x86_64-*-openbsd*) : -@@ -13544,6 +13562,8 @@ fi; system=elf ;; #( - arch=amd64; system=mingw64 ;; #( - aarch64-*-linux*) : - arch=arm64; system=linux ;; #( -+ aarch64-*-freebsd*) : -+ arch=arm64; system=freebsd ;; #( - x86_64-*-cygwin*) : - arch=amd64; system=cygwin - ;; #( -@@ -13714,6 +13734,8 @@ case "$arch,$system" in #( - profiling=true ;; #( - amd64,openbsd) : - profiling=true ;; #( -+ amd64,dragonfly) : -+ profiling=true ;; #( - amd64,freebsd) : - profiling=true ;; #( - amd64,netbsd) : -@@ -13722,11 +13744,17 @@ case "$arch,$system" in #( - profiling=true ;; #( - amd64,gnu) : - profiling=true ;; #( -+ arm64,freebsd) : -+ profiling=true ;; #( -+ arm,freebsd) : -+ profiling=true ;; #( - arm,linux*) : - profiling=true ;; #( - power,elf) : - profiling=true ;; #( - power,bsd*) : -+ profiling=true ;; #( -+ power,freebsd) : - profiling=true ;; #( - power,netbsd) : - profiling=true ;; #( diff --git a/lang/ocaml/files/patch-runtime_amd64.S b/lang/ocaml/files/patch-runtime_amd64.S deleted file mode 100644 index 2d7da5f47cea..000000000000 --- a/lang/ocaml/files/patch-runtime_amd64.S +++ /dev/null @@ -1,11 +0,0 @@ ---- runtime/amd64.S.orig 2019-08-05 17:32:44 UTC -+++ runtime/amd64.S -@@ -724,7 +724,7 @@ G(caml_system__spacetime_shapes): - #elif defined(SYS_mingw64) || defined(SYS_cygwin) - .section .rdata,"dr" - #else -- .section .rodata.cst8,"a",@progbits -+ .section .rodata.cst8,"aM",@progbits,8 - #endif - .globl G(caml_negf_mask) - .align SIXTEEN_ALIGN diff --git a/lang/ocaml/files/patch-runtime_backtrace.c b/lang/ocaml/files/patch-runtime_backtrace.c deleted file mode 100644 index 6f76ad108013..000000000000 --- a/lang/ocaml/files/patch-runtime_backtrace.c +++ /dev/null @@ -1,12 +0,0 @@ ---- runtime/backtrace.c.orig 2019-08-05 17:32:44 UTC -+++ runtime/backtrace.c -@@ -27,9 +27,6 @@ - #include "caml/backtrace_prim.h" - #include "caml/fail.h" - --/* The table of debug information fragments */ --struct ext_table caml_debug_info; -- - CAMLexport int32_t caml_backtrace_active = 0; - CAMLexport int32_t caml_backtrace_pos = 0; - CAMLexport backtrace_slot * caml_backtrace_buffer = NULL; diff --git a/lang/ocaml/files/patch-runtime_power.S b/lang/ocaml/files/patch-runtime_power.S index 0155af6a4e1c..6822b07d6a9b 100644 --- a/lang/ocaml/files/patch-runtime_power.S +++ b/lang/ocaml/files/patch-runtime_power.S @@ -1,149 +1,153 @@ ---- runtime/power.S.orig 2019-08-05 17:32:44 UTC +--- runtime/power.S.orig 2024-02-05 15:40:20 UTC +++ runtime/power.S -@@ -13,11 +13,11 @@ +@@ -13,7 +13,7 @@ /* */ /**************************************************************************/ -#if defined(MODEL_ppc64le) +#if _CALL_ELF == 2 .abiversion 2 #endif +@@ -27,7 +27,7 @@ + #define DOMAIN_STATE_PTR 30 + #define ALLOC_PTR 31 + -#if defined(MODEL_ppc64) || defined(MODEL_ppc64le) +#if _CALL_ELF == 1 || _CALL_ELF == 2 #define EITHER(a,b) b #else #define EITHER(a,b) a -@@ -42,7 +42,7 @@ +@@ -52,7 +52,7 @@ #define CALLBACK_LINK_SIZE 16 #define CALLBACK_LINK_OFFSET 0 #endif -#if defined(MODEL_ppc64) +#if _CALL_ELF == 1 #define RESERVED_STACK 48 #define PARAM_SAVE_AREA (8*8) #define LR_SAVE 16 -@@ -54,7 +54,7 @@ +@@ -64,7 +64,7 @@ #define CALLBACK_LINK_SIZE 32 #define CALLBACK_LINK_OFFSET 48 #endif -#if defined(MODEL_ppc64le) +#if _CALL_ELF == 2 #define RESERVED_STACK 32 #define PARAM_SAVE_AREA 0 #define LR_SAVE 16 -@@ -82,7 +82,7 @@ +@@ -92,7 +92,7 @@ #endif -#if defined(MODEL_ppc64) +#if _CALL_ELF == 1 #define FUNCTION(name) \ .section ".opd","aw"; \ .align 3; \ -@@ -98,7 +98,7 @@ +@@ -108,7 +108,7 @@ #endif -#if defined(MODEL_ppc64le) +#if _CALL_ELF == 2 #define FUNCTION(name) \ .section ".text"; \ .globl name; \ -@@ -136,7 +136,7 @@ - +@@ -133,7 +133,7 @@ + addi reg, reg, glob@l #endif -#if defined(MODEL_ppc64) || defined(MODEL_ppc64le) +#if _CALL_ELF == 1 || _CALL_ELF == 2 #define LSYMB(glob) .L##glob -@@ -157,7 +157,7 @@ +@@ -150,7 +150,7 @@ - #endif + #define Caml_state(var) 8*domain_field_caml_##var(DOMAIN_STATE_PTR) -#if defined(MODEL_ppc64) +#if _CALL_ELF == 1 .section ".opd","aw" #else .section ".text" -@@ -244,7 +244,7 @@ FUNCTION(caml_call_gc) +@@ -237,7 +237,7 @@ FUNCTION(caml_call_gc) stfdu 31, 8(11) /* Call the GC */ bl caml_garbage_collection -#if defined(MODEL_ppc64) || defined(MODEL_ppc64le) +#if _CALL_ELF == 1 || _CALL_ELF == 2 nop #endif - /* Reload new allocation pointer and allocation limit */ -@@ -338,14 +338,14 @@ FUNCTION(caml_c_call) + /* Reload new allocation pointer */ +@@ -329,14 +329,14 @@ FUNCTION(caml_c_call) #if defined(MODEL_ppc) - mtctr 28 + mtctr C_CALL_FUN bctrl -#elif defined(MODEL_ppc64) +#elif _CALL_ELF == 1 - ld 0, 0(28) - mr 26, 2 /* save current TOC in a callee-save register */ + ld 0, 0(C_CALL_FUN) + mr C_CALL_TOC, 2 /* save current TOC in a callee-save register */ mtctr 0 - ld 2, 8(28) + ld 2, 8(C_CALL_FUN) bctrl - mr 2, 26 /* restore current TOC */ + mr 2, C_CALL_TOC /* restore current TOC */ -#elif defined(MODEL_ppc64le) +#elif _CALL_ELF == 2 - mtctr 28 - mr 12, 28 - mr 26, 2 /* save current TOC in a callee-save register */ -@@ -388,7 +388,7 @@ FUNCTION(caml_raise_exn) + mtctr C_CALL_FUN + mr 12, C_CALL_FUN + mr C_CALL_TOC, 2 /* save current TOC in a callee-save register */ +@@ -378,7 +378,7 @@ FUNCTION(caml_raise_exn) addi 1, 1, -(PARAM_SAVE_AREA + RESERVED_STACK) /* reserve stack space for C call */ bl caml_stash_backtrace -#if defined(MODEL_ppc64) || defined(MODEL_ppc64le) +#if _CALL_ELF == 1 || _CALL_ELF == 2 nop #endif - mr 3, 28 /* restore exn bucket */ -@@ -424,7 +424,7 @@ FUNCTION(caml_raise_exception) + mr 3, 27 /* restore exn bucket */ +@@ -414,7 +414,7 @@ FUNCTION(caml_raise_exception) addi 1, 1, -(PARAM_SAVE_AREA + RESERVED_STACK) /* reserve stack space for C call */ bl caml_stash_backtrace -#if defined(MODEL_ppc64) || defined(MODEL_ppc64le) +#if _CALL_ELF == 1 || _CALL_ELF == 2 nop #endif - mr 3, 28 /* restore exn bucket */ -@@ -514,14 +514,14 @@ FUNCTION(caml_start_program) + mr 3, 27 /* restore exn bucket */ +@@ -507,14 +507,14 @@ FUNCTION(caml_start_program) #if defined(MODEL_ppc) mtctr 12 .L105: bctrl -#elif defined(MODEL_ppc64) +#elif _CALL_ELF == 1 ld 0, 0(12) mtctr 0 std 2, TOC_SAVE(1) ld 2, 8(12) .L105: bctrl ld 2, TOC_SAVE(1) -#elif defined(MODEL_ppc64le) +#elif _CALL_ELF == 2 mtctr 12 std 2, TOC_SAVE(1) .L105: bctrl -@@ -634,7 +634,7 @@ ENDFUNCTION(caml_callback3_exn) +@@ -633,7 +633,7 @@ ENDFUNCTION(caml_callback3_asm) b .L102 - ENDFUNCTION(caml_callback3_exn) + ENDFUNCTION(caml_callback3_asm) -#if defined(MODEL_ppc64) +#if _CALL_ELF == 1 .section ".opd","aw" #else .section ".text" -@@ -656,7 +656,7 @@ caml_system__frametable: +@@ -655,7 +655,7 @@ caml_system__frametable: /* TOC entries */ -#if defined(MODEL_ppc64) || defined(MODEL_ppc64le) +#if _CALL_ELF == 1 || _CALL_ELF == 2 .section ".toc", "aw" diff --git a/lang/ocaml/files/patch-runtime_startup__nat.c b/lang/ocaml/files/patch-runtime_startup__nat.c deleted file mode 100644 index eef3606be79c..000000000000 --- a/lang/ocaml/files/patch-runtime_startup__nat.c +++ /dev/null @@ -1,10 +0,0 @@ ---- runtime/startup_nat.c.orig 2019-08-05 17:32:44 UTC -+++ runtime/startup_nat.c -@@ -44,7 +44,6 @@ extern int caml_parser_trace; - #endif - - extern int caml_parser_trace; --CAMLexport header_t caml_atom_table[256]; - char * caml_code_area_start, * caml_code_area_end; - struct ext_table caml_code_fragments_table; - diff --git a/lang/ocaml/files/patch-testsuite_tools_asmgen__power.S b/lang/ocaml/files/patch-testsuite_tools_asmgen__power.S index fc23f1a1bd61..a1eaf3301627 100644 --- a/lang/ocaml/files/patch-testsuite_tools_asmgen__power.S +++ b/lang/ocaml/files/patch-testsuite_tools_asmgen__power.S @@ -1,62 +1,71 @@ ---- testsuite/tools/asmgen_power.S.orig 2019-08-05 17:32:44 UTC +--- testsuite/tools/asmgen_power.S.orig 2022-12-20 12:26:44 UTC +++ testsuite/tools/asmgen_power.S +@@ -10,7 +10,7 @@ + /* */ + /*********************************************************************/ + +-#if defined(MODEL_ppc64) || defined(MODEL_ppc64le) ++#if _CALL_ELF == 1 || _CALL_ELF == 2 + #define EITHER(a,b) b + #else + #define EITHER(a,b) a @@ -26,11 +26,11 @@ #define RESERVED_STACK 16 #define LR_SAVE_AREA 4 #endif -#if defined(MODEL_ppc64) +#if _CALL_ELF == 1 #define RESERVED_STACK 48 #define LR_SAVE_AREA 16 #endif -#if defined(MODEL_ppc64le) +#if _CALL_ELF == 2 #define RESERVED_STACK 32 #define LR_SAVE_AREA 16 #endif @@ -46,7 +46,7 @@ name: #endif -#if defined(MODEL_ppc64) +#if _CALL_ELF == 1 #define FUNCTION(name) \ .section ".opd","aw"; \ .align 3; \ @@ -58,7 +58,7 @@ .L.name: #endif -#if defined(MODEL_ppc64le) +#if _CALL_ELF == 2 #define FUNCTION(name) \ .section ".text"; \ .globl name; \ @@ -118,11 +118,11 @@ FUNCTION(call_gen_code) /* Get function pointer in CTR */ #if defined(MODEL_ppc) mtctr 3 -#elif defined(MODEL_ppc64) +#elif _CALL_ELF == 1 ld 0, 0(3) mtctr 0 ld 2, 8(3) -#elif defined(MODEL_ppc64le) +#elif _CALL_ELF == 2 mtctr 3 mr 12, 3 #else @@ -184,11 +184,11 @@ FUNCTION(caml_c_call) /* Jump to C function (address in r28) */ #if defined(MODEL_ppc) mtctr 28 -#elif defined(MODEL_ppc64) +#elif _CALL_ELF == 1 ld 0, 0(28) mtctr 0 ld 2, 8(28) -#elif defined(MODEL_ppc64le) +#elif _CALL_ELF == 2 mtctr 28 mr 12, 28 #else diff --git a/lang/ocaml/pkg-plist b/lang/ocaml/pkg-plist index 8c365340890f..6fece2e62be6 100644 --- a/lang/ocaml/pkg-plist +++ b/lang/ocaml/pkg-plist @@ -1,2397 +1,2420 @@ bin/ocaml -bin/ocaml-instr-graph -bin/ocaml-instr-report bin/ocamlc bin/ocamlc.byte bin/ocamlc.opt bin/ocamlcmt bin/ocamlcp bin/ocamlcp.byte bin/ocamlcp.opt bin/ocamldebug bin/ocamldep bin/ocamldep.byte bin/ocamldep.opt bin/ocamldoc bin/ocamldoc.opt bin/ocamllex bin/ocamllex.byte bin/ocamllex.opt bin/ocamlmklib bin/ocamlmklib.byte bin/ocamlmklib.opt bin/ocamlmktop bin/ocamlmktop.byte bin/ocamlmktop.opt bin/ocamlobjinfo bin/ocamlobjinfo.byte bin/ocamlobjinfo.opt bin/ocamlopt bin/ocamlopt.byte bin/ocamlopt.opt bin/ocamloptp bin/ocamloptp.byte bin/ocamloptp.opt bin/ocamlprof bin/ocamlprof.byte bin/ocamlprof.opt bin/ocamlrun bin/ocamlrund bin/ocamlruni bin/ocamlyacc lib/ocaml/Makefile.config -lib/ocaml/VERSION lib/ocaml/arg.ml lib/ocaml/arg.mli lib/ocaml/array.ml lib/ocaml/array.mli lib/ocaml/arrayLabels.ml lib/ocaml/arrayLabels.mli +lib/ocaml/atomic.ml +lib/ocaml/atomic.mli lib/ocaml/bigarray.a lib/ocaml/bigarray.cma lib/ocaml/bigarray.cmi lib/ocaml/bigarray.cmti lib/ocaml/bigarray.cmx lib/ocaml/bigarray.cmxa lib/ocaml/bigarray.cmxs lib/ocaml/bigarray.ml lib/ocaml/bigarray.mli lib/ocaml/buffer.ml lib/ocaml/buffer.mli lib/ocaml/bytes.ml lib/ocaml/bytes.mli lib/ocaml/bytesLabels.ml lib/ocaml/bytesLabels.mli lib/ocaml/bool.ml lib/ocaml/bool.mli lib/ocaml/callback.ml lib/ocaml/callback.mli lib/ocaml/caml/address_class.h lib/ocaml/caml/alloc.h lib/ocaml/caml/backtrace.h lib/ocaml/caml/backtrace_prim.h lib/ocaml/caml/bigarray.h lib/ocaml/caml/callback.h +lib/ocaml/caml/codefrag.h lib/ocaml/caml/compact.h lib/ocaml/caml/compare.h lib/ocaml/caml/compatibility.h lib/ocaml/caml/config.h lib/ocaml/caml/custom.h lib/ocaml/caml/debugger.h +lib/ocaml/caml/domain.h +lib/ocaml/caml/domain_state.h +lib/ocaml/caml/domain_state.tbl lib/ocaml/caml/dynlink.h +lib/ocaml/caml/eventlog.h lib/ocaml/caml/exec.h lib/ocaml/caml/fail.h lib/ocaml/caml/finalise.h lib/ocaml/caml/fix_code.h lib/ocaml/caml/freelist.h lib/ocaml/caml/gc.h lib/ocaml/caml/gc_ctrl.h lib/ocaml/caml/globroots.h lib/ocaml/caml/hash.h lib/ocaml/caml/hooks.h lib/ocaml/caml/instrtrace.h lib/ocaml/caml/instruct.h -lib/ocaml/caml/int64_emul.h -lib/ocaml/caml/int64_format.h -lib/ocaml/caml/int64_native.h lib/ocaml/caml/interp.h lib/ocaml/caml/intext.h lib/ocaml/caml/io.h lib/ocaml/caml/jumptbl.h lib/ocaml/caml/m.h lib/ocaml/caml/major_gc.h lib/ocaml/caml/md5.h lib/ocaml/caml/memory.h +lib/ocaml/caml/memprof.h lib/ocaml/caml/minor_gc.h lib/ocaml/caml/misc.h lib/ocaml/caml/mlvalues.h lib/ocaml/caml/opnames.h lib/ocaml/caml/osdeps.h lib/ocaml/caml/prims.h lib/ocaml/caml/printexc.h lib/ocaml/caml/reverse.h lib/ocaml/caml/roots.h lib/ocaml/caml/s.h lib/ocaml/caml/signals.h lib/ocaml/caml/signals_machdep.h +lib/ocaml/caml/skiplist.h lib/ocaml/caml/socketaddr.h -lib/ocaml/caml/spacetime.h lib/ocaml/caml/stack.h lib/ocaml/caml/stacks.h lib/ocaml/caml/startup.h lib/ocaml/caml/startup_aux.h lib/ocaml/caml/sys.h %%THREADS%%lib/ocaml/caml/threads.h lib/ocaml/caml/ui.h lib/ocaml/caml/unixsupport.h lib/ocaml/caml/version.h lib/ocaml/caml/weak.h +lib/ocaml/caml/winsupport.h lib/ocaml/camlheader +lib/ocaml/camlheaderd +lib/ocaml/camlheaderi lib/ocaml/camlheader_ur +lib/ocaml/camlinternalAtomic.cmi +lib/ocaml/camlinternalAtomic.cmt +lib/ocaml/camlinternalAtomic.cmti +lib/ocaml/camlinternalAtomic.cmx +lib/ocaml/camlinternalAtomic.ml +lib/ocaml/camlinternalAtomic.mli lib/ocaml/camlinternalFormat.cmi lib/ocaml/camlinternalFormat.cmt lib/ocaml/camlinternalFormat.cmti lib/ocaml/camlinternalFormat.cmx lib/ocaml/camlinternalFormat.ml lib/ocaml/camlinternalFormat.mli -%%PROF%%lib/ocaml/camlinternalFormat.p.cmt -%%PROF%%lib/ocaml/camlinternalFormat.p.cmx lib/ocaml/camlinternalFormatBasics.cmi lib/ocaml/camlinternalFormatBasics.cmt lib/ocaml/camlinternalFormatBasics.cmti lib/ocaml/camlinternalFormatBasics.cmx lib/ocaml/camlinternalFormatBasics.ml lib/ocaml/camlinternalFormatBasics.mli -%%PROF%%lib/ocaml/camlinternalFormatBasics.p.cmt -%%PROF%%lib/ocaml/camlinternalFormatBasics.p.cmx lib/ocaml/camlinternalLazy.cmi lib/ocaml/camlinternalLazy.cmt lib/ocaml/camlinternalLazy.cmti lib/ocaml/camlinternalLazy.cmx lib/ocaml/camlinternalLazy.ml lib/ocaml/camlinternalLazy.mli -%%PROF%%lib/ocaml/camlinternalLazy.p.cmt -%%PROF%%lib/ocaml/camlinternalLazy.p.cmx lib/ocaml/camlinternalMod.cmi lib/ocaml/camlinternalMod.cmt lib/ocaml/camlinternalMod.cmti lib/ocaml/camlinternalMod.cmx lib/ocaml/camlinternalMod.ml lib/ocaml/camlinternalMod.mli -%%PROF%%lib/ocaml/camlinternalMod.p.cmt -%%PROF%%lib/ocaml/camlinternalMod.p.cmx lib/ocaml/camlinternalOO.cmi lib/ocaml/camlinternalOO.cmt lib/ocaml/camlinternalOO.cmti lib/ocaml/camlinternalOO.cmx lib/ocaml/camlinternalOO.ml lib/ocaml/camlinternalOO.mli -%%PROF%%lib/ocaml/camlinternalOO.p.cmt -%%PROF%%lib/ocaml/camlinternalOO.p.cmx lib/ocaml/char.ml lib/ocaml/char.mli lib/ocaml/compiler-libs/CSE.cmi lib/ocaml/compiler-libs/CSE.cmt lib/ocaml/compiler-libs/CSE.cmx lib/ocaml/compiler-libs/CSEgen.cmi lib/ocaml/compiler-libs/CSEgen.cmt lib/ocaml/compiler-libs/CSEgen.cmti lib/ocaml/compiler-libs/CSEgen.cmx lib/ocaml/compiler-libs/CSEgen.mli lib/ocaml/compiler-libs/afl_instrument.cmi lib/ocaml/compiler-libs/afl_instrument.cmt lib/ocaml/compiler-libs/afl_instrument.cmti lib/ocaml/compiler-libs/afl_instrument.cmx lib/ocaml/compiler-libs/afl_instrument.mli lib/ocaml/compiler-libs/alias_analysis.cmi lib/ocaml/compiler-libs/alias_analysis.cmt lib/ocaml/compiler-libs/alias_analysis.cmti lib/ocaml/compiler-libs/alias_analysis.cmx lib/ocaml/compiler-libs/alias_analysis.mli lib/ocaml/compiler-libs/allocated_const.cmi lib/ocaml/compiler-libs/allocated_const.cmt lib/ocaml/compiler-libs/allocated_const.cmti lib/ocaml/compiler-libs/allocated_const.cmx lib/ocaml/compiler-libs/allocated_const.mli lib/ocaml/compiler-libs/annot.cmi lib/ocaml/compiler-libs/annot.cmti lib/ocaml/compiler-libs/annot.mli lib/ocaml/compiler-libs/arch.cmi lib/ocaml/compiler-libs/arch.cmt lib/ocaml/compiler-libs/arch.cmx lib/ocaml/compiler-libs/arg_helper.cmi lib/ocaml/compiler-libs/arg_helper.cmt lib/ocaml/compiler-libs/arg_helper.cmti lib/ocaml/compiler-libs/arg_helper.cmx lib/ocaml/compiler-libs/arg_helper.mli lib/ocaml/compiler-libs/asmgen.cmi lib/ocaml/compiler-libs/asmgen.cmt lib/ocaml/compiler-libs/asmgen.cmti lib/ocaml/compiler-libs/asmgen.cmx lib/ocaml/compiler-libs/asmgen.mli lib/ocaml/compiler-libs/asmlibrarian.cmi lib/ocaml/compiler-libs/asmlibrarian.cmt lib/ocaml/compiler-libs/asmlibrarian.cmti lib/ocaml/compiler-libs/asmlibrarian.cmx lib/ocaml/compiler-libs/asmlibrarian.mli lib/ocaml/compiler-libs/asmlink.cmi lib/ocaml/compiler-libs/asmlink.cmt lib/ocaml/compiler-libs/asmlink.cmti lib/ocaml/compiler-libs/asmlink.cmx lib/ocaml/compiler-libs/asmlink.mli lib/ocaml/compiler-libs/asmpackager.cmi lib/ocaml/compiler-libs/asmpackager.cmt lib/ocaml/compiler-libs/asmpackager.cmti lib/ocaml/compiler-libs/asmpackager.cmx lib/ocaml/compiler-libs/asmpackager.mli lib/ocaml/compiler-libs/ast_helper.cmi lib/ocaml/compiler-libs/ast_helper.cmt lib/ocaml/compiler-libs/ast_helper.cmti lib/ocaml/compiler-libs/ast_helper.cmx lib/ocaml/compiler-libs/ast_helper.mli lib/ocaml/compiler-libs/ast_invariants.cmi lib/ocaml/compiler-libs/ast_invariants.cmt lib/ocaml/compiler-libs/ast_invariants.cmti lib/ocaml/compiler-libs/ast_invariants.cmx lib/ocaml/compiler-libs/ast_invariants.mli lib/ocaml/compiler-libs/ast_iterator.cmi lib/ocaml/compiler-libs/ast_iterator.cmt lib/ocaml/compiler-libs/ast_iterator.cmti lib/ocaml/compiler-libs/ast_iterator.cmx lib/ocaml/compiler-libs/ast_iterator.mli lib/ocaml/compiler-libs/ast_mapper.cmi lib/ocaml/compiler-libs/ast_mapper.cmt lib/ocaml/compiler-libs/ast_mapper.cmti lib/ocaml/compiler-libs/ast_mapper.cmx lib/ocaml/compiler-libs/ast_mapper.mli lib/ocaml/compiler-libs/asttypes.cmi lib/ocaml/compiler-libs/asttypes.cmti lib/ocaml/compiler-libs/asttypes.mli lib/ocaml/compiler-libs/attr_helper.cmi lib/ocaml/compiler-libs/attr_helper.cmt lib/ocaml/compiler-libs/attr_helper.cmti lib/ocaml/compiler-libs/attr_helper.cmx lib/ocaml/compiler-libs/attr_helper.mli lib/ocaml/compiler-libs/augment_specialised_args.cmi lib/ocaml/compiler-libs/augment_specialised_args.cmt lib/ocaml/compiler-libs/augment_specialised_args.cmti lib/ocaml/compiler-libs/augment_specialised_args.cmx lib/ocaml/compiler-libs/augment_specialised_args.mli lib/ocaml/compiler-libs/backend_intf.cmi lib/ocaml/compiler-libs/backend_intf.cmti lib/ocaml/compiler-libs/backend_intf.mli lib/ocaml/compiler-libs/backend_var.cmi lib/ocaml/compiler-libs/backend_var.cmt lib/ocaml/compiler-libs/backend_var.cmti lib/ocaml/compiler-libs/backend_var.cmx lib/ocaml/compiler-libs/backend_var.mli +lib/ocaml/compiler-libs/binutils.cmi +lib/ocaml/compiler-libs/binutils.cmt +lib/ocaml/compiler-libs/binutils.cmti +lib/ocaml/compiler-libs/binutils.cmx +lib/ocaml/compiler-libs/binutils.mli lib/ocaml/compiler-libs/branch_relaxation.cmi lib/ocaml/compiler-libs/branch_relaxation.cmt lib/ocaml/compiler-libs/branch_relaxation.cmti lib/ocaml/compiler-libs/branch_relaxation.cmx lib/ocaml/compiler-libs/branch_relaxation.mli lib/ocaml/compiler-libs/branch_relaxation_intf.cmi lib/ocaml/compiler-libs/branch_relaxation_intf.cmt lib/ocaml/compiler-libs/branch_relaxation_intf.cmx lib/ocaml/compiler-libs/btype.cmi lib/ocaml/compiler-libs/btype.cmt lib/ocaml/compiler-libs/btype.cmti lib/ocaml/compiler-libs/btype.cmx lib/ocaml/compiler-libs/btype.mli lib/ocaml/compiler-libs/build_export_info.cmi lib/ocaml/compiler-libs/build_export_info.cmt lib/ocaml/compiler-libs/build_export_info.cmti lib/ocaml/compiler-libs/build_export_info.cmx lib/ocaml/compiler-libs/build_export_info.mli lib/ocaml/compiler-libs/build_path_prefix_map.cmi lib/ocaml/compiler-libs/build_path_prefix_map.cmt lib/ocaml/compiler-libs/build_path_prefix_map.cmti lib/ocaml/compiler-libs/build_path_prefix_map.cmx lib/ocaml/compiler-libs/build_path_prefix_map.mli lib/ocaml/compiler-libs/builtin_attributes.cmi lib/ocaml/compiler-libs/builtin_attributes.cmt lib/ocaml/compiler-libs/builtin_attributes.cmti lib/ocaml/compiler-libs/builtin_attributes.cmx lib/ocaml/compiler-libs/builtin_attributes.mli lib/ocaml/compiler-libs/bytegen.cmi lib/ocaml/compiler-libs/bytegen.cmt lib/ocaml/compiler-libs/bytegen.cmti lib/ocaml/compiler-libs/bytegen.cmx lib/ocaml/compiler-libs/bytegen.mli lib/ocaml/compiler-libs/bytelibrarian.cmi lib/ocaml/compiler-libs/bytelibrarian.cmt lib/ocaml/compiler-libs/bytelibrarian.cmti lib/ocaml/compiler-libs/bytelibrarian.cmx lib/ocaml/compiler-libs/bytelibrarian.mli lib/ocaml/compiler-libs/bytelink.cmi lib/ocaml/compiler-libs/bytelink.cmt lib/ocaml/compiler-libs/bytelink.cmti lib/ocaml/compiler-libs/bytelink.cmx lib/ocaml/compiler-libs/bytelink.mli lib/ocaml/compiler-libs/bytepackager.cmi lib/ocaml/compiler-libs/bytepackager.cmt lib/ocaml/compiler-libs/bytepackager.cmti lib/ocaml/compiler-libs/bytepackager.cmx lib/ocaml/compiler-libs/bytepackager.mli lib/ocaml/compiler-libs/bytesections.cmi lib/ocaml/compiler-libs/bytesections.cmt lib/ocaml/compiler-libs/bytesections.cmti lib/ocaml/compiler-libs/bytesections.cmx lib/ocaml/compiler-libs/bytesections.mli lib/ocaml/compiler-libs/camlinternalMenhirLib.cmi lib/ocaml/compiler-libs/camlinternalMenhirLib.cmt lib/ocaml/compiler-libs/camlinternalMenhirLib.cmti lib/ocaml/compiler-libs/camlinternalMenhirLib.cmx lib/ocaml/compiler-libs/camlinternalMenhirLib.mli lib/ocaml/compiler-libs/ccomp.cmi lib/ocaml/compiler-libs/ccomp.cmt lib/ocaml/compiler-libs/ccomp.cmti lib/ocaml/compiler-libs/ccomp.cmx lib/ocaml/compiler-libs/ccomp.mli lib/ocaml/compiler-libs/clambda.cmi lib/ocaml/compiler-libs/clambda.cmt lib/ocaml/compiler-libs/clambda.cmti lib/ocaml/compiler-libs/clambda.cmx lib/ocaml/compiler-libs/clambda.mli +lib/ocaml/compiler-libs/clambda_primitives.cmi +lib/ocaml/compiler-libs/clambda_primitives.cmt +lib/ocaml/compiler-libs/clambda_primitives.cmti +lib/ocaml/compiler-libs/clambda_primitives.cmx +lib/ocaml/compiler-libs/clambda_primitives.mli lib/ocaml/compiler-libs/clflags.cmi lib/ocaml/compiler-libs/clflags.cmt lib/ocaml/compiler-libs/clflags.cmti lib/ocaml/compiler-libs/clflags.cmx lib/ocaml/compiler-libs/clflags.mli lib/ocaml/compiler-libs/closure.cmi lib/ocaml/compiler-libs/closure.cmt lib/ocaml/compiler-libs/closure.cmti lib/ocaml/compiler-libs/closure.cmx lib/ocaml/compiler-libs/closure.mli lib/ocaml/compiler-libs/closure_conversion.cmi lib/ocaml/compiler-libs/closure_conversion.cmt lib/ocaml/compiler-libs/closure_conversion.cmti lib/ocaml/compiler-libs/closure_conversion.cmx lib/ocaml/compiler-libs/closure_conversion.mli lib/ocaml/compiler-libs/closure_conversion_aux.cmi lib/ocaml/compiler-libs/closure_conversion_aux.cmt lib/ocaml/compiler-libs/closure_conversion_aux.cmti lib/ocaml/compiler-libs/closure_conversion_aux.cmx lib/ocaml/compiler-libs/closure_conversion_aux.mli lib/ocaml/compiler-libs/closure_element.cmi lib/ocaml/compiler-libs/closure_element.cmt lib/ocaml/compiler-libs/closure_element.cmti lib/ocaml/compiler-libs/closure_element.cmx lib/ocaml/compiler-libs/closure_element.mli lib/ocaml/compiler-libs/closure_id.cmi lib/ocaml/compiler-libs/closure_id.cmt lib/ocaml/compiler-libs/closure_id.cmti lib/ocaml/compiler-libs/closure_id.cmx lib/ocaml/compiler-libs/closure_id.mli lib/ocaml/compiler-libs/closure_offsets.cmi lib/ocaml/compiler-libs/closure_offsets.cmt lib/ocaml/compiler-libs/closure_offsets.cmti lib/ocaml/compiler-libs/closure_offsets.cmx lib/ocaml/compiler-libs/closure_offsets.mli lib/ocaml/compiler-libs/closure_origin.cmi lib/ocaml/compiler-libs/closure_origin.cmt lib/ocaml/compiler-libs/closure_origin.cmti lib/ocaml/compiler-libs/closure_origin.cmx lib/ocaml/compiler-libs/closure_origin.mli +lib/ocaml/compiler-libs/closure_middle_end.cmi +lib/ocaml/compiler-libs/closure_middle_end.cmt +lib/ocaml/compiler-libs/closure_middle_end.cmti +lib/ocaml/compiler-libs/closure_middle_end.cmx +lib/ocaml/compiler-libs/closure_middle_end.mli lib/ocaml/compiler-libs/cmi_format.cmi lib/ocaml/compiler-libs/cmi_format.cmt lib/ocaml/compiler-libs/cmi_format.cmti lib/ocaml/compiler-libs/cmi_format.cmx lib/ocaml/compiler-libs/cmi_format.mli lib/ocaml/compiler-libs/cmm.cmi lib/ocaml/compiler-libs/cmm.cmt lib/ocaml/compiler-libs/cmm.cmti lib/ocaml/compiler-libs/cmm.cmx lib/ocaml/compiler-libs/cmm.mli +lib/ocaml/compiler-libs/cmm_helpers.cmi +lib/ocaml/compiler-libs/cmm_helpers.cmt +lib/ocaml/compiler-libs/cmm_helpers.cmti +lib/ocaml/compiler-libs/cmm_helpers.cmx +lib/ocaml/compiler-libs/cmm_helpers.mli +lib/ocaml/compiler-libs/cmm_invariants.cmi +lib/ocaml/compiler-libs/cmm_invariants.cmt +lib/ocaml/compiler-libs/cmm_invariants.cmti +lib/ocaml/compiler-libs/cmm_invariants.cmx +lib/ocaml/compiler-libs/cmm_invariants.mli +lib/ocaml/compiler-libs/cmmgen_state.cmi +lib/ocaml/compiler-libs/cmmgen_state.cmt +lib/ocaml/compiler-libs/cmmgen_state.cmti +lib/ocaml/compiler-libs/cmmgen_state.cmx +lib/ocaml/compiler-libs/cmmgen_state.mli lib/ocaml/compiler-libs/cmmgen.cmi lib/ocaml/compiler-libs/cmmgen.cmt lib/ocaml/compiler-libs/cmmgen.cmti lib/ocaml/compiler-libs/cmmgen.cmx lib/ocaml/compiler-libs/cmmgen.mli lib/ocaml/compiler-libs/cmo_format.cmi lib/ocaml/compiler-libs/cmo_format.cmti lib/ocaml/compiler-libs/cmo_format.mli +lib/ocaml/compiler-libs/cmt2annot.cmi +lib/ocaml/compiler-libs/cmt2annot.cmt +lib/ocaml/compiler-libs/cmt2annot.cmx lib/ocaml/compiler-libs/cmt_format.cmi lib/ocaml/compiler-libs/cmt_format.cmt lib/ocaml/compiler-libs/cmt_format.cmti lib/ocaml/compiler-libs/cmt_format.cmx lib/ocaml/compiler-libs/cmt_format.mli lib/ocaml/compiler-libs/cmx_format.cmi lib/ocaml/compiler-libs/cmx_format.cmti lib/ocaml/compiler-libs/cmx_format.mli +lib/ocaml/compiler-libs/cmxs_format.cmi +lib/ocaml/compiler-libs/cmxs_format.cmti +lib/ocaml/compiler-libs/cmxs_format.mli lib/ocaml/compiler-libs/coloring.cmi lib/ocaml/compiler-libs/coloring.cmt lib/ocaml/compiler-libs/coloring.cmti lib/ocaml/compiler-libs/coloring.cmx lib/ocaml/compiler-libs/coloring.mli lib/ocaml/compiler-libs/comballoc.cmi lib/ocaml/compiler-libs/comballoc.cmt lib/ocaml/compiler-libs/comballoc.cmti lib/ocaml/compiler-libs/comballoc.cmx lib/ocaml/compiler-libs/comballoc.mli -lib/ocaml/compiler-libs/compdynlink.cmi -lib/ocaml/compiler-libs/compdynlink.cmt -lib/ocaml/compiler-libs/compdynlink.cmti -lib/ocaml/compiler-libs/compdynlink.cmx -lib/ocaml/compiler-libs/compdynlink.mli -lib/ocaml/compiler-libs/compdynlink_common.cmi -lib/ocaml/compiler-libs/compdynlink_common.cmt -lib/ocaml/compiler-libs/compdynlink_common.cmti -lib/ocaml/compiler-libs/compdynlink_common.cmx -lib/ocaml/compiler-libs/compdynlink_common.mli -lib/ocaml/compiler-libs/compdynlink_platform_intf.cmi -lib/ocaml/compiler-libs/compdynlink_platform_intf.cmt -lib/ocaml/compiler-libs/compdynlink_platform_intf.cmti -lib/ocaml/compiler-libs/compdynlink_platform_intf.cmx -lib/ocaml/compiler-libs/compdynlink_platform_intf.mli -lib/ocaml/compiler-libs/compdynlink_types.cmi -lib/ocaml/compiler-libs/compdynlink_types.cmt -lib/ocaml/compiler-libs/compdynlink_types.cmti -lib/ocaml/compiler-libs/compdynlink_types.cmx -lib/ocaml/compiler-libs/compdynlink_types.mli lib/ocaml/compiler-libs/compenv.cmi lib/ocaml/compiler-libs/compenv.cmt lib/ocaml/compiler-libs/compenv.cmti lib/ocaml/compiler-libs/compenv.cmx lib/ocaml/compiler-libs/compenv.mli lib/ocaml/compiler-libs/compilation_unit.cmi lib/ocaml/compiler-libs/compilation_unit.cmt lib/ocaml/compiler-libs/compilation_unit.cmti lib/ocaml/compiler-libs/compilation_unit.cmx lib/ocaml/compiler-libs/compilation_unit.mli lib/ocaml/compiler-libs/compile.cmi lib/ocaml/compiler-libs/compile.cmt lib/ocaml/compiler-libs/compile.cmti lib/ocaml/compiler-libs/compile.cmx lib/ocaml/compiler-libs/compile.mli lib/ocaml/compiler-libs/compile_common.cmi lib/ocaml/compiler-libs/compile_common.cmt lib/ocaml/compiler-libs/compile_common.cmti lib/ocaml/compiler-libs/compile_common.cmx lib/ocaml/compiler-libs/compile_common.mli lib/ocaml/compiler-libs/compilenv.cmi lib/ocaml/compiler-libs/compilenv.cmt lib/ocaml/compiler-libs/compilenv.cmti lib/ocaml/compiler-libs/compilenv.cmx lib/ocaml/compiler-libs/compilenv.mli lib/ocaml/compiler-libs/compmisc.cmi lib/ocaml/compiler-libs/compmisc.cmt lib/ocaml/compiler-libs/compmisc.cmti lib/ocaml/compiler-libs/compmisc.cmx lib/ocaml/compiler-libs/compmisc.mli -lib/ocaml/compiler-libs/compplugin.cmi -lib/ocaml/compiler-libs/compplugin.cmt -lib/ocaml/compiler-libs/compplugin.cmti -lib/ocaml/compiler-libs/compplugin.cmx -lib/ocaml/compiler-libs/compplugin.mli lib/ocaml/compiler-libs/config.cmi lib/ocaml/compiler-libs/config.cmt lib/ocaml/compiler-libs/config.cmti lib/ocaml/compiler-libs/config.cmx lib/ocaml/compiler-libs/config.mli lib/ocaml/compiler-libs/consistbl.cmi lib/ocaml/compiler-libs/consistbl.cmt lib/ocaml/compiler-libs/consistbl.cmti lib/ocaml/compiler-libs/consistbl.cmx lib/ocaml/compiler-libs/consistbl.mli +lib/ocaml/compiler-libs/convert_primitives.cmi +lib/ocaml/compiler-libs/convert_primitives.cmt +lib/ocaml/compiler-libs/convert_primitives.cmti +lib/ocaml/compiler-libs/convert_primitives.cmx +lib/ocaml/compiler-libs/convert_primitives.mli lib/ocaml/compiler-libs/ctype.cmi lib/ocaml/compiler-libs/ctype.cmt lib/ocaml/compiler-libs/ctype.cmti lib/ocaml/compiler-libs/ctype.cmx lib/ocaml/compiler-libs/ctype.mli +lib/ocaml/compiler-libs/dataflow.cmi +lib/ocaml/compiler-libs/dataflow.cmt +lib/ocaml/compiler-libs/dataflow.cmti +lib/ocaml/compiler-libs/dataflow.cmx +lib/ocaml/compiler-libs/dataflow.mli lib/ocaml/compiler-libs/datarepr.cmi lib/ocaml/compiler-libs/datarepr.cmt lib/ocaml/compiler-libs/datarepr.cmti lib/ocaml/compiler-libs/datarepr.cmx lib/ocaml/compiler-libs/datarepr.mli lib/ocaml/compiler-libs/deadcode.cmi lib/ocaml/compiler-libs/deadcode.cmt lib/ocaml/compiler-libs/deadcode.cmti lib/ocaml/compiler-libs/deadcode.cmx lib/ocaml/compiler-libs/deadcode.mli lib/ocaml/compiler-libs/debuginfo.cmi lib/ocaml/compiler-libs/debuginfo.cmt lib/ocaml/compiler-libs/debuginfo.cmti lib/ocaml/compiler-libs/debuginfo.cmx lib/ocaml/compiler-libs/debuginfo.mli lib/ocaml/compiler-libs/depend.cmi lib/ocaml/compiler-libs/depend.cmt lib/ocaml/compiler-libs/depend.cmti lib/ocaml/compiler-libs/depend.cmx lib/ocaml/compiler-libs/depend.mli +lib/ocaml/compiler-libs/diffing.cmi +lib/ocaml/compiler-libs/diffing.cmt +lib/ocaml/compiler-libs/diffing.cmti +lib/ocaml/compiler-libs/diffing.cmx +lib/ocaml/compiler-libs/diffing.mli +lib/ocaml/compiler-libs/diffing_with_keys.cmi +lib/ocaml/compiler-libs/diffing_with_keys.cmt +lib/ocaml/compiler-libs/diffing_with_keys.cmti +lib/ocaml/compiler-libs/diffing_with_keys.cmx +lib/ocaml/compiler-libs/diffing_with_keys.mli lib/ocaml/compiler-libs/dll.cmi lib/ocaml/compiler-libs/dll.cmt lib/ocaml/compiler-libs/dll.cmti lib/ocaml/compiler-libs/dll.cmx lib/ocaml/compiler-libs/dll.mli lib/ocaml/compiler-libs/docstrings.cmi lib/ocaml/compiler-libs/docstrings.cmt lib/ocaml/compiler-libs/docstrings.cmti lib/ocaml/compiler-libs/docstrings.cmx lib/ocaml/compiler-libs/docstrings.mli +lib/ocaml/compiler-libs/domainstate.cmi +lib/ocaml/compiler-libs/domainstate.cmt +lib/ocaml/compiler-libs/domainstate.cmti +lib/ocaml/compiler-libs/domainstate.cmx +lib/ocaml/compiler-libs/domainstate.mli lib/ocaml/compiler-libs/effect_analysis.cmi lib/ocaml/compiler-libs/effect_analysis.cmt lib/ocaml/compiler-libs/effect_analysis.cmti lib/ocaml/compiler-libs/effect_analysis.cmx lib/ocaml/compiler-libs/effect_analysis.mli lib/ocaml/compiler-libs/emit.cmi lib/ocaml/compiler-libs/emit.cmt lib/ocaml/compiler-libs/emit.cmti lib/ocaml/compiler-libs/emit.cmx lib/ocaml/compiler-libs/emit.mli lib/ocaml/compiler-libs/emitaux.cmi lib/ocaml/compiler-libs/emitaux.cmt lib/ocaml/compiler-libs/emitaux.cmti lib/ocaml/compiler-libs/emitaux.cmx lib/ocaml/compiler-libs/emitaux.mli lib/ocaml/compiler-libs/emitcode.cmi lib/ocaml/compiler-libs/emitcode.cmt lib/ocaml/compiler-libs/emitcode.cmti lib/ocaml/compiler-libs/emitcode.cmx lib/ocaml/compiler-libs/emitcode.mli +lib/ocaml/compiler-libs/emitenv.cmi +lib/ocaml/compiler-libs/emitenv.cmti +lib/ocaml/compiler-libs/emitenv.mli lib/ocaml/compiler-libs/env.cmi lib/ocaml/compiler-libs/env.cmt lib/ocaml/compiler-libs/env.cmti lib/ocaml/compiler-libs/env.cmx lib/ocaml/compiler-libs/env.mli lib/ocaml/compiler-libs/envaux.cmi lib/ocaml/compiler-libs/envaux.cmt lib/ocaml/compiler-libs/envaux.cmti lib/ocaml/compiler-libs/envaux.cmx lib/ocaml/compiler-libs/envaux.mli lib/ocaml/compiler-libs/errors.cmi lib/ocaml/compiler-libs/errors.cmt lib/ocaml/compiler-libs/errors.cmti lib/ocaml/compiler-libs/errors.cmx lib/ocaml/compiler-libs/errors.mli +lib/ocaml/compiler-libs/errortrace.cmi +lib/ocaml/compiler-libs/errortrace.cmt +lib/ocaml/compiler-libs/errortrace.cmti +lib/ocaml/compiler-libs/errortrace.cmx +lib/ocaml/compiler-libs/errortrace.mli lib/ocaml/compiler-libs/export_id.cmi lib/ocaml/compiler-libs/export_id.cmt lib/ocaml/compiler-libs/export_id.cmti lib/ocaml/compiler-libs/export_id.cmx lib/ocaml/compiler-libs/export_id.mli lib/ocaml/compiler-libs/export_info.cmi lib/ocaml/compiler-libs/export_info.cmt lib/ocaml/compiler-libs/export_info.cmti lib/ocaml/compiler-libs/export_info.cmx lib/ocaml/compiler-libs/export_info.mli lib/ocaml/compiler-libs/export_info_for_pack.cmi lib/ocaml/compiler-libs/export_info_for_pack.cmt lib/ocaml/compiler-libs/export_info_for_pack.cmti lib/ocaml/compiler-libs/export_info_for_pack.cmx lib/ocaml/compiler-libs/export_info_for_pack.mli lib/ocaml/compiler-libs/expunge.cmi lib/ocaml/compiler-libs/expunge.cmt lib/ocaml/compiler-libs/extract_projections.cmi lib/ocaml/compiler-libs/extract_projections.cmt lib/ocaml/compiler-libs/extract_projections.cmti lib/ocaml/compiler-libs/extract_projections.cmx lib/ocaml/compiler-libs/extract_projections.mli lib/ocaml/compiler-libs/find_recursive_functions.cmi lib/ocaml/compiler-libs/find_recursive_functions.cmt lib/ocaml/compiler-libs/find_recursive_functions.cmti lib/ocaml/compiler-libs/find_recursive_functions.cmx lib/ocaml/compiler-libs/find_recursive_functions.mli lib/ocaml/compiler-libs/flambda.cmi lib/ocaml/compiler-libs/flambda.cmt lib/ocaml/compiler-libs/flambda.cmti lib/ocaml/compiler-libs/flambda.cmx lib/ocaml/compiler-libs/flambda.mli lib/ocaml/compiler-libs/flambda_invariants.cmi lib/ocaml/compiler-libs/flambda_invariants.cmt lib/ocaml/compiler-libs/flambda_invariants.cmti lib/ocaml/compiler-libs/flambda_invariants.cmx lib/ocaml/compiler-libs/flambda_invariants.mli lib/ocaml/compiler-libs/flambda_iterators.cmi lib/ocaml/compiler-libs/flambda_iterators.cmt lib/ocaml/compiler-libs/flambda_iterators.cmti lib/ocaml/compiler-libs/flambda_iterators.cmx lib/ocaml/compiler-libs/flambda_iterators.mli +lib/ocaml/compiler-libs/flambda_middle_end.cmi +lib/ocaml/compiler-libs/flambda_middle_end.cmt +lib/ocaml/compiler-libs/flambda_middle_end.cmti +lib/ocaml/compiler-libs/flambda_middle_end.cmx +lib/ocaml/compiler-libs/flambda_middle_end.mli lib/ocaml/compiler-libs/flambda_to_clambda.cmi lib/ocaml/compiler-libs/flambda_to_clambda.cmt lib/ocaml/compiler-libs/flambda_to_clambda.cmti lib/ocaml/compiler-libs/flambda_to_clambda.cmx lib/ocaml/compiler-libs/flambda_to_clambda.mli lib/ocaml/compiler-libs/flambda_utils.cmi lib/ocaml/compiler-libs/flambda_utils.cmt lib/ocaml/compiler-libs/flambda_utils.cmti lib/ocaml/compiler-libs/flambda_utils.cmx lib/ocaml/compiler-libs/flambda_utils.mli lib/ocaml/compiler-libs/freshening.cmi lib/ocaml/compiler-libs/freshening.cmt lib/ocaml/compiler-libs/freshening.cmti lib/ocaml/compiler-libs/freshening.cmx lib/ocaml/compiler-libs/freshening.mli lib/ocaml/compiler-libs/genprintval.cmi lib/ocaml/compiler-libs/genprintval.cmt lib/ocaml/compiler-libs/genprintval.cmti lib/ocaml/compiler-libs/genprintval.mli +lib/ocaml/compiler-libs/genprintval.cmx lib/ocaml/compiler-libs/id_types.cmi lib/ocaml/compiler-libs/id_types.cmt lib/ocaml/compiler-libs/id_types.cmti lib/ocaml/compiler-libs/id_types.cmx lib/ocaml/compiler-libs/id_types.mli lib/ocaml/compiler-libs/ident.cmi lib/ocaml/compiler-libs/ident.cmt lib/ocaml/compiler-libs/ident.cmti lib/ocaml/compiler-libs/ident.cmx lib/ocaml/compiler-libs/ident.mli lib/ocaml/compiler-libs/identifiable.cmi lib/ocaml/compiler-libs/identifiable.cmt lib/ocaml/compiler-libs/identifiable.cmti lib/ocaml/compiler-libs/identifiable.cmx lib/ocaml/compiler-libs/identifiable.mli lib/ocaml/compiler-libs/import_approx.cmi lib/ocaml/compiler-libs/import_approx.cmt lib/ocaml/compiler-libs/import_approx.cmti lib/ocaml/compiler-libs/import_approx.cmx lib/ocaml/compiler-libs/import_approx.mli lib/ocaml/compiler-libs/includeclass.cmi lib/ocaml/compiler-libs/includeclass.cmt lib/ocaml/compiler-libs/includeclass.cmti lib/ocaml/compiler-libs/includeclass.cmx lib/ocaml/compiler-libs/includeclass.mli lib/ocaml/compiler-libs/includecore.cmi lib/ocaml/compiler-libs/includecore.cmt lib/ocaml/compiler-libs/includecore.cmti lib/ocaml/compiler-libs/includecore.cmx lib/ocaml/compiler-libs/includecore.mli lib/ocaml/compiler-libs/includemod.cmi lib/ocaml/compiler-libs/includemod.cmt lib/ocaml/compiler-libs/includemod.cmti lib/ocaml/compiler-libs/includemod.cmx lib/ocaml/compiler-libs/includemod.mli +lib/ocaml/compiler-libs/includemod_errorprinter.cmi +lib/ocaml/compiler-libs/includemod_errorprinter.cmt +lib/ocaml/compiler-libs/includemod_errorprinter.cmti +lib/ocaml/compiler-libs/includemod_errorprinter.cmx +lib/ocaml/compiler-libs/includemod_errorprinter.mli lib/ocaml/compiler-libs/inconstant_idents.cmi lib/ocaml/compiler-libs/inconstant_idents.cmt lib/ocaml/compiler-libs/inconstant_idents.cmti lib/ocaml/compiler-libs/inconstant_idents.cmx lib/ocaml/compiler-libs/inconstant_idents.mli lib/ocaml/compiler-libs/initialize_symbol_to_let_symbol.cmi lib/ocaml/compiler-libs/initialize_symbol_to_let_symbol.cmt lib/ocaml/compiler-libs/initialize_symbol_to_let_symbol.cmti lib/ocaml/compiler-libs/initialize_symbol_to_let_symbol.cmx lib/ocaml/compiler-libs/initialize_symbol_to_let_symbol.mli lib/ocaml/compiler-libs/inline_and_simplify.cmi lib/ocaml/compiler-libs/inline_and_simplify.cmt lib/ocaml/compiler-libs/inline_and_simplify.cmti lib/ocaml/compiler-libs/inline_and_simplify.cmx lib/ocaml/compiler-libs/inline_and_simplify.mli lib/ocaml/compiler-libs/inline_and_simplify_aux.cmi lib/ocaml/compiler-libs/inline_and_simplify_aux.cmt lib/ocaml/compiler-libs/inline_and_simplify_aux.cmti lib/ocaml/compiler-libs/inline_and_simplify_aux.cmx lib/ocaml/compiler-libs/inline_and_simplify_aux.mli lib/ocaml/compiler-libs/inlining_cost.cmi lib/ocaml/compiler-libs/inlining_cost.cmt lib/ocaml/compiler-libs/inlining_cost.cmti lib/ocaml/compiler-libs/inlining_cost.cmx lib/ocaml/compiler-libs/inlining_cost.mli lib/ocaml/compiler-libs/inlining_decision.cmi lib/ocaml/compiler-libs/inlining_decision.cmt lib/ocaml/compiler-libs/inlining_decision.cmti lib/ocaml/compiler-libs/inlining_decision.cmx lib/ocaml/compiler-libs/inlining_decision.mli lib/ocaml/compiler-libs/inlining_decision_intf.cmi lib/ocaml/compiler-libs/inlining_decision_intf.cmti lib/ocaml/compiler-libs/inlining_decision_intf.mli lib/ocaml/compiler-libs/inlining_stats.cmi lib/ocaml/compiler-libs/inlining_stats.cmt lib/ocaml/compiler-libs/inlining_stats.cmti lib/ocaml/compiler-libs/inlining_stats.cmx lib/ocaml/compiler-libs/inlining_stats.mli lib/ocaml/compiler-libs/inlining_stats_types.cmi lib/ocaml/compiler-libs/inlining_stats_types.cmt lib/ocaml/compiler-libs/inlining_stats_types.cmti lib/ocaml/compiler-libs/inlining_stats_types.cmx lib/ocaml/compiler-libs/inlining_stats_types.mli lib/ocaml/compiler-libs/inlining_transforms.cmi lib/ocaml/compiler-libs/inlining_transforms.cmt lib/ocaml/compiler-libs/inlining_transforms.cmti lib/ocaml/compiler-libs/inlining_transforms.cmx lib/ocaml/compiler-libs/inlining_transforms.mli lib/ocaml/compiler-libs/instruct.cmi lib/ocaml/compiler-libs/instruct.cmt lib/ocaml/compiler-libs/instruct.cmti lib/ocaml/compiler-libs/instruct.cmx lib/ocaml/compiler-libs/instruct.mli lib/ocaml/compiler-libs/int_replace_polymorphic_compare.cmi lib/ocaml/compiler-libs/int_replace_polymorphic_compare.cmt lib/ocaml/compiler-libs/int_replace_polymorphic_compare.cmti lib/ocaml/compiler-libs/int_replace_polymorphic_compare.cmx lib/ocaml/compiler-libs/int_replace_polymorphic_compare.mli lib/ocaml/compiler-libs/interf.cmi lib/ocaml/compiler-libs/interf.cmt lib/ocaml/compiler-libs/interf.cmti lib/ocaml/compiler-libs/interf.cmx lib/ocaml/compiler-libs/interf.mli lib/ocaml/compiler-libs/internal_variable_names.cmi lib/ocaml/compiler-libs/internal_variable_names.cmt lib/ocaml/compiler-libs/internal_variable_names.cmti lib/ocaml/compiler-libs/internal_variable_names.cmx lib/ocaml/compiler-libs/internal_variable_names.mli lib/ocaml/compiler-libs/interval.cmi lib/ocaml/compiler-libs/interval.cmt lib/ocaml/compiler-libs/interval.cmti lib/ocaml/compiler-libs/interval.cmx lib/ocaml/compiler-libs/interval.mli lib/ocaml/compiler-libs/invariant_params.cmi lib/ocaml/compiler-libs/invariant_params.cmt lib/ocaml/compiler-libs/invariant_params.cmti lib/ocaml/compiler-libs/invariant_params.cmx lib/ocaml/compiler-libs/invariant_params.mli lib/ocaml/compiler-libs/lambda.cmi lib/ocaml/compiler-libs/lambda.cmt lib/ocaml/compiler-libs/lambda.cmti lib/ocaml/compiler-libs/lambda.cmx lib/ocaml/compiler-libs/lambda.mli +lib/ocaml/compiler-libs/lazy_backtrack.cmi +lib/ocaml/compiler-libs/lazy_backtrack.cmt +lib/ocaml/compiler-libs/lazy_backtrack.cmti +lib/ocaml/compiler-libs/lazy_backtrack.cmx +lib/ocaml/compiler-libs/lazy_backtrack.mli lib/ocaml/compiler-libs/lexer.cmi lib/ocaml/compiler-libs/lexer.cmt lib/ocaml/compiler-libs/lexer.cmti lib/ocaml/compiler-libs/lexer.cmx lib/ocaml/compiler-libs/lexer.mli lib/ocaml/compiler-libs/lift_code.cmi lib/ocaml/compiler-libs/lift_code.cmt lib/ocaml/compiler-libs/lift_code.cmti lib/ocaml/compiler-libs/lift_code.cmx lib/ocaml/compiler-libs/lift_code.mli lib/ocaml/compiler-libs/lift_constants.cmi lib/ocaml/compiler-libs/lift_constants.cmt lib/ocaml/compiler-libs/lift_constants.cmti lib/ocaml/compiler-libs/lift_constants.cmx lib/ocaml/compiler-libs/lift_constants.mli lib/ocaml/compiler-libs/lift_let_to_initialize_symbol.cmi lib/ocaml/compiler-libs/lift_let_to_initialize_symbol.cmt lib/ocaml/compiler-libs/lift_let_to_initialize_symbol.cmti lib/ocaml/compiler-libs/lift_let_to_initialize_symbol.cmx lib/ocaml/compiler-libs/lift_let_to_initialize_symbol.mli +lib/ocaml/compiler-libs/linear.cmi +lib/ocaml/compiler-libs/linear.cmt +lib/ocaml/compiler-libs/linear.cmti +lib/ocaml/compiler-libs/linear.cmx +lib/ocaml/compiler-libs/linear.mli +lib/ocaml/compiler-libs/linear_format.cmi +lib/ocaml/compiler-libs/linear_format.cmt +lib/ocaml/compiler-libs/linear_format.cmti +lib/ocaml/compiler-libs/linear_format.cmx +lib/ocaml/compiler-libs/linear_format.mli lib/ocaml/compiler-libs/linearize.cmi lib/ocaml/compiler-libs/linearize.cmt lib/ocaml/compiler-libs/linearize.cmti lib/ocaml/compiler-libs/linearize.cmx lib/ocaml/compiler-libs/linearize.mli lib/ocaml/compiler-libs/linkage_name.cmi lib/ocaml/compiler-libs/linkage_name.cmt lib/ocaml/compiler-libs/linkage_name.cmti lib/ocaml/compiler-libs/linkage_name.cmx lib/ocaml/compiler-libs/linkage_name.mli lib/ocaml/compiler-libs/linscan.cmi lib/ocaml/compiler-libs/linscan.cmt lib/ocaml/compiler-libs/linscan.cmti lib/ocaml/compiler-libs/linscan.cmx lib/ocaml/compiler-libs/linscan.mli lib/ocaml/compiler-libs/liveness.cmi lib/ocaml/compiler-libs/liveness.cmt lib/ocaml/compiler-libs/liveness.cmti lib/ocaml/compiler-libs/liveness.cmx lib/ocaml/compiler-libs/liveness.mli lib/ocaml/compiler-libs/load_path.cmi lib/ocaml/compiler-libs/load_path.cmt lib/ocaml/compiler-libs/load_path.cmti lib/ocaml/compiler-libs/load_path.cmx lib/ocaml/compiler-libs/load_path.mli +lib/ocaml/compiler-libs/local_store.cmi +lib/ocaml/compiler-libs/local_store.cmt +lib/ocaml/compiler-libs/local_store.cmti +lib/ocaml/compiler-libs/local_store.cmx +lib/ocaml/compiler-libs/local_store.mli lib/ocaml/compiler-libs/location.cmi lib/ocaml/compiler-libs/location.cmt lib/ocaml/compiler-libs/location.cmti lib/ocaml/compiler-libs/location.cmx lib/ocaml/compiler-libs/location.mli lib/ocaml/compiler-libs/longident.cmi lib/ocaml/compiler-libs/longident.cmt lib/ocaml/compiler-libs/longident.cmti lib/ocaml/compiler-libs/longident.cmx lib/ocaml/compiler-libs/longident.mli lib/ocaml/compiler-libs/mach.cmi lib/ocaml/compiler-libs/mach.cmt lib/ocaml/compiler-libs/mach.cmti lib/ocaml/compiler-libs/mach.cmx lib/ocaml/compiler-libs/mach.mli lib/ocaml/compiler-libs/main.cmi lib/ocaml/compiler-libs/main.cmo lib/ocaml/compiler-libs/main.cmt -lib/ocaml/compiler-libs/main.cmti lib/ocaml/compiler-libs/main.cmx -lib/ocaml/compiler-libs/main.mli lib/ocaml/compiler-libs/main.o lib/ocaml/compiler-libs/main_args.cmi lib/ocaml/compiler-libs/main_args.cmt lib/ocaml/compiler-libs/main_args.cmti lib/ocaml/compiler-libs/main_args.cmx lib/ocaml/compiler-libs/main_args.mli +lib/ocaml/compiler-libs/maindriver.cmi +lib/ocaml/compiler-libs/maindriver.cmt +lib/ocaml/compiler-libs/maindriver.cmti +lib/ocaml/compiler-libs/maindriver.cmx +lib/ocaml/compiler-libs/maindriver.mli lib/ocaml/compiler-libs/makedepend.cmi lib/ocaml/compiler-libs/makedepend.cmt lib/ocaml/compiler-libs/makedepend.cmti lib/ocaml/compiler-libs/makedepend.cmx lib/ocaml/compiler-libs/makedepend.mli lib/ocaml/compiler-libs/matching.cmi lib/ocaml/compiler-libs/matching.cmt lib/ocaml/compiler-libs/matching.cmti lib/ocaml/compiler-libs/matching.cmx lib/ocaml/compiler-libs/matching.mli lib/ocaml/compiler-libs/meta.cmi lib/ocaml/compiler-libs/meta.cmt lib/ocaml/compiler-libs/meta.cmti lib/ocaml/compiler-libs/meta.cmx lib/ocaml/compiler-libs/meta.mli -lib/ocaml/compiler-libs/middle_end.cmi -lib/ocaml/compiler-libs/middle_end.cmt -lib/ocaml/compiler-libs/middle_end.cmti -lib/ocaml/compiler-libs/middle_end.cmx -lib/ocaml/compiler-libs/middle_end.mli lib/ocaml/compiler-libs/misc.cmi lib/ocaml/compiler-libs/misc.cmt lib/ocaml/compiler-libs/misc.cmti lib/ocaml/compiler-libs/misc.cmx lib/ocaml/compiler-libs/misc.mli lib/ocaml/compiler-libs/mtype.cmi lib/ocaml/compiler-libs/mtype.cmt lib/ocaml/compiler-libs/mtype.cmti lib/ocaml/compiler-libs/mtype.cmx lib/ocaml/compiler-libs/mtype.mli lib/ocaml/compiler-libs/mutable_variable.cmi lib/ocaml/compiler-libs/mutable_variable.cmt lib/ocaml/compiler-libs/mutable_variable.cmti lib/ocaml/compiler-libs/mutable_variable.cmx lib/ocaml/compiler-libs/mutable_variable.mli lib/ocaml/compiler-libs/numbers.cmi lib/ocaml/compiler-libs/numbers.cmt lib/ocaml/compiler-libs/numbers.cmti lib/ocaml/compiler-libs/numbers.cmx lib/ocaml/compiler-libs/numbers.mli lib/ocaml/compiler-libs/ocamlbytecomp.a lib/ocaml/compiler-libs/ocamlbytecomp.cma lib/ocaml/compiler-libs/ocamlbytecomp.cmxa lib/ocaml/compiler-libs/ocamlcommon.a lib/ocaml/compiler-libs/ocamlcommon.cma lib/ocaml/compiler-libs/ocamlcommon.cmxa +lib/ocaml/compiler-libs/ocamlmiddleend.a +lib/ocaml/compiler-libs/ocamlmiddleend.cma +lib/ocaml/compiler-libs/ocamlmiddleend.cmxa +lib/ocaml/compiler-libs/ocamltoplevel.a +lib/ocaml/compiler-libs/ocamltoplevel.cmxa lib/ocaml/compiler-libs/ocamloptcomp.a lib/ocaml/compiler-libs/ocamloptcomp.cma lib/ocaml/compiler-libs/ocamloptcomp.cmxa lib/ocaml/compiler-libs/ocamltoplevel.cma lib/ocaml/compiler-libs/opcodes.cmi lib/ocaml/compiler-libs/opcodes.cmt +lib/ocaml/compiler-libs/opcodes.cmti +lib/ocaml/compiler-libs/opcodes.mli lib/ocaml/compiler-libs/opcodes.cmx lib/ocaml/compiler-libs/oprint.cmi lib/ocaml/compiler-libs/oprint.cmt lib/ocaml/compiler-libs/oprint.cmti lib/ocaml/compiler-libs/oprint.cmx lib/ocaml/compiler-libs/oprint.mli lib/ocaml/compiler-libs/optcompile.cmi lib/ocaml/compiler-libs/optcompile.cmt lib/ocaml/compiler-libs/optcompile.cmti lib/ocaml/compiler-libs/optcompile.cmx lib/ocaml/compiler-libs/optcompile.mli lib/ocaml/compiler-libs/opterrors.cmi lib/ocaml/compiler-libs/opterrors.cmt lib/ocaml/compiler-libs/opterrors.cmti lib/ocaml/compiler-libs/opterrors.cmx lib/ocaml/compiler-libs/opterrors.mli lib/ocaml/compiler-libs/optmain.cmi lib/ocaml/compiler-libs/optmain.cmo lib/ocaml/compiler-libs/optmain.cmt -lib/ocaml/compiler-libs/optmain.cmti lib/ocaml/compiler-libs/optmain.cmx -lib/ocaml/compiler-libs/optmain.mli lib/ocaml/compiler-libs/optmain.o -lib/ocaml/compiler-libs/opttopdirs.mli -lib/ocaml/compiler-libs/opttoploop.mli -lib/ocaml/compiler-libs/opttopmain.mli +lib/ocaml/compiler-libs/optmaindriver.cmi +lib/ocaml/compiler-libs/optmaindriver.cmt +lib/ocaml/compiler-libs/optmaindriver.cmti +lib/ocaml/compiler-libs/optmaindriver.cmx +lib/ocaml/compiler-libs/optmaindriver.mli lib/ocaml/compiler-libs/outcometree.cmi lib/ocaml/compiler-libs/outcometree.cmti lib/ocaml/compiler-libs/outcometree.mli lib/ocaml/compiler-libs/parameter.cmi lib/ocaml/compiler-libs/parameter.cmt lib/ocaml/compiler-libs/parameter.cmti lib/ocaml/compiler-libs/parameter.cmx lib/ocaml/compiler-libs/parameter.mli lib/ocaml/compiler-libs/parmatch.cmi lib/ocaml/compiler-libs/parmatch.cmt lib/ocaml/compiler-libs/parmatch.cmti lib/ocaml/compiler-libs/parmatch.cmx lib/ocaml/compiler-libs/parmatch.mli lib/ocaml/compiler-libs/parse.cmi lib/ocaml/compiler-libs/parse.cmt lib/ocaml/compiler-libs/parse.cmti lib/ocaml/compiler-libs/parse.cmx lib/ocaml/compiler-libs/parse.mli lib/ocaml/compiler-libs/parser.cmi lib/ocaml/compiler-libs/parser.cmt lib/ocaml/compiler-libs/parser.cmti lib/ocaml/compiler-libs/parser.cmx lib/ocaml/compiler-libs/parser.mli lib/ocaml/compiler-libs/parsetree.cmi lib/ocaml/compiler-libs/parsetree.cmti lib/ocaml/compiler-libs/parsetree.mli lib/ocaml/compiler-libs/pass_wrapper.cmi lib/ocaml/compiler-libs/pass_wrapper.cmt lib/ocaml/compiler-libs/pass_wrapper.cmti lib/ocaml/compiler-libs/pass_wrapper.cmx lib/ocaml/compiler-libs/pass_wrapper.mli lib/ocaml/compiler-libs/path.cmi lib/ocaml/compiler-libs/path.cmt lib/ocaml/compiler-libs/path.cmti lib/ocaml/compiler-libs/path.cmx lib/ocaml/compiler-libs/path.mli +lib/ocaml/compiler-libs/patterns.cmi +lib/ocaml/compiler-libs/patterns.cmt +lib/ocaml/compiler-libs/patterns.cmti +lib/ocaml/compiler-libs/patterns.cmx +lib/ocaml/compiler-libs/patterns.mli +lib/ocaml/compiler-libs/persistent_env.cmi +lib/ocaml/compiler-libs/persistent_env.cmt +lib/ocaml/compiler-libs/persistent_env.cmti +lib/ocaml/compiler-libs/persistent_env.cmx +lib/ocaml/compiler-libs/persistent_env.mli +lib/ocaml/compiler-libs/polling.cmi +lib/ocaml/compiler-libs/polling.cmt +lib/ocaml/compiler-libs/polling.cmti +lib/ocaml/compiler-libs/polling.cmx +lib/ocaml/compiler-libs/polling.mli +lib/ocaml/compiler-libs/printclambda_primitives.cmi +lib/ocaml/compiler-libs/printclambda_primitives.cmt +lib/ocaml/compiler-libs/printclambda_primitives.cmti +lib/ocaml/compiler-libs/printclambda_primitives.cmx +lib/ocaml/compiler-libs/printclambda_primitives.mli lib/ocaml/compiler-libs/pparse.cmi lib/ocaml/compiler-libs/pparse.cmt lib/ocaml/compiler-libs/pparse.cmti lib/ocaml/compiler-libs/pparse.cmx lib/ocaml/compiler-libs/pparse.mli lib/ocaml/compiler-libs/pprintast.cmi lib/ocaml/compiler-libs/pprintast.cmt lib/ocaml/compiler-libs/pprintast.cmti lib/ocaml/compiler-libs/pprintast.cmx lib/ocaml/compiler-libs/pprintast.mli lib/ocaml/compiler-libs/predef.cmi lib/ocaml/compiler-libs/predef.cmt lib/ocaml/compiler-libs/predef.cmti lib/ocaml/compiler-libs/predef.cmx lib/ocaml/compiler-libs/predef.mli lib/ocaml/compiler-libs/primitive.cmi lib/ocaml/compiler-libs/primitive.cmt lib/ocaml/compiler-libs/primitive.cmti lib/ocaml/compiler-libs/primitive.cmx lib/ocaml/compiler-libs/primitive.mli lib/ocaml/compiler-libs/printast.cmi lib/ocaml/compiler-libs/printast.cmt lib/ocaml/compiler-libs/printast.cmti lib/ocaml/compiler-libs/printast.cmx lib/ocaml/compiler-libs/printast.mli lib/ocaml/compiler-libs/printclambda.cmi lib/ocaml/compiler-libs/printclambda.cmt lib/ocaml/compiler-libs/printclambda.cmti lib/ocaml/compiler-libs/printclambda.cmx lib/ocaml/compiler-libs/printclambda.mli lib/ocaml/compiler-libs/printcmm.cmi lib/ocaml/compiler-libs/printcmm.cmt lib/ocaml/compiler-libs/printcmm.cmti lib/ocaml/compiler-libs/printcmm.cmx lib/ocaml/compiler-libs/printcmm.mli lib/ocaml/compiler-libs/printinstr.cmi lib/ocaml/compiler-libs/printinstr.cmt lib/ocaml/compiler-libs/printinstr.cmti lib/ocaml/compiler-libs/printinstr.cmx lib/ocaml/compiler-libs/printinstr.mli lib/ocaml/compiler-libs/printlambda.cmi lib/ocaml/compiler-libs/printlambda.cmt lib/ocaml/compiler-libs/printlambda.cmti lib/ocaml/compiler-libs/printlambda.cmx lib/ocaml/compiler-libs/printlambda.mli lib/ocaml/compiler-libs/printlinear.cmi lib/ocaml/compiler-libs/printlinear.cmt lib/ocaml/compiler-libs/printlinear.cmti lib/ocaml/compiler-libs/printlinear.cmx lib/ocaml/compiler-libs/printlinear.mli lib/ocaml/compiler-libs/printmach.cmi lib/ocaml/compiler-libs/printmach.cmt lib/ocaml/compiler-libs/printmach.cmti lib/ocaml/compiler-libs/printmach.cmx lib/ocaml/compiler-libs/printmach.mli lib/ocaml/compiler-libs/printpat.cmi lib/ocaml/compiler-libs/printpat.cmt lib/ocaml/compiler-libs/printpat.cmti lib/ocaml/compiler-libs/printpat.cmx lib/ocaml/compiler-libs/printpat.mli lib/ocaml/compiler-libs/printtyp.cmi lib/ocaml/compiler-libs/printtyp.cmt lib/ocaml/compiler-libs/printtyp.cmti lib/ocaml/compiler-libs/printtyp.cmx lib/ocaml/compiler-libs/printtyp.mli lib/ocaml/compiler-libs/printtyped.cmi lib/ocaml/compiler-libs/printtyped.cmt lib/ocaml/compiler-libs/printtyped.cmti lib/ocaml/compiler-libs/printtyped.cmx lib/ocaml/compiler-libs/printtyped.mli lib/ocaml/compiler-libs/proc.cmi lib/ocaml/compiler-libs/proc.cmt lib/ocaml/compiler-libs/proc.cmti lib/ocaml/compiler-libs/proc.cmx lib/ocaml/compiler-libs/proc.mli lib/ocaml/compiler-libs/profile.cmi lib/ocaml/compiler-libs/profile.cmt lib/ocaml/compiler-libs/profile.cmti lib/ocaml/compiler-libs/profile.cmx lib/ocaml/compiler-libs/profile.mli lib/ocaml/compiler-libs/projection.cmi lib/ocaml/compiler-libs/projection.cmt lib/ocaml/compiler-libs/projection.cmti lib/ocaml/compiler-libs/projection.cmx lib/ocaml/compiler-libs/projection.mli lib/ocaml/compiler-libs/rec_check.cmi lib/ocaml/compiler-libs/rec_check.cmt lib/ocaml/compiler-libs/rec_check.cmti lib/ocaml/compiler-libs/rec_check.cmx lib/ocaml/compiler-libs/rec_check.mli lib/ocaml/compiler-libs/ref_to_variables.cmi lib/ocaml/compiler-libs/ref_to_variables.cmt lib/ocaml/compiler-libs/ref_to_variables.cmti lib/ocaml/compiler-libs/ref_to_variables.cmx lib/ocaml/compiler-libs/ref_to_variables.mli lib/ocaml/compiler-libs/reg.cmi lib/ocaml/compiler-libs/reg.cmt lib/ocaml/compiler-libs/reg.cmti lib/ocaml/compiler-libs/reg.cmx lib/ocaml/compiler-libs/reg.mli lib/ocaml/compiler-libs/reload.cmi lib/ocaml/compiler-libs/reload.cmt lib/ocaml/compiler-libs/reload.cmti lib/ocaml/compiler-libs/reload.cmx lib/ocaml/compiler-libs/reload.mli lib/ocaml/compiler-libs/reloadgen.cmi lib/ocaml/compiler-libs/reloadgen.cmt lib/ocaml/compiler-libs/reloadgen.cmti lib/ocaml/compiler-libs/reloadgen.cmx lib/ocaml/compiler-libs/reloadgen.mli lib/ocaml/compiler-libs/remove_free_vars_equal_to_args.cmi lib/ocaml/compiler-libs/remove_free_vars_equal_to_args.cmt lib/ocaml/compiler-libs/remove_free_vars_equal_to_args.cmti lib/ocaml/compiler-libs/remove_free_vars_equal_to_args.cmx lib/ocaml/compiler-libs/remove_free_vars_equal_to_args.mli lib/ocaml/compiler-libs/remove_unused_arguments.cmi lib/ocaml/compiler-libs/remove_unused_arguments.cmt lib/ocaml/compiler-libs/remove_unused_arguments.cmti lib/ocaml/compiler-libs/remove_unused_arguments.cmx lib/ocaml/compiler-libs/remove_unused_arguments.mli lib/ocaml/compiler-libs/remove_unused_closure_vars.cmi lib/ocaml/compiler-libs/remove_unused_closure_vars.cmt lib/ocaml/compiler-libs/remove_unused_closure_vars.cmti lib/ocaml/compiler-libs/remove_unused_closure_vars.cmx lib/ocaml/compiler-libs/remove_unused_closure_vars.mli lib/ocaml/compiler-libs/remove_unused_program_constructs.cmi lib/ocaml/compiler-libs/remove_unused_program_constructs.cmt lib/ocaml/compiler-libs/remove_unused_program_constructs.cmti lib/ocaml/compiler-libs/remove_unused_program_constructs.cmx lib/ocaml/compiler-libs/remove_unused_program_constructs.mli lib/ocaml/compiler-libs/runtimedef.cmi lib/ocaml/compiler-libs/runtimedef.cmt lib/ocaml/compiler-libs/runtimedef.cmti lib/ocaml/compiler-libs/runtimedef.cmx lib/ocaml/compiler-libs/runtimedef.mli lib/ocaml/compiler-libs/schedgen.cmi lib/ocaml/compiler-libs/schedgen.cmt lib/ocaml/compiler-libs/schedgen.cmti lib/ocaml/compiler-libs/schedgen.cmx lib/ocaml/compiler-libs/schedgen.mli lib/ocaml/compiler-libs/scheduling.cmi lib/ocaml/compiler-libs/scheduling.cmt lib/ocaml/compiler-libs/scheduling.cmti lib/ocaml/compiler-libs/scheduling.cmx lib/ocaml/compiler-libs/scheduling.mli lib/ocaml/compiler-libs/selectgen.cmi lib/ocaml/compiler-libs/selectgen.cmt lib/ocaml/compiler-libs/selectgen.cmti lib/ocaml/compiler-libs/selectgen.cmx lib/ocaml/compiler-libs/selectgen.mli lib/ocaml/compiler-libs/selection.cmi lib/ocaml/compiler-libs/selection.cmt lib/ocaml/compiler-libs/selection.cmti lib/ocaml/compiler-libs/selection.cmx lib/ocaml/compiler-libs/selection.mli lib/ocaml/compiler-libs/semantics_of_primitives.cmi lib/ocaml/compiler-libs/semantics_of_primitives.cmt lib/ocaml/compiler-libs/semantics_of_primitives.cmti lib/ocaml/compiler-libs/semantics_of_primitives.cmx lib/ocaml/compiler-libs/semantics_of_primitives.mli lib/ocaml/compiler-libs/set_of_closures_id.cmi lib/ocaml/compiler-libs/set_of_closures_id.cmt lib/ocaml/compiler-libs/set_of_closures_id.cmti lib/ocaml/compiler-libs/set_of_closures_id.cmx lib/ocaml/compiler-libs/set_of_closures_id.mli lib/ocaml/compiler-libs/set_of_closures_origin.cmi lib/ocaml/compiler-libs/set_of_closures_origin.cmt lib/ocaml/compiler-libs/set_of_closures_origin.cmti lib/ocaml/compiler-libs/set_of_closures_origin.cmx lib/ocaml/compiler-libs/set_of_closures_origin.mli lib/ocaml/compiler-libs/share_constants.cmi lib/ocaml/compiler-libs/share_constants.cmt lib/ocaml/compiler-libs/share_constants.cmti lib/ocaml/compiler-libs/share_constants.cmx lib/ocaml/compiler-libs/share_constants.mli lib/ocaml/compiler-libs/simple_value_approx.cmi lib/ocaml/compiler-libs/simple_value_approx.cmt lib/ocaml/compiler-libs/simple_value_approx.cmti lib/ocaml/compiler-libs/simple_value_approx.cmx lib/ocaml/compiler-libs/simple_value_approx.mli lib/ocaml/compiler-libs/simplif.cmi lib/ocaml/compiler-libs/simplif.cmt lib/ocaml/compiler-libs/simplif.cmti lib/ocaml/compiler-libs/simplif.cmx lib/ocaml/compiler-libs/simplif.mli lib/ocaml/compiler-libs/simplify_boxed_integer_ops.cmi lib/ocaml/compiler-libs/simplify_boxed_integer_ops.cmt lib/ocaml/compiler-libs/simplify_boxed_integer_ops.cmti lib/ocaml/compiler-libs/simplify_boxed_integer_ops.cmx lib/ocaml/compiler-libs/simplify_boxed_integer_ops.mli lib/ocaml/compiler-libs/simplify_boxed_integer_ops_intf.cmi lib/ocaml/compiler-libs/simplify_boxed_integer_ops_intf.cmti lib/ocaml/compiler-libs/simplify_boxed_integer_ops_intf.mli lib/ocaml/compiler-libs/simplify_common.cmi lib/ocaml/compiler-libs/simplify_common.cmt lib/ocaml/compiler-libs/simplify_common.cmti lib/ocaml/compiler-libs/simplify_common.cmx lib/ocaml/compiler-libs/simplify_common.mli lib/ocaml/compiler-libs/simplify_primitives.cmi lib/ocaml/compiler-libs/simplify_primitives.cmt lib/ocaml/compiler-libs/simplify_primitives.cmti lib/ocaml/compiler-libs/simplify_primitives.cmx lib/ocaml/compiler-libs/simplify_primitives.mli -lib/ocaml/compiler-libs/spacetime_profiling.cmi -lib/ocaml/compiler-libs/spacetime_profiling.cmt -lib/ocaml/compiler-libs/spacetime_profiling.cmti -lib/ocaml/compiler-libs/spacetime_profiling.cmx -lib/ocaml/compiler-libs/spacetime_profiling.mli +lib/ocaml/compiler-libs/shape.cmi +lib/ocaml/compiler-libs/shape.cmt +lib/ocaml/compiler-libs/shape.cmti +lib/ocaml/compiler-libs/shape.cmx +lib/ocaml/compiler-libs/shape.mli +lib/ocaml/compiler-libs/signature_group.cmi +lib/ocaml/compiler-libs/signature_group.cmt +lib/ocaml/compiler-libs/signature_group.cmti +lib/ocaml/compiler-libs/signature_group.cmx +lib/ocaml/compiler-libs/signature_group.mli lib/ocaml/compiler-libs/spill.cmi lib/ocaml/compiler-libs/spill.cmt lib/ocaml/compiler-libs/spill.cmti lib/ocaml/compiler-libs/spill.cmx lib/ocaml/compiler-libs/spill.mli lib/ocaml/compiler-libs/split.cmi lib/ocaml/compiler-libs/split.cmt lib/ocaml/compiler-libs/split.cmti lib/ocaml/compiler-libs/split.cmx lib/ocaml/compiler-libs/split.mli lib/ocaml/compiler-libs/static_exception.cmi lib/ocaml/compiler-libs/static_exception.cmt lib/ocaml/compiler-libs/static_exception.cmti lib/ocaml/compiler-libs/static_exception.cmx lib/ocaml/compiler-libs/static_exception.mli lib/ocaml/compiler-libs/strmatch.cmi lib/ocaml/compiler-libs/strmatch.cmt lib/ocaml/compiler-libs/strmatch.cmti lib/ocaml/compiler-libs/strmatch.cmx lib/ocaml/compiler-libs/strmatch.mli lib/ocaml/compiler-libs/strongly_connected_components.cmi lib/ocaml/compiler-libs/strongly_connected_components.cmt lib/ocaml/compiler-libs/strongly_connected_components.cmti lib/ocaml/compiler-libs/strongly_connected_components.cmx lib/ocaml/compiler-libs/strongly_connected_components.mli lib/ocaml/compiler-libs/stypes.cmi lib/ocaml/compiler-libs/stypes.cmt lib/ocaml/compiler-libs/stypes.cmti lib/ocaml/compiler-libs/stypes.cmx lib/ocaml/compiler-libs/stypes.mli lib/ocaml/compiler-libs/subst.cmi lib/ocaml/compiler-libs/subst.cmt lib/ocaml/compiler-libs/subst.cmti lib/ocaml/compiler-libs/subst.cmx lib/ocaml/compiler-libs/subst.mli lib/ocaml/compiler-libs/switch.cmi lib/ocaml/compiler-libs/switch.cmt lib/ocaml/compiler-libs/switch.cmti lib/ocaml/compiler-libs/switch.cmx lib/ocaml/compiler-libs/switch.mli lib/ocaml/compiler-libs/symbol.cmi lib/ocaml/compiler-libs/symbol.cmt lib/ocaml/compiler-libs/symbol.cmti lib/ocaml/compiler-libs/symbol.cmx lib/ocaml/compiler-libs/symbol.mli lib/ocaml/compiler-libs/symtable.cmi lib/ocaml/compiler-libs/symtable.cmt lib/ocaml/compiler-libs/symtable.cmti lib/ocaml/compiler-libs/symtable.cmx lib/ocaml/compiler-libs/symtable.mli lib/ocaml/compiler-libs/syntaxerr.cmi lib/ocaml/compiler-libs/syntaxerr.cmt lib/ocaml/compiler-libs/syntaxerr.cmti lib/ocaml/compiler-libs/syntaxerr.cmx lib/ocaml/compiler-libs/syntaxerr.mli lib/ocaml/compiler-libs/tag.cmi lib/ocaml/compiler-libs/tag.cmt lib/ocaml/compiler-libs/tag.cmti lib/ocaml/compiler-libs/tag.cmx lib/ocaml/compiler-libs/tag.mli lib/ocaml/compiler-libs/targetint.cmi lib/ocaml/compiler-libs/targetint.cmt lib/ocaml/compiler-libs/targetint.cmti lib/ocaml/compiler-libs/targetint.cmx lib/ocaml/compiler-libs/targetint.mli +lib/ocaml/compiler-libs/tast_iterator.cmi +lib/ocaml/compiler-libs/tast_iterator.cmt +lib/ocaml/compiler-libs/tast_iterator.cmti +lib/ocaml/compiler-libs/tast_iterator.cmx +lib/ocaml/compiler-libs/tast_iterator.mli lib/ocaml/compiler-libs/tast_mapper.cmi lib/ocaml/compiler-libs/tast_mapper.cmt lib/ocaml/compiler-libs/tast_mapper.cmti lib/ocaml/compiler-libs/tast_mapper.cmx lib/ocaml/compiler-libs/tast_mapper.mli lib/ocaml/compiler-libs/terminfo.cmi lib/ocaml/compiler-libs/terminfo.cmt lib/ocaml/compiler-libs/terminfo.cmti lib/ocaml/compiler-libs/terminfo.cmx lib/ocaml/compiler-libs/terminfo.mli +lib/ocaml/compiler-libs/tmc.cmi +lib/ocaml/compiler-libs/tmc.cmt +lib/ocaml/compiler-libs/tmc.cmti +lib/ocaml/compiler-libs/tmc.cmx +lib/ocaml/compiler-libs/tmc.mli +lib/ocaml/compiler-libs/topcommon.cmi +lib/ocaml/compiler-libs/topcommon.cmt +lib/ocaml/compiler-libs/topcommon.cmti +lib/ocaml/compiler-libs/topcommon.cmx +lib/ocaml/compiler-libs/topcommon.mli lib/ocaml/compiler-libs/topdirs.cmi lib/ocaml/compiler-libs/topdirs.cmt lib/ocaml/compiler-libs/topdirs.cmti lib/ocaml/compiler-libs/topdirs.mli +lib/ocaml/compiler-libs/topdirs.cmx +lib/ocaml/compiler-libs/topeval.cmi +lib/ocaml/compiler-libs/topeval.cmt +lib/ocaml/compiler-libs/topeval.cmti +lib/ocaml/compiler-libs/topeval.cmx +lib/ocaml/compiler-libs/topeval.mli +lib/ocaml/compiler-libs/tophooks.cmi +lib/ocaml/compiler-libs/tophooks.cmx +lib/ocaml/compiler-libs/toploop.cmx lib/ocaml/compiler-libs/toploop.cmi lib/ocaml/compiler-libs/toploop.cmt lib/ocaml/compiler-libs/toploop.cmti lib/ocaml/compiler-libs/toploop.mli lib/ocaml/compiler-libs/topmain.cmi lib/ocaml/compiler-libs/topmain.cmt lib/ocaml/compiler-libs/topmain.cmti lib/ocaml/compiler-libs/topmain.mli +lib/ocaml/compiler-libs/topmain.cmx +lib/ocaml/compiler-libs/topstart.cmx lib/ocaml/compiler-libs/topstart.cmi lib/ocaml/compiler-libs/topstart.cmo lib/ocaml/compiler-libs/topstart.cmt +lib/ocaml/compiler-libs/topstart.o lib/ocaml/compiler-libs/trace.cmi lib/ocaml/compiler-libs/trace.cmt lib/ocaml/compiler-libs/trace.cmti lib/ocaml/compiler-libs/trace.mli +lib/ocaml/compiler-libs/trace.cmx lib/ocaml/compiler-libs/translattribute.cmi lib/ocaml/compiler-libs/translattribute.cmt lib/ocaml/compiler-libs/translattribute.cmti lib/ocaml/compiler-libs/translattribute.cmx lib/ocaml/compiler-libs/translattribute.mli lib/ocaml/compiler-libs/translclass.cmi lib/ocaml/compiler-libs/translclass.cmt lib/ocaml/compiler-libs/translclass.cmti lib/ocaml/compiler-libs/translclass.cmx lib/ocaml/compiler-libs/translclass.mli lib/ocaml/compiler-libs/translcore.cmi lib/ocaml/compiler-libs/translcore.cmt lib/ocaml/compiler-libs/translcore.cmti lib/ocaml/compiler-libs/translcore.cmx lib/ocaml/compiler-libs/translcore.mli lib/ocaml/compiler-libs/translmod.cmi lib/ocaml/compiler-libs/translmod.cmt lib/ocaml/compiler-libs/translmod.cmti lib/ocaml/compiler-libs/translmod.cmx lib/ocaml/compiler-libs/translmod.mli lib/ocaml/compiler-libs/translobj.cmi lib/ocaml/compiler-libs/translobj.cmt lib/ocaml/compiler-libs/translobj.cmti lib/ocaml/compiler-libs/translobj.cmx lib/ocaml/compiler-libs/translobj.mli lib/ocaml/compiler-libs/translprim.cmi lib/ocaml/compiler-libs/translprim.cmt lib/ocaml/compiler-libs/translprim.cmti lib/ocaml/compiler-libs/translprim.cmx lib/ocaml/compiler-libs/translprim.mli lib/ocaml/compiler-libs/traverse_for_exported_symbols.cmi lib/ocaml/compiler-libs/traverse_for_exported_symbols.cmt lib/ocaml/compiler-libs/traverse_for_exported_symbols.cmti lib/ocaml/compiler-libs/traverse_for_exported_symbols.cmx lib/ocaml/compiler-libs/traverse_for_exported_symbols.mli +lib/ocaml/compiler-libs/type_immediacy.cmi +lib/ocaml/compiler-libs/type_immediacy.cmt +lib/ocaml/compiler-libs/type_immediacy.cmti +lib/ocaml/compiler-libs/type_immediacy.cmx +lib/ocaml/compiler-libs/type_immediacy.mli lib/ocaml/compiler-libs/typeclass.cmi lib/ocaml/compiler-libs/typeclass.cmt lib/ocaml/compiler-libs/typeclass.cmti lib/ocaml/compiler-libs/typeclass.cmx lib/ocaml/compiler-libs/typeclass.mli lib/ocaml/compiler-libs/typecore.cmi lib/ocaml/compiler-libs/typecore.cmt lib/ocaml/compiler-libs/typecore.cmti lib/ocaml/compiler-libs/typecore.cmx lib/ocaml/compiler-libs/typecore.mli lib/ocaml/compiler-libs/typedecl.cmi lib/ocaml/compiler-libs/typedecl.cmt lib/ocaml/compiler-libs/typedecl.cmti lib/ocaml/compiler-libs/typedecl.cmx lib/ocaml/compiler-libs/typedecl.mli lib/ocaml/compiler-libs/typedecl_immediacy.cmi lib/ocaml/compiler-libs/typedecl_immediacy.cmt lib/ocaml/compiler-libs/typedecl_immediacy.cmti lib/ocaml/compiler-libs/typedecl_immediacy.cmx lib/ocaml/compiler-libs/typedecl_immediacy.mli +lib/ocaml/compiler-libs/typedecl_separability.cmi +lib/ocaml/compiler-libs/typedecl_separability.cmt +lib/ocaml/compiler-libs/typedecl_separability.cmti +lib/ocaml/compiler-libs/typedecl_separability.cmx +lib/ocaml/compiler-libs/typedecl_separability.mli lib/ocaml/compiler-libs/typedecl_properties.cmi lib/ocaml/compiler-libs/typedecl_properties.cmt lib/ocaml/compiler-libs/typedecl_properties.cmti lib/ocaml/compiler-libs/typedecl_properties.cmx lib/ocaml/compiler-libs/typedecl_properties.mli lib/ocaml/compiler-libs/typedecl_unboxed.cmi lib/ocaml/compiler-libs/typedecl_unboxed.cmt lib/ocaml/compiler-libs/typedecl_unboxed.cmti lib/ocaml/compiler-libs/typedecl_unboxed.cmx lib/ocaml/compiler-libs/typedecl_unboxed.mli lib/ocaml/compiler-libs/typedecl_variance.cmi lib/ocaml/compiler-libs/typedecl_variance.cmt lib/ocaml/compiler-libs/typedecl_variance.cmti lib/ocaml/compiler-libs/typedecl_variance.cmx lib/ocaml/compiler-libs/typedecl_variance.mli lib/ocaml/compiler-libs/typedtree.cmi lib/ocaml/compiler-libs/typedtree.cmt lib/ocaml/compiler-libs/typedtree.cmti lib/ocaml/compiler-libs/typedtree.cmx lib/ocaml/compiler-libs/typedtree.mli -lib/ocaml/compiler-libs/typedtreeIter.cmi -lib/ocaml/compiler-libs/typedtreeIter.cmt -lib/ocaml/compiler-libs/typedtreeIter.cmti -lib/ocaml/compiler-libs/typedtreeIter.cmx -lib/ocaml/compiler-libs/typedtreeIter.mli lib/ocaml/compiler-libs/typemod.cmi lib/ocaml/compiler-libs/typemod.cmt lib/ocaml/compiler-libs/typemod.cmti lib/ocaml/compiler-libs/typemod.cmx lib/ocaml/compiler-libs/typemod.mli lib/ocaml/compiler-libs/typeopt.cmi lib/ocaml/compiler-libs/typeopt.cmt lib/ocaml/compiler-libs/typeopt.cmti lib/ocaml/compiler-libs/typeopt.cmx lib/ocaml/compiler-libs/typeopt.mli lib/ocaml/compiler-libs/types.cmi lib/ocaml/compiler-libs/types.cmt lib/ocaml/compiler-libs/types.cmti lib/ocaml/compiler-libs/types.cmx lib/ocaml/compiler-libs/types.mli lib/ocaml/compiler-libs/typetexp.cmi lib/ocaml/compiler-libs/typetexp.cmt lib/ocaml/compiler-libs/typetexp.cmti lib/ocaml/compiler-libs/typetexp.cmx lib/ocaml/compiler-libs/typetexp.mli lib/ocaml/compiler-libs/un_anf.cmi lib/ocaml/compiler-libs/un_anf.cmt lib/ocaml/compiler-libs/un_anf.cmti lib/ocaml/compiler-libs/un_anf.cmx lib/ocaml/compiler-libs/un_anf.mli lib/ocaml/compiler-libs/unbox_closures.cmi lib/ocaml/compiler-libs/unbox_closures.cmt lib/ocaml/compiler-libs/unbox_closures.cmti lib/ocaml/compiler-libs/unbox_closures.cmx lib/ocaml/compiler-libs/unbox_closures.mli lib/ocaml/compiler-libs/unbox_free_vars_of_closures.cmi lib/ocaml/compiler-libs/unbox_free_vars_of_closures.cmt lib/ocaml/compiler-libs/unbox_free_vars_of_closures.cmti lib/ocaml/compiler-libs/unbox_free_vars_of_closures.cmx lib/ocaml/compiler-libs/unbox_free_vars_of_closures.mli lib/ocaml/compiler-libs/unbox_specialised_args.cmi lib/ocaml/compiler-libs/unbox_specialised_args.cmt lib/ocaml/compiler-libs/unbox_specialised_args.cmti lib/ocaml/compiler-libs/unbox_specialised_args.cmx lib/ocaml/compiler-libs/unbox_specialised_args.mli lib/ocaml/compiler-libs/untypeast.cmi lib/ocaml/compiler-libs/untypeast.cmt lib/ocaml/compiler-libs/untypeast.cmti lib/ocaml/compiler-libs/untypeast.cmx lib/ocaml/compiler-libs/untypeast.mli lib/ocaml/compiler-libs/var_within_closure.cmi lib/ocaml/compiler-libs/var_within_closure.cmt lib/ocaml/compiler-libs/var_within_closure.cmti lib/ocaml/compiler-libs/var_within_closure.cmx lib/ocaml/compiler-libs/var_within_closure.mli lib/ocaml/compiler-libs/variable.cmi lib/ocaml/compiler-libs/variable.cmt lib/ocaml/compiler-libs/variable.cmti lib/ocaml/compiler-libs/variable.cmx lib/ocaml/compiler-libs/variable.mli lib/ocaml/compiler-libs/warnings.cmi lib/ocaml/compiler-libs/warnings.cmt lib/ocaml/compiler-libs/warnings.cmti lib/ocaml/compiler-libs/warnings.cmx lib/ocaml/compiler-libs/warnings.mli lib/ocaml/compiler-libs/x86_ast.cmi lib/ocaml/compiler-libs/x86_ast.cmti lib/ocaml/compiler-libs/x86_ast.mli lib/ocaml/compiler-libs/x86_dsl.cmi lib/ocaml/compiler-libs/x86_dsl.cmt lib/ocaml/compiler-libs/x86_dsl.cmti lib/ocaml/compiler-libs/x86_dsl.cmx lib/ocaml/compiler-libs/x86_dsl.mli lib/ocaml/compiler-libs/x86_gas.cmi lib/ocaml/compiler-libs/x86_gas.cmt lib/ocaml/compiler-libs/x86_gas.cmti lib/ocaml/compiler-libs/x86_gas.cmx lib/ocaml/compiler-libs/x86_gas.mli lib/ocaml/compiler-libs/x86_masm.cmi lib/ocaml/compiler-libs/x86_masm.cmt lib/ocaml/compiler-libs/x86_masm.cmti lib/ocaml/compiler-libs/x86_masm.cmx lib/ocaml/compiler-libs/x86_masm.mli lib/ocaml/compiler-libs/x86_proc.cmi lib/ocaml/compiler-libs/x86_proc.cmt lib/ocaml/compiler-libs/x86_proc.cmti lib/ocaml/compiler-libs/x86_proc.cmx lib/ocaml/compiler-libs/x86_proc.mli lib/ocaml/complex.ml lib/ocaml/complex.mli lib/ocaml/digest.ml lib/ocaml/digest.mli lib/ocaml/dynlink.a lib/ocaml/dynlink.cma lib/ocaml/dynlink.cmi lib/ocaml/dynlink.cmti lib/ocaml/dynlink.cmx lib/ocaml/dynlink.cmxa lib/ocaml/dynlink.mli lib/ocaml/dynlink_common.cmx +lib/ocaml/dynlink_compilerlibs.cmx lib/ocaml/dynlink_platform_intf.cmx lib/ocaml/dynlink_types.cmx +lib/ocaml/either.ml +lib/ocaml/either.mli +lib/ocaml/eventlog_metadata lib/ocaml/ephemeron.ml lib/ocaml/ephemeron.mli lib/ocaml/filename.ml lib/ocaml/filename.mli lib/ocaml/float.ml lib/ocaml/float.mli lib/ocaml/format.ml lib/ocaml/format.mli lib/ocaml/fun.ml lib/ocaml/fun.mli lib/ocaml/gc.ml lib/ocaml/gc.mli lib/ocaml/genlex.ml lib/ocaml/genlex.mli -%%X11%%lib/ocaml/graphics.a -%%X11%%lib/ocaml/graphics.cma -%%X11%%lib/ocaml/graphics.cmi -%%X11%%lib/ocaml/graphics.cmti -%%X11%%lib/ocaml/graphics.cmx -%%X11%%lib/ocaml/graphics.cmxa -%%X11%%lib/ocaml/graphics.cmxs -%%X11%%lib/ocaml/graphics.mli -%%X11%%lib/ocaml/graphicsX11.cmi -%%X11%%lib/ocaml/graphicsX11.cmti -%%X11%%lib/ocaml/graphicsX11.cmx -%%X11%%lib/ocaml/graphicsX11.mli lib/ocaml/hashtbl.ml lib/ocaml/hashtbl.mli +lib/ocaml/in_channel.ml +lib/ocaml/in_channel.mli lib/ocaml/int.ml lib/ocaml/int.mli lib/ocaml/int32.ml lib/ocaml/int32.mli lib/ocaml/int64.ml lib/ocaml/int64.mli lib/ocaml/lazy.ml lib/ocaml/lazy.mli lib/ocaml/ld.conf lib/ocaml/lexing.ml lib/ocaml/lexing.mli lib/ocaml/libasmrun.a lib/ocaml/libasmrun_pic.a lib/ocaml/libasmrun_shared.so lib/ocaml/libasmrund.a lib/ocaml/libasmruni.a -%%PROF%%lib/ocaml/libasmrunp.a lib/ocaml/libcamlrun.a lib/ocaml/libcamlrun_pic.a lib/ocaml/libcamlrun_shared.so lib/ocaml/libcamlrund.a lib/ocaml/libcamlruni.a lib/ocaml/libcamlstr.a -%%X11%%lib/ocaml/libgraphics.a -%%RAWSPACETIMELIB%%lib/ocaml/libraw_spacetime_lib.a %%THREADS%%lib/ocaml/libthreads.a %%THREADS%%lib/ocaml/libthreadsnat.a lib/ocaml/libunix.a lib/ocaml/list.ml lib/ocaml/list.mli lib/ocaml/listLabels.ml lib/ocaml/listLabels.mli lib/ocaml/map.ml lib/ocaml/map.mli lib/ocaml/marshal.ml lib/ocaml/marshal.mli lib/ocaml/moreLabels.ml lib/ocaml/moreLabels.mli lib/ocaml/nativeint.ml lib/ocaml/nativeint.mli lib/ocaml/obj.ml lib/ocaml/obj.mli -lib/ocaml/objinfo_helper lib/ocaml/ocamldoc/ocamldoc.hva lib/ocaml/ocamldoc/odoc.cmi lib/ocaml/ocamldoc/odoc.cmx lib/ocaml/ocamldoc/odoc_analyse.cmi lib/ocaml/ocamldoc/odoc_analyse.cmx lib/ocaml/ocamldoc/odoc_args.cmi lib/ocaml/ocamldoc/odoc_args.cmx lib/ocaml/ocamldoc/odoc_ast.cmi lib/ocaml/ocamldoc/odoc_ast.cmx lib/ocaml/ocamldoc/odoc_class.cmi lib/ocaml/ocamldoc/odoc_class.cmx lib/ocaml/ocamldoc/odoc_comments.cmi lib/ocaml/ocamldoc/odoc_comments.cmx lib/ocaml/ocamldoc/odoc_comments_global.cmi lib/ocaml/ocamldoc/odoc_comments_global.cmx lib/ocaml/ocamldoc/odoc_config.cmi lib/ocaml/ocamldoc/odoc_config.cmx lib/ocaml/ocamldoc/odoc_control.cmi lib/ocaml/ocamldoc/odoc_control.cmx lib/ocaml/ocamldoc/odoc_cross.cmi lib/ocaml/ocamldoc/odoc_cross.cmx lib/ocaml/ocamldoc/odoc_dag2html.cmi lib/ocaml/ocamldoc/odoc_dag2html.cmx lib/ocaml/ocamldoc/odoc_dep.cmi lib/ocaml/ocamldoc/odoc_dep.cmx lib/ocaml/ocamldoc/odoc_dot.cmi lib/ocaml/ocamldoc/odoc_dot.cmx lib/ocaml/ocamldoc/odoc_env.cmi lib/ocaml/ocamldoc/odoc_env.cmx lib/ocaml/ocamldoc/odoc_exception.cmi lib/ocaml/ocamldoc/odoc_exception.cmx lib/ocaml/ocamldoc/odoc_extension.cmi lib/ocaml/ocamldoc/odoc_extension.cmx lib/ocaml/ocamldoc/odoc_gen.cmi lib/ocaml/ocamldoc/odoc_gen.cmx lib/ocaml/ocamldoc/odoc_global.cmi lib/ocaml/ocamldoc/odoc_global.cmx lib/ocaml/ocamldoc/odoc_html.cmi lib/ocaml/ocamldoc/odoc_html.cmx lib/ocaml/ocamldoc/odoc_info.a lib/ocaml/ocamldoc/odoc_info.cma lib/ocaml/ocamldoc/odoc_info.cmi lib/ocaml/ocamldoc/odoc_info.cmt lib/ocaml/ocamldoc/odoc_info.cmti lib/ocaml/ocamldoc/odoc_info.cmx lib/ocaml/ocamldoc/odoc_info.cmxa lib/ocaml/ocamldoc/odoc_info.mli lib/ocaml/ocamldoc/odoc_inherit.cmi lib/ocaml/ocamldoc/odoc_inherit.cmx lib/ocaml/ocamldoc/odoc_latex.cmi lib/ocaml/ocamldoc/odoc_latex.cmx lib/ocaml/ocamldoc/odoc_latex_style.cmi lib/ocaml/ocamldoc/odoc_latex_style.cmx lib/ocaml/ocamldoc/odoc_lexer.cmi lib/ocaml/ocamldoc/odoc_lexer.cmx lib/ocaml/ocamldoc/odoc_man.cmi lib/ocaml/ocamldoc/odoc_man.cmx lib/ocaml/ocamldoc/odoc_merge.cmi lib/ocaml/ocamldoc/odoc_merge.cmx lib/ocaml/ocamldoc/odoc_messages.cmi lib/ocaml/ocamldoc/odoc_messages.cmx lib/ocaml/ocamldoc/odoc_misc.cmi lib/ocaml/ocamldoc/odoc_misc.cmx lib/ocaml/ocamldoc/odoc_module.cmi lib/ocaml/ocamldoc/odoc_module.cmx lib/ocaml/ocamldoc/odoc_name.cmi lib/ocaml/ocamldoc/odoc_name.cmx lib/ocaml/ocamldoc/odoc_ocamlhtml.cmi lib/ocaml/ocamldoc/odoc_ocamlhtml.cmx lib/ocaml/ocamldoc/odoc_parameter.cmi lib/ocaml/ocamldoc/odoc_parameter.cmx lib/ocaml/ocamldoc/odoc_parser.cmi lib/ocaml/ocamldoc/odoc_parser.cmx lib/ocaml/ocamldoc/odoc_print.cmi lib/ocaml/ocamldoc/odoc_print.cmx lib/ocaml/ocamldoc/odoc_scan.cmi lib/ocaml/ocamldoc/odoc_scan.cmx lib/ocaml/ocamldoc/odoc_search.cmi lib/ocaml/ocamldoc/odoc_search.cmx lib/ocaml/ocamldoc/odoc_see_lexer.cmi lib/ocaml/ocamldoc/odoc_see_lexer.cmx lib/ocaml/ocamldoc/odoc_sig.cmi lib/ocaml/ocamldoc/odoc_sig.cmx lib/ocaml/ocamldoc/odoc_str.cmi lib/ocaml/ocamldoc/odoc_str.cmx lib/ocaml/ocamldoc/odoc_test.cmi lib/ocaml/ocamldoc/odoc_texi.cmi lib/ocaml/ocamldoc/odoc_texi.cmx lib/ocaml/ocamldoc/odoc_text.cmi lib/ocaml/ocamldoc/odoc_text.cmx lib/ocaml/ocamldoc/odoc_text_lexer.cmi lib/ocaml/ocamldoc/odoc_text_lexer.cmx lib/ocaml/ocamldoc/odoc_text_parser.cmi lib/ocaml/ocamldoc/odoc_text_parser.cmx lib/ocaml/ocamldoc/odoc_to_text.cmi lib/ocaml/ocamldoc/odoc_to_text.cmx lib/ocaml/ocamldoc/odoc_type.cmi lib/ocaml/ocamldoc/odoc_type.cmx lib/ocaml/ocamldoc/odoc_types.cmi lib/ocaml/ocamldoc/odoc_types.cmx lib/ocaml/ocamldoc/odoc_value.cmi lib/ocaml/ocamldoc/odoc_value.cmx lib/ocaml/oo.ml lib/ocaml/oo.mli lib/ocaml/option.ml lib/ocaml/option.mli +lib/ocaml/out_channel.ml +lib/ocaml/out_channel.mli lib/ocaml/parsing.ml lib/ocaml/parsing.mli lib/ocaml/pervasives.ml lib/ocaml/printexc.ml lib/ocaml/printexc.mli lib/ocaml/printf.ml lib/ocaml/printf.mli lib/ocaml/profiling.cmi lib/ocaml/profiling.cmo lib/ocaml/profiling.cmt lib/ocaml/profiling.cmti lib/ocaml/profiling.cmx lib/ocaml/profiling.o lib/ocaml/queue.ml lib/ocaml/queue.mli lib/ocaml/random.ml lib/ocaml/random.mli -%%RAWSPACETIMELIB%%lib/ocaml/raw_spacetime_lib.a -%%RAWSPACETIMELIB%%lib/ocaml/raw_spacetime_lib.cma -%%RAWSPACETIMELIB%%lib/ocaml/raw_spacetime_lib.cmi -%%RAWSPACETIMELIB%%lib/ocaml/raw_spacetime_lib.cmti -%%RAWSPACETIMELIB%%lib/ocaml/raw_spacetime_lib.cmx -%%RAWSPACETIMELIB%%lib/ocaml/raw_spacetime_lib.cmxa -%%RAWSPACETIMELIB%%lib/ocaml/raw_spacetime_lib.cmxs -%%RAWSPACETIMELIB%%lib/ocaml/raw_spacetime_lib.mli lib/ocaml/result.ml lib/ocaml/result.mli lib/ocaml/scanf.ml lib/ocaml/scanf.mli lib/ocaml/seq.ml lib/ocaml/seq.mli lib/ocaml/set.ml lib/ocaml/set.mli -lib/ocaml/spacetime.ml -lib/ocaml/spacetime.mli lib/ocaml/stack.ml lib/ocaml/stack.mli lib/ocaml/stdLabels.ml lib/ocaml/stdLabels.mli lib/ocaml/std_exit.cmi lib/ocaml/std_exit.cmo lib/ocaml/std_exit.cmt lib/ocaml/std_exit.cmx lib/ocaml/std_exit.ml lib/ocaml/std_exit.o -%%PROF%%lib/ocaml/std_exit.p.cmt -%%PROF%%lib/ocaml/std_exit.p.cmx -%%PROF%%lib/ocaml/std_exit.p.o lib/ocaml/stdlib.a lib/ocaml/stdlib.cma lib/ocaml/stdlib.cmi lib/ocaml/stdlib.cmt lib/ocaml/stdlib.cmti lib/ocaml/stdlib.cmx lib/ocaml/stdlib.cmxa lib/ocaml/stdlib.ml lib/ocaml/stdlib.mli -%%PROF%%lib/ocaml/stdlib.p.a -%%PROF%%lib/ocaml/stdlib.p.cmt -%%PROF%%lib/ocaml/stdlib.p.cmx -%%PROF%%lib/ocaml/stdlib.p.cmxa -lib/ocaml/stdlib__arg.cmi -lib/ocaml/stdlib__arg.cmt -lib/ocaml/stdlib__arg.cmti -lib/ocaml/stdlib__arg.cmx -%%PROF%%lib/ocaml/stdlib__arg.p.cmt -%%PROF%%lib/ocaml/stdlib__arg.p.cmx -lib/ocaml/stdlib__array.cmi -lib/ocaml/stdlib__array.cmt -lib/ocaml/stdlib__array.cmti -lib/ocaml/stdlib__array.cmx -%%PROF%%lib/ocaml/stdlib__array.p.cmt -%%PROF%%lib/ocaml/stdlib__array.p.cmx -lib/ocaml/stdlib__arrayLabels.cmi -lib/ocaml/stdlib__arrayLabels.cmt -lib/ocaml/stdlib__arrayLabels.cmti -lib/ocaml/stdlib__arrayLabels.cmx -%%PROF%%lib/ocaml/stdlib__arrayLabels.p.cmt -%%PROF%%lib/ocaml/stdlib__arrayLabels.p.cmx -lib/ocaml/stdlib__bigarray.cmi -lib/ocaml/stdlib__bigarray.cmt -lib/ocaml/stdlib__bigarray.cmti -lib/ocaml/stdlib__bigarray.cmx -%%PROF%%lib/ocaml/stdlib__bigarray.p.cmt -%%PROF%%lib/ocaml/stdlib__bigarray.p.cmx -lib/ocaml/stdlib__bool.cmi -lib/ocaml/stdlib__bool.cmt -lib/ocaml/stdlib__bool.cmti -lib/ocaml/stdlib__bool.cmx -%%PROF%%lib/ocaml/stdlib__bool.p.cmt -%%PROF%%lib/ocaml/stdlib__bool.p.cmx -lib/ocaml/stdlib__buffer.cmi -lib/ocaml/stdlib__buffer.cmt -lib/ocaml/stdlib__buffer.cmti -lib/ocaml/stdlib__buffer.cmx -%%PROF%%lib/ocaml/stdlib__buffer.p.cmt -%%PROF%%lib/ocaml/stdlib__buffer.p.cmx -lib/ocaml/stdlib__bytes.cmi -lib/ocaml/stdlib__bytes.cmt -lib/ocaml/stdlib__bytes.cmti -lib/ocaml/stdlib__bytes.cmx -%%PROF%%lib/ocaml/stdlib__bytes.p.cmt -%%PROF%%lib/ocaml/stdlib__bytes.p.cmx -lib/ocaml/stdlib__bytesLabels.cmi -lib/ocaml/stdlib__bytesLabels.cmt -lib/ocaml/stdlib__bytesLabels.cmti -lib/ocaml/stdlib__bytesLabels.cmx -%%PROF%%lib/ocaml/stdlib__bytesLabels.p.cmt -%%PROF%%lib/ocaml/stdlib__bytesLabels.p.cmx -lib/ocaml/stdlib__callback.cmi -lib/ocaml/stdlib__callback.cmt -lib/ocaml/stdlib__callback.cmti -lib/ocaml/stdlib__callback.cmx -%%PROF%%lib/ocaml/stdlib__callback.p.cmt -%%PROF%%lib/ocaml/stdlib__callback.p.cmx -lib/ocaml/stdlib__char.cmi -lib/ocaml/stdlib__char.cmt -lib/ocaml/stdlib__char.cmti -lib/ocaml/stdlib__char.cmx -%%PROF%%lib/ocaml/stdlib__char.p.cmt -%%PROF%%lib/ocaml/stdlib__char.p.cmx -lib/ocaml/stdlib__complex.cmi -lib/ocaml/stdlib__complex.cmt -lib/ocaml/stdlib__complex.cmti -lib/ocaml/stdlib__complex.cmx -%%PROF%%lib/ocaml/stdlib__complex.p.cmt -%%PROF%%lib/ocaml/stdlib__complex.p.cmx -lib/ocaml/stdlib__digest.cmi -lib/ocaml/stdlib__digest.cmt -lib/ocaml/stdlib__digest.cmti -lib/ocaml/stdlib__digest.cmx -%%PROF%%lib/ocaml/stdlib__digest.p.cmt -%%PROF%%lib/ocaml/stdlib__digest.p.cmx -lib/ocaml/stdlib__ephemeron.cmi -lib/ocaml/stdlib__ephemeron.cmt -lib/ocaml/stdlib__ephemeron.cmti -lib/ocaml/stdlib__ephemeron.cmx -%%PROF%%lib/ocaml/stdlib__ephemeron.p.cmt -%%PROF%%lib/ocaml/stdlib__ephemeron.p.cmx -lib/ocaml/stdlib__filename.cmi -lib/ocaml/stdlib__filename.cmt -lib/ocaml/stdlib__filename.cmti -lib/ocaml/stdlib__filename.cmx -%%PROF%%lib/ocaml/stdlib__filename.p.cmt -%%PROF%%lib/ocaml/stdlib__filename.p.cmx -lib/ocaml/stdlib__float.cmi -lib/ocaml/stdlib__float.cmt -lib/ocaml/stdlib__float.cmti -lib/ocaml/stdlib__float.cmx -%%PROF%%lib/ocaml/stdlib__float.p.cmt -%%PROF%%lib/ocaml/stdlib__float.p.cmx -lib/ocaml/stdlib__format.cmi -lib/ocaml/stdlib__format.cmt -lib/ocaml/stdlib__format.cmti -lib/ocaml/stdlib__format.cmx -%%PROF%%lib/ocaml/stdlib__format.p.cmt -%%PROF%%lib/ocaml/stdlib__format.p.cmx -lib/ocaml/stdlib__fun.cmi -lib/ocaml/stdlib__fun.cmt -lib/ocaml/stdlib__fun.cmti -lib/ocaml/stdlib__fun.cmx -%%PROF%%lib/ocaml/stdlib__fun.p.cmt -%%PROF%%lib/ocaml/stdlib__fun.p.cmx -lib/ocaml/stdlib__gc.cmi -lib/ocaml/stdlib__gc.cmt -lib/ocaml/stdlib__gc.cmti -lib/ocaml/stdlib__gc.cmx -%%PROF%%lib/ocaml/stdlib__gc.p.cmt -%%PROF%%lib/ocaml/stdlib__gc.p.cmx -lib/ocaml/stdlib__genlex.cmi -lib/ocaml/stdlib__genlex.cmt -lib/ocaml/stdlib__genlex.cmti -lib/ocaml/stdlib__genlex.cmx -%%PROF%%lib/ocaml/stdlib__genlex.p.cmt -%%PROF%%lib/ocaml/stdlib__genlex.p.cmx -lib/ocaml/stdlib__hashtbl.cmi -lib/ocaml/stdlib__hashtbl.cmt -lib/ocaml/stdlib__hashtbl.cmti -lib/ocaml/stdlib__hashtbl.cmx -%%PROF%%lib/ocaml/stdlib__hashtbl.p.cmt -%%PROF%%lib/ocaml/stdlib__hashtbl.p.cmx -lib/ocaml/stdlib__int.cmi -lib/ocaml/stdlib__int.cmt -lib/ocaml/stdlib__int.cmti -lib/ocaml/stdlib__int.cmx -%%PROF%%lib/ocaml/stdlib__int.p.cmt -%%PROF%%lib/ocaml/stdlib__int.p.cmx -lib/ocaml/stdlib__int32.cmi -lib/ocaml/stdlib__int32.cmt -lib/ocaml/stdlib__int32.cmti -lib/ocaml/stdlib__int32.cmx -%%PROF%%lib/ocaml/stdlib__int32.p.cmt -%%PROF%%lib/ocaml/stdlib__int32.p.cmx -lib/ocaml/stdlib__int64.cmi -lib/ocaml/stdlib__int64.cmt -lib/ocaml/stdlib__int64.cmti -lib/ocaml/stdlib__int64.cmx -%%PROF%%lib/ocaml/stdlib__int64.p.cmt -%%PROF%%lib/ocaml/stdlib__int64.p.cmx -lib/ocaml/stdlib__lazy.cmi -lib/ocaml/stdlib__lazy.cmt -lib/ocaml/stdlib__lazy.cmti -lib/ocaml/stdlib__lazy.cmx -%%PROF%%lib/ocaml/stdlib__lazy.p.cmt -%%PROF%%lib/ocaml/stdlib__lazy.p.cmx -lib/ocaml/stdlib__lexing.cmi -lib/ocaml/stdlib__lexing.cmt -lib/ocaml/stdlib__lexing.cmti -lib/ocaml/stdlib__lexing.cmx -%%PROF%%lib/ocaml/stdlib__lexing.p.cmt -%%PROF%%lib/ocaml/stdlib__lexing.p.cmx -lib/ocaml/stdlib__list.cmi -lib/ocaml/stdlib__list.cmt -lib/ocaml/stdlib__list.cmti -lib/ocaml/stdlib__list.cmx -%%PROF%%lib/ocaml/stdlib__list.p.cmt -%%PROF%%lib/ocaml/stdlib__list.p.cmx -lib/ocaml/stdlib__listLabels.cmi -lib/ocaml/stdlib__listLabels.cmt -lib/ocaml/stdlib__listLabels.cmti -lib/ocaml/stdlib__listLabels.cmx -%%PROF%%lib/ocaml/stdlib__listLabels.p.cmt -%%PROF%%lib/ocaml/stdlib__listLabels.p.cmx -lib/ocaml/stdlib__map.cmi -lib/ocaml/stdlib__map.cmt -lib/ocaml/stdlib__map.cmti -lib/ocaml/stdlib__map.cmx -%%PROF%%lib/ocaml/stdlib__map.p.cmt -%%PROF%%lib/ocaml/stdlib__map.p.cmx -lib/ocaml/stdlib__marshal.cmi -lib/ocaml/stdlib__marshal.cmt -lib/ocaml/stdlib__marshal.cmti -lib/ocaml/stdlib__marshal.cmx -%%PROF%%lib/ocaml/stdlib__marshal.p.cmt -%%PROF%%lib/ocaml/stdlib__marshal.p.cmx -lib/ocaml/stdlib__moreLabels.cmi -lib/ocaml/stdlib__moreLabels.cmt -lib/ocaml/stdlib__moreLabels.cmti -lib/ocaml/stdlib__moreLabels.cmx -%%PROF%%lib/ocaml/stdlib__moreLabels.p.cmt -%%PROF%%lib/ocaml/stdlib__moreLabels.p.cmx -lib/ocaml/stdlib__nativeint.cmi -lib/ocaml/stdlib__nativeint.cmt -lib/ocaml/stdlib__nativeint.cmti -lib/ocaml/stdlib__nativeint.cmx -%%PROF%%lib/ocaml/stdlib__nativeint.p.cmt -%%PROF%%lib/ocaml/stdlib__nativeint.p.cmx -lib/ocaml/stdlib__obj.cmi -lib/ocaml/stdlib__obj.cmt -lib/ocaml/stdlib__obj.cmti -lib/ocaml/stdlib__obj.cmx -%%PROF%%lib/ocaml/stdlib__obj.p.cmt -%%PROF%%lib/ocaml/stdlib__obj.p.cmx -lib/ocaml/stdlib__oo.cmi -lib/ocaml/stdlib__oo.cmt -lib/ocaml/stdlib__oo.cmti -lib/ocaml/stdlib__oo.cmx -%%PROF%%lib/ocaml/stdlib__oo.p.cmt -%%PROF%%lib/ocaml/stdlib__oo.p.cmx -lib/ocaml/stdlib__option.cmi -lib/ocaml/stdlib__option.cmt -lib/ocaml/stdlib__option.cmti -lib/ocaml/stdlib__option.cmx -%%PROF%%lib/ocaml/stdlib__option.p.cmt -%%PROF%%lib/ocaml/stdlib__option.p.cmx -lib/ocaml/stdlib__parsing.cmi -lib/ocaml/stdlib__parsing.cmt -lib/ocaml/stdlib__parsing.cmti -lib/ocaml/stdlib__parsing.cmx -%%PROF%%lib/ocaml/stdlib__parsing.p.cmt -%%PROF%%lib/ocaml/stdlib__parsing.p.cmx -lib/ocaml/stdlib__pervasives.cmi -lib/ocaml/stdlib__pervasives.cmt -lib/ocaml/stdlib__pervasives.cmx -%%PROF%%lib/ocaml/stdlib__pervasives.p.cmi -%%PROF%%lib/ocaml/stdlib__pervasives.p.cmt -%%PROF%%lib/ocaml/stdlib__pervasives.p.cmx -lib/ocaml/stdlib__printexc.cmi -lib/ocaml/stdlib__printexc.cmt -lib/ocaml/stdlib__printexc.cmti -lib/ocaml/stdlib__printexc.cmx -%%PROF%%lib/ocaml/stdlib__printexc.p.cmt -%%PROF%%lib/ocaml/stdlib__printexc.p.cmx -lib/ocaml/stdlib__printf.cmi -lib/ocaml/stdlib__printf.cmt -lib/ocaml/stdlib__printf.cmti -lib/ocaml/stdlib__printf.cmx -%%PROF%%lib/ocaml/stdlib__printf.p.cmt -%%PROF%%lib/ocaml/stdlib__printf.p.cmx -lib/ocaml/stdlib__queue.cmi -lib/ocaml/stdlib__queue.cmt -lib/ocaml/stdlib__queue.cmti -lib/ocaml/stdlib__queue.cmx -%%PROF%%lib/ocaml/stdlib__queue.p.cmt -%%PROF%%lib/ocaml/stdlib__queue.p.cmx -lib/ocaml/stdlib__random.cmi -lib/ocaml/stdlib__random.cmt -lib/ocaml/stdlib__random.cmti -lib/ocaml/stdlib__random.cmx -%%PROF%%lib/ocaml/stdlib__random.p.cmt -%%PROF%%lib/ocaml/stdlib__random.p.cmx -lib/ocaml/stdlib__result.cmi -lib/ocaml/stdlib__result.cmt -lib/ocaml/stdlib__result.cmti -lib/ocaml/stdlib__result.cmx -%%PROF%%lib/ocaml/stdlib__result.p.cmt -%%PROF%%lib/ocaml/stdlib__result.p.cmx -lib/ocaml/stdlib__scanf.cmi -lib/ocaml/stdlib__scanf.cmt -lib/ocaml/stdlib__scanf.cmti -lib/ocaml/stdlib__scanf.cmx -%%PROF%%lib/ocaml/stdlib__scanf.p.cmt -%%PROF%%lib/ocaml/stdlib__scanf.p.cmx -lib/ocaml/stdlib__seq.cmi -lib/ocaml/stdlib__seq.cmt -lib/ocaml/stdlib__seq.cmti -lib/ocaml/stdlib__seq.cmx -%%PROF%%lib/ocaml/stdlib__seq.p.cmt -%%PROF%%lib/ocaml/stdlib__seq.p.cmx -lib/ocaml/stdlib__set.cmi -lib/ocaml/stdlib__set.cmt -lib/ocaml/stdlib__set.cmti -lib/ocaml/stdlib__set.cmx -%%PROF%%lib/ocaml/stdlib__set.p.cmt -%%PROF%%lib/ocaml/stdlib__set.p.cmx -lib/ocaml/stdlib__spacetime.cmi -lib/ocaml/stdlib__spacetime.cmt -lib/ocaml/stdlib__spacetime.cmti -lib/ocaml/stdlib__spacetime.cmx -%%PROF%%lib/ocaml/stdlib__spacetime.p.cmt -%%PROF%%lib/ocaml/stdlib__spacetime.p.cmx -lib/ocaml/stdlib__stack.cmi -lib/ocaml/stdlib__stack.cmt -lib/ocaml/stdlib__stack.cmti -lib/ocaml/stdlib__stack.cmx -%%PROF%%lib/ocaml/stdlib__stack.p.cmt -%%PROF%%lib/ocaml/stdlib__stack.p.cmx -lib/ocaml/stdlib__stdLabels.cmi -lib/ocaml/stdlib__stdLabels.cmt -lib/ocaml/stdlib__stdLabels.cmti -lib/ocaml/stdlib__stdLabels.cmx -%%PROF%%lib/ocaml/stdlib__stdLabels.p.cmt -%%PROF%%lib/ocaml/stdlib__stdLabels.p.cmx -lib/ocaml/stdlib__stream.cmi -lib/ocaml/stdlib__stream.cmt -lib/ocaml/stdlib__stream.cmti -lib/ocaml/stdlib__stream.cmx -%%PROF%%lib/ocaml/stdlib__stream.p.cmt -%%PROF%%lib/ocaml/stdlib__stream.p.cmx -lib/ocaml/stdlib__string.cmi -lib/ocaml/stdlib__string.cmt -lib/ocaml/stdlib__string.cmti -lib/ocaml/stdlib__string.cmx -%%PROF%%lib/ocaml/stdlib__string.p.cmt -%%PROF%%lib/ocaml/stdlib__string.p.cmx -lib/ocaml/stdlib__stringLabels.cmi -lib/ocaml/stdlib__stringLabels.cmt -lib/ocaml/stdlib__stringLabels.cmti -lib/ocaml/stdlib__stringLabels.cmx -%%PROF%%lib/ocaml/stdlib__stringLabels.p.cmt -%%PROF%%lib/ocaml/stdlib__stringLabels.p.cmx -lib/ocaml/stdlib__sys.cmi -lib/ocaml/stdlib__sys.cmt -lib/ocaml/stdlib__sys.cmti -lib/ocaml/stdlib__sys.cmx -%%PROF%%lib/ocaml/stdlib__sys.p.cmt -%%PROF%%lib/ocaml/stdlib__sys.p.cmx -lib/ocaml/stdlib__uchar.cmi -lib/ocaml/stdlib__uchar.cmt -lib/ocaml/stdlib__uchar.cmti -lib/ocaml/stdlib__uchar.cmx -%%PROF%%lib/ocaml/stdlib__uchar.p.cmt -%%PROF%%lib/ocaml/stdlib__uchar.p.cmx -lib/ocaml/stdlib__unit.cmi -lib/ocaml/stdlib__unit.cmt -lib/ocaml/stdlib__unit.cmti -lib/ocaml/stdlib__unit.cmx -%%PROF%%lib/ocaml/stdlib__unit.p.cmt -%%PROF%%lib/ocaml/stdlib__unit.p.cmx -lib/ocaml/stdlib__weak.cmi -lib/ocaml/stdlib__weak.cmt -lib/ocaml/stdlib__weak.cmti -lib/ocaml/stdlib__weak.cmx -%%PROF%%lib/ocaml/stdlib__weak.p.cmt -%%PROF%%lib/ocaml/stdlib__weak.p.cmx +lib/ocaml/stdlib__Arg.cmi +lib/ocaml/stdlib__Arg.cmt +lib/ocaml/stdlib__Arg.cmti +lib/ocaml/stdlib__Arg.cmx +lib/ocaml/stdlib__Array.cmi +lib/ocaml/stdlib__Array.cmt +lib/ocaml/stdlib__Array.cmti +lib/ocaml/stdlib__Array.cmx +lib/ocaml/stdlib__ArrayLabels.cmi +lib/ocaml/stdlib__ArrayLabels.cmt +lib/ocaml/stdlib__ArrayLabels.cmti +lib/ocaml/stdlib__ArrayLabels.cmx +lib/ocaml/stdlib__Atomic.cmi +lib/ocaml/stdlib__Atomic.cmt +lib/ocaml/stdlib__Atomic.cmti +lib/ocaml/stdlib__Atomic.cmx +lib/ocaml/stdlib__Bigarray.cmi +lib/ocaml/stdlib__Bigarray.cmt +lib/ocaml/stdlib__Bigarray.cmti +lib/ocaml/stdlib__Bigarray.cmx +lib/ocaml/stdlib__Bool.cmi +lib/ocaml/stdlib__Bool.cmt +lib/ocaml/stdlib__Bool.cmti +lib/ocaml/stdlib__Bool.cmx +lib/ocaml/stdlib__Buffer.cmi +lib/ocaml/stdlib__Buffer.cmt +lib/ocaml/stdlib__Buffer.cmti +lib/ocaml/stdlib__Buffer.cmx +lib/ocaml/stdlib__Bytes.cmi +lib/ocaml/stdlib__Bytes.cmt +lib/ocaml/stdlib__Bytes.cmti +lib/ocaml/stdlib__Bytes.cmx +lib/ocaml/stdlib__BytesLabels.cmi +lib/ocaml/stdlib__BytesLabels.cmt +lib/ocaml/stdlib__BytesLabels.cmti +lib/ocaml/stdlib__BytesLabels.cmx +lib/ocaml/stdlib__Callback.cmi +lib/ocaml/stdlib__Callback.cmt +lib/ocaml/stdlib__Callback.cmti +lib/ocaml/stdlib__Callback.cmx +lib/ocaml/stdlib__Char.cmi +lib/ocaml/stdlib__Char.cmt +lib/ocaml/stdlib__Char.cmti +lib/ocaml/stdlib__Char.cmx +lib/ocaml/stdlib__Complex.cmi +lib/ocaml/stdlib__Complex.cmt +lib/ocaml/stdlib__Complex.cmti +lib/ocaml/stdlib__Complex.cmx +lib/ocaml/stdlib__Digest.cmi +lib/ocaml/stdlib__Digest.cmt +lib/ocaml/stdlib__Digest.cmti +lib/ocaml/stdlib__Digest.cmx +lib/ocaml/stdlib__Either.cmi +lib/ocaml/stdlib__Either.cmt +lib/ocaml/stdlib__Either.cmti +lib/ocaml/stdlib__Either.cmx +lib/ocaml/stdlib__Ephemeron.cmi +lib/ocaml/stdlib__Ephemeron.cmt +lib/ocaml/stdlib__Ephemeron.cmti +lib/ocaml/stdlib__Ephemeron.cmx +lib/ocaml/stdlib__Filename.cmi +lib/ocaml/stdlib__Filename.cmt +lib/ocaml/stdlib__Filename.cmti +lib/ocaml/stdlib__Filename.cmx +lib/ocaml/stdlib__Float.cmi +lib/ocaml/stdlib__Float.cmt +lib/ocaml/stdlib__Float.cmti +lib/ocaml/stdlib__Float.cmx +lib/ocaml/stdlib__Format.cmi +lib/ocaml/stdlib__Format.cmt +lib/ocaml/stdlib__Format.cmti +lib/ocaml/stdlib__Format.cmx +lib/ocaml/stdlib__Fun.cmi +lib/ocaml/stdlib__Fun.cmt +lib/ocaml/stdlib__Fun.cmti +lib/ocaml/stdlib__Fun.cmx +lib/ocaml/stdlib__Gc.cmi +lib/ocaml/stdlib__Gc.cmt +lib/ocaml/stdlib__Gc.cmti +lib/ocaml/stdlib__Gc.cmx +lib/ocaml/stdlib__Genlex.cmi +lib/ocaml/stdlib__Genlex.cmt +lib/ocaml/stdlib__Genlex.cmti +lib/ocaml/stdlib__Genlex.cmx +lib/ocaml/stdlib__Hashtbl.cmi +lib/ocaml/stdlib__Hashtbl.cmt +lib/ocaml/stdlib__Hashtbl.cmti +lib/ocaml/stdlib__Hashtbl.cmx +lib/ocaml/stdlib__In_channel.cmi +lib/ocaml/stdlib__In_channel.cmt +lib/ocaml/stdlib__In_channel.cmti +lib/ocaml/stdlib__In_channel.cmx +lib/ocaml/stdlib__Int.cmi +lib/ocaml/stdlib__Int.cmt +lib/ocaml/stdlib__Int.cmti +lib/ocaml/stdlib__Int.cmx +lib/ocaml/stdlib__Int32.cmi +lib/ocaml/stdlib__Int32.cmt +lib/ocaml/stdlib__Int32.cmti +lib/ocaml/stdlib__Int32.cmx +lib/ocaml/stdlib__Int64.cmi +lib/ocaml/stdlib__Int64.cmt +lib/ocaml/stdlib__Int64.cmti +lib/ocaml/stdlib__Int64.cmx +lib/ocaml/stdlib__Lazy.cmi +lib/ocaml/stdlib__Lazy.cmt +lib/ocaml/stdlib__Lazy.cmti +lib/ocaml/stdlib__Lazy.cmx +lib/ocaml/stdlib__Lexing.cmi +lib/ocaml/stdlib__Lexing.cmt +lib/ocaml/stdlib__Lexing.cmti +lib/ocaml/stdlib__Lexing.cmx +lib/ocaml/stdlib__List.cmi +lib/ocaml/stdlib__List.cmt +lib/ocaml/stdlib__List.cmti +lib/ocaml/stdlib__List.cmx +lib/ocaml/stdlib__ListLabels.cmi +lib/ocaml/stdlib__ListLabels.cmt +lib/ocaml/stdlib__ListLabels.cmti +lib/ocaml/stdlib__ListLabels.cmx +lib/ocaml/stdlib__Map.cmi +lib/ocaml/stdlib__Map.cmt +lib/ocaml/stdlib__Map.cmti +lib/ocaml/stdlib__Map.cmx +lib/ocaml/stdlib__Marshal.cmi +lib/ocaml/stdlib__Marshal.cmt +lib/ocaml/stdlib__Marshal.cmti +lib/ocaml/stdlib__Marshal.cmx +lib/ocaml/stdlib__MoreLabels.cmi +lib/ocaml/stdlib__MoreLabels.cmt +lib/ocaml/stdlib__MoreLabels.cmti +lib/ocaml/stdlib__MoreLabels.cmx +lib/ocaml/stdlib__Nativeint.cmi +lib/ocaml/stdlib__Nativeint.cmt +lib/ocaml/stdlib__Nativeint.cmti +lib/ocaml/stdlib__Nativeint.cmx +lib/ocaml/stdlib__Obj.cmi +lib/ocaml/stdlib__Obj.cmt +lib/ocaml/stdlib__Obj.cmti +lib/ocaml/stdlib__Obj.cmx +lib/ocaml/stdlib__Oo.cmi +lib/ocaml/stdlib__Oo.cmt +lib/ocaml/stdlib__Oo.cmti +lib/ocaml/stdlib__Oo.cmx +lib/ocaml/stdlib__Option.cmi +lib/ocaml/stdlib__Option.cmt +lib/ocaml/stdlib__Option.cmti +lib/ocaml/stdlib__Option.cmx +lib/ocaml/stdlib__Out_channel.cmi +lib/ocaml/stdlib__Out_channel.cmt +lib/ocaml/stdlib__Out_channel.cmti +lib/ocaml/stdlib__Out_channel.cmx +lib/ocaml/stdlib__Parsing.cmi +lib/ocaml/stdlib__Parsing.cmt +lib/ocaml/stdlib__Parsing.cmti +lib/ocaml/stdlib__Parsing.cmx +lib/ocaml/stdlib__Pervasives.cmi +lib/ocaml/stdlib__Pervasives.cmt +lib/ocaml/stdlib__Pervasives.cmx +lib/ocaml/stdlib__Printexc.cmi +lib/ocaml/stdlib__Printexc.cmt +lib/ocaml/stdlib__Printexc.cmti +lib/ocaml/stdlib__Printexc.cmx +lib/ocaml/stdlib__Printf.cmi +lib/ocaml/stdlib__Printf.cmt +lib/ocaml/stdlib__Printf.cmti +lib/ocaml/stdlib__Printf.cmx +lib/ocaml/stdlib__Queue.cmi +lib/ocaml/stdlib__Queue.cmt +lib/ocaml/stdlib__Queue.cmti +lib/ocaml/stdlib__Queue.cmx +lib/ocaml/stdlib__Random.cmi +lib/ocaml/stdlib__Random.cmt +lib/ocaml/stdlib__Random.cmti +lib/ocaml/stdlib__Random.cmx +lib/ocaml/stdlib__Result.cmi +lib/ocaml/stdlib__Result.cmt +lib/ocaml/stdlib__Result.cmti +lib/ocaml/stdlib__Result.cmx +lib/ocaml/stdlib__Scanf.cmi +lib/ocaml/stdlib__Scanf.cmt +lib/ocaml/stdlib__Scanf.cmti +lib/ocaml/stdlib__Scanf.cmx +lib/ocaml/stdlib__Seq.cmi +lib/ocaml/stdlib__Seq.cmt +lib/ocaml/stdlib__Seq.cmti +lib/ocaml/stdlib__Seq.cmx +lib/ocaml/stdlib__Set.cmi +lib/ocaml/stdlib__Set.cmt +lib/ocaml/stdlib__Set.cmti +lib/ocaml/stdlib__Set.cmx +lib/ocaml/stdlib__Stack.cmi +lib/ocaml/stdlib__Stack.cmt +lib/ocaml/stdlib__Stack.cmti +lib/ocaml/stdlib__Stack.cmx +lib/ocaml/stdlib__StdLabels.cmi +lib/ocaml/stdlib__StdLabels.cmt +lib/ocaml/stdlib__StdLabels.cmti +lib/ocaml/stdlib__StdLabels.cmx +lib/ocaml/stdlib__Stream.cmi +lib/ocaml/stdlib__Stream.cmt +lib/ocaml/stdlib__Stream.cmti +lib/ocaml/stdlib__Stream.cmx +lib/ocaml/stdlib__String.cmi +lib/ocaml/stdlib__String.cmt +lib/ocaml/stdlib__String.cmti +lib/ocaml/stdlib__String.cmx +lib/ocaml/stdlib__StringLabels.cmi +lib/ocaml/stdlib__StringLabels.cmt +lib/ocaml/stdlib__StringLabels.cmti +lib/ocaml/stdlib__StringLabels.cmx +lib/ocaml/stdlib__Sys.cmi +lib/ocaml/stdlib__Sys.cmt +lib/ocaml/stdlib__Sys.cmti +lib/ocaml/stdlib__Sys.cmx +lib/ocaml/stdlib__Uchar.cmi +lib/ocaml/stdlib__Uchar.cmt +lib/ocaml/stdlib__Uchar.cmti +lib/ocaml/stdlib__Uchar.cmx +lib/ocaml/stdlib__Unit.cmi +lib/ocaml/stdlib__Unit.cmt +lib/ocaml/stdlib__Unit.cmti +lib/ocaml/stdlib__Unit.cmx +lib/ocaml/stdlib__Weak.cmi +lib/ocaml/stdlib__Weak.cmt +lib/ocaml/stdlib__Weak.cmti +lib/ocaml/stdlib__Weak.cmx lib/ocaml/str.a lib/ocaml/str.cma lib/ocaml/str.cmi lib/ocaml/str.cmti lib/ocaml/str.cmx lib/ocaml/str.cmxa lib/ocaml/str.cmxs lib/ocaml/str.mli lib/ocaml/stream.ml lib/ocaml/stream.mli lib/ocaml/string.ml lib/ocaml/string.mli lib/ocaml/stringLabels.ml lib/ocaml/stringLabels.mli lib/ocaml/stublibs/dllcamlstr.so -%%X11%%lib/ocaml/stublibs/dllgraphics.so -%%RAWSPACETIMELIB%%lib/ocaml/stublibs/dllraw_spacetime_lib.so %%THREADS%%lib/ocaml/stublibs/dllthreads.so lib/ocaml/stublibs/dllunix.so -lib/ocaml/stublibs/dllvmthreads.so lib/ocaml/sys.ml lib/ocaml/sys.mli -lib/ocaml/target_camlheaderd -lib/ocaml/target_camlheaderi %%THREADS%%lib/ocaml/threads/condition.cmi %%THREADS%%lib/ocaml/threads/condition.cmti %%THREADS%%lib/ocaml/threads/condition.cmx %%THREADS%%lib/ocaml/threads/condition.mli %%THREADS%%lib/ocaml/threads/event.cmi %%THREADS%%lib/ocaml/threads/event.cmti %%THREADS%%lib/ocaml/threads/event.cmx %%THREADS%%lib/ocaml/threads/event.mli %%THREADS%%lib/ocaml/threads/mutex.cmi %%THREADS%%lib/ocaml/threads/mutex.cmti %%THREADS%%lib/ocaml/threads/mutex.cmx %%THREADS%%lib/ocaml/threads/mutex.mli +%%THREADS%%lib/ocaml/threads/semaphore.cmi +%%THREADS%%lib/ocaml/threads/semaphore.cmti +%%THREADS%%lib/ocaml/threads/semaphore.cmx +%%THREADS%%lib/ocaml/threads/semaphore.mli %%THREADS%%lib/ocaml/threads/thread.cmi %%THREADS%%lib/ocaml/threads/thread.cmti %%THREADS%%lib/ocaml/threads/thread.cmx %%THREADS%%lib/ocaml/threads/thread.mli %%THREADS%%lib/ocaml/threads/threadUnix.cmi %%THREADS%%lib/ocaml/threads/threadUnix.cmti %%THREADS%%lib/ocaml/threads/threadUnix.cmx %%THREADS%%lib/ocaml/threads/threadUnix.mli %%THREADS%%lib/ocaml/threads/threads.a %%THREADS%%lib/ocaml/threads/threads.cma %%THREADS%%lib/ocaml/threads/threads.cmxa lib/ocaml/topdirs.cmi lib/ocaml/topdirs.cmt lib/ocaml/topdirs.cmti lib/ocaml/topdirs.mli lib/ocaml/uchar.ml lib/ocaml/uchar.mli lib/ocaml/unit.ml lib/ocaml/unit.mli lib/ocaml/unix.a lib/ocaml/unix.cma lib/ocaml/unix.cmi lib/ocaml/unix.cmti lib/ocaml/unix.cmx lib/ocaml/unix.cmxa lib/ocaml/unix.cmxs lib/ocaml/unix.mli lib/ocaml/unixLabels.cmi lib/ocaml/unixLabels.cmti lib/ocaml/unixLabels.cmx lib/ocaml/unixLabels.mli -lib/ocaml/vmthreads/condition.cmi -lib/ocaml/vmthreads/condition.cmti -lib/ocaml/vmthreads/condition.mli -lib/ocaml/vmthreads/event.cmi -lib/ocaml/vmthreads/event.cmti -lib/ocaml/vmthreads/event.mli -lib/ocaml/vmthreads/libvmthreads.a -lib/ocaml/vmthreads/mutex.cmi -lib/ocaml/vmthreads/mutex.cmti -lib/ocaml/vmthreads/mutex.mli -lib/ocaml/vmthreads/stdlib.cma -lib/ocaml/vmthreads/thread.cmi -lib/ocaml/vmthreads/thread.cmti -lib/ocaml/vmthreads/thread.mli -lib/ocaml/vmthreads/threadUnix.cmi -lib/ocaml/vmthreads/threadUnix.cmti -lib/ocaml/vmthreads/threadUnix.mli -lib/ocaml/vmthreads/threads.cma -lib/ocaml/vmthreads/unix.cma lib/ocaml/weak.ml lib/ocaml/weak.mli @(,,0555) lib/ocaml/expunge -@(,,0555) lib/ocaml/extract_crc -share/man/man1/ocaml.1.gz -share/man/man1/ocamlc.1.gz -share/man/man1/ocamlc.opt.1.gz -share/man/man1/ocamlcp.1.gz -share/man/man1/ocamldebug.1.gz -share/man/man1/ocamldep.1.gz -share/man/man1/ocamldoc.1.gz -share/man/man1/ocamllex.1.gz -share/man/man1/ocamlmktop.1.gz -share/man/man1/ocamlopt.1.gz -share/man/man1/ocamlopt.opt.1.gz -share/man/man1/ocamloptp.1.gz -share/man/man1/ocamlprof.1.gz -share/man/man1/ocamlrun.1.gz -share/man/man1/ocamlyacc.1.gz -share/man/man3/Arg.3o.gz -share/man/man3/Arg_helper.3o.gz -share/man/man3/Arg_helper.Make.3o.gz -share/man/man3/Array.3o.gz -share/man/man3/ArrayLabels.3o.gz -share/man/man3/Ast_helper.3o.gz -share/man/man3/Ast_helper.Attr.3o.gz -share/man/man3/Ast_helper.Cf.3o.gz -share/man/man3/Ast_helper.Ci.3o.gz -share/man/man3/Ast_helper.Cl.3o.gz -share/man/man3/Ast_helper.Const.3o.gz -share/man/man3/Ast_helper.Csig.3o.gz -share/man/man3/Ast_helper.Cstr.3o.gz -share/man/man3/Ast_helper.Ctf.3o.gz -share/man/man3/Ast_helper.Cty.3o.gz -share/man/man3/Ast_helper.Exp.3o.gz -share/man/man3/Ast_helper.Incl.3o.gz -share/man/man3/Ast_helper.Mb.3o.gz -share/man/man3/Ast_helper.Md.3o.gz -share/man/man3/Ast_helper.Mod.3o.gz -share/man/man3/Ast_helper.Ms.3o.gz -share/man/man3/Ast_helper.Mtd.3o.gz -share/man/man3/Ast_helper.Mty.3o.gz -share/man/man3/Ast_helper.Of.3o.gz -share/man/man3/Ast_helper.Opn.3o.gz -share/man/man3/Ast_helper.Pat.3o.gz -share/man/man3/Ast_helper.Rf.3o.gz -share/man/man3/Ast_helper.Sig.3o.gz -share/man/man3/Ast_helper.Str.3o.gz -share/man/man3/Ast_helper.Te.3o.gz -share/man/man3/Ast_helper.Typ.3o.gz -share/man/man3/Ast_helper.Type.3o.gz -share/man/man3/Ast_helper.Val.3o.gz -share/man/man3/Ast_helper.Vb.3o.gz -share/man/man3/Ast_invariants.3o.gz -share/man/man3/Ast_iterator.3o.gz -share/man/man3/Ast_mapper.3o.gz -share/man/man3/Asttypes.3o.gz -share/man/man3/Attr_helper.3o.gz -share/man/man3/Bigarray.3o.gz -share/man/man3/Bigarray.Array0.3o.gz -share/man/man3/Bigarray.Array1.3o.gz -share/man/man3/Bigarray.Array2.3o.gz -share/man/man3/Bigarray.Array3.3o.gz -share/man/man3/Bigarray.Genarray.3o.gz -share/man/man3/Bool.3o.gz -share/man/man3/Buffer.3o.gz -share/man/man3/Build_path_prefix_map.3o.gz -share/man/man3/Builtin_attributes.3o.gz -share/man/man3/Bytes.3o.gz -share/man/man3/BytesLabels.3o.gz -share/man/man3/Callback.3o.gz -share/man/man3/CamlinternalFormat.3o.gz -share/man/man3/CamlinternalFormatBasics.3o.gz -share/man/man3/CamlinternalLazy.3o.gz -share/man/man3/CamlinternalMenhirLib.3o.gz -share/man/man3/CamlinternalMenhirLib.Convert.3o.gz -share/man/man3/CamlinternalMenhirLib.Convert.Simplified.3o.gz -share/man/man3/CamlinternalMenhirLib.Engine.3o.gz -share/man/man3/CamlinternalMenhirLib.Engine.Make.3o.gz -share/man/man3/CamlinternalMenhirLib.EngineTypes.3o.gz -share/man/man3/CamlinternalMenhirLib.EngineTypes.ENGINE.3o.gz -share/man/man3/CamlinternalMenhirLib.EngineTypes.INCREMENTAL_ENGINE_START.3o.gz -share/man/man3/CamlinternalMenhirLib.EngineTypes.MONOLITHIC_ENGINE.3o.gz -share/man/man3/CamlinternalMenhirLib.EngineTypes.TABLE.3o.gz -share/man/man3/CamlinternalMenhirLib.EngineTypes.TABLE.Log.3o.gz -share/man/man3/CamlinternalMenhirLib.ErrorReports.3o.gz -share/man/man3/CamlinternalMenhirLib.General.3o.gz -share/man/man3/CamlinternalMenhirLib.IncrementalEngine.3o.gz -share/man/man3/CamlinternalMenhirLib.IncrementalEngine.EVERYTHING.3o.gz -share/man/man3/CamlinternalMenhirLib.IncrementalEngine.INCREMENTAL_ENGINE.3o.gz -share/man/man3/CamlinternalMenhirLib.IncrementalEngine.INSPECTION.3o.gz -share/man/man3/CamlinternalMenhirLib.IncrementalEngine.SYMBOLS.3o.gz -share/man/man3/CamlinternalMenhirLib.InfiniteArray.3o.gz -share/man/man3/CamlinternalMenhirLib.InspectionTableFormat.3o.gz -share/man/man3/CamlinternalMenhirLib.InspectionTableFormat.TABLES.3o.gz -share/man/man3/CamlinternalMenhirLib.InspectionTableInterpreter.3o.gz -share/man/man3/CamlinternalMenhirLib.InspectionTableInterpreter.Make.3o.gz -share/man/man3/CamlinternalMenhirLib.InspectionTableInterpreter.Symbols.3o.gz -share/man/man3/CamlinternalMenhirLib.LinearizedArray.3o.gz -share/man/man3/CamlinternalMenhirLib.PackedIntArray.3o.gz -share/man/man3/CamlinternalMenhirLib.Printers.3o.gz -share/man/man3/CamlinternalMenhirLib.Printers.Make.3o.gz -share/man/man3/CamlinternalMenhirLib.RowDisplacement.3o.gz -share/man/man3/CamlinternalMenhirLib.StaticVersion.3o.gz -share/man/man3/CamlinternalMenhirLib.TableFormat.3o.gz -share/man/man3/CamlinternalMenhirLib.TableFormat.TABLES.3o.gz -share/man/man3/CamlinternalMenhirLib.TableInterpreter.3o.gz -share/man/man3/CamlinternalMenhirLib.TableInterpreter.MakeEngineTable.3o.gz -share/man/man3/CamlinternalMod.3o.gz -share/man/man3/CamlinternalOO.3o.gz -share/man/man3/Ccomp.3o.gz -share/man/man3/Char.3o.gz -share/man/man3/Clflags.3o.gz -share/man/man3/Clflags.Compiler_pass.3o.gz -share/man/man3/Clflags.Float_arg_helper.3o.gz -share/man/man3/Clflags.Int_arg_helper.3o.gz -share/man/man3/Compiler_libs.3o.gz -share/man/man3/Complex.3o.gz -share/man/man3/Condition.3o.gz -share/man/man3/Config.3o.gz -share/man/man3/Consistbl.3o.gz -share/man/man3/Depend.3o.gz -share/man/man3/Depend.String.3o.gz -share/man/man3/Digest.3o.gz -share/man/man3/Docstrings.3o.gz -share/man/man3/Docstrings.WithMenhir.3o.gz -share/man/man3/Dynlink.3o.gz -share/man/man3/Ephemeron.3o.gz -share/man/man3/Ephemeron.GenHashTable.3o.gz -share/man/man3/Ephemeron.GenHashTable.MakeSeeded.3o.gz -share/man/man3/Ephemeron.K1.3o.gz -share/man/man3/Ephemeron.K1.Make.3o.gz -share/man/man3/Ephemeron.K1.MakeSeeded.3o.gz -share/man/man3/Ephemeron.K2.3o.gz -share/man/man3/Ephemeron.K2.Make.3o.gz -share/man/man3/Ephemeron.K2.MakeSeeded.3o.gz -share/man/man3/Ephemeron.Kn.3o.gz -share/man/man3/Ephemeron.Kn.Make.3o.gz -share/man/man3/Ephemeron.Kn.MakeSeeded.3o.gz -share/man/man3/Ephemeron.S.3o.gz -share/man/man3/Ephemeron.SeededS.3o.gz -share/man/man3/Event.3o.gz -share/man/man3/Filename.3o.gz -share/man/man3/Float.3o.gz -share/man/man3/Float.Array.3o.gz -share/man/man3/Float.ArrayLabels.3o.gz -share/man/man3/Format.3o.gz -share/man/man3/Fun.3o.gz -share/man/man3/Gc.3o.gz -share/man/man3/Genlex.3o.gz -share/man/man3/Graphics.3o.gz -share/man/man3/GraphicsX11.3o.gz -share/man/man3/Hashtbl.3o.gz -share/man/man3/Hashtbl.HashedType.3o.gz -share/man/man3/Hashtbl.Make.3o.gz -share/man/man3/Hashtbl.MakeSeeded.3o.gz -share/man/man3/Hashtbl.S.3o.gz -share/man/man3/Hashtbl.SeededHashedType.3o.gz -share/man/man3/Hashtbl.SeededS.3o.gz -share/man/man3/Identifiable.3o.gz -share/man/man3/Identifiable.Make.3o.gz -share/man/man3/Identifiable.Map.3o.gz -share/man/man3/Identifiable.Map.T.3o.gz -share/man/man3/Identifiable.Pair.3o.gz -share/man/man3/Identifiable.S.3o.gz -share/man/man3/Identifiable.S.Map.3o.gz -share/man/man3/Identifiable.S.Set.3o.gz -share/man/man3/Identifiable.S.T.3o.gz -share/man/man3/Identifiable.S.Tbl.3o.gz -share/man/man3/Identifiable.Set.3o.gz -share/man/man3/Identifiable.Set.T.3o.gz -share/man/man3/Identifiable.Tbl.3o.gz -share/man/man3/Identifiable.Tbl.T.3o.gz -share/man/man3/Identifiable.Thing.3o.gz -share/man/man3/Int.3o.gz -share/man/man3/Int32.3o.gz -share/man/man3/Int64.3o.gz -share/man/man3/Lazy.3o.gz -share/man/man3/Lexer.3o.gz -share/man/man3/Lexing.3o.gz -share/man/man3/List.3o.gz -share/man/man3/ListLabels.3o.gz -share/man/man3/Load_path.3o.gz -share/man/man3/Load_path.Dir.3o.gz -share/man/man3/Location.3o.gz -share/man/man3/Longident.3o.gz -share/man/man3/Map.3o.gz -share/man/man3/Map.Make.3o.gz -share/man/man3/Map.OrderedType.3o.gz -share/man/man3/Map.S.3o.gz -share/man/man3/Marshal.3o.gz -share/man/man3/Misc.3o.gz -share/man/man3/Misc.Color.3o.gz -share/man/man3/Misc.Error_style.3o.gz -share/man/man3/Misc.HookSig.3o.gz -share/man/man3/Misc.Int_literal_converter.3o.gz -share/man/man3/Misc.LongString.3o.gz -share/man/man3/Misc.MakeHooks.3o.gz -share/man/man3/Misc.Stdlib.3o.gz -share/man/man3/Misc.Stdlib.Array.3o.gz -share/man/man3/Misc.Stdlib.List.3o.gz -share/man/man3/Misc.Stdlib.Option.3o.gz -share/man/man3/Misc.Stdlib.String.3o.gz -share/man/man3/Misc.Stdlib.String.Map.3o.gz -share/man/man3/Misc.Stdlib.String.Set.3o.gz -share/man/man3/Misc.Stdlib.String.Tbl.3o.gz -share/man/man3/MoreLabels.3o.gz -share/man/man3/MoreLabels.Hashtbl.3o.gz -share/man/man3/MoreLabels.Hashtbl.HashedType.3o.gz -share/man/man3/MoreLabels.Hashtbl.Make.3o.gz -share/man/man3/MoreLabels.Hashtbl.MakeSeeded.3o.gz -share/man/man3/MoreLabels.Hashtbl.S.3o.gz -share/man/man3/MoreLabels.Hashtbl.SeededHashedType.3o.gz -share/man/man3/MoreLabels.Hashtbl.SeededS.3o.gz -share/man/man3/MoreLabels.Map.3o.gz -share/man/man3/MoreLabels.Map.Make.3o.gz -share/man/man3/MoreLabels.Map.OrderedType.3o.gz -share/man/man3/MoreLabels.Map.S.3o.gz -share/man/man3/MoreLabels.Set.3o.gz -share/man/man3/MoreLabels.Set.Make.3o.gz -share/man/man3/MoreLabels.Set.OrderedType.3o.gz -share/man/man3/MoreLabels.Set.S.3o.gz -share/man/man3/Mutex.3o.gz -share/man/man3/Nativeint.3o.gz -share/man/man3/Numbers.3o.gz -share/man/man3/Numbers.Float.3o.gz -share/man/man3/Numbers.Int.3o.gz -share/man/man3/Numbers.Int16.3o.gz -share/man/man3/Numbers.Int8.3o.gz -share/man/man3/Obj.3o.gz -share/man/man3/Obj.Ephemeron.3o.gz -share/man/man3/Obj.Extension_constructor.3o.gz -share/man/man3/Ocaml_operators.3o.gz -share/man/man3/Oo.3o.gz -share/man/man3/Option.3o.gz -share/man/man3/Parse.3o.gz -share/man/man3/Parser.3o.gz -share/man/man3/Parser.Incremental.3o.gz -share/man/man3/Parser.MenhirInterpreter.3o.gz -share/man/man3/Parsetree.3o.gz -share/man/man3/Parsing.3o.gz -share/man/man3/Pervasives.3o.gz -share/man/man3/Pervasives.LargeFile.3o.gz -share/man/man3/Pparse.3o.gz -share/man/man3/Pparse.ImplementationHooks.3o.gz -share/man/man3/Pparse.InterfaceHooks.3o.gz -share/man/man3/Pprintast.3o.gz -share/man/man3/Printast.3o.gz -share/man/man3/Printexc.3o.gz -share/man/man3/Printexc.Slot.3o.gz -share/man/man3/Printf.3o.gz -share/man/man3/Profile.3o.gz -share/man/man3/Queue.3o.gz -share/man/man3/Random.3o.gz -share/man/man3/Random.State.3o.gz -share/man/man3/Result.3o.gz -share/man/man3/Scanf.3o.gz -share/man/man3/Scanf.Scanning.3o.gz -share/man/man3/Seq.3o.gz -share/man/man3/Set.3o.gz -share/man/man3/Set.Make.3o.gz -share/man/man3/Set.OrderedType.3o.gz -share/man/man3/Set.S.3o.gz -share/man/man3/Simplif.3o.gz -share/man/man3/Simplif.Hooks.3o.gz -share/man/man3/Spacetime.3o.gz -share/man/man3/Spacetime.Series.3o.gz -share/man/man3/Spacetime.Snapshot.3o.gz -share/man/man3/Stack.3o.gz -share/man/man3/StdLabels.3o.gz -share/man/man3/StdLabels.Array.3o.gz -share/man/man3/StdLabels.Bytes.3o.gz -share/man/man3/StdLabels.List.3o.gz -share/man/man3/StdLabels.String.3o.gz -share/man/man3/Stdlib.3o.gz -share/man/man3/Stdlib.Arg.3o.gz -share/man/man3/Stdlib.Array.3o.gz -share/man/man3/Stdlib.ArrayLabels.3o.gz -share/man/man3/Stdlib.Bigarray.3o.gz -share/man/man3/Stdlib.Bool.3o.gz -share/man/man3/Stdlib.Buffer.3o.gz -share/man/man3/Stdlib.Bytes.3o.gz -share/man/man3/Stdlib.BytesLabels.3o.gz -share/man/man3/Stdlib.Callback.3o.gz -share/man/man3/Stdlib.Char.3o.gz -share/man/man3/Stdlib.Complex.3o.gz -share/man/man3/Stdlib.Digest.3o.gz -share/man/man3/Stdlib.Ephemeron.3o.gz -share/man/man3/Stdlib.Filename.3o.gz -share/man/man3/Stdlib.Float.3o.gz -share/man/man3/Stdlib.Format.3o.gz -share/man/man3/Stdlib.Fun.3o.gz -share/man/man3/Stdlib.Gc.3o.gz -share/man/man3/Stdlib.Genlex.3o.gz -share/man/man3/Stdlib.Hashtbl.3o.gz -share/man/man3/Stdlib.Int.3o.gz -share/man/man3/Stdlib.Int32.3o.gz -share/man/man3/Stdlib.Int64.3o.gz -share/man/man3/Stdlib.LargeFile.3o.gz -share/man/man3/Stdlib.Lazy.3o.gz -share/man/man3/Stdlib.Lexing.3o.gz -share/man/man3/Stdlib.List.3o.gz -share/man/man3/Stdlib.ListLabels.3o.gz -share/man/man3/Stdlib.Map.3o.gz -share/man/man3/Stdlib.Marshal.3o.gz -share/man/man3/Stdlib.MoreLabels.3o.gz -share/man/man3/Stdlib.Nativeint.3o.gz -share/man/man3/Stdlib.Obj.3o.gz -share/man/man3/Stdlib.Oo.3o.gz -share/man/man3/Stdlib.Option.3o.gz -share/man/man3/Stdlib.Parsing.3o.gz -share/man/man3/Stdlib.Pervasives.3o.gz -share/man/man3/Stdlib.Printexc.3o.gz -share/man/man3/Stdlib.Printf.3o.gz -share/man/man3/Stdlib.Queue.3o.gz -share/man/man3/Stdlib.Random.3o.gz -share/man/man3/Stdlib.Result.3o.gz -share/man/man3/Stdlib.Scanf.3o.gz -share/man/man3/Stdlib.Seq.3o.gz -share/man/man3/Stdlib.Set.3o.gz -share/man/man3/Stdlib.Spacetime.3o.gz -share/man/man3/Stdlib.Stack.3o.gz -share/man/man3/Stdlib.StdLabels.3o.gz -share/man/man3/Stdlib.Stream.3o.gz -share/man/man3/Stdlib.String.3o.gz -share/man/man3/Stdlib.StringLabels.3o.gz -share/man/man3/Stdlib.Sys.3o.gz -share/man/man3/Stdlib.Uchar.3o.gz -share/man/man3/Stdlib.Unit.3o.gz -share/man/man3/Stdlib.Weak.3o.gz -share/man/man3/Str.3o.gz -share/man/man3/Stream.3o.gz -share/man/man3/String.3o.gz -share/man/man3/StringLabels.3o.gz -share/man/man3/Strongly_connected_components.3o.gz -share/man/man3/Strongly_connected_components.Make.3o.gz -share/man/man3/Strongly_connected_components.S.3o.gz -share/man/man3/Strongly_connected_components.S.Id.3o.gz -share/man/man3/Syntaxerr.3o.gz -share/man/man3/Sys.3o.gz -share/man/man3/Targetint.3o.gz -share/man/man3/Terminfo.3o.gz -share/man/man3/Thread.3o.gz -share/man/man3/ThreadUnix.3o.gz -share/man/man3/Typemod.3o.gz -share/man/man3/Typemod.ImplementationHooks.3o.gz -share/man/man3/Typemod.InterfaceHooks.3o.gz -share/man/man3/Typemod.Sig_component_kind.3o.gz -share/man/man3/Typemod.Signature_names.3o.gz -share/man/man3/Uchar.3o.gz -share/man/man3/Unit.3o.gz -share/man/man3/Unix.3o.gz -share/man/man3/Unix.LargeFile.3o.gz -share/man/man3/UnixLabels.3o.gz -share/man/man3/UnixLabels.LargeFile.3o.gz -share/man/man3/Warnings.3o.gz -share/man/man3/Weak.3o.gz -share/man/man3/Weak.Make.3o.gz -share/man/man3/Weak.S.3o.gz +%%MANPAGES%%share/man/man1/ocaml.1.gz +%%MANPAGES%%share/man/man1/ocamlc.1.gz +%%MANPAGES%%share/man/man1/ocamlc.opt.1.gz +%%MANPAGES%%share/man/man1/ocamlcp.1.gz +%%MANPAGES%%share/man/man1/ocamldebug.1.gz +%%MANPAGES%%share/man/man1/ocamldep.1.gz +%%MANPAGES%%share/man/man1/ocamldoc.1.gz +%%MANPAGES%%share/man/man1/ocamllex.1.gz +%%MANPAGES%%share/man/man1/ocamlmktop.1.gz +%%MANPAGES%%share/man/man1/ocamlopt.1.gz +%%MANPAGES%%share/man/man1/ocamlopt.opt.1.gz +%%MANPAGES%%share/man/man1/ocamloptp.1.gz +%%MANPAGES%%share/man/man1/ocamlprof.1.gz +%%MANPAGES%%share/man/man1/ocamlrun.1.gz +%%MANPAGES%%share/man/man1/ocamlyacc.1.gz +%%MANPAGES%%share/man/man3/Arg.3o.gz +%%MANPAGES%%share/man/man3/Arg_helper.3o.gz +%%MANPAGES%%share/man/man3/Arg_helper.Make.3o.gz +%%MANPAGES%%share/man/man3/Array.3o.gz +%%MANPAGES%%share/man/man3/ArrayLabels.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Attr.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Cf.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Ci.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Cl.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Const.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Csig.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Cstr.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Ctf.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Cty.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Exp.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Incl.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Mb.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Md.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Mod.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Ms.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Mtd.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Mty.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Of.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Opn.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Pat.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Rf.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Sig.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Str.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Te.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Typ.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Type.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Val.3o.gz +%%MANPAGES%%share/man/man3/Ast_helper.Vb.3o.gz +%%MANPAGES%%share/man/man3/Ast_invariants.3o.gz +%%MANPAGES%%share/man/man3/Ast_iterator.3o.gz +%%MANPAGES%%share/man/man3/Ast_mapper.3o.gz +%%MANPAGES%%share/man/man3/Asttypes.3o.gz +%%MANPAGES%%share/man/man3/Atomic.3o.gz +%%MANPAGES%%share/man/man3/Attr_helper.3o.gz +%%MANPAGES%%share/man/man3/Bigarray.3o.gz +%%MANPAGES%%share/man/man3/Bigarray.Array0.3o.gz +%%MANPAGES%%share/man/man3/Bigarray.Array1.3o.gz +%%MANPAGES%%share/man/man3/Bigarray.Array2.3o.gz +%%MANPAGES%%share/man/man3/Bigarray.Array3.3o.gz +%%MANPAGES%%share/man/man3/Bigarray.Genarray.3o.gz +%%MANPAGES%%share/man/man3/Binutils.3o.gz +%%MANPAGES%%share/man/man3/Bool.3o.gz +%%MANPAGES%%share/man/man3/Buffer.3o.gz +%%MANPAGES%%share/man/man3/Build_path_prefix_map.3o.gz +%%MANPAGES%%share/man/man3/Builtin_attributes.3o.gz +%%MANPAGES%%share/man/man3/Bytes.3o.gz +%%MANPAGES%%share/man/man3/BytesLabels.3o.gz +%%MANPAGES%%share/man/man3/Callback.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalAtomic.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalFormat.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalFormatBasics.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalLazy.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.Convert.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.Convert.Simplified.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.Engine.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.Engine.Make.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.EngineTypes.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.EngineTypes.ENGINE.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.EngineTypes.INCREMENTAL_ENGINE_START.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.EngineTypes.MONOLITHIC_ENGINE.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.EngineTypes.TABLE.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.EngineTypes.TABLE.Log.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.ErrorReports.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.General.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.IncrementalEngine.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.IncrementalEngine.EVERYTHING.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.IncrementalEngine.INCREMENTAL_ENGINE.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.IncrementalEngine.INSPECTION.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.IncrementalEngine.SYMBOLS.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.InfiniteArray.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.InspectionTableFormat.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.InspectionTableFormat.TABLES.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.InspectionTableInterpreter.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.InspectionTableInterpreter.Make.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.InspectionTableInterpreter.Symbols.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.LexerUtil.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.LinearizedArray.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.PackedIntArray.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.Printers.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.Printers.Make.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.RowDisplacement.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.StaticVersion.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.TableFormat.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.TableFormat.TABLES.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.TableInterpreter.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMenhirLib.TableInterpreter.MakeEngineTable.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalMod.3o.gz +%%MANPAGES%%share/man/man3/CamlinternalOO.3o.gz +%%MANPAGES%%share/man/man3/Ccomp.3o.gz +%%MANPAGES%%share/man/man3/Char.3o.gz +%%MANPAGES%%share/man/man3/Clflags.3o.gz +%%MANPAGES%%share/man/man3/Clflags.Compiler_pass.3o.gz +%%MANPAGES%%share/man/man3/Clflags.Float_arg_helper.3o.gz +%%MANPAGES%%share/man/man3/Clflags.Int_arg_helper.3o.gz +%%MANPAGES%%share/man/man3/Compiler_libs.3o.gz +%%MANPAGES%%share/man/man3/Complex.3o.gz +%%MANPAGES%%share/man/man3/Condition.3o.gz +%%MANPAGES%%share/man/man3/Config.3o.gz +%%MANPAGES%%share/man/man3/Consistbl.3o.gz +%%MANPAGES%%share/man/man3/Consistbl.Make.3o.gz +%%MANPAGES%%share/man/man3/Depend.3o.gz +%%MANPAGES%%share/man/man3/Depend.String.3o.gz +%%MANPAGES%%share/man/man3/Diffing.3o.gz +%%MANPAGES%%share/man/man3/Diffing.Define.3o.gz +%%MANPAGES%%share/man/man3/Diffing.Define.Left_variadic.3o.gz +%%MANPAGES%%share/man/man3/Diffing.Define.Parameters.3o.gz +%%MANPAGES%%share/man/man3/Diffing.Define.Right_variadic.3o.gz +%%MANPAGES%%share/man/man3/Diffing.Define.S.3o.gz +%%MANPAGES%%share/man/man3/Diffing.Define.Simple.3o.gz +%%MANPAGES%%share/man/man3/Diffing.Defs.3o.gz +%%MANPAGES%%share/man/man3/Diffing_with_keys.3o.gz +%%MANPAGES%%share/man/man3/Diffing_with_keys.Define.3o.gz +%%MANPAGES%%share/man/man3/Diffing_with_keys.Define.Parameters.3o.gz +%%MANPAGES%%share/man/man3/Diffing_with_keys.Define.Simple.3o.gz +%%MANPAGES%%share/man/man3/Digest.3o.gz +%%MANPAGES%%share/man/man3/Docstrings.3o.gz +%%MANPAGES%%share/man/man3/Docstrings.WithMenhir.3o.gz +%%MANPAGES%%share/man/man3/Domainstate.3o.gz +%%MANPAGES%%share/man/man3/Dynlink.3o.gz +%%MANPAGES%%share/man/man3/Either.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.GenHashTable.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.GenHashTable.MakeSeeded.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.K1.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.K1.Bucket.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.K1.Make.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.K1.MakeSeeded.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.K2.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.K2.Bucket.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.K2.Make.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.K2.MakeSeeded.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.Kn.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.Kn.Bucket.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.Kn.Make.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.Kn.MakeSeeded.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.S.3o.gz +%%MANPAGES%%share/man/man3/Ephemeron.SeededS.3o.gz +%%MANPAGES%%share/man/man3/Event.3o.gz +%%MANPAGES%%share/man/man3/Filename.3o.gz +%%MANPAGES%%share/man/man3/Float.3o.gz +%%MANPAGES%%share/man/man3/Float.Array.3o.gz +%%MANPAGES%%share/man/man3/Float.ArrayLabels.3o.gz +%%MANPAGES%%share/man/man3/Format.3o.gz +%%MANPAGES%%share/man/man3/Format_tutorial.3o.gz +%%MANPAGES%%share/man/man3/Fun.3o.gz +%%MANPAGES%%share/man/man3/Gc.3o.gz +%%MANPAGES%%share/man/man3/Gc.Memprof.3o.gz +%%MANPAGES%%share/man/man3/Genlex.3o.gz +%%MANPAGES%%share/man/man3/Hashtbl.3o.gz +%%MANPAGES%%share/man/man3/Hashtbl.HashedType.3o.gz +%%MANPAGES%%share/man/man3/Hashtbl.Make.3o.gz +%%MANPAGES%%share/man/man3/Hashtbl.MakeSeeded.3o.gz +%%MANPAGES%%share/man/man3/Hashtbl.S.3o.gz +%%MANPAGES%%share/man/man3/Hashtbl.SeededHashedType.3o.gz +%%MANPAGES%%share/man/man3/Hashtbl.SeededS.3o.gz +%%MANPAGES%%share/man/man3/Identifiable.3o.gz +%%MANPAGES%%share/man/man3/Identifiable.Make.3o.gz +%%MANPAGES%%share/man/man3/Identifiable.Map.3o.gz +%%MANPAGES%%share/man/man3/Identifiable.Map.T.3o.gz +%%MANPAGES%%share/man/man3/Identifiable.Pair.3o.gz +%%MANPAGES%%share/man/man3/Identifiable.S.3o.gz +%%MANPAGES%%share/man/man3/Identifiable.S.Map.3o.gz +%%MANPAGES%%share/man/man3/Identifiable.S.Set.3o.gz +%%MANPAGES%%share/man/man3/Identifiable.S.T.3o.gz +%%MANPAGES%%share/man/man3/Identifiable.S.Tbl.3o.gz +%%MANPAGES%%share/man/man3/Identifiable.Set.3o.gz +%%MANPAGES%%share/man/man3/Identifiable.Set.T.3o.gz +%%MANPAGES%%share/man/man3/Identifiable.Tbl.3o.gz +%%MANPAGES%%share/man/man3/Identifiable.Tbl.T.3o.gz +%%MANPAGES%%share/man/man3/Identifiable.Thing.3o.gz +%%MANPAGES%%share/man/man3/In_channel.3o.gz +%%MANPAGES%%share/man/man3/Int.3o.gz +%%MANPAGES%%share/man/man3/Int_replace_polymorphic_compare.3o.gz +%%MANPAGES%%share/man/man3/Int32.3o.gz +%%MANPAGES%%share/man/man3/Int64.3o.gz +%%MANPAGES%%share/man/man3/Lazy.3o.gz +%%MANPAGES%%share/man/man3/Lexer.3o.gz +%%MANPAGES%%share/man/man3/Lexing.3o.gz +%%MANPAGES%%share/man/man3/Lazy_backtrack.3o.gz +%%MANPAGES%%share/man/man3/List.3o.gz +%%MANPAGES%%share/man/man3/ListLabels.3o.gz +%%MANPAGES%%share/man/man3/Load_path.3o.gz +%%MANPAGES%%share/man/man3/Load_path.Dir.3o.gz +%%MANPAGES%%share/man/man3/Local_store.3o.gz +%%MANPAGES%%share/man/man3/Location.3o.gz +%%MANPAGES%%share/man/man3/Longident.3o.gz +%%MANPAGES%%share/man/man3/Map.3o.gz +%%MANPAGES%%share/man/man3/Map.Make.3o.gz +%%MANPAGES%%share/man/man3/Map.OrderedType.3o.gz +%%MANPAGES%%share/man/man3/Map.S.3o.gz +%%MANPAGES%%share/man/man3/Marshal.3o.gz +%%MANPAGES%%share/man/man3/Misc.3o.gz +%%MANPAGES%%share/man/man3/Misc.Color.3o.gz +%%MANPAGES%%share/man/man3/Misc.Error_style.3o.gz +%%MANPAGES%%share/man/man3/Misc.Int_literal_converter.3o.gz +%%MANPAGES%%share/man/man3/Misc.LongString.3o.gz +%%MANPAGES%%share/man/man3/Misc.Magic_number.3o.gz +%%MANPAGES%%share/man/man3/Misc.Stdlib.3o.gz +%%MANPAGES%%share/man/man3/Misc.Stdlib.Array.3o.gz +%%MANPAGES%%share/man/man3/Misc.Stdlib.List.3o.gz +%%MANPAGES%%share/man/man3/Misc.Stdlib.Option.3o.gz +%%MANPAGES%%share/man/man3/Misc.Stdlib.String.3o.gz +%%MANPAGES%%share/man/man3/Misc.Stdlib.String.Map.3o.gz +%%MANPAGES%%share/man/man3/Misc.Stdlib.String.Set.3o.gz +%%MANPAGES%%share/man/man3/Misc.Stdlib.String.Tbl.3o.gz +%%MANPAGES%%share/man/man3/MoreLabels.3o.gz +%%MANPAGES%%share/man/man3/MoreLabels.Hashtbl.3o.gz +%%MANPAGES%%share/man/man3/MoreLabels.Hashtbl.HashedType.3o.gz +%%MANPAGES%%share/man/man3/MoreLabels.Hashtbl.Make.3o.gz +%%MANPAGES%%share/man/man3/MoreLabels.Hashtbl.MakeSeeded.3o.gz +%%MANPAGES%%share/man/man3/MoreLabels.Hashtbl.S.3o.gz +%%MANPAGES%%share/man/man3/MoreLabels.Hashtbl.SeededHashedType.3o.gz +%%MANPAGES%%share/man/man3/MoreLabels.Hashtbl.SeededS.3o.gz +%%MANPAGES%%share/man/man3/MoreLabels.Map.3o.gz +%%MANPAGES%%share/man/man3/MoreLabels.Map.Make.3o.gz +%%MANPAGES%%share/man/man3/MoreLabels.Map.OrderedType.3o.gz +%%MANPAGES%%share/man/man3/MoreLabels.Map.S.3o.gz +%%MANPAGES%%share/man/man3/MoreLabels.Set.3o.gz +%%MANPAGES%%share/man/man3/MoreLabels.Set.Make.3o.gz +%%MANPAGES%%share/man/man3/MoreLabels.Set.OrderedType.3o.gz +%%MANPAGES%%share/man/man3/MoreLabels.Set.S.3o.gz +%%MANPAGES%%share/man/man3/Mutex.3o.gz +%%MANPAGES%%share/man/man3/Nativeint.3o.gz +%%MANPAGES%%share/man/man3/Numbers.3o.gz +%%MANPAGES%%share/man/man3/Numbers.Float.3o.gz +%%MANPAGES%%share/man/man3/Numbers.Int.3o.gz +%%MANPAGES%%share/man/man3/Numbers.Int16.3o.gz +%%MANPAGES%%share/man/man3/Numbers.Int8.3o.gz +%%MANPAGES%%share/man/man3/Obj.3o.gz +%%MANPAGES%%share/man/man3/Obj.Closure.3o.gz +%%MANPAGES%%share/man/man3/Obj.Ephemeron.3o.gz +%%MANPAGES%%share/man/man3/Obj.Extension_constructor.3o.gz +%%MANPAGES%%share/man/man3/Ocaml_operators.3o.gz +%%MANPAGES%%share/man/man3/Oo.3o.gz +%%MANPAGES%%share/man/man3/Option.3o.gz +%%MANPAGES%%share/man/man3/Out_channel.3o.gz +%%MANPAGES%%share/man/man3/Parse.3o.gz +%%MANPAGES%%share/man/man3/Parser.3o.gz +%%MANPAGES%%share/man/man3/Parser.Incremental.3o.gz +%%MANPAGES%%share/man/man3/Parser.MenhirInterpreter.3o.gz +%%MANPAGES%%share/man/man3/Parsetree.3o.gz +%%MANPAGES%%share/man/man3/Parsing.3o.gz +%%MANPAGES%%share/man/man3/Pparse.3o.gz +%%MANPAGES%%share/man/man3/Pprintast.3o.gz +%%MANPAGES%%share/man/man3/Printast.3o.gz +%%MANPAGES%%share/man/man3/Printexc.3o.gz +%%MANPAGES%%share/man/man3/Printexc.Slot.3o.gz +%%MANPAGES%%share/man/man3/Printf.3o.gz +%%MANPAGES%%share/man/man3/Profile.3o.gz +%%MANPAGES%%share/man/man3/Queue.3o.gz +%%MANPAGES%%share/man/man3/Random.3o.gz +%%MANPAGES%%share/man/man3/Random.State.3o.gz +%%MANPAGES%%share/man/man3/Result.3o.gz +%%MANPAGES%%share/man/man3/Scanf.3o.gz +%%MANPAGES%%share/man/man3/Scanf.Scanning.3o.gz +%%MANPAGES%%share/man/man3/Semaphore.3o.gz +%%MANPAGES%%share/man/man3/Semaphore.Binary.3o.gz +%%MANPAGES%%share/man/man3/Semaphore.Counting.3o.gz +%%MANPAGES%%share/man/man3/Seq.3o.gz +%%MANPAGES%%share/man/man3/Set.3o.gz +%%MANPAGES%%share/man/man3/Set.Make.3o.gz +%%MANPAGES%%share/man/man3/Set.OrderedType.3o.gz +%%MANPAGES%%share/man/man3/Set.S.3o.gz +%%MANPAGES%%share/man/man3/Stack.3o.gz +%%MANPAGES%%share/man/man3/StdLabels.3o.gz +%%MANPAGES%%share/man/man3/StdLabels.Array.3o.gz +%%MANPAGES%%share/man/man3/StdLabels.Bytes.3o.gz +%%MANPAGES%%share/man/man3/StdLabels.List.3o.gz +%%MANPAGES%%share/man/man3/StdLabels.String.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Arg.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Array.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.ArrayLabels.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Atomic.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Bigarray.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Bool.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Buffer.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Bytes.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.BytesLabels.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Callback.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Char.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Complex.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Digest.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Either.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Ephemeron.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Filename.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Float.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Format.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Fun.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Gc.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Genlex.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Hashtbl.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.In_channel.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Int.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Int32.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Int64.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.LargeFile.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Lazy.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Lexing.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.List.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.ListLabels.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Map.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Marshal.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.MoreLabels.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Nativeint.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Obj.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Oo.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Option.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Out_channel.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Parsing.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Pervasives.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Printexc.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Printf.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Queue.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Random.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Result.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Scanf.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Seq.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Set.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Stack.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.StdLabels.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Stream.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.String.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.StringLabels.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Sys.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Uchar.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Unit.3o.gz +%%MANPAGES%%share/man/man3/Stdlib.Weak.3o.gz +%%MANPAGES%%share/man/man3/Str.3o.gz +%%MANPAGES%%share/man/man3/Stream.3o.gz +%%MANPAGES%%share/man/man3/String.3o.gz +%%MANPAGES%%share/man/man3/StringLabels.3o.gz +%%MANPAGES%%share/man/man3/Strongly_connected_components.3o.gz +%%MANPAGES%%share/man/man3/Strongly_connected_components.Make.3o.gz +%%MANPAGES%%share/man/man3/Strongly_connected_components.S.3o.gz +%%MANPAGES%%share/man/man3/Strongly_connected_components.S.Id.3o.gz +%%MANPAGES%%share/man/man3/Syntaxerr.3o.gz +%%MANPAGES%%share/man/man3/Sys.3o.gz +%%MANPAGES%%share/man/man3/Sys.Immediate64.3o.gz +%%MANPAGES%%share/man/man3/Sys.Immediate64.Immediate.3o.gz +%%MANPAGES%%share/man/man3/Sys.Immediate64.Make.3o.gz +%%MANPAGES%%share/man/man3/Sys.Immediate64.Non_immediate.3o.gz +%%MANPAGES%%share/man/man3/Targetint.3o.gz +%%MANPAGES%%share/man/man3/Terminfo.3o.gz +%%MANPAGES%%share/man/man3/Thread.3o.gz +%%MANPAGES%%share/man/man3/ThreadUnix.3o.gz +%%MANPAGES%%share/man/man3/Uchar.3o.gz +%%MANPAGES%%share/man/man3/Unit.3o.gz +%%MANPAGES%%share/man/man3/Unix.3o.gz +%%MANPAGES%%share/man/man3/Unix.LargeFile.3o.gz +%%MANPAGES%%share/man/man3/UnixLabels.3o.gz +%%MANPAGES%%share/man/man3/UnixLabels.LargeFile.3o.gz +%%MANPAGES%%share/man/man3/Warnings.3o.gz +%%MANPAGES%%share/man/man3/Weak.3o.gz +%%MANPAGES%%share/man/man3/Weak.Make.3o.gz +%%MANPAGES%%share/man/man3/Weak.S.3o.gz +%%PORTDOCS%%%%DOCSDIR%%/Changes +%%PORTDOCS%%%%DOCSDIR%%/LICENSE +%%PORTDOCS%%%%DOCSDIR%%/README.adoc +%%PORTDOCS%%%%DOCSDIR%%/README.win32.adoc diff --git a/math/coq/Makefile b/math/coq/Makefile index 04b86ca11c08..382f03d7e7f7 100644 --- a/math/coq/Makefile +++ b/math/coq/Makefile @@ -1,71 +1,86 @@ PORTNAME= coq -PORTVERSION= 8.6 -PORTREVISION= 20 +PORTVERSION= 8.19 PORTEPOCH= 3 CATEGORIES= math -MASTER_SITES= http://coq.inria.fr/distrib/V${PORTVERSION}/files/ \ - ftp://ftp.stack.nl/pub/users/johans/coq/ +DISTVERSIONPREFIX= V +DISTVERSIONSUFFIX= .0 PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= hrs@FreeBSD.org COMMENT= Theorem prover based on lambda-C WWW= https://coq.inria.fr/ LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_armv6= fails to compile: Fatal error: exception Invalid_argument("index out of bounds") -BROKEN_armv7= fails to compile: Fatal error: exception Invalid_argument("index out of bounds") - -BUILD_DEPENDS= camlp5:devel/ocaml-camlp5 \ - ocamlfind:devel/ocaml-findlib \ - ${LOCALBASE}/${OCAML_SITELIBDIR}/num/META:math/ocaml-num +BUILD_DEPENDS= ${SA_DIR}/num/META:math/ocaml-num \ + ${SA_DIR}/zarith/META:math/ocaml-zarith \ + bash:shells/bash \ + camlp5:devel/ocaml-camlp5 LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ - libfreetype.so:print/freetype2 -RUN_DEPENDS= ${LOCALBASE}/lib/ocaml/stublibs/dllnums.so:math/ocaml-num + libfreetype.so:print/freetype2 \ + libgmp.so:math/gmp \ + libharfbuzz.so:print/harfbuzz +RUN_DEPENDS= ${SA_DIR}/num/META:math/ocaml-num \ + ${SA_DIR}/zarith/META:math/ocaml-zarith -USES= emacs gettext-runtime gmake gnome -USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 gtksourceview2 pango +USES= emacs gettext-runtime gmake gnome ocaml:dune python:env shebangfix tex +SHEBANG_FILES= tools/*.py +USE_GITHUB= yes +USE_GNOME= cairo gdkpixbuf2 gtk30 gtksourceview3 USE_LDCONFIG= ${PREFIX}/lib/coq USE_OCAML= yes +USE_OCAML_CAMLP4= yes +USE_OCAML_LDCONFIG= yes +OCAML_LDLIBS= ${OCAML_SITELIBDIR}/coq-core +OCAML_PACKAGES= coq-core coq-stdlib coq HAS_CONFIGURE= yes CONFIGURE_ARGS= -prefix ${PREFIX} \ - -mandir ${PREFIX}/man \ - -emacslib ${PREFIX}/share/emacs/site-lisp/coq \ - -usecamlp5 \ - -byteonly -MAKE_ENV= VERBOSE=1 USERFLAGS=-unsafe-string -ALL_TARGET= world + -mandir ${PREFIX}/share/man \ + -docdir ${OCAML_DOCSDIR} \ + -bytecode-compiler yes \ + -native-compiler yes CONFLICTS_INSTALL= coq coq-emacs_* # bin/coq-tex bin/coq_makefile bin/coqc bin/coqchk bin/coqdep bin/coqdoc bin/coqide bin/coqmktop bin/coqtop bin/coqtop.byte bin/coqwc bin/coqworkmgr bin/gallina OPTIONS_DEFINE= DOCS IDE OPTIONS_DEFAULT= IDE OPTIONS_SUB= yes IDE_DESC= Include desktop environment (coqide) -IDE_BUILD_DEPENDS= lablgtk2:x11-toolkits/ocaml-lablgtk2 -IDE_RUN_DEPENDS= lablgtk2:x11-toolkits/ocaml-lablgtk2 -IDE_CONFIGURE_OFF= -coqide no -DOCS_USES= tex -DOCS_USE= TEX=latex:build,dvipsk:build -DOCS_BUILD_DEPENDS= hevea:textproc/hevea -DOCS_CONFIGURE_OFF= -with-doc no +IDE_BUILD_DEPENDS= ${SA_DIR}/lablgtk3/META:x11-toolkits/ocaml-lablgtk3 +IDE_RUN_DEPENDS= ${SA_DIR}/lablgtk3/META:x11-toolkits/ocaml-lablgtk3 +IDE_VARS= ocaml_packages+=coqide-server ocaml_packages+=coqide +# IDE_CONFIGURE_OFF= -coqide no +# XXX needs fixing +# DOCS_USES= tex python:env +# DOCS_USE= TEX=latex:build,dvipsk:build +# DOCS_BUILD_DEPENDS= hevea:textproc/hevea \ +# sphinx-build:textproc/py-sphinx \ +# ${PYTHON_PKGNAMEPREFIX}sphinx_rtd_theme>0:textproc/py-sphinx_rtd_theme@${PY_FLAVOR} \ +# ${PYTHON_PKGNAMEPREFIX}sphinxcontrib-bibtex>0:textproc/py-sphinxcontrib-bibtex@${PY_FLAVOR} +# DOCS_VARS= ocaml_packages+=coq-doc +#DOCS_CONFIGURE_OFF= -with-doc no -STRIP_FILES= lib/coq/dllcoqrun.so +SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} -# Workaround bsd.ocaml.mk to fix packaging -add-plist-post: - @${DO_NADA} +pre-build: + @${MAKE_CMD} -C ${WRKSRC} dunestrap -post-patch: - @${REINPLACE_CMD} -e '/show_latex_mes/s/)$$/; true)/' \ - ${WRKSRC}/Makefile.doc -# Allow passing USERFLAGS down to inner make(1) via environment - @${REINPLACE_CMD} -e '/User compilation flag/,+1d' \ - ${WRKSRC}/configure.ml +# XXX to keep dune-install happy, until DOCS build gets fixed +post-build: + @${TOUCH} ${WRKSRC}/${DUNE_BUILD_DIR}/default/coq-doc.install post-install: - cd ${STAGEDIR}${PREFIX} && ${STRIP_CMD} ${STRIP_FILES} + @(cd ${STAGEDIR}${PREFIX} ; \ + ${FIND} ${OCAML_SITELIBDIR} -type f '(' -name '*.cmxs' -o -name '*_stubs.so' ')' ; \ + ${FIND} bin -type f -not -name '*.byte' ; \ + ) | while read f; \ + do \ + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/$$f ; \ + done + +post-install-IDE-on: + @${MKDIR} -p ${STAGEDIR}${PREFIX}/etc/xdg/coq .include diff --git a/math/coq/distinfo b/math/coq/distinfo index 8702e38e0149..8eb59b22d36a 100644 --- a/math/coq/distinfo +++ b/math/coq/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1483223265 -SHA256 (coq-8.6.tar.gz) = 6e3c3cf5c8e2b0b760dc52738e2e849f3a8c630869659ecc0cf41413fcee81df -SIZE (coq-8.6.tar.gz) = 5538848 +TIMESTAMP = 1707224242 +SHA256 (coq-coq-V8.19.0_GH0.tar.gz) = 17e5c10fadcd3cda7509d822099a892fcd003485272b56a45abd30390f6a426f +SIZE (coq-coq-V8.19.0_GH0.tar.gz) = 7674352 diff --git a/math/coq/files/patch-Makefile.build b/math/coq/files/patch-Makefile.build deleted file mode 100644 index 15fa789877ed..000000000000 --- a/math/coq/files/patch-Makefile.build +++ /dev/null @@ -1,29 +0,0 @@ ---- Makefile.build.orig 2016-12-08 15:13:52 UTC -+++ Makefile.build -@@ -101,7 +101,7 @@ TIMER=$(if $(TIMED), $(STDTIME), $(TIMECMD)) - # TIME="%C (%U user, %S sys, %e total, %M maxres)" - - COQOPTS=$(COQ_XML) $(NATIVECOMPUTE) --BOOTCOQC=$(TIMER) $(COQTOPEXE) -boot $(COQOPTS) -compile -+BOOTCOQC=$(TIMER) env CAML_LD_LIBRARY_PATH=$${PWD}/kernel/byterun $(COQTOPEXE) -boot $(COQOPTS) -compile - - LOCALINCLUDES=$(addprefix -I , $(SRCDIRS) ) - MLINCLUDES=$(LOCALINCLUDES) -I $(MYCAMLP4LIB) -@@ -334,7 +334,7 @@ coqbinaries: $(COQMKTOP) $(COQTOPEXE) $(COQTOPBYTE) \ - ifeq ($(BEST),opt) - $(COQTOPEXE): $(COQMKTOP) $(LINKCMX) $(LIBCOQRUN) $(TOPLOOPCMA:.cma=.cmxs) - $(SHOW)'COQMKTOP -o $@' -- $(HIDE)$(COQMKTOP) -boot -opt $(OPTFLAGS) $(LINKMETADATA) -o $@ -+ $(HIDE)$(COQMKTOP) -boot -opt $(filter-out -unsafe-string, $(OPTFLAGS)) $(LINKMETADATA) -o $@ - $(STRIP) $@ - $(CODESIGN) $@ - else -@@ -344,7 +344,7 @@ endif - - $(COQTOPBYTE): $(COQMKTOP) $(LINKCMO) $(LIBCOQRUN) $(TOPLOOPCMA) - $(SHOW)'COQMKTOP -o $@' -- $(HIDE)$(COQMKTOP) -boot -top $(BYTEFLAGS) -o $@ -+ $(HIDE)$(COQMKTOP) -boot -top $(filter-out -unsafe-string, $(BYTEFLAGS)) -o $@ - - # coqmktop - diff --git a/math/coq/files/patch-Makefile.install b/math/coq/files/patch-Makefile.install deleted file mode 100644 index 6597b7133aa0..000000000000 --- a/math/coq/files/patch-Makefile.install +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.install.orig 2016-12-08 15:13:52 UTC -+++ Makefile.install -@@ -29,7 +29,7 @@ install-doc-no: - .PHONY: install install-doc-all install-doc-no - - #These variables are intended to be set by the caller to make --#COQINSTALLPREFIX= -+COQINSTALLPREFIX=${DESTDIR} - #OLDROOT= - - # Can be changed for a local installation (to make packages). diff --git a/math/coq/pkg-plist b/math/coq/pkg-plist index 570f31ca5b00..a397868e280b 100644 --- a/math/coq/pkg-plist +++ b/math/coq/pkg-plist @@ -1,2984 +1,6869 @@ bin/coq-tex bin/coq_makefile bin/coqc +bin/coqc.byte bin/coqchk bin/coqdep -bin/coqdoc %%IDE%%bin/coqide -bin/coqmktop +bin/coqidetop.byte +bin/coqidetop.opt +bin/coqdoc +bin/coqnative +bin/coqpp +bin/coqtimelog2html +bin/coqtop.opt bin/coqtop bin/coqtop.byte bin/coqwc bin/coqworkmgr -bin/gallina -lib/coq/META -lib/coq/config/coq_config.cmi -lib/coq/dllcoqrun.so -lib/coq/engine/engine.cma -lib/coq/engine/evarutil.cmi -lib/coq/engine/evd.cmi -lib/coq/engine/ftactic.cmi -lib/coq/engine/geninterp.cmi -lib/coq/engine/logic_monad.cmi -lib/coq/engine/namegen.cmi -lib/coq/engine/proofview.cmi -lib/coq/engine/proofview_monad.cmi -lib/coq/engine/sigma.cmi -lib/coq/engine/termops.cmi -lib/coq/engine/uState.cmi -lib/coq/grammar/compat5.cmo -lib/coq/grammar/grammar.cma -lib/coq/grammar/q_util.cmi -%%IDE%%lib/coq/ide/config_lexer.cmi -%%IDE%%lib/coq/ide/coq.cmi -%%IDE%%lib/coq/ide/coqOps.cmi -%%IDE%%lib/coq/ide/coq_commands.cmi -%%IDE%%lib/coq/ide/coq_lex.cmi -%%IDE%%lib/coq/ide/coqide.cmi -%%IDE%%lib/coq/ide/coqide_ui.cmi -%%IDE%%lib/coq/ide/document.cmi -%%IDE%%lib/coq/ide/fileOps.cmi -%%IDE%%lib/coq/ide/gtk_parsing.cmi -%%IDE%%lib/coq/ide/ide.cma -%%IDE%%lib/coq/ide/ideutils.cmi -%%IDE%%lib/coq/ide/minilib.cmi -%%IDE%%lib/coq/ide/nanoPG.cmi -%%IDE%%lib/coq/ide/preferences.cmi -%%IDE%%lib/coq/ide/project_file.cmi -%%IDE%%lib/coq/ide/richprinter.cmi -%%IDE%%lib/coq/ide/sentence.cmi -%%IDE%%lib/coq/ide/serialize.cmi -%%IDE%%lib/coq/ide/session.cmi -%%IDE%%lib/coq/ide/tags.cmi -%%IDE%%lib/coq/ide/utf8_convert.cmi -%%IDE%%lib/coq/ide/utils/config_file.cmi -%%IDE%%lib/coq/ide/utils/configwin.cmi -%%IDE%%lib/coq/ide/utils/configwin_ihm.cmi -%%IDE%%lib/coq/ide/utils/configwin_keys.cmi -%%IDE%%lib/coq/ide/utils/configwin_messages.cmi -%%IDE%%lib/coq/ide/utils/configwin_types.cmi -%%IDE%%lib/coq/ide/utils/editable_cells.cmi -%%IDE%%lib/coq/ide/utils/okey.cmi -%%IDE%%lib/coq/ide/wg_Command.cmi -%%IDE%%lib/coq/ide/wg_Completion.cmi -%%IDE%%lib/coq/ide/wg_Detachable.cmi -%%IDE%%lib/coq/ide/wg_Find.cmi -%%IDE%%lib/coq/ide/wg_MessageView.cmi -%%IDE%%lib/coq/ide/wg_Notebook.cmi -%%IDE%%lib/coq/ide/wg_ProofView.cmi -%%IDE%%lib/coq/ide/wg_ScriptView.cmi -%%IDE%%lib/coq/ide/wg_Segment.cmi -%%IDE%%lib/coq/ide/xml_lexer.cmi -%%IDE%%lib/coq/ide/xml_parser.cmi -%%IDE%%lib/coq/ide/xml_printer.cmi -%%IDE%%lib/coq/ide/xmlprotocol.cmi -lib/coq/interp/constrarg.cmi -lib/coq/interp/constrexpr_ops.cmi -lib/coq/interp/constrextern.cmi -lib/coq/interp/constrintern.cmi -lib/coq/interp/coqlib.cmi -lib/coq/interp/dumpglob.cmi -lib/coq/interp/genintern.cmi -lib/coq/interp/implicit_quantifiers.cmi -lib/coq/interp/interp.cma -lib/coq/interp/modintern.cmi -lib/coq/interp/notation.cmi -lib/coq/interp/notation_ops.cmi -lib/coq/interp/ppextend.cmi -lib/coq/interp/reserve.cmi -lib/coq/interp/smartlocate.cmi -lib/coq/interp/stdarg.cmi -lib/coq/interp/syntax_def.cmi -lib/coq/interp/topconstr.cmi -lib/coq/intf/constrexpr.cmi -lib/coq/intf/decl_kinds.cmi -lib/coq/intf/evar_kinds.cmi -lib/coq/intf/extend.cmi -lib/coq/intf/genredexpr.cmi -lib/coq/intf/glob_term.cmi -lib/coq/intf/locus.cmi -lib/coq/intf/misctypes.cmi -lib/coq/intf/notation_term.cmi -lib/coq/intf/pattern.cmi -lib/coq/intf/tacexpr.cmi -lib/coq/intf/vernacexpr.cmi -lib/coq/kernel/cClosure.cmi -lib/coq/kernel/cbytecodes.cmi -lib/coq/kernel/cbytegen.cmi -lib/coq/kernel/cemitcodes.cmi -lib/coq/kernel/constr.cmi -lib/coq/kernel/context.cmi -lib/coq/kernel/conv_oracle.cmi -lib/coq/kernel/cooking.cmi -lib/coq/kernel/copcodes.cmi -lib/coq/kernel/csymtable.cmi -lib/coq/kernel/declarations.cmi -lib/coq/kernel/declareops.cmi -lib/coq/kernel/entries.cmi -lib/coq/kernel/environ.cmi -lib/coq/kernel/esubst.cmi -lib/coq/kernel/evar.cmi -lib/coq/kernel/fast_typeops.cmi -lib/coq/kernel/indtypes.cmi -lib/coq/kernel/inductive.cmi -lib/coq/kernel/kernel.cma -lib/coq/kernel/mod_subst.cmi -lib/coq/kernel/mod_typing.cmi -lib/coq/kernel/modops.cmi -lib/coq/kernel/names.cmi -lib/coq/kernel/nativecode.cmi -lib/coq/kernel/nativeconv.cmi -lib/coq/kernel/nativeinstr.cmi -lib/coq/kernel/nativelambda.cmi -lib/coq/kernel/nativelib.cmi -lib/coq/kernel/nativelibrary.cmi -lib/coq/kernel/nativevalues.cmi -lib/coq/kernel/opaqueproof.cmi -lib/coq/kernel/pre_env.cmi -lib/coq/kernel/primitives.cmi -lib/coq/kernel/reduction.cmi -lib/coq/kernel/retroknowledge.cmi -lib/coq/kernel/safe_typing.cmi -lib/coq/kernel/sorts.cmi -lib/coq/kernel/subtyping.cmi -lib/coq/kernel/term.cmi -lib/coq/kernel/term_typing.cmi -lib/coq/kernel/type_errors.cmi -lib/coq/kernel/typeops.cmi -lib/coq/kernel/uGraph.cmi -lib/coq/kernel/uint31.cmi -lib/coq/kernel/univ.cmi -lib/coq/kernel/vars.cmi -lib/coq/kernel/vconv.cmi -lib/coq/kernel/vm.cmi -lib/coq/lib/aux_file.cmi -lib/coq/lib/backtrace.cmi -lib/coq/lib/bigint.cmi -lib/coq/lib/cArray.cmi -lib/coq/lib/cEphemeron.cmi -lib/coq/lib/cErrors.cmi -lib/coq/lib/cList.cmi -lib/coq/lib/cMap.cmi -lib/coq/lib/cObj.cmi -lib/coq/lib/cSet.cmi -lib/coq/lib/cSig.cmi -lib/coq/lib/cStack.cmi -lib/coq/lib/cString.cmi -lib/coq/lib/cThread.cmi -lib/coq/lib/cUnix.cmi -lib/coq/lib/cWarnings.cmi -lib/coq/lib/canary.cmi -lib/coq/lib/clib.cma -lib/coq/lib/control.cmi -lib/coq/lib/deque.cmi -lib/coq/lib/dyn.cmi -lib/coq/lib/envars.cmi -lib/coq/lib/exninfo.cmi -lib/coq/lib/explore.cmi -lib/coq/lib/feedback.cmi -lib/coq/lib/flags.cmi -lib/coq/lib/future.cmi -lib/coq/lib/genarg.cmi -lib/coq/lib/hMap.cmi -lib/coq/lib/hashcons.cmi -lib/coq/lib/hashset.cmi -lib/coq/lib/heap.cmi -lib/coq/lib/hook.cmi -lib/coq/lib/iStream.cmi -lib/coq/lib/int.cmi -lib/coq/lib/lib.cma -lib/coq/lib/loc.cmi -lib/coq/lib/minisys.cmi -lib/coq/lib/monad.cmi -lib/coq/lib/option.cmi -lib/coq/lib/pp.cmi -lib/coq/lib/pp_control.cmi -lib/coq/lib/ppstyle.cmi -lib/coq/lib/predicate.cmi -lib/coq/lib/profile.cmi -lib/coq/lib/remoteCounter.cmi -lib/coq/lib/richpp.cmi -lib/coq/lib/rtree.cmi -lib/coq/lib/segmenttree.cmi -lib/coq/lib/spawn.cmi -lib/coq/lib/stateid.cmi -lib/coq/lib/store.cmi -lib/coq/lib/system.cmi -lib/coq/lib/terminal.cmi -lib/coq/lib/trie.cmi -lib/coq/lib/unicode.cmi -lib/coq/lib/unicodetable.cmi -lib/coq/lib/unionfind.cmi -lib/coq/lib/util.cmi -lib/coq/lib/xml_datatype.cmi -lib/coq/library/declare.cmi -lib/coq/library/declaremods.cmi -lib/coq/library/decls.cmi -lib/coq/library/dischargedhypsmap.cmi -lib/coq/library/global.cmi -lib/coq/library/globnames.cmi -lib/coq/library/goptions.cmi -lib/coq/library/heads.cmi -lib/coq/library/impargs.cmi -lib/coq/library/keys.cmi -lib/coq/library/kindops.cmi -lib/coq/library/lib.cmi -lib/coq/library/libnames.cmi -lib/coq/library/libobject.cmi -lib/coq/library/library.cma -lib/coq/library/library.cmi -lib/coq/library/loadpath.cmi -lib/coq/library/nameops.cmi -lib/coq/library/nametab.cmi -lib/coq/library/states.cmi -lib/coq/library/summary.cmi -lib/coq/library/universes.cmi -lib/coq/ltac/coretactics.cmi -lib/coq/ltac/evar_tactics.cmi -lib/coq/ltac/extraargs.cmi -lib/coq/ltac/extratactics.cmi -lib/coq/ltac/g_auto.cmi -lib/coq/ltac/g_class.cmi -lib/coq/ltac/g_eqdecide.cmi -lib/coq/ltac/g_ltac.cmi -lib/coq/ltac/g_obligations.cmi -lib/coq/ltac/g_rewrite.cmi -lib/coq/ltac/ltac.cma -lib/coq/ltac/profile_ltac.cmi -lib/coq/ltac/profile_ltac_tactics.cmi -lib/coq/ltac/rewrite.cmi -lib/coq/ltac/taccoerce.cmi -lib/coq/ltac/tacentries.cmi -lib/coq/ltac/tacenv.cmi -lib/coq/ltac/tacintern.cmi -lib/coq/ltac/tacinterp.cmi -lib/coq/ltac/tacsubst.cmi -lib/coq/ltac/tactic_debug.cmi -lib/coq/ltac/tactic_option.cmi -lib/coq/ltac/tauto.cmi -lib/coq/parsing/cLexer.cmi -lib/coq/parsing/compat.cmi -lib/coq/parsing/egramcoq.cmi -lib/coq/parsing/egramml.cmi -lib/coq/parsing/g_constr.cmi -lib/coq/parsing/g_prim.cmi -lib/coq/parsing/g_proofs.cmi -lib/coq/parsing/g_tactic.cmi -lib/coq/parsing/g_vernac.cmi -lib/coq/parsing/highparsing.cma -lib/coq/parsing/parsing.cma -lib/coq/parsing/pcoq.cmi -lib/coq/parsing/tok.cmi -lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Algebra.cmi -lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Algebra.cmo -lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Btauto.cmi -lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Btauto.cmo -lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Reflect.cmi -lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Reflect.cmo -lib/coq/plugins/btauto/Algebra.glob -lib/coq/plugins/btauto/Algebra.v -lib/coq/plugins/btauto/Algebra.vo -lib/coq/plugins/btauto/Btauto.glob -lib/coq/plugins/btauto/Btauto.v -lib/coq/plugins/btauto/Btauto.vo -lib/coq/plugins/btauto/Reflect.glob -lib/coq/plugins/btauto/Reflect.v -lib/coq/plugins/btauto/Reflect.vo -lib/coq/plugins/btauto/btauto_plugin.cmi -lib/coq/plugins/btauto/btauto_plugin.cmo -lib/coq/plugins/cc/cc_plugin.cmi -lib/coq/plugins/cc/cc_plugin.cmo -lib/coq/plugins/cc/ccalgo.cmi -lib/coq/plugins/cc/ccproof.cmi -lib/coq/plugins/cc/cctac.cmi -lib/coq/plugins/decl_mode/decl_expr.cmi -lib/coq/plugins/decl_mode/decl_interp.cmi -lib/coq/plugins/decl_mode/decl_mode.cmi -lib/coq/plugins/decl_mode/decl_mode_plugin.cmi -lib/coq/plugins/decl_mode/decl_mode_plugin.cmo -lib/coq/plugins/decl_mode/decl_proof_instr.cmi -lib/coq/plugins/decl_mode/ppdecl_proof.cmi -lib/coq/plugins/derive/.coq-native/NCoq_derive_Derive.cmi -lib/coq/plugins/derive/.coq-native/NCoq_derive_Derive.cmo -lib/coq/plugins/derive/Derive.glob -lib/coq/plugins/derive/Derive.v -lib/coq/plugins/derive/Derive.vo -lib/coq/plugins/derive/derive.cmi -lib/coq/plugins/derive/derive_plugin.cmi -lib/coq/plugins/derive/derive_plugin.cmo -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellBasic.cmi -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellBasic.cmo -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInt.cmi -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInt.cmo -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInteger.cmi -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInteger.cmo -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatNum.cmi -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatNum.cmo -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellString.cmi -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellString.cmo -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInt.cmi -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInt.cmo -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInteger.cmi -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInteger.cmo -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZNum.cmi -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZNum.cmo -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlBasic.cmi -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlBasic.cmo -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlBigIntConv.cmi -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlBigIntConv.cmo -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlIntConv.cmi -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlIntConv.cmo -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatBigInt.cmi -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatBigInt.cmo -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatInt.cmi -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatInt.cmo -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlString.cmi -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlString.cmo -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlZBigInt.cmi -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlZBigInt.cmo -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlZInt.cmi -lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlZInt.cmo -lib/coq/plugins/extraction/ExtrHaskellBasic.glob -lib/coq/plugins/extraction/ExtrHaskellBasic.v -lib/coq/plugins/extraction/ExtrHaskellBasic.vo -lib/coq/plugins/extraction/ExtrHaskellNatInt.glob -lib/coq/plugins/extraction/ExtrHaskellNatInt.v -lib/coq/plugins/extraction/ExtrHaskellNatInt.vo -lib/coq/plugins/extraction/ExtrHaskellNatInteger.glob -lib/coq/plugins/extraction/ExtrHaskellNatInteger.v -lib/coq/plugins/extraction/ExtrHaskellNatInteger.vo -lib/coq/plugins/extraction/ExtrHaskellNatNum.glob -lib/coq/plugins/extraction/ExtrHaskellNatNum.v -lib/coq/plugins/extraction/ExtrHaskellNatNum.vo -lib/coq/plugins/extraction/ExtrHaskellString.glob -lib/coq/plugins/extraction/ExtrHaskellString.v -lib/coq/plugins/extraction/ExtrHaskellString.vo -lib/coq/plugins/extraction/ExtrHaskellZInt.glob -lib/coq/plugins/extraction/ExtrHaskellZInt.v -lib/coq/plugins/extraction/ExtrHaskellZInt.vo -lib/coq/plugins/extraction/ExtrHaskellZInteger.glob -lib/coq/plugins/extraction/ExtrHaskellZInteger.v -lib/coq/plugins/extraction/ExtrHaskellZInteger.vo -lib/coq/plugins/extraction/ExtrHaskellZNum.glob -lib/coq/plugins/extraction/ExtrHaskellZNum.v -lib/coq/plugins/extraction/ExtrHaskellZNum.vo -lib/coq/plugins/extraction/ExtrOcamlBasic.glob -lib/coq/plugins/extraction/ExtrOcamlBasic.v -lib/coq/plugins/extraction/ExtrOcamlBasic.vo -lib/coq/plugins/extraction/ExtrOcamlBigIntConv.glob -lib/coq/plugins/extraction/ExtrOcamlBigIntConv.v -lib/coq/plugins/extraction/ExtrOcamlBigIntConv.vo -lib/coq/plugins/extraction/ExtrOcamlIntConv.glob -lib/coq/plugins/extraction/ExtrOcamlIntConv.v -lib/coq/plugins/extraction/ExtrOcamlIntConv.vo -lib/coq/plugins/extraction/ExtrOcamlNatBigInt.glob -lib/coq/plugins/extraction/ExtrOcamlNatBigInt.v -lib/coq/plugins/extraction/ExtrOcamlNatBigInt.vo -lib/coq/plugins/extraction/ExtrOcamlNatInt.glob -lib/coq/plugins/extraction/ExtrOcamlNatInt.v -lib/coq/plugins/extraction/ExtrOcamlNatInt.vo -lib/coq/plugins/extraction/ExtrOcamlString.glob -lib/coq/plugins/extraction/ExtrOcamlString.v -lib/coq/plugins/extraction/ExtrOcamlString.vo -lib/coq/plugins/extraction/ExtrOcamlZBigInt.glob -lib/coq/plugins/extraction/ExtrOcamlZBigInt.v -lib/coq/plugins/extraction/ExtrOcamlZBigInt.vo -lib/coq/plugins/extraction/ExtrOcamlZInt.glob -lib/coq/plugins/extraction/ExtrOcamlZInt.v -lib/coq/plugins/extraction/ExtrOcamlZInt.vo -lib/coq/plugins/extraction/common.cmi -lib/coq/plugins/extraction/extract_env.cmi -lib/coq/plugins/extraction/extraction.cmi -lib/coq/plugins/extraction/extraction_plugin.cmi -lib/coq/plugins/extraction/extraction_plugin.cmo -lib/coq/plugins/extraction/haskell.cmi -lib/coq/plugins/extraction/json.cmi -lib/coq/plugins/extraction/miniml.cmi -lib/coq/plugins/extraction/mlutil.cmi -lib/coq/plugins/extraction/modutil.cmi -lib/coq/plugins/extraction/ocaml.cmi -lib/coq/plugins/extraction/scheme.cmi -lib/coq/plugins/extraction/table.cmi -lib/coq/plugins/firstorder/formula.cmi -lib/coq/plugins/firstorder/ground.cmi -lib/coq/plugins/firstorder/ground_plugin.cmi -lib/coq/plugins/firstorder/ground_plugin.cmo -lib/coq/plugins/firstorder/instances.cmi -lib/coq/plugins/firstorder/rules.cmi -lib/coq/plugins/firstorder/sequent.cmi -lib/coq/plugins/firstorder/unify.cmi -lib/coq/plugins/fourier/.coq-native/NCoq_fourier_Fourier.cmi -lib/coq/plugins/fourier/.coq-native/NCoq_fourier_Fourier.cmo -lib/coq/plugins/fourier/.coq-native/NCoq_fourier_Fourier_util.cmi -lib/coq/plugins/fourier/.coq-native/NCoq_fourier_Fourier_util.cmo -lib/coq/plugins/fourier/Fourier.glob -lib/coq/plugins/fourier/Fourier.v -lib/coq/plugins/fourier/Fourier.vo -lib/coq/plugins/fourier/Fourier_util.glob -lib/coq/plugins/fourier/Fourier_util.v -lib/coq/plugins/fourier/Fourier_util.vo -lib/coq/plugins/fourier/fourier_plugin.cmi -lib/coq/plugins/fourier/fourier_plugin.cmo -lib/coq/plugins/funind/.coq-native/NCoq_funind_Recdef.cmi -lib/coq/plugins/funind/.coq-native/NCoq_funind_Recdef.cmo -lib/coq/plugins/funind/Recdef.glob -lib/coq/plugins/funind/Recdef.v -lib/coq/plugins/funind/Recdef.vo -lib/coq/plugins/funind/functional_principles_proofs.cmi -lib/coq/plugins/funind/functional_principles_types.cmi -lib/coq/plugins/funind/glob_term_to_relation.cmi -lib/coq/plugins/funind/glob_termops.cmi -lib/coq/plugins/funind/indfun.cmi -lib/coq/plugins/funind/indfun_common.cmi -lib/coq/plugins/funind/recdef.cmi -lib/coq/plugins/funind/recdef_plugin.cmi -lib/coq/plugins/funind/recdef_plugin.cmo -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Env.cmi -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Env.cmo -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_EnvRing.cmi -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_EnvRing.cmo -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lia.cmi -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lia.cmo -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lqa.cmi -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lqa.cmo -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lra.cmi -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lra.cmo -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_OrderedRing.cmi -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_OrderedRing.cmo -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Psatz.cmi -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Psatz.cmo -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_QMicromega.cmi -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_QMicromega.cmo -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_RMicromega.cmi -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_RMicromega.cmo -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Refl.cmi -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Refl.cmo -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_RingMicromega.cmi -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_RingMicromega.cmo -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Tauto.cmi -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Tauto.cmo -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_VarMap.cmi -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_VarMap.cmo -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_ZCoeff.cmi -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_ZCoeff.cmo -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_ZMicromega.cmi -lib/coq/plugins/micromega/.coq-native/NCoq_micromega_ZMicromega.cmo -lib/coq/plugins/micromega/Env.glob -lib/coq/plugins/micromega/Env.v -lib/coq/plugins/micromega/Env.vo -lib/coq/plugins/micromega/EnvRing.glob -lib/coq/plugins/micromega/EnvRing.v -lib/coq/plugins/micromega/EnvRing.vo -lib/coq/plugins/micromega/Lia.glob -lib/coq/plugins/micromega/Lia.v -lib/coq/plugins/micromega/Lia.vo -lib/coq/plugins/micromega/Lqa.glob -lib/coq/plugins/micromega/Lqa.v -lib/coq/plugins/micromega/Lqa.vo -lib/coq/plugins/micromega/Lra.glob -lib/coq/plugins/micromega/Lra.v -lib/coq/plugins/micromega/Lra.vo -lib/coq/plugins/micromega/OrderedRing.glob -lib/coq/plugins/micromega/OrderedRing.v -lib/coq/plugins/micromega/OrderedRing.vo -lib/coq/plugins/micromega/Psatz.glob -lib/coq/plugins/micromega/Psatz.v -lib/coq/plugins/micromega/Psatz.vo -lib/coq/plugins/micromega/QMicromega.glob -lib/coq/plugins/micromega/QMicromega.v -lib/coq/plugins/micromega/QMicromega.vo -lib/coq/plugins/micromega/RMicromega.glob -lib/coq/plugins/micromega/RMicromega.v -lib/coq/plugins/micromega/RMicromega.vo -lib/coq/plugins/micromega/Refl.glob -lib/coq/plugins/micromega/Refl.v -lib/coq/plugins/micromega/Refl.vo -lib/coq/plugins/micromega/RingMicromega.glob -lib/coq/plugins/micromega/RingMicromega.v -lib/coq/plugins/micromega/RingMicromega.vo -lib/coq/plugins/micromega/Tauto.glob -lib/coq/plugins/micromega/Tauto.v -lib/coq/plugins/micromega/Tauto.vo -lib/coq/plugins/micromega/VarMap.glob -lib/coq/plugins/micromega/VarMap.v -lib/coq/plugins/micromega/VarMap.vo -lib/coq/plugins/micromega/ZCoeff.glob -lib/coq/plugins/micromega/ZCoeff.v -lib/coq/plugins/micromega/ZCoeff.vo -lib/coq/plugins/micromega/ZMicromega.glob -lib/coq/plugins/micromega/ZMicromega.v -lib/coq/plugins/micromega/ZMicromega.vo -lib/coq/plugins/micromega/csdpcert -lib/coq/plugins/micromega/micromega.cmi -lib/coq/plugins/micromega/micromega_plugin.cmi -lib/coq/plugins/micromega/micromega_plugin.cmo -lib/coq/plugins/micromega/sos.cmi -lib/coq/plugins/nsatz/.coq-native/NCoq_nsatz_Nsatz.cmi -lib/coq/plugins/nsatz/.coq-native/NCoq_nsatz_Nsatz.cmo -lib/coq/plugins/nsatz/Nsatz.glob -lib/coq/plugins/nsatz/Nsatz.v -lib/coq/plugins/nsatz/Nsatz.vo -lib/coq/plugins/nsatz/ideal.cmi -lib/coq/plugins/nsatz/nsatz.cmi -lib/coq/plugins/nsatz/nsatz_plugin.cmi -lib/coq/plugins/nsatz/nsatz_plugin.cmo -lib/coq/plugins/nsatz/polynom.cmi -lib/coq/plugins/nsatz/utile.cmi -lib/coq/plugins/omega/.coq-native/NCoq_omega_Omega.cmi -lib/coq/plugins/omega/.coq-native/NCoq_omega_Omega.cmo -lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaLemmas.cmi -lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaLemmas.cmo -lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaPlugin.cmi -lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaPlugin.cmo -lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaTactic.cmi -lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaTactic.cmo -lib/coq/plugins/omega/.coq-native/NCoq_omega_PreOmega.cmi -lib/coq/plugins/omega/.coq-native/NCoq_omega_PreOmega.cmo -lib/coq/plugins/omega/Omega.glob -lib/coq/plugins/omega/Omega.v -lib/coq/plugins/omega/Omega.vo -lib/coq/plugins/omega/OmegaLemmas.glob -lib/coq/plugins/omega/OmegaLemmas.v -lib/coq/plugins/omega/OmegaLemmas.vo -lib/coq/plugins/omega/OmegaPlugin.glob -lib/coq/plugins/omega/OmegaPlugin.v -lib/coq/plugins/omega/OmegaPlugin.vo -lib/coq/plugins/omega/OmegaTactic.glob -lib/coq/plugins/omega/OmegaTactic.v -lib/coq/plugins/omega/OmegaTactic.vo -lib/coq/plugins/omega/PreOmega.glob -lib/coq/plugins/omega/PreOmega.v -lib/coq/plugins/omega/PreOmega.vo -lib/coq/plugins/omega/omega_plugin.cmi -lib/coq/plugins/omega/omega_plugin.cmo -lib/coq/plugins/quote/.coq-native/NCoq_quote_Quote.cmi -lib/coq/plugins/quote/.coq-native/NCoq_quote_Quote.cmo -lib/coq/plugins/quote/Quote.glob -lib/coq/plugins/quote/Quote.v -lib/coq/plugins/quote/Quote.vo -lib/coq/plugins/quote/quote_plugin.cmi -lib/coq/plugins/quote/quote_plugin.cmo -lib/coq/plugins/romega/.coq-native/NCoq_romega_ROmega.cmi -lib/coq/plugins/romega/.coq-native/NCoq_romega_ROmega.cmo -lib/coq/plugins/romega/.coq-native/NCoq_romega_ReflOmegaCore.cmi -lib/coq/plugins/romega/.coq-native/NCoq_romega_ReflOmegaCore.cmo -lib/coq/plugins/romega/ROmega.glob -lib/coq/plugins/romega/ROmega.v -lib/coq/plugins/romega/ROmega.vo -lib/coq/plugins/romega/ReflOmegaCore.glob -lib/coq/plugins/romega/ReflOmegaCore.v -lib/coq/plugins/romega/ReflOmegaCore.vo -lib/coq/plugins/romega/const_omega.cmi -lib/coq/plugins/romega/romega_plugin.cmi -lib/coq/plugins/romega/romega_plugin.cmo -lib/coq/plugins/rtauto/.coq-native/NCoq_rtauto_Bintree.cmi -lib/coq/plugins/rtauto/.coq-native/NCoq_rtauto_Bintree.cmo -lib/coq/plugins/rtauto/.coq-native/NCoq_rtauto_Rtauto.cmi -lib/coq/plugins/rtauto/.coq-native/NCoq_rtauto_Rtauto.cmo -lib/coq/plugins/rtauto/Bintree.glob -lib/coq/plugins/rtauto/Bintree.v -lib/coq/plugins/rtauto/Bintree.vo -lib/coq/plugins/rtauto/Rtauto.glob -lib/coq/plugins/rtauto/Rtauto.v -lib/coq/plugins/rtauto/Rtauto.vo -lib/coq/plugins/rtauto/proof_search.cmi -lib/coq/plugins/rtauto/refl_tauto.cmi -lib/coq/plugins/rtauto/rtauto_plugin.cmi -lib/coq/plugins/rtauto/rtauto_plugin.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Algebra_syntax.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Algebra_syntax.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_ArithRing.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_ArithRing.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_BinList.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_BinList.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Cring.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Cring.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field_tac.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field_tac.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field_theory.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field_theory.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_InitialRing.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_InitialRing.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Integral_domain.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Integral_domain.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_NArithRing.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_NArithRing.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_initial.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_initial.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_polynom.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_polynom.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_tac.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_tac.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_RealField.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_RealField.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_base.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_base.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_polynom.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_polynom.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_tac.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_tac.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_theory.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_theory.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Q.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Q.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_R.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_R.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Z.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Z.cmo -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_ZArithRing.cmi -lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_ZArithRing.cmo -lib/coq/plugins/setoid_ring/Algebra_syntax.glob -lib/coq/plugins/setoid_ring/Algebra_syntax.v -lib/coq/plugins/setoid_ring/Algebra_syntax.vo -lib/coq/plugins/setoid_ring/ArithRing.glob -lib/coq/plugins/setoid_ring/ArithRing.v -lib/coq/plugins/setoid_ring/ArithRing.vo -lib/coq/plugins/setoid_ring/BinList.glob -lib/coq/plugins/setoid_ring/BinList.v -lib/coq/plugins/setoid_ring/BinList.vo -lib/coq/plugins/setoid_ring/Cring.glob -lib/coq/plugins/setoid_ring/Cring.v -lib/coq/plugins/setoid_ring/Cring.vo -lib/coq/plugins/setoid_ring/Field.glob -lib/coq/plugins/setoid_ring/Field.v -lib/coq/plugins/setoid_ring/Field.vo -lib/coq/plugins/setoid_ring/Field_tac.glob -lib/coq/plugins/setoid_ring/Field_tac.v -lib/coq/plugins/setoid_ring/Field_tac.vo -lib/coq/plugins/setoid_ring/Field_theory.glob -lib/coq/plugins/setoid_ring/Field_theory.v -lib/coq/plugins/setoid_ring/Field_theory.vo -lib/coq/plugins/setoid_ring/InitialRing.glob -lib/coq/plugins/setoid_ring/InitialRing.v -lib/coq/plugins/setoid_ring/InitialRing.vo -lib/coq/plugins/setoid_ring/Integral_domain.glob -lib/coq/plugins/setoid_ring/Integral_domain.v -lib/coq/plugins/setoid_ring/Integral_domain.vo -lib/coq/plugins/setoid_ring/NArithRing.glob -lib/coq/plugins/setoid_ring/NArithRing.v -lib/coq/plugins/setoid_ring/NArithRing.vo -lib/coq/plugins/setoid_ring/Ncring.glob -lib/coq/plugins/setoid_ring/Ncring.v -lib/coq/plugins/setoid_ring/Ncring.vo -lib/coq/plugins/setoid_ring/Ncring_initial.glob -lib/coq/plugins/setoid_ring/Ncring_initial.v -lib/coq/plugins/setoid_ring/Ncring_initial.vo -lib/coq/plugins/setoid_ring/Ncring_polynom.glob -lib/coq/plugins/setoid_ring/Ncring_polynom.v -lib/coq/plugins/setoid_ring/Ncring_polynom.vo -lib/coq/plugins/setoid_ring/Ncring_tac.glob -lib/coq/plugins/setoid_ring/Ncring_tac.v -lib/coq/plugins/setoid_ring/Ncring_tac.vo -lib/coq/plugins/setoid_ring/RealField.glob -lib/coq/plugins/setoid_ring/RealField.v -lib/coq/plugins/setoid_ring/RealField.vo -lib/coq/plugins/setoid_ring/Ring.glob -lib/coq/plugins/setoid_ring/Ring.v -lib/coq/plugins/setoid_ring/Ring.vo -lib/coq/plugins/setoid_ring/Ring_base.glob -lib/coq/plugins/setoid_ring/Ring_base.v -lib/coq/plugins/setoid_ring/Ring_base.vo -lib/coq/plugins/setoid_ring/Ring_polynom.glob -lib/coq/plugins/setoid_ring/Ring_polynom.v -lib/coq/plugins/setoid_ring/Ring_polynom.vo -lib/coq/plugins/setoid_ring/Ring_tac.glob -lib/coq/plugins/setoid_ring/Ring_tac.v -lib/coq/plugins/setoid_ring/Ring_tac.vo -lib/coq/plugins/setoid_ring/Ring_theory.glob -lib/coq/plugins/setoid_ring/Ring_theory.v -lib/coq/plugins/setoid_ring/Ring_theory.vo -lib/coq/plugins/setoid_ring/Rings_Q.glob -lib/coq/plugins/setoid_ring/Rings_Q.v -lib/coq/plugins/setoid_ring/Rings_Q.vo -lib/coq/plugins/setoid_ring/Rings_R.glob -lib/coq/plugins/setoid_ring/Rings_R.v -lib/coq/plugins/setoid_ring/Rings_R.vo -lib/coq/plugins/setoid_ring/Rings_Z.glob -lib/coq/plugins/setoid_ring/Rings_Z.v -lib/coq/plugins/setoid_ring/Rings_Z.vo -lib/coq/plugins/setoid_ring/ZArithRing.glob -lib/coq/plugins/setoid_ring/ZArithRing.v -lib/coq/plugins/setoid_ring/ZArithRing.vo -lib/coq/plugins/setoid_ring/newring.cmi -lib/coq/plugins/setoid_ring/newring_ast.cmi -lib/coq/plugins/setoid_ring/newring_plugin.cmi -lib/coq/plugins/setoid_ring/newring_plugin.cmo -lib/coq/plugins/ssrmatching/.coq-native/NCoq_ssrmatching_ssrmatching.cmi -lib/coq/plugins/ssrmatching/.coq-native/NCoq_ssrmatching_ssrmatching.cmo -lib/coq/plugins/ssrmatching/ssrmatching.cmi -lib/coq/plugins/ssrmatching/ssrmatching.glob -lib/coq/plugins/ssrmatching/ssrmatching.v -lib/coq/plugins/ssrmatching/ssrmatching.vo -lib/coq/plugins/ssrmatching/ssrmatching_plugin.cmi -lib/coq/plugins/ssrmatching/ssrmatching_plugin.cmo -lib/coq/plugins/syntax/ascii_syntax_plugin.cmi -lib/coq/plugins/syntax/ascii_syntax_plugin.cmo -lib/coq/plugins/syntax/nat_syntax_plugin.cmi -lib/coq/plugins/syntax/nat_syntax_plugin.cmo -lib/coq/plugins/syntax/numbers_syntax_plugin.cmi -lib/coq/plugins/syntax/numbers_syntax_plugin.cmo -lib/coq/plugins/syntax/r_syntax_plugin.cmi -lib/coq/plugins/syntax/r_syntax_plugin.cmo -lib/coq/plugins/syntax/string_syntax_plugin.cmi -lib/coq/plugins/syntax/string_syntax_plugin.cmo -lib/coq/plugins/syntax/z_syntax_plugin.cmi -lib/coq/plugins/syntax/z_syntax_plugin.cmo -lib/coq/pretyping/arguments_renaming.cmi -lib/coq/pretyping/cases.cmi -lib/coq/pretyping/cbv.cmi -lib/coq/pretyping/classops.cmi -lib/coq/pretyping/coercion.cmi -lib/coq/pretyping/constr_matching.cmi -lib/coq/pretyping/detyping.cmi -lib/coq/pretyping/evarconv.cmi -lib/coq/pretyping/evardefine.cmi -lib/coq/pretyping/evarsolve.cmi -lib/coq/pretyping/find_subterm.cmi -lib/coq/pretyping/glob_ops.cmi -lib/coq/pretyping/indrec.cmi -lib/coq/pretyping/inductiveops.cmi -lib/coq/pretyping/locusops.cmi -lib/coq/pretyping/miscops.cmi -lib/coq/pretyping/nativenorm.cmi -lib/coq/pretyping/patternops.cmi -lib/coq/pretyping/pretype_errors.cmi -lib/coq/pretyping/pretyping.cma -lib/coq/pretyping/pretyping.cmi -lib/coq/pretyping/program.cmi -lib/coq/pretyping/recordops.cmi -lib/coq/pretyping/redops.cmi -lib/coq/pretyping/reductionops.cmi -lib/coq/pretyping/retyping.cmi -lib/coq/pretyping/tacred.cmi -lib/coq/pretyping/typeclasses.cmi -lib/coq/pretyping/typeclasses_errors.cmi -lib/coq/pretyping/typing.cmi -lib/coq/pretyping/unification.cmi -lib/coq/pretyping/vnorm.cmi -lib/coq/printing/genprint.cmi -lib/coq/printing/miscprint.cmi -lib/coq/printing/ppannotation.cmi -lib/coq/printing/ppconstr.cmi -lib/coq/printing/ppconstrsig.cmi -lib/coq/printing/pptactic.cmi -lib/coq/printing/pptacticsig.cmi -lib/coq/printing/pputils.cmi -lib/coq/printing/ppvernac.cmi -lib/coq/printing/ppvernacsig.cmi -lib/coq/printing/prettyp.cmi -lib/coq/printing/printer.cmi -lib/coq/printing/printing.cma -lib/coq/printing/printmod.cmi -lib/coq/printing/printmodsig.cmi -lib/coq/proofs/clenv.cmi -lib/coq/proofs/clenvtac.cmi -lib/coq/proofs/evar_refiner.cmi -lib/coq/proofs/goal.cmi -lib/coq/proofs/logic.cmi -lib/coq/proofs/pfedit.cmi -lib/coq/proofs/proof.cmi -lib/coq/proofs/proof_global.cmi -lib/coq/proofs/proof_type.cmi -lib/coq/proofs/proof_using.cmi -lib/coq/proofs/proofs.cma -lib/coq/proofs/redexpr.cmi -lib/coq/proofs/refine.cmi -lib/coq/proofs/refiner.cmi -lib/coq/proofs/tacmach.cmi -lib/coq/stm/asyncTaskQueue.cmi -lib/coq/stm/coqworkmgrApi.cmi -lib/coq/stm/dag.cmi -lib/coq/stm/lemmas.cmi -lib/coq/stm/proofBlockDelimiter.cmi -lib/coq/stm/spawned.cmi -lib/coq/stm/stm.cma -lib/coq/stm/stm.cmi -lib/coq/stm/tQueue.cmi -lib/coq/stm/vcs.cmi -lib/coq/stm/vernac_classifier.cmi -lib/coq/stm/vio_checking.cmi -lib/coq/stm/workerPool.cmi -lib/coq/tactics/auto.cmi -lib/coq/tactics/autorewrite.cmi -lib/coq/tactics/btermdn.cmi -lib/coq/tactics/class_tactics.cmi -lib/coq/tactics/contradiction.cmi -lib/coq/tactics/dn.cmi -lib/coq/tactics/dnet.cmi -lib/coq/tactics/eauto.cmi -lib/coq/tactics/elim.cmi -lib/coq/tactics/elimschemes.cmi -lib/coq/tactics/eqdecide.cmi -lib/coq/tactics/eqschemes.cmi -lib/coq/tactics/equality.cmi -lib/coq/tactics/hints.cmi -lib/coq/tactics/hipattern.cmi -lib/coq/tactics/inv.cmi -lib/coq/tactics/leminv.cmi -lib/coq/tactics/tactic_matching.cmi -lib/coq/tactics/tacticals.cmi -lib/coq/tactics/tactics.cma -lib/coq/tactics/tactics.cmi -lib/coq/tactics/term_dnet.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith_base.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith_base.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Between.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Between.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Bool_nat.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Bool_nat.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare_dec.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare_dec.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Div2.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Div2.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_EqNat.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_EqNat.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Euclid.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Euclid.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Even.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Even.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Factorial.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Factorial.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Gt.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Gt.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Le.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Le.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Lt.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Lt.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Max.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Max.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Min.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Min.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Minus.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Minus.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Mult.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Mult.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_PeanoNat.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_PeanoNat.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Peano_dec.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Peano_dec.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Plus.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Plus.cmo -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Wf_nat.cmi -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Wf_nat.cmo -lib/coq/theories/Arith/Arith.glob -lib/coq/theories/Arith/Arith.v -lib/coq/theories/Arith/Arith.vo -lib/coq/theories/Arith/Arith_base.glob -lib/coq/theories/Arith/Arith_base.v -lib/coq/theories/Arith/Arith_base.vo -lib/coq/theories/Arith/Between.glob -lib/coq/theories/Arith/Between.v -lib/coq/theories/Arith/Between.vo -lib/coq/theories/Arith/Bool_nat.glob -lib/coq/theories/Arith/Bool_nat.v -lib/coq/theories/Arith/Bool_nat.vo -lib/coq/theories/Arith/Compare.glob -lib/coq/theories/Arith/Compare.v -lib/coq/theories/Arith/Compare.vo -lib/coq/theories/Arith/Compare_dec.glob -lib/coq/theories/Arith/Compare_dec.v -lib/coq/theories/Arith/Compare_dec.vo -lib/coq/theories/Arith/Div2.glob -lib/coq/theories/Arith/Div2.v -lib/coq/theories/Arith/Div2.vo -lib/coq/theories/Arith/EqNat.glob -lib/coq/theories/Arith/EqNat.v -lib/coq/theories/Arith/EqNat.vo -lib/coq/theories/Arith/Euclid.glob -lib/coq/theories/Arith/Euclid.v -lib/coq/theories/Arith/Euclid.vo -lib/coq/theories/Arith/Even.glob -lib/coq/theories/Arith/Even.v -lib/coq/theories/Arith/Even.vo -lib/coq/theories/Arith/Factorial.glob -lib/coq/theories/Arith/Factorial.v -lib/coq/theories/Arith/Factorial.vo -lib/coq/theories/Arith/Gt.glob -lib/coq/theories/Arith/Gt.v -lib/coq/theories/Arith/Gt.vo -lib/coq/theories/Arith/Le.glob -lib/coq/theories/Arith/Le.v -lib/coq/theories/Arith/Le.vo -lib/coq/theories/Arith/Lt.glob -lib/coq/theories/Arith/Lt.v -lib/coq/theories/Arith/Lt.vo -lib/coq/theories/Arith/Max.glob -lib/coq/theories/Arith/Max.v -lib/coq/theories/Arith/Max.vo -lib/coq/theories/Arith/Min.glob -lib/coq/theories/Arith/Min.v -lib/coq/theories/Arith/Min.vo -lib/coq/theories/Arith/Minus.glob -lib/coq/theories/Arith/Minus.v -lib/coq/theories/Arith/Minus.vo -lib/coq/theories/Arith/Mult.glob -lib/coq/theories/Arith/Mult.v -lib/coq/theories/Arith/Mult.vo -lib/coq/theories/Arith/PeanoNat.glob -lib/coq/theories/Arith/PeanoNat.v -lib/coq/theories/Arith/PeanoNat.vo -lib/coq/theories/Arith/Peano_dec.glob -lib/coq/theories/Arith/Peano_dec.v -lib/coq/theories/Arith/Peano_dec.vo -lib/coq/theories/Arith/Plus.glob -lib/coq/theories/Arith/Plus.v -lib/coq/theories/Arith/Plus.vo -lib/coq/theories/Arith/Wf_nat.glob -lib/coq/theories/Arith/Wf_nat.v -lib/coq/theories/Arith/Wf_nat.vo -lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bool.cmi -lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bool.cmo -lib/coq/theories/Bool/.coq-native/NCoq_Bool_BoolEq.cmi -lib/coq/theories/Bool/.coq-native/NCoq_Bool_BoolEq.cmo -lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bvector.cmi -lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bvector.cmo -lib/coq/theories/Bool/.coq-native/NCoq_Bool_DecBool.cmi -lib/coq/theories/Bool/.coq-native/NCoq_Bool_DecBool.cmo -lib/coq/theories/Bool/.coq-native/NCoq_Bool_IfProp.cmi -lib/coq/theories/Bool/.coq-native/NCoq_Bool_IfProp.cmo -lib/coq/theories/Bool/.coq-native/NCoq_Bool_Sumbool.cmi -lib/coq/theories/Bool/.coq-native/NCoq_Bool_Sumbool.cmo -lib/coq/theories/Bool/.coq-native/NCoq_Bool_Zerob.cmi -lib/coq/theories/Bool/.coq-native/NCoq_Bool_Zerob.cmo -lib/coq/theories/Bool/Bool.glob -lib/coq/theories/Bool/Bool.v -lib/coq/theories/Bool/Bool.vo -lib/coq/theories/Bool/BoolEq.glob -lib/coq/theories/Bool/BoolEq.v -lib/coq/theories/Bool/BoolEq.vo -lib/coq/theories/Bool/Bvector.glob -lib/coq/theories/Bool/Bvector.v -lib/coq/theories/Bool/Bvector.vo -lib/coq/theories/Bool/DecBool.glob -lib/coq/theories/Bool/DecBool.v -lib/coq/theories/Bool/DecBool.vo -lib/coq/theories/Bool/IfProp.glob -lib/coq/theories/Bool/IfProp.v -lib/coq/theories/Bool/IfProp.vo -lib/coq/theories/Bool/Sumbool.glob -lib/coq/theories/Bool/Sumbool.v -lib/coq/theories/Bool/Sumbool.vo -lib/coq/theories/Bool/Zerob.glob -lib/coq/theories/Bool/Zerob.v -lib/coq/theories/Bool/Zerob.vo -lib/coq/theories/Classes/.coq-native/NCoq_Classes_CEquivalence.cmi -lib/coq/theories/Classes/.coq-native/NCoq_Classes_CEquivalence.cmo -lib/coq/theories/Classes/.coq-native/NCoq_Classes_CMorphisms.cmi -lib/coq/theories/Classes/.coq-native/NCoq_Classes_CMorphisms.cmo -lib/coq/theories/Classes/.coq-native/NCoq_Classes_CRelationClasses.cmi -lib/coq/theories/Classes/.coq-native/NCoq_Classes_CRelationClasses.cmo -lib/coq/theories/Classes/.coq-native/NCoq_Classes_DecidableClass.cmi -lib/coq/theories/Classes/.coq-native/NCoq_Classes_DecidableClass.cmo -lib/coq/theories/Classes/.coq-native/NCoq_Classes_EquivDec.cmi -lib/coq/theories/Classes/.coq-native/NCoq_Classes_EquivDec.cmo -lib/coq/theories/Classes/.coq-native/NCoq_Classes_Equivalence.cmi -lib/coq/theories/Classes/.coq-native/NCoq_Classes_Equivalence.cmo -lib/coq/theories/Classes/.coq-native/NCoq_Classes_Init.cmi -lib/coq/theories/Classes/.coq-native/NCoq_Classes_Init.cmo -lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms.cmi -lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms.cmo -lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Prop.cmi -lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Prop.cmo -lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Relations.cmi -lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Relations.cmo -lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationClasses.cmi -lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationClasses.cmo -lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationPairs.cmi -lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationPairs.cmo -lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidClass.cmi -lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidClass.cmo -lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidDec.cmi -lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidDec.cmo -lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidTactics.cmi -lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidTactics.cmo -lib/coq/theories/Classes/CEquivalence.glob -lib/coq/theories/Classes/CEquivalence.v -lib/coq/theories/Classes/CEquivalence.vo -lib/coq/theories/Classes/CMorphisms.glob -lib/coq/theories/Classes/CMorphisms.v -lib/coq/theories/Classes/CMorphisms.vo -lib/coq/theories/Classes/CRelationClasses.glob -lib/coq/theories/Classes/CRelationClasses.v -lib/coq/theories/Classes/CRelationClasses.vo -lib/coq/theories/Classes/DecidableClass.glob -lib/coq/theories/Classes/DecidableClass.v -lib/coq/theories/Classes/DecidableClass.vo -lib/coq/theories/Classes/EquivDec.glob -lib/coq/theories/Classes/EquivDec.v -lib/coq/theories/Classes/EquivDec.vo -lib/coq/theories/Classes/Equivalence.glob -lib/coq/theories/Classes/Equivalence.v -lib/coq/theories/Classes/Equivalence.vo -lib/coq/theories/Classes/Init.glob -lib/coq/theories/Classes/Init.v -lib/coq/theories/Classes/Init.vo -lib/coq/theories/Classes/Morphisms.glob -lib/coq/theories/Classes/Morphisms.v -lib/coq/theories/Classes/Morphisms.vo -lib/coq/theories/Classes/Morphisms_Prop.glob -lib/coq/theories/Classes/Morphisms_Prop.v -lib/coq/theories/Classes/Morphisms_Prop.vo -lib/coq/theories/Classes/Morphisms_Relations.glob -lib/coq/theories/Classes/Morphisms_Relations.v -lib/coq/theories/Classes/Morphisms_Relations.vo -lib/coq/theories/Classes/RelationClasses.glob -lib/coq/theories/Classes/RelationClasses.v -lib/coq/theories/Classes/RelationClasses.vo -lib/coq/theories/Classes/RelationPairs.glob -lib/coq/theories/Classes/RelationPairs.v -lib/coq/theories/Classes/RelationPairs.vo -lib/coq/theories/Classes/SetoidClass.glob -lib/coq/theories/Classes/SetoidClass.v -lib/coq/theories/Classes/SetoidClass.vo -lib/coq/theories/Classes/SetoidDec.glob -lib/coq/theories/Classes/SetoidDec.v -lib/coq/theories/Classes/SetoidDec.vo -lib/coq/theories/Classes/SetoidTactics.glob -lib/coq/theories/Classes/SetoidTactics.v -lib/coq/theories/Classes/SetoidTactics.vo -lib/coq/theories/Compat/.coq-native/NCoq_Compat_AdmitAxiom.cmi -lib/coq/theories/Compat/.coq-native/NCoq_Compat_AdmitAxiom.cmo -lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq84.cmi -lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq84.cmo -lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq85.cmi -lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq85.cmo -lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq86.cmi -lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq86.cmo -lib/coq/theories/Compat/AdmitAxiom.glob -lib/coq/theories/Compat/AdmitAxiom.v -lib/coq/theories/Compat/AdmitAxiom.vo -lib/coq/theories/Compat/Coq84.glob -lib/coq/theories/Compat/Coq84.v -lib/coq/theories/Compat/Coq84.vo -lib/coq/theories/Compat/Coq85.glob -lib/coq/theories/Compat/Coq85.v -lib/coq/theories/Compat/Coq85.vo -lib/coq/theories/Compat/Coq86.glob -lib/coq/theories/Compat/Coq86.v -lib/coq/theories/Compat/Coq86.vo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapAVL.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapAVL.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFacts.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFacts.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFullAVL.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFullAVL.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapInterface.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapInterface.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapList.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapList.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapPositive.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapPositive.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapWeakList.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapWeakList.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMaps.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMaps.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetAVL.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetAVL.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetBridge.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetBridge.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetCompat.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetCompat.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetDecide.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetDecide.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetEqProperties.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetEqProperties.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetFacts.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetFacts.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetInterface.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetInterface.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetList.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetList.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetPositive.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetPositive.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetProperties.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetProperties.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetToFiniteSet.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetToFiniteSet.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetWeakList.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetWeakList.cmo -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSets.cmi -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSets.cmo -lib/coq/theories/FSets/FMapAVL.glob -lib/coq/theories/FSets/FMapAVL.v -lib/coq/theories/FSets/FMapAVL.vo -lib/coq/theories/FSets/FMapFacts.glob -lib/coq/theories/FSets/FMapFacts.v -lib/coq/theories/FSets/FMapFacts.vo -lib/coq/theories/FSets/FMapFullAVL.glob -lib/coq/theories/FSets/FMapFullAVL.v -lib/coq/theories/FSets/FMapFullAVL.vo -lib/coq/theories/FSets/FMapInterface.glob -lib/coq/theories/FSets/FMapInterface.v -lib/coq/theories/FSets/FMapInterface.vo -lib/coq/theories/FSets/FMapList.glob -lib/coq/theories/FSets/FMapList.v -lib/coq/theories/FSets/FMapList.vo -lib/coq/theories/FSets/FMapPositive.glob -lib/coq/theories/FSets/FMapPositive.v -lib/coq/theories/FSets/FMapPositive.vo -lib/coq/theories/FSets/FMapWeakList.glob -lib/coq/theories/FSets/FMapWeakList.v -lib/coq/theories/FSets/FMapWeakList.vo -lib/coq/theories/FSets/FMaps.glob -lib/coq/theories/FSets/FMaps.v -lib/coq/theories/FSets/FMaps.vo -lib/coq/theories/FSets/FSetAVL.glob -lib/coq/theories/FSets/FSetAVL.v -lib/coq/theories/FSets/FSetAVL.vo -lib/coq/theories/FSets/FSetBridge.glob -lib/coq/theories/FSets/FSetBridge.v -lib/coq/theories/FSets/FSetBridge.vo -lib/coq/theories/FSets/FSetCompat.glob -lib/coq/theories/FSets/FSetCompat.v -lib/coq/theories/FSets/FSetCompat.vo -lib/coq/theories/FSets/FSetDecide.glob -lib/coq/theories/FSets/FSetDecide.v -lib/coq/theories/FSets/FSetDecide.vo -lib/coq/theories/FSets/FSetEqProperties.glob -lib/coq/theories/FSets/FSetEqProperties.v -lib/coq/theories/FSets/FSetEqProperties.vo -lib/coq/theories/FSets/FSetFacts.glob -lib/coq/theories/FSets/FSetFacts.v -lib/coq/theories/FSets/FSetFacts.vo -lib/coq/theories/FSets/FSetInterface.glob -lib/coq/theories/FSets/FSetInterface.v -lib/coq/theories/FSets/FSetInterface.vo -lib/coq/theories/FSets/FSetList.glob -lib/coq/theories/FSets/FSetList.v -lib/coq/theories/FSets/FSetList.vo -lib/coq/theories/FSets/FSetPositive.glob -lib/coq/theories/FSets/FSetPositive.v -lib/coq/theories/FSets/FSetPositive.vo -lib/coq/theories/FSets/FSetProperties.glob -lib/coq/theories/FSets/FSetProperties.v -lib/coq/theories/FSets/FSetProperties.vo -lib/coq/theories/FSets/FSetToFiniteSet.glob -lib/coq/theories/FSets/FSetToFiniteSet.v -lib/coq/theories/FSets/FSetToFiniteSet.vo -lib/coq/theories/FSets/FSetWeakList.glob -lib/coq/theories/FSets/FSetWeakList.v -lib/coq/theories/FSets/FSetWeakList.vo -lib/coq/theories/FSets/FSets.glob -lib/coq/theories/FSets/FSets.v -lib/coq/theories/FSets/FSets.vo -lib/coq/theories/Init/.coq-native/NCoq_Init_Datatypes.cmi -lib/coq/theories/Init/.coq-native/NCoq_Init_Datatypes.cmo -lib/coq/theories/Init/.coq-native/NCoq_Init_Logic.cmi -lib/coq/theories/Init/.coq-native/NCoq_Init_Logic.cmo -lib/coq/theories/Init/.coq-native/NCoq_Init_Logic_Type.cmi -lib/coq/theories/Init/.coq-native/NCoq_Init_Logic_Type.cmo -lib/coq/theories/Init/.coq-native/NCoq_Init_Nat.cmi -lib/coq/theories/Init/.coq-native/NCoq_Init_Nat.cmo -lib/coq/theories/Init/.coq-native/NCoq_Init_Notations.cmi -lib/coq/theories/Init/.coq-native/NCoq_Init_Notations.cmo -lib/coq/theories/Init/.coq-native/NCoq_Init_Peano.cmi -lib/coq/theories/Init/.coq-native/NCoq_Init_Peano.cmo -lib/coq/theories/Init/.coq-native/NCoq_Init_Prelude.cmi -lib/coq/theories/Init/.coq-native/NCoq_Init_Prelude.cmo -lib/coq/theories/Init/.coq-native/NCoq_Init_Specif.cmi -lib/coq/theories/Init/.coq-native/NCoq_Init_Specif.cmo -lib/coq/theories/Init/.coq-native/NCoq_Init_Tactics.cmi -lib/coq/theories/Init/.coq-native/NCoq_Init_Tactics.cmo -lib/coq/theories/Init/.coq-native/NCoq_Init_Tauto.cmi -lib/coq/theories/Init/.coq-native/NCoq_Init_Tauto.cmo -lib/coq/theories/Init/.coq-native/NCoq_Init_Wf.cmi -lib/coq/theories/Init/.coq-native/NCoq_Init_Wf.cmo -lib/coq/theories/Init/Datatypes.glob -lib/coq/theories/Init/Datatypes.v -lib/coq/theories/Init/Datatypes.vo -lib/coq/theories/Init/Logic.glob -lib/coq/theories/Init/Logic.v -lib/coq/theories/Init/Logic.vo -lib/coq/theories/Init/Logic_Type.glob -lib/coq/theories/Init/Logic_Type.v -lib/coq/theories/Init/Logic_Type.vo -lib/coq/theories/Init/Nat.glob -lib/coq/theories/Init/Nat.v -lib/coq/theories/Init/Nat.vo -lib/coq/theories/Init/Notations.glob -lib/coq/theories/Init/Notations.v -lib/coq/theories/Init/Notations.vo -lib/coq/theories/Init/Peano.glob -lib/coq/theories/Init/Peano.v -lib/coq/theories/Init/Peano.vo -lib/coq/theories/Init/Prelude.glob -lib/coq/theories/Init/Prelude.v -lib/coq/theories/Init/Prelude.vo -lib/coq/theories/Init/Specif.glob -lib/coq/theories/Init/Specif.v -lib/coq/theories/Init/Specif.vo -lib/coq/theories/Init/Tactics.glob -lib/coq/theories/Init/Tactics.v -lib/coq/theories/Init/Tactics.vo -lib/coq/theories/Init/Tauto.glob -lib/coq/theories/Init/Tauto.v -lib/coq/theories/Init/Tauto.vo -lib/coq/theories/Init/Wf.glob -lib/coq/theories/Init/Wf.v -lib/coq/theories/Init/Wf.vo -lib/coq/theories/Lists/.coq-native/NCoq_Lists_List.cmi -lib/coq/theories/Lists/.coq-native/NCoq_Lists_List.cmo -lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListDec.cmi -lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListDec.cmo -lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListSet.cmi -lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListSet.cmo -lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListTactics.cmi -lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListTactics.cmo -lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidList.cmi -lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidList.cmo -lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidPermutation.cmi -lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidPermutation.cmo -lib/coq/theories/Lists/.coq-native/NCoq_Lists_StreamMemo.cmi -lib/coq/theories/Lists/.coq-native/NCoq_Lists_StreamMemo.cmo -lib/coq/theories/Lists/.coq-native/NCoq_Lists_Streams.cmi -lib/coq/theories/Lists/.coq-native/NCoq_Lists_Streams.cmo -lib/coq/theories/Lists/List.glob -lib/coq/theories/Lists/List.v -lib/coq/theories/Lists/List.vo -lib/coq/theories/Lists/ListDec.glob -lib/coq/theories/Lists/ListDec.v -lib/coq/theories/Lists/ListDec.vo -lib/coq/theories/Lists/ListSet.glob -lib/coq/theories/Lists/ListSet.v -lib/coq/theories/Lists/ListSet.vo -lib/coq/theories/Lists/ListTactics.glob -lib/coq/theories/Lists/ListTactics.v -lib/coq/theories/Lists/ListTactics.vo -lib/coq/theories/Lists/SetoidList.glob -lib/coq/theories/Lists/SetoidList.v -lib/coq/theories/Lists/SetoidList.vo -lib/coq/theories/Lists/SetoidPermutation.glob -lib/coq/theories/Lists/SetoidPermutation.v -lib/coq/theories/Lists/SetoidPermutation.vo -lib/coq/theories/Lists/StreamMemo.glob -lib/coq/theories/Lists/StreamMemo.v -lib/coq/theories/Lists/StreamMemo.vo -lib/coq/theories/Lists/Streams.glob -lib/coq/theories/Lists/Streams.v -lib/coq/theories/Lists/Streams.vo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Berardi.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Berardi.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ChoiceFacts.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ChoiceFacts.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalChoice.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalChoice.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalDescription.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalDescription.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalEpsilon.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalEpsilon.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalFacts.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalFacts.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalUniqueChoice.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalUniqueChoice.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Pred_Type.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Pred_Type.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Prop.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Prop.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ConstructiveEpsilon.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ConstructiveEpsilon.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Decidable.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Decidable.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Description.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Description.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Diaconescu.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Diaconescu.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Epsilon.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Epsilon.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_EqdepFacts.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_EqdepFacts.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep_dec.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep_dec.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalityFacts.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalityFacts.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_FinFun.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_FinFun.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_FunctionalExtensionality.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_FunctionalExtensionality.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Hurkens.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Hurkens.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_IndefiniteDescription.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_IndefiniteDescription.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_JMeq.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_JMeq.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevance.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevance.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevanceFacts.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevanceFacts.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_RelationalChoice.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_RelationalChoice.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_SetIsType.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_SetIsType.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_WKL.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_WKL.cmo -lib/coq/theories/Logic/.coq-native/NCoq_Logic_WeakFan.cmi -lib/coq/theories/Logic/.coq-native/NCoq_Logic_WeakFan.cmo -lib/coq/theories/Logic/Berardi.glob -lib/coq/theories/Logic/Berardi.v -lib/coq/theories/Logic/Berardi.vo -lib/coq/theories/Logic/ChoiceFacts.glob -lib/coq/theories/Logic/ChoiceFacts.v -lib/coq/theories/Logic/ChoiceFacts.vo -lib/coq/theories/Logic/Classical.glob -lib/coq/theories/Logic/Classical.v -lib/coq/theories/Logic/Classical.vo -lib/coq/theories/Logic/ClassicalChoice.glob -lib/coq/theories/Logic/ClassicalChoice.v -lib/coq/theories/Logic/ClassicalChoice.vo -lib/coq/theories/Logic/ClassicalDescription.glob -lib/coq/theories/Logic/ClassicalDescription.v -lib/coq/theories/Logic/ClassicalDescription.vo -lib/coq/theories/Logic/ClassicalEpsilon.glob -lib/coq/theories/Logic/ClassicalEpsilon.v -lib/coq/theories/Logic/ClassicalEpsilon.vo -lib/coq/theories/Logic/ClassicalFacts.glob -lib/coq/theories/Logic/ClassicalFacts.v -lib/coq/theories/Logic/ClassicalFacts.vo -lib/coq/theories/Logic/ClassicalUniqueChoice.glob -lib/coq/theories/Logic/ClassicalUniqueChoice.v -lib/coq/theories/Logic/ClassicalUniqueChoice.vo -lib/coq/theories/Logic/Classical_Pred_Type.glob -lib/coq/theories/Logic/Classical_Pred_Type.v -lib/coq/theories/Logic/Classical_Pred_Type.vo -lib/coq/theories/Logic/Classical_Prop.glob -lib/coq/theories/Logic/Classical_Prop.v -lib/coq/theories/Logic/Classical_Prop.vo -lib/coq/theories/Logic/ConstructiveEpsilon.glob -lib/coq/theories/Logic/ConstructiveEpsilon.v -lib/coq/theories/Logic/ConstructiveEpsilon.vo -lib/coq/theories/Logic/Decidable.glob -lib/coq/theories/Logic/Decidable.v -lib/coq/theories/Logic/Decidable.vo -lib/coq/theories/Logic/Description.glob -lib/coq/theories/Logic/Description.v -lib/coq/theories/Logic/Description.vo -lib/coq/theories/Logic/Diaconescu.glob -lib/coq/theories/Logic/Diaconescu.v -lib/coq/theories/Logic/Diaconescu.vo -lib/coq/theories/Logic/Epsilon.glob -lib/coq/theories/Logic/Epsilon.v -lib/coq/theories/Logic/Epsilon.vo -lib/coq/theories/Logic/Eqdep.glob -lib/coq/theories/Logic/Eqdep.v -lib/coq/theories/Logic/Eqdep.vo -lib/coq/theories/Logic/EqdepFacts.glob -lib/coq/theories/Logic/EqdepFacts.v -lib/coq/theories/Logic/EqdepFacts.vo -lib/coq/theories/Logic/Eqdep_dec.glob -lib/coq/theories/Logic/Eqdep_dec.v -lib/coq/theories/Logic/Eqdep_dec.vo -lib/coq/theories/Logic/ExtensionalityFacts.glob -lib/coq/theories/Logic/ExtensionalityFacts.v -lib/coq/theories/Logic/ExtensionalityFacts.vo -lib/coq/theories/Logic/FinFun.glob -lib/coq/theories/Logic/FinFun.v -lib/coq/theories/Logic/FinFun.vo -lib/coq/theories/Logic/FunctionalExtensionality.glob -lib/coq/theories/Logic/FunctionalExtensionality.v -lib/coq/theories/Logic/FunctionalExtensionality.vo -lib/coq/theories/Logic/Hurkens.glob -lib/coq/theories/Logic/Hurkens.v -lib/coq/theories/Logic/Hurkens.vo -lib/coq/theories/Logic/IndefiniteDescription.glob -lib/coq/theories/Logic/IndefiniteDescription.v -lib/coq/theories/Logic/IndefiniteDescription.vo -lib/coq/theories/Logic/JMeq.glob -lib/coq/theories/Logic/JMeq.v -lib/coq/theories/Logic/JMeq.vo -lib/coq/theories/Logic/ProofIrrelevance.glob -lib/coq/theories/Logic/ProofIrrelevance.v -lib/coq/theories/Logic/ProofIrrelevance.vo -lib/coq/theories/Logic/ProofIrrelevanceFacts.glob -lib/coq/theories/Logic/ProofIrrelevanceFacts.v -lib/coq/theories/Logic/ProofIrrelevanceFacts.vo -lib/coq/theories/Logic/RelationalChoice.glob -lib/coq/theories/Logic/RelationalChoice.v -lib/coq/theories/Logic/RelationalChoice.vo -lib/coq/theories/Logic/SetIsType.glob -lib/coq/theories/Logic/SetIsType.v -lib/coq/theories/Logic/SetIsType.vo -lib/coq/theories/Logic/WKL.glob -lib/coq/theories/Logic/WKL.v -lib/coq/theories/Logic/WKL.vo -lib/coq/theories/Logic/WeakFan.glob -lib/coq/theories/Logic/WeakFan.v -lib/coq/theories/Logic/WeakFan.vo -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetAVL.cmi -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetAVL.cmo -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetDecide.cmi -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetDecide.cmo -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetEqProperties.cmi -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetEqProperties.cmo -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetFacts.cmi -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetFacts.cmo -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetGenTree.cmi -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetGenTree.cmo -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetInterface.cmi -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetInterface.cmo -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetList.cmi -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetList.cmo -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetPositive.cmi -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetPositive.cmo -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetProperties.cmi -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetProperties.cmo -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetRBT.cmi -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetRBT.cmo -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetToFiniteSet.cmi -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetToFiniteSet.cmo -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetWeakList.cmi -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetWeakList.cmo -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSets.cmi -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSets.cmo -lib/coq/theories/MSets/MSetAVL.glob -lib/coq/theories/MSets/MSetAVL.v -lib/coq/theories/MSets/MSetAVL.vo -lib/coq/theories/MSets/MSetDecide.glob -lib/coq/theories/MSets/MSetDecide.v -lib/coq/theories/MSets/MSetDecide.vo -lib/coq/theories/MSets/MSetEqProperties.glob -lib/coq/theories/MSets/MSetEqProperties.v -lib/coq/theories/MSets/MSetEqProperties.vo -lib/coq/theories/MSets/MSetFacts.glob -lib/coq/theories/MSets/MSetFacts.v -lib/coq/theories/MSets/MSetFacts.vo -lib/coq/theories/MSets/MSetGenTree.glob -lib/coq/theories/MSets/MSetGenTree.v -lib/coq/theories/MSets/MSetGenTree.vo -lib/coq/theories/MSets/MSetInterface.glob -lib/coq/theories/MSets/MSetInterface.v -lib/coq/theories/MSets/MSetInterface.vo -lib/coq/theories/MSets/MSetList.glob -lib/coq/theories/MSets/MSetList.v -lib/coq/theories/MSets/MSetList.vo -lib/coq/theories/MSets/MSetPositive.glob -lib/coq/theories/MSets/MSetPositive.v -lib/coq/theories/MSets/MSetPositive.vo -lib/coq/theories/MSets/MSetProperties.glob -lib/coq/theories/MSets/MSetProperties.v -lib/coq/theories/MSets/MSetProperties.vo -lib/coq/theories/MSets/MSetRBT.glob -lib/coq/theories/MSets/MSetRBT.v -lib/coq/theories/MSets/MSetRBT.vo -lib/coq/theories/MSets/MSetToFiniteSet.glob -lib/coq/theories/MSets/MSetToFiniteSet.v -lib/coq/theories/MSets/MSetToFiniteSet.vo -lib/coq/theories/MSets/MSetWeakList.glob -lib/coq/theories/MSets/MSetWeakList.v -lib/coq/theories/MSets/MSetWeakList.vo -lib/coq/theories/MSets/MSets.glob -lib/coq/theories/MSets/MSets.v -lib/coq/theories/MSets/MSets.vo -lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNat.cmi -lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNat.cmo -lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNatDef.cmi -lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNatDef.cmo -lib/coq/theories/NArith/.coq-native/NCoq_NArith_NArith.cmi -lib/coq/theories/NArith/.coq-native/NCoq_NArith_NArith.cmo -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndec.cmi -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndec.cmo -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndigits.cmi -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndigits.cmo -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndist.cmi -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndist.cmo -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndiv_def.cmi -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndiv_def.cmo -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ngcd_def.cmi -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ngcd_def.cmo -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nnat.cmi -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nnat.cmo -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nsqrt_def.cmi -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nsqrt_def.cmo -lib/coq/theories/NArith/BinNat.glob -lib/coq/theories/NArith/BinNat.v -lib/coq/theories/NArith/BinNat.vo -lib/coq/theories/NArith/BinNatDef.glob -lib/coq/theories/NArith/BinNatDef.v -lib/coq/theories/NArith/BinNatDef.vo -lib/coq/theories/NArith/NArith.glob -lib/coq/theories/NArith/NArith.v -lib/coq/theories/NArith/NArith.vo -lib/coq/theories/NArith/Ndec.glob -lib/coq/theories/NArith/Ndec.v -lib/coq/theories/NArith/Ndec.vo -lib/coq/theories/NArith/Ndigits.glob -lib/coq/theories/NArith/Ndigits.v -lib/coq/theories/NArith/Ndigits.vo -lib/coq/theories/NArith/Ndist.glob -lib/coq/theories/NArith/Ndist.v -lib/coq/theories/NArith/Ndist.vo -lib/coq/theories/NArith/Ndiv_def.glob -lib/coq/theories/NArith/Ndiv_def.v -lib/coq/theories/NArith/Ndiv_def.vo -lib/coq/theories/NArith/Ngcd_def.glob -lib/coq/theories/NArith/Ngcd_def.v -lib/coq/theories/NArith/Ngcd_def.vo -lib/coq/theories/NArith/Nnat.glob -lib/coq/theories/NArith/Nnat.v -lib/coq/theories/NArith/Nnat.vo -lib/coq/theories/NArith/Nsqrt_def.glob -lib/coq/theories/NArith/Nsqrt_def.v -lib/coq/theories/NArith/Nsqrt_def.vo -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BigNumPrelude.cmi -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BigNumPrelude.cmo -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BinNums.cmi -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BinNums.cmo -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NaryFunctions.cmi -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NaryFunctions.cmo -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NumPrelude.cmi -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NumPrelude.cmo -lib/coq/theories/Numbers/BigNumPrelude.glob -lib/coq/theories/Numbers/BigNumPrelude.v -lib/coq/theories/Numbers/BigNumPrelude.vo -lib/coq/theories/Numbers/BinNums.glob -lib/coq/theories/Numbers/BinNums.v -lib/coq/theories/Numbers/BinNums.vo -lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CyclicAxioms.cmi -lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CyclicAxioms.cmo -lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_NZCyclic.cmi -lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_NZCyclic.cmo -lib/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.glob -lib/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.v -lib/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.vo -lib/coq/theories/Numbers/Cyclic/Abstract/NZCyclic.glob -lib/coq/theories/Numbers/Cyclic/Abstract/NZCyclic.v -lib/coq/theories/Numbers/Cyclic/Abstract/NZCyclic.vo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleAdd.cmi -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleAdd.cmo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleBase.cmi -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleBase.cmo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleCyclic.cmi -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleCyclic.cmo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleDiv.cmi -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleDiv.cmo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleDivn1.cmi -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleDivn1.cmo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleLift.cmi -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleLift.cmo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleMul.cmi -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleMul.cmo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleSqrt.cmi -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleSqrt.cmo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleSub.cmi -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleSub.cmo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleType.cmi -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleType.cmo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleAdd.glob -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleAdd.v -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleAdd.vo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleBase.glob -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleBase.v -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleBase.vo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleCyclic.glob -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleCyclic.v -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleCyclic.vo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleDiv.glob -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleDiv.v -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleDiv.vo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleDivn1.glob -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleDivn1.v -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleDivn1.vo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleLift.glob -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleLift.v -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleLift.vo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleMul.glob -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleMul.v -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleMul.vo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleSqrt.glob -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleSqrt.v -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleSqrt.vo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleSub.glob -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleSub.v -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleSub.vo -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleType.glob -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleType.v -lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleType.vo -lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Cyclic31.cmi -lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Cyclic31.cmo -lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Int31.cmi -lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Int31.cmo -lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Ring31.cmi -lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Ring31.cmo -lib/coq/theories/Numbers/Cyclic/Int31/Cyclic31.glob -lib/coq/theories/Numbers/Cyclic/Int31/Cyclic31.v -lib/coq/theories/Numbers/Cyclic/Int31/Cyclic31.vo -lib/coq/theories/Numbers/Cyclic/Int31/Int31.glob -lib/coq/theories/Numbers/Cyclic/Int31/Int31.v -lib/coq/theories/Numbers/Cyclic/Int31/Int31.vo -lib/coq/theories/Numbers/Cyclic/Int31/Ring31.glob -lib/coq/theories/Numbers/Cyclic/Int31/Ring31.v -lib/coq/theories/Numbers/Cyclic/Int31/Ring31.vo -lib/coq/theories/Numbers/Cyclic/ZModulo/.coq-native/NCoq_Numbers_Cyclic_ZModulo_ZModulo.cmi -lib/coq/theories/Numbers/Cyclic/ZModulo/.coq-native/NCoq_Numbers_Cyclic_ZModulo_ZModulo.cmo -lib/coq/theories/Numbers/Cyclic/ZModulo/ZModulo.glob -lib/coq/theories/Numbers/Cyclic/ZModulo/ZModulo.v -lib/coq/theories/Numbers/Cyclic/ZModulo/ZModulo.vo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAdd.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAdd.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAddOrder.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAddOrder.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAxioms.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAxioms.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBase.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBase.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBits.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBits.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivEucl.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivEucl.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivFloor.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivFloor.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivTrunc.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivTrunc.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZGcd.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZGcd.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLcm.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLcm.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLt.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLt.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMaxMin.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMaxMin.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMul.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMul.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMulOrder.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMulOrder.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZParity.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZParity.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZPow.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZPow.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZProperties.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZProperties.cmo -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZSgnAbs.cmi -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZSgnAbs.cmo -lib/coq/theories/Numbers/Integer/Abstract/ZAdd.glob -lib/coq/theories/Numbers/Integer/Abstract/ZAdd.v -lib/coq/theories/Numbers/Integer/Abstract/ZAdd.vo -lib/coq/theories/Numbers/Integer/Abstract/ZAddOrder.glob -lib/coq/theories/Numbers/Integer/Abstract/ZAddOrder.v -lib/coq/theories/Numbers/Integer/Abstract/ZAddOrder.vo -lib/coq/theories/Numbers/Integer/Abstract/ZAxioms.glob -lib/coq/theories/Numbers/Integer/Abstract/ZAxioms.v -lib/coq/theories/Numbers/Integer/Abstract/ZAxioms.vo -lib/coq/theories/Numbers/Integer/Abstract/ZBase.glob -lib/coq/theories/Numbers/Integer/Abstract/ZBase.v -lib/coq/theories/Numbers/Integer/Abstract/ZBase.vo -lib/coq/theories/Numbers/Integer/Abstract/ZBits.glob -lib/coq/theories/Numbers/Integer/Abstract/ZBits.v -lib/coq/theories/Numbers/Integer/Abstract/ZBits.vo -lib/coq/theories/Numbers/Integer/Abstract/ZDivEucl.glob -lib/coq/theories/Numbers/Integer/Abstract/ZDivEucl.v -lib/coq/theories/Numbers/Integer/Abstract/ZDivEucl.vo -lib/coq/theories/Numbers/Integer/Abstract/ZDivFloor.glob -lib/coq/theories/Numbers/Integer/Abstract/ZDivFloor.v -lib/coq/theories/Numbers/Integer/Abstract/ZDivFloor.vo -lib/coq/theories/Numbers/Integer/Abstract/ZDivTrunc.glob -lib/coq/theories/Numbers/Integer/Abstract/ZDivTrunc.v -lib/coq/theories/Numbers/Integer/Abstract/ZDivTrunc.vo -lib/coq/theories/Numbers/Integer/Abstract/ZGcd.glob -lib/coq/theories/Numbers/Integer/Abstract/ZGcd.v -lib/coq/theories/Numbers/Integer/Abstract/ZGcd.vo -lib/coq/theories/Numbers/Integer/Abstract/ZLcm.glob -lib/coq/theories/Numbers/Integer/Abstract/ZLcm.v -lib/coq/theories/Numbers/Integer/Abstract/ZLcm.vo -lib/coq/theories/Numbers/Integer/Abstract/ZLt.glob -lib/coq/theories/Numbers/Integer/Abstract/ZLt.v -lib/coq/theories/Numbers/Integer/Abstract/ZLt.vo -lib/coq/theories/Numbers/Integer/Abstract/ZMaxMin.glob -lib/coq/theories/Numbers/Integer/Abstract/ZMaxMin.v -lib/coq/theories/Numbers/Integer/Abstract/ZMaxMin.vo -lib/coq/theories/Numbers/Integer/Abstract/ZMul.glob -lib/coq/theories/Numbers/Integer/Abstract/ZMul.v -lib/coq/theories/Numbers/Integer/Abstract/ZMul.vo -lib/coq/theories/Numbers/Integer/Abstract/ZMulOrder.glob -lib/coq/theories/Numbers/Integer/Abstract/ZMulOrder.v -lib/coq/theories/Numbers/Integer/Abstract/ZMulOrder.vo -lib/coq/theories/Numbers/Integer/Abstract/ZParity.glob -lib/coq/theories/Numbers/Integer/Abstract/ZParity.v -lib/coq/theories/Numbers/Integer/Abstract/ZParity.vo -lib/coq/theories/Numbers/Integer/Abstract/ZPow.glob -lib/coq/theories/Numbers/Integer/Abstract/ZPow.v -lib/coq/theories/Numbers/Integer/Abstract/ZPow.vo -lib/coq/theories/Numbers/Integer/Abstract/ZProperties.glob -lib/coq/theories/Numbers/Integer/Abstract/ZProperties.v -lib/coq/theories/Numbers/Integer/Abstract/ZProperties.vo -lib/coq/theories/Numbers/Integer/Abstract/ZSgnAbs.glob -lib/coq/theories/Numbers/Integer/Abstract/ZSgnAbs.v -lib/coq/theories/Numbers/Integer/Abstract/ZSgnAbs.vo -lib/coq/theories/Numbers/Integer/BigZ/.coq-native/NCoq_Numbers_Integer_BigZ_BigZ.cmi -lib/coq/theories/Numbers/Integer/BigZ/.coq-native/NCoq_Numbers_Integer_BigZ_BigZ.cmo -lib/coq/theories/Numbers/Integer/BigZ/.coq-native/NCoq_Numbers_Integer_BigZ_ZMake.cmi -lib/coq/theories/Numbers/Integer/BigZ/.coq-native/NCoq_Numbers_Integer_BigZ_ZMake.cmo -lib/coq/theories/Numbers/Integer/BigZ/BigZ.glob -lib/coq/theories/Numbers/Integer/BigZ/BigZ.v -lib/coq/theories/Numbers/Integer/BigZ/BigZ.vo -lib/coq/theories/Numbers/Integer/BigZ/ZMake.glob -lib/coq/theories/Numbers/Integer/BigZ/ZMake.v -lib/coq/theories/Numbers/Integer/BigZ/ZMake.vo -lib/coq/theories/Numbers/Integer/Binary/.coq-native/NCoq_Numbers_Integer_Binary_ZBinary.cmi -lib/coq/theories/Numbers/Integer/Binary/.coq-native/NCoq_Numbers_Integer_Binary_ZBinary.cmo -lib/coq/theories/Numbers/Integer/Binary/ZBinary.glob -lib/coq/theories/Numbers/Integer/Binary/ZBinary.v -lib/coq/theories/Numbers/Integer/Binary/ZBinary.vo -lib/coq/theories/Numbers/Integer/NatPairs/.coq-native/NCoq_Numbers_Integer_NatPairs_ZNatPairs.cmi -lib/coq/theories/Numbers/Integer/NatPairs/.coq-native/NCoq_Numbers_Integer_NatPairs_ZNatPairs.cmo -lib/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.glob -lib/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.v -lib/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.vo -lib/coq/theories/Numbers/Integer/SpecViaZ/.coq-native/NCoq_Numbers_Integer_SpecViaZ_ZSig.cmi -lib/coq/theories/Numbers/Integer/SpecViaZ/.coq-native/NCoq_Numbers_Integer_SpecViaZ_ZSig.cmo -lib/coq/theories/Numbers/Integer/SpecViaZ/.coq-native/NCoq_Numbers_Integer_SpecViaZ_ZSigZAxioms.cmi -lib/coq/theories/Numbers/Integer/SpecViaZ/.coq-native/NCoq_Numbers_Integer_SpecViaZ_ZSigZAxioms.cmo -lib/coq/theories/Numbers/Integer/SpecViaZ/ZSig.glob -lib/coq/theories/Numbers/Integer/SpecViaZ/ZSig.v -lib/coq/theories/Numbers/Integer/SpecViaZ/ZSig.vo -lib/coq/theories/Numbers/Integer/SpecViaZ/ZSigZAxioms.glob -lib/coq/theories/Numbers/Integer/SpecViaZ/ZSigZAxioms.v -lib/coq/theories/Numbers/Integer/SpecViaZ/ZSigZAxioms.vo -lib/coq/theories/Numbers/NaryFunctions.glob -lib/coq/theories/Numbers/NaryFunctions.v -lib/coq/theories/Numbers/NaryFunctions.vo -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAdd.cmi -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAdd.cmo -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAddOrder.cmi -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAddOrder.cmo -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAxioms.cmi -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAxioms.cmo -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBase.cmi -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBase.cmo -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBits.cmi -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBits.cmo -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDiv.cmi -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDiv.cmo -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDomain.cmi -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDomain.cmo -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZGcd.cmi -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZGcd.cmo -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZLog.cmi -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZLog.cmo -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMul.cmi -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMul.cmo -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMulOrder.cmi -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMulOrder.cmo -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZOrder.cmi -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZOrder.cmo -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZParity.cmi -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZParity.cmo -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZPow.cmi -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZPow.cmo -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZProperties.cmi -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZProperties.cmo -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZSqrt.cmi -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZSqrt.cmo -lib/coq/theories/Numbers/NatInt/NZAdd.glob -lib/coq/theories/Numbers/NatInt/NZAdd.v -lib/coq/theories/Numbers/NatInt/NZAdd.vo -lib/coq/theories/Numbers/NatInt/NZAddOrder.glob -lib/coq/theories/Numbers/NatInt/NZAddOrder.v -lib/coq/theories/Numbers/NatInt/NZAddOrder.vo -lib/coq/theories/Numbers/NatInt/NZAxioms.glob -lib/coq/theories/Numbers/NatInt/NZAxioms.v -lib/coq/theories/Numbers/NatInt/NZAxioms.vo -lib/coq/theories/Numbers/NatInt/NZBase.glob -lib/coq/theories/Numbers/NatInt/NZBase.v -lib/coq/theories/Numbers/NatInt/NZBase.vo -lib/coq/theories/Numbers/NatInt/NZBits.glob -lib/coq/theories/Numbers/NatInt/NZBits.v -lib/coq/theories/Numbers/NatInt/NZBits.vo -lib/coq/theories/Numbers/NatInt/NZDiv.glob -lib/coq/theories/Numbers/NatInt/NZDiv.v -lib/coq/theories/Numbers/NatInt/NZDiv.vo -lib/coq/theories/Numbers/NatInt/NZDomain.glob -lib/coq/theories/Numbers/NatInt/NZDomain.v -lib/coq/theories/Numbers/NatInt/NZDomain.vo -lib/coq/theories/Numbers/NatInt/NZGcd.glob -lib/coq/theories/Numbers/NatInt/NZGcd.v -lib/coq/theories/Numbers/NatInt/NZGcd.vo -lib/coq/theories/Numbers/NatInt/NZLog.glob -lib/coq/theories/Numbers/NatInt/NZLog.v -lib/coq/theories/Numbers/NatInt/NZLog.vo -lib/coq/theories/Numbers/NatInt/NZMul.glob -lib/coq/theories/Numbers/NatInt/NZMul.v -lib/coq/theories/Numbers/NatInt/NZMul.vo -lib/coq/theories/Numbers/NatInt/NZMulOrder.glob -lib/coq/theories/Numbers/NatInt/NZMulOrder.v -lib/coq/theories/Numbers/NatInt/NZMulOrder.vo -lib/coq/theories/Numbers/NatInt/NZOrder.glob -lib/coq/theories/Numbers/NatInt/NZOrder.v -lib/coq/theories/Numbers/NatInt/NZOrder.vo -lib/coq/theories/Numbers/NatInt/NZParity.glob -lib/coq/theories/Numbers/NatInt/NZParity.v -lib/coq/theories/Numbers/NatInt/NZParity.vo -lib/coq/theories/Numbers/NatInt/NZPow.glob -lib/coq/theories/Numbers/NatInt/NZPow.v -lib/coq/theories/Numbers/NatInt/NZPow.vo -lib/coq/theories/Numbers/NatInt/NZProperties.glob -lib/coq/theories/Numbers/NatInt/NZProperties.v -lib/coq/theories/Numbers/NatInt/NZProperties.vo -lib/coq/theories/Numbers/NatInt/NZSqrt.glob -lib/coq/theories/Numbers/NatInt/NZSqrt.v -lib/coq/theories/Numbers/NatInt/NZSqrt.vo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAdd.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAdd.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAddOrder.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAddOrder.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAxioms.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAxioms.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBase.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBase.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBits.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBits.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDefOps.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDefOps.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NGcd.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NGcd.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NIso.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NIso.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLog.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLog.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMaxMin.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMaxMin.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMulOrder.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMulOrder.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NOrder.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NOrder.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NParity.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NParity.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NPow.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NPow.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NProperties.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NProperties.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSqrt.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSqrt.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NStrongRec.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NStrongRec.cmo -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSub.cmi -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSub.cmo -lib/coq/theories/Numbers/Natural/Abstract/NAdd.glob -lib/coq/theories/Numbers/Natural/Abstract/NAdd.v -lib/coq/theories/Numbers/Natural/Abstract/NAdd.vo -lib/coq/theories/Numbers/Natural/Abstract/NAddOrder.glob -lib/coq/theories/Numbers/Natural/Abstract/NAddOrder.v -lib/coq/theories/Numbers/Natural/Abstract/NAddOrder.vo -lib/coq/theories/Numbers/Natural/Abstract/NAxioms.glob -lib/coq/theories/Numbers/Natural/Abstract/NAxioms.v -lib/coq/theories/Numbers/Natural/Abstract/NAxioms.vo -lib/coq/theories/Numbers/Natural/Abstract/NBase.glob -lib/coq/theories/Numbers/Natural/Abstract/NBase.v -lib/coq/theories/Numbers/Natural/Abstract/NBase.vo -lib/coq/theories/Numbers/Natural/Abstract/NBits.glob -lib/coq/theories/Numbers/Natural/Abstract/NBits.v -lib/coq/theories/Numbers/Natural/Abstract/NBits.vo -lib/coq/theories/Numbers/Natural/Abstract/NDefOps.glob -lib/coq/theories/Numbers/Natural/Abstract/NDefOps.v -lib/coq/theories/Numbers/Natural/Abstract/NDefOps.vo -lib/coq/theories/Numbers/Natural/Abstract/NDiv.glob -lib/coq/theories/Numbers/Natural/Abstract/NDiv.v -lib/coq/theories/Numbers/Natural/Abstract/NDiv.vo -lib/coq/theories/Numbers/Natural/Abstract/NGcd.glob -lib/coq/theories/Numbers/Natural/Abstract/NGcd.v -lib/coq/theories/Numbers/Natural/Abstract/NGcd.vo -lib/coq/theories/Numbers/Natural/Abstract/NIso.glob -lib/coq/theories/Numbers/Natural/Abstract/NIso.v -lib/coq/theories/Numbers/Natural/Abstract/NIso.vo -lib/coq/theories/Numbers/Natural/Abstract/NLcm.glob -lib/coq/theories/Numbers/Natural/Abstract/NLcm.v -lib/coq/theories/Numbers/Natural/Abstract/NLcm.vo -lib/coq/theories/Numbers/Natural/Abstract/NLog.glob -lib/coq/theories/Numbers/Natural/Abstract/NLog.v -lib/coq/theories/Numbers/Natural/Abstract/NLog.vo -lib/coq/theories/Numbers/Natural/Abstract/NMaxMin.glob -lib/coq/theories/Numbers/Natural/Abstract/NMaxMin.v -lib/coq/theories/Numbers/Natural/Abstract/NMaxMin.vo -lib/coq/theories/Numbers/Natural/Abstract/NMulOrder.glob -lib/coq/theories/Numbers/Natural/Abstract/NMulOrder.v -lib/coq/theories/Numbers/Natural/Abstract/NMulOrder.vo -lib/coq/theories/Numbers/Natural/Abstract/NOrder.glob -lib/coq/theories/Numbers/Natural/Abstract/NOrder.v -lib/coq/theories/Numbers/Natural/Abstract/NOrder.vo -lib/coq/theories/Numbers/Natural/Abstract/NParity.glob -lib/coq/theories/Numbers/Natural/Abstract/NParity.v -lib/coq/theories/Numbers/Natural/Abstract/NParity.vo -lib/coq/theories/Numbers/Natural/Abstract/NPow.glob -lib/coq/theories/Numbers/Natural/Abstract/NPow.v -lib/coq/theories/Numbers/Natural/Abstract/NPow.vo -lib/coq/theories/Numbers/Natural/Abstract/NProperties.glob -lib/coq/theories/Numbers/Natural/Abstract/NProperties.v -lib/coq/theories/Numbers/Natural/Abstract/NProperties.vo -lib/coq/theories/Numbers/Natural/Abstract/NSqrt.glob -lib/coq/theories/Numbers/Natural/Abstract/NSqrt.v -lib/coq/theories/Numbers/Natural/Abstract/NSqrt.vo -lib/coq/theories/Numbers/Natural/Abstract/NStrongRec.glob -lib/coq/theories/Numbers/Natural/Abstract/NStrongRec.v -lib/coq/theories/Numbers/Natural/Abstract/NStrongRec.vo -lib/coq/theories/Numbers/Natural/Abstract/NSub.glob -lib/coq/theories/Numbers/Natural/Abstract/NSub.v -lib/coq/theories/Numbers/Natural/Abstract/NSub.vo -lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_BigN.cmi -lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_BigN.cmo -lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_NMake.cmi -lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_NMake.cmo -lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_NMake_gen.cmi -lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_NMake_gen.cmo -lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_Nbasic.cmi -lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_Nbasic.cmo -lib/coq/theories/Numbers/Natural/BigN/BigN.glob -lib/coq/theories/Numbers/Natural/BigN/BigN.v -lib/coq/theories/Numbers/Natural/BigN/BigN.vo -lib/coq/theories/Numbers/Natural/BigN/NMake.glob -lib/coq/theories/Numbers/Natural/BigN/NMake.v -lib/coq/theories/Numbers/Natural/BigN/NMake.vo -lib/coq/theories/Numbers/Natural/BigN/NMake_gen.glob -lib/coq/theories/Numbers/Natural/BigN/NMake_gen.v -lib/coq/theories/Numbers/Natural/BigN/NMake_gen.vo -lib/coq/theories/Numbers/Natural/BigN/Nbasic.glob -lib/coq/theories/Numbers/Natural/BigN/Nbasic.v -lib/coq/theories/Numbers/Natural/BigN/Nbasic.vo -lib/coq/theories/Numbers/Natural/Binary/.coq-native/NCoq_Numbers_Natural_Binary_NBinary.cmi -lib/coq/theories/Numbers/Natural/Binary/.coq-native/NCoq_Numbers_Natural_Binary_NBinary.cmo -lib/coq/theories/Numbers/Natural/Binary/NBinary.glob -lib/coq/theories/Numbers/Natural/Binary/NBinary.v -lib/coq/theories/Numbers/Natural/Binary/NBinary.vo -lib/coq/theories/Numbers/Natural/Peano/.coq-native/NCoq_Numbers_Natural_Peano_NPeano.cmi -lib/coq/theories/Numbers/Natural/Peano/.coq-native/NCoq_Numbers_Natural_Peano_NPeano.cmo -lib/coq/theories/Numbers/Natural/Peano/NPeano.glob -lib/coq/theories/Numbers/Natural/Peano/NPeano.v -lib/coq/theories/Numbers/Natural/Peano/NPeano.vo -lib/coq/theories/Numbers/Natural/SpecViaZ/.coq-native/NCoq_Numbers_Natural_SpecViaZ_NSig.cmi -lib/coq/theories/Numbers/Natural/SpecViaZ/.coq-native/NCoq_Numbers_Natural_SpecViaZ_NSig.cmo -lib/coq/theories/Numbers/Natural/SpecViaZ/.coq-native/NCoq_Numbers_Natural_SpecViaZ_NSigNAxioms.cmi -lib/coq/theories/Numbers/Natural/SpecViaZ/.coq-native/NCoq_Numbers_Natural_SpecViaZ_NSigNAxioms.cmo -lib/coq/theories/Numbers/Natural/SpecViaZ/NSig.glob -lib/coq/theories/Numbers/Natural/SpecViaZ/NSig.v -lib/coq/theories/Numbers/Natural/SpecViaZ/NSig.vo -lib/coq/theories/Numbers/Natural/SpecViaZ/NSigNAxioms.glob -lib/coq/theories/Numbers/Natural/SpecViaZ/NSigNAxioms.v -lib/coq/theories/Numbers/Natural/SpecViaZ/NSigNAxioms.vo -lib/coq/theories/Numbers/NumPrelude.glob -lib/coq/theories/Numbers/NumPrelude.v -lib/coq/theories/Numbers/NumPrelude.vo -lib/coq/theories/Numbers/Rational/BigQ/.coq-native/NCoq_Numbers_Rational_BigQ_BigQ.cmi -lib/coq/theories/Numbers/Rational/BigQ/.coq-native/NCoq_Numbers_Rational_BigQ_BigQ.cmo -lib/coq/theories/Numbers/Rational/BigQ/.coq-native/NCoq_Numbers_Rational_BigQ_QMake.cmi -lib/coq/theories/Numbers/Rational/BigQ/.coq-native/NCoq_Numbers_Rational_BigQ_QMake.cmo -lib/coq/theories/Numbers/Rational/BigQ/BigQ.glob -lib/coq/theories/Numbers/Rational/BigQ/BigQ.v -lib/coq/theories/Numbers/Rational/BigQ/BigQ.vo -lib/coq/theories/Numbers/Rational/BigQ/QMake.glob -lib/coq/theories/Numbers/Rational/BigQ/QMake.v -lib/coq/theories/Numbers/Rational/BigQ/QMake.vo -lib/coq/theories/Numbers/Rational/SpecViaQ/.coq-native/NCoq_Numbers_Rational_SpecViaQ_QSig.cmi -lib/coq/theories/Numbers/Rational/SpecViaQ/.coq-native/NCoq_Numbers_Rational_SpecViaQ_QSig.cmo -lib/coq/theories/Numbers/Rational/SpecViaQ/QSig.glob -lib/coq/theories/Numbers/Rational/SpecViaQ/QSig.v -lib/coq/theories/Numbers/Rational/SpecViaQ/QSig.vo -lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPos.cmi -lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPos.cmo -lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPosDef.cmi -lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPosDef.cmo -lib/coq/theories/PArith/.coq-native/NCoq_PArith_PArith.cmi -lib/coq/theories/PArith/.coq-native/NCoq_PArith_PArith.cmo -lib/coq/theories/PArith/.coq-native/NCoq_PArith_POrderedType.cmi -lib/coq/theories/PArith/.coq-native/NCoq_PArith_POrderedType.cmo -lib/coq/theories/PArith/.coq-native/NCoq_PArith_Pnat.cmi -lib/coq/theories/PArith/.coq-native/NCoq_PArith_Pnat.cmo -lib/coq/theories/PArith/BinPos.glob -lib/coq/theories/PArith/BinPos.v -lib/coq/theories/PArith/BinPos.vo -lib/coq/theories/PArith/BinPosDef.glob -lib/coq/theories/PArith/BinPosDef.v -lib/coq/theories/PArith/BinPosDef.vo -lib/coq/theories/PArith/PArith.glob -lib/coq/theories/PArith/PArith.v -lib/coq/theories/PArith/PArith.vo -lib/coq/theories/PArith/POrderedType.glob -lib/coq/theories/PArith/POrderedType.v -lib/coq/theories/PArith/POrderedType.vo -lib/coq/theories/PArith/Pnat.glob -lib/coq/theories/PArith/Pnat.v -lib/coq/theories/PArith/Pnat.vo -lib/coq/theories/Program/.coq-native/NCoq_Program_Basics.cmi -lib/coq/theories/Program/.coq-native/NCoq_Program_Basics.cmo -lib/coq/theories/Program/.coq-native/NCoq_Program_Combinators.cmi -lib/coq/theories/Program/.coq-native/NCoq_Program_Combinators.cmo -lib/coq/theories/Program/.coq-native/NCoq_Program_Equality.cmi -lib/coq/theories/Program/.coq-native/NCoq_Program_Equality.cmo -lib/coq/theories/Program/.coq-native/NCoq_Program_Program.cmi -lib/coq/theories/Program/.coq-native/NCoq_Program_Program.cmo -lib/coq/theories/Program/.coq-native/NCoq_Program_Subset.cmi -lib/coq/theories/Program/.coq-native/NCoq_Program_Subset.cmo -lib/coq/theories/Program/.coq-native/NCoq_Program_Syntax.cmi -lib/coq/theories/Program/.coq-native/NCoq_Program_Syntax.cmo -lib/coq/theories/Program/.coq-native/NCoq_Program_Tactics.cmi -lib/coq/theories/Program/.coq-native/NCoq_Program_Tactics.cmo -lib/coq/theories/Program/.coq-native/NCoq_Program_Utils.cmi -lib/coq/theories/Program/.coq-native/NCoq_Program_Utils.cmo -lib/coq/theories/Program/.coq-native/NCoq_Program_Wf.cmi -lib/coq/theories/Program/.coq-native/NCoq_Program_Wf.cmo -lib/coq/theories/Program/Basics.glob -lib/coq/theories/Program/Basics.v -lib/coq/theories/Program/Basics.vo -lib/coq/theories/Program/Combinators.glob -lib/coq/theories/Program/Combinators.v -lib/coq/theories/Program/Combinators.vo -lib/coq/theories/Program/Equality.glob -lib/coq/theories/Program/Equality.v -lib/coq/theories/Program/Equality.vo -lib/coq/theories/Program/Program.glob -lib/coq/theories/Program/Program.v -lib/coq/theories/Program/Program.vo -lib/coq/theories/Program/Subset.glob -lib/coq/theories/Program/Subset.v -lib/coq/theories/Program/Subset.vo -lib/coq/theories/Program/Syntax.glob -lib/coq/theories/Program/Syntax.v -lib/coq/theories/Program/Syntax.vo -lib/coq/theories/Program/Tactics.glob -lib/coq/theories/Program/Tactics.v -lib/coq/theories/Program/Tactics.vo -lib/coq/theories/Program/Utils.glob -lib/coq/theories/Program/Utils.v -lib/coq/theories/Program/Utils.vo -lib/coq/theories/Program/Wf.glob -lib/coq/theories/Program/Wf.v -lib/coq/theories/Program/Wf.vo -lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith.cmi -lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith.cmo -lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith_base.cmi -lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith_base.cmo -lib/coq/theories/QArith/.coq-native/NCoq_QArith_QOrderedType.cmi -lib/coq/theories/QArith/.coq-native/NCoq_QArith_QOrderedType.cmo -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qabs.cmi -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qabs.cmo -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcabs.cmi -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcabs.cmo -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcanon.cmi -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcanon.cmo -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qfield.cmi -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qfield.cmo -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qminmax.cmi -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qminmax.cmo -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qpower.cmi -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qpower.cmo -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreals.cmi -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreals.cmo -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreduction.cmi -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreduction.cmo -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qring.cmi -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qring.cmo -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qround.cmi -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qround.cmo -lib/coq/theories/QArith/QArith.glob -lib/coq/theories/QArith/QArith.v -lib/coq/theories/QArith/QArith.vo -lib/coq/theories/QArith/QArith_base.glob -lib/coq/theories/QArith/QArith_base.v -lib/coq/theories/QArith/QArith_base.vo -lib/coq/theories/QArith/QOrderedType.glob -lib/coq/theories/QArith/QOrderedType.v -lib/coq/theories/QArith/QOrderedType.vo -lib/coq/theories/QArith/Qabs.glob -lib/coq/theories/QArith/Qabs.v -lib/coq/theories/QArith/Qabs.vo -lib/coq/theories/QArith/Qcabs.glob -lib/coq/theories/QArith/Qcabs.v -lib/coq/theories/QArith/Qcabs.vo -lib/coq/theories/QArith/Qcanon.glob -lib/coq/theories/QArith/Qcanon.v -lib/coq/theories/QArith/Qcanon.vo -lib/coq/theories/QArith/Qfield.glob -lib/coq/theories/QArith/Qfield.v -lib/coq/theories/QArith/Qfield.vo -lib/coq/theories/QArith/Qminmax.glob -lib/coq/theories/QArith/Qminmax.v -lib/coq/theories/QArith/Qminmax.vo -lib/coq/theories/QArith/Qpower.glob -lib/coq/theories/QArith/Qpower.v -lib/coq/theories/QArith/Qpower.vo -lib/coq/theories/QArith/Qreals.glob -lib/coq/theories/QArith/Qreals.v -lib/coq/theories/QArith/Qreals.vo -lib/coq/theories/QArith/Qreduction.glob -lib/coq/theories/QArith/Qreduction.v -lib/coq/theories/QArith/Qreduction.vo -lib/coq/theories/QArith/Qring.glob -lib/coq/theories/QArith/Qring.v -lib/coq/theories/QArith/Qring.vo -lib/coq/theories/QArith/Qround.glob -lib/coq/theories/QArith/Qround.v -lib/coq/theories/QArith/Qround.vo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Alembert.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Alembert.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_AltSeries.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_AltSeries.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_ArithProp.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_ArithProp.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Binomial.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Binomial.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cauchy_prod.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cauchy_prod.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_plus.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_plus.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_rel.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_rel.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_DiscrR.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_DiscrR.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Exp_prop.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Exp_prop.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Integration.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Integration.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_MVT.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_MVT.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Machin.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Machin.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_NewtonInt.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_NewtonInt.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_PSeries_reg.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_PSeries_reg.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_PartSum.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_PartSum.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_RIneq.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_RIneq.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_RList.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_RList.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_ROrderedType.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_ROrderedType.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_Ifp.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_Ifp.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqr.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqr.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqrt.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqrt.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis1.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis1.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis2.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis2.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis3.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis3.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis4.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis4.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis5.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis5.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis_reg.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis_reg.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ratan.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ratan.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Raxioms.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Raxioms.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbase.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbase.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbasic_fun.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbasic_fun.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rcomplete.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rcomplete.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rdefinitions.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rdefinitions.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rderiv.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rderiv.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Reals.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Reals.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rfunctions.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rfunctions.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rgeom.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rgeom.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt_SF.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt_SF.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlimit.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlimit.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlogic.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlogic.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rminmax.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rminmax.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpow_def.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpow_def.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpower.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpower.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rprod.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rprod.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rseries.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rseries.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsigma.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsigma.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsqrt_def.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsqrt_def.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtopology.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtopology.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo1.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo1.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_alt.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_alt.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_calc.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_calc.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_def.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_def.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_fun.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_fun.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_reg.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_reg.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqProp.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqProp.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqSeries.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqSeries.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitAbsolu.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitAbsolu.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitRmult.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitRmult.cmo -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Sqrt_reg.cmi -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Sqrt_reg.cmo -lib/coq/theories/Reals/Alembert.glob -lib/coq/theories/Reals/Alembert.v -lib/coq/theories/Reals/Alembert.vo -lib/coq/theories/Reals/AltSeries.glob -lib/coq/theories/Reals/AltSeries.v -lib/coq/theories/Reals/AltSeries.vo -lib/coq/theories/Reals/ArithProp.glob -lib/coq/theories/Reals/ArithProp.v -lib/coq/theories/Reals/ArithProp.vo -lib/coq/theories/Reals/Binomial.glob -lib/coq/theories/Reals/Binomial.v -lib/coq/theories/Reals/Binomial.vo -lib/coq/theories/Reals/Cauchy_prod.glob -lib/coq/theories/Reals/Cauchy_prod.v -lib/coq/theories/Reals/Cauchy_prod.vo -lib/coq/theories/Reals/Cos_plus.glob -lib/coq/theories/Reals/Cos_plus.v -lib/coq/theories/Reals/Cos_plus.vo -lib/coq/theories/Reals/Cos_rel.glob -lib/coq/theories/Reals/Cos_rel.v -lib/coq/theories/Reals/Cos_rel.vo -lib/coq/theories/Reals/DiscrR.glob -lib/coq/theories/Reals/DiscrR.v -lib/coq/theories/Reals/DiscrR.vo -lib/coq/theories/Reals/Exp_prop.glob -lib/coq/theories/Reals/Exp_prop.v -lib/coq/theories/Reals/Exp_prop.vo -lib/coq/theories/Reals/Integration.glob -lib/coq/theories/Reals/Integration.v -lib/coq/theories/Reals/Integration.vo -lib/coq/theories/Reals/MVT.glob -lib/coq/theories/Reals/MVT.v -lib/coq/theories/Reals/MVT.vo -lib/coq/theories/Reals/Machin.glob -lib/coq/theories/Reals/Machin.v -lib/coq/theories/Reals/Machin.vo -lib/coq/theories/Reals/NewtonInt.glob -lib/coq/theories/Reals/NewtonInt.v -lib/coq/theories/Reals/NewtonInt.vo -lib/coq/theories/Reals/PSeries_reg.glob -lib/coq/theories/Reals/PSeries_reg.v -lib/coq/theories/Reals/PSeries_reg.vo -lib/coq/theories/Reals/PartSum.glob -lib/coq/theories/Reals/PartSum.v -lib/coq/theories/Reals/PartSum.vo -lib/coq/theories/Reals/RIneq.glob -lib/coq/theories/Reals/RIneq.v -lib/coq/theories/Reals/RIneq.vo -lib/coq/theories/Reals/RList.glob -lib/coq/theories/Reals/RList.v -lib/coq/theories/Reals/RList.vo -lib/coq/theories/Reals/ROrderedType.glob -lib/coq/theories/Reals/ROrderedType.v -lib/coq/theories/Reals/ROrderedType.vo -lib/coq/theories/Reals/R_Ifp.glob -lib/coq/theories/Reals/R_Ifp.v -lib/coq/theories/Reals/R_Ifp.vo -lib/coq/theories/Reals/R_sqr.glob -lib/coq/theories/Reals/R_sqr.v -lib/coq/theories/Reals/R_sqr.vo -lib/coq/theories/Reals/R_sqrt.glob -lib/coq/theories/Reals/R_sqrt.v -lib/coq/theories/Reals/R_sqrt.vo -lib/coq/theories/Reals/Ranalysis.glob -lib/coq/theories/Reals/Ranalysis.v -lib/coq/theories/Reals/Ranalysis.vo -lib/coq/theories/Reals/Ranalysis1.glob -lib/coq/theories/Reals/Ranalysis1.v -lib/coq/theories/Reals/Ranalysis1.vo -lib/coq/theories/Reals/Ranalysis2.glob -lib/coq/theories/Reals/Ranalysis2.v -lib/coq/theories/Reals/Ranalysis2.vo -lib/coq/theories/Reals/Ranalysis3.glob -lib/coq/theories/Reals/Ranalysis3.v -lib/coq/theories/Reals/Ranalysis3.vo -lib/coq/theories/Reals/Ranalysis4.glob -lib/coq/theories/Reals/Ranalysis4.v -lib/coq/theories/Reals/Ranalysis4.vo -lib/coq/theories/Reals/Ranalysis5.glob -lib/coq/theories/Reals/Ranalysis5.v -lib/coq/theories/Reals/Ranalysis5.vo -lib/coq/theories/Reals/Ranalysis_reg.glob -lib/coq/theories/Reals/Ranalysis_reg.v -lib/coq/theories/Reals/Ranalysis_reg.vo -lib/coq/theories/Reals/Ratan.glob -lib/coq/theories/Reals/Ratan.v -lib/coq/theories/Reals/Ratan.vo -lib/coq/theories/Reals/Raxioms.glob -lib/coq/theories/Reals/Raxioms.v -lib/coq/theories/Reals/Raxioms.vo -lib/coq/theories/Reals/Rbase.glob -lib/coq/theories/Reals/Rbase.v -lib/coq/theories/Reals/Rbase.vo -lib/coq/theories/Reals/Rbasic_fun.glob -lib/coq/theories/Reals/Rbasic_fun.v -lib/coq/theories/Reals/Rbasic_fun.vo -lib/coq/theories/Reals/Rcomplete.glob -lib/coq/theories/Reals/Rcomplete.v -lib/coq/theories/Reals/Rcomplete.vo -lib/coq/theories/Reals/Rdefinitions.glob -lib/coq/theories/Reals/Rdefinitions.v -lib/coq/theories/Reals/Rdefinitions.vo -lib/coq/theories/Reals/Rderiv.glob -lib/coq/theories/Reals/Rderiv.v -lib/coq/theories/Reals/Rderiv.vo -lib/coq/theories/Reals/Reals.glob -lib/coq/theories/Reals/Reals.v -lib/coq/theories/Reals/Reals.vo -lib/coq/theories/Reals/Rfunctions.glob -lib/coq/theories/Reals/Rfunctions.v -lib/coq/theories/Reals/Rfunctions.vo -lib/coq/theories/Reals/Rgeom.glob -lib/coq/theories/Reals/Rgeom.v -lib/coq/theories/Reals/Rgeom.vo -lib/coq/theories/Reals/RiemannInt.glob -lib/coq/theories/Reals/RiemannInt.v -lib/coq/theories/Reals/RiemannInt.vo -lib/coq/theories/Reals/RiemannInt_SF.glob -lib/coq/theories/Reals/RiemannInt_SF.v -lib/coq/theories/Reals/RiemannInt_SF.vo -lib/coq/theories/Reals/Rlimit.glob -lib/coq/theories/Reals/Rlimit.v -lib/coq/theories/Reals/Rlimit.vo -lib/coq/theories/Reals/Rlogic.glob -lib/coq/theories/Reals/Rlogic.v -lib/coq/theories/Reals/Rlogic.vo -lib/coq/theories/Reals/Rminmax.glob -lib/coq/theories/Reals/Rminmax.v -lib/coq/theories/Reals/Rminmax.vo -lib/coq/theories/Reals/Rpow_def.glob -lib/coq/theories/Reals/Rpow_def.v -lib/coq/theories/Reals/Rpow_def.vo -lib/coq/theories/Reals/Rpower.glob -lib/coq/theories/Reals/Rpower.v -lib/coq/theories/Reals/Rpower.vo -lib/coq/theories/Reals/Rprod.glob -lib/coq/theories/Reals/Rprod.v -lib/coq/theories/Reals/Rprod.vo -lib/coq/theories/Reals/Rseries.glob -lib/coq/theories/Reals/Rseries.v -lib/coq/theories/Reals/Rseries.vo -lib/coq/theories/Reals/Rsigma.glob -lib/coq/theories/Reals/Rsigma.v -lib/coq/theories/Reals/Rsigma.vo -lib/coq/theories/Reals/Rsqrt_def.glob -lib/coq/theories/Reals/Rsqrt_def.v -lib/coq/theories/Reals/Rsqrt_def.vo -lib/coq/theories/Reals/Rtopology.glob -lib/coq/theories/Reals/Rtopology.v -lib/coq/theories/Reals/Rtopology.vo -lib/coq/theories/Reals/Rtrigo.glob -lib/coq/theories/Reals/Rtrigo.v -lib/coq/theories/Reals/Rtrigo.vo -lib/coq/theories/Reals/Rtrigo1.glob -lib/coq/theories/Reals/Rtrigo1.v -lib/coq/theories/Reals/Rtrigo1.vo -lib/coq/theories/Reals/Rtrigo_alt.glob -lib/coq/theories/Reals/Rtrigo_alt.v -lib/coq/theories/Reals/Rtrigo_alt.vo -lib/coq/theories/Reals/Rtrigo_calc.glob -lib/coq/theories/Reals/Rtrigo_calc.v -lib/coq/theories/Reals/Rtrigo_calc.vo -lib/coq/theories/Reals/Rtrigo_def.glob -lib/coq/theories/Reals/Rtrigo_def.v -lib/coq/theories/Reals/Rtrigo_def.vo -lib/coq/theories/Reals/Rtrigo_fun.glob -lib/coq/theories/Reals/Rtrigo_fun.v -lib/coq/theories/Reals/Rtrigo_fun.vo -lib/coq/theories/Reals/Rtrigo_reg.glob -lib/coq/theories/Reals/Rtrigo_reg.v -lib/coq/theories/Reals/Rtrigo_reg.vo -lib/coq/theories/Reals/SeqProp.glob -lib/coq/theories/Reals/SeqProp.v -lib/coq/theories/Reals/SeqProp.vo -lib/coq/theories/Reals/SeqSeries.glob -lib/coq/theories/Reals/SeqSeries.v -lib/coq/theories/Reals/SeqSeries.vo -lib/coq/theories/Reals/SplitAbsolu.glob -lib/coq/theories/Reals/SplitAbsolu.v -lib/coq/theories/Reals/SplitAbsolu.vo -lib/coq/theories/Reals/SplitRmult.glob -lib/coq/theories/Reals/SplitRmult.v -lib/coq/theories/Reals/SplitRmult.vo -lib/coq/theories/Reals/Sqrt_reg.glob -lib/coq/theories/Reals/Sqrt_reg.v -lib/coq/theories/Reals/Sqrt_reg.vo -lib/coq/theories/Relations/.coq-native/NCoq_Relations_Operators_Properties.cmi -lib/coq/theories/Relations/.coq-native/NCoq_Relations_Operators_Properties.cmo -lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Definitions.cmi -lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Definitions.cmo -lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Operators.cmi -lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Operators.cmo -lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relations.cmi -lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relations.cmo -lib/coq/theories/Relations/Operators_Properties.glob -lib/coq/theories/Relations/Operators_Properties.v -lib/coq/theories/Relations/Operators_Properties.vo -lib/coq/theories/Relations/Relation_Definitions.glob -lib/coq/theories/Relations/Relation_Definitions.v -lib/coq/theories/Relations/Relation_Definitions.vo -lib/coq/theories/Relations/Relation_Operators.glob -lib/coq/theories/Relations/Relation_Operators.v -lib/coq/theories/Relations/Relation_Operators.vo -lib/coq/theories/Relations/Relations.glob -lib/coq/theories/Relations/Relations.v -lib/coq/theories/Relations/Relations.vo -lib/coq/theories/Setoids/.coq-native/NCoq_Setoids_Setoid.cmi -lib/coq/theories/Setoids/.coq-native/NCoq_Setoids_Setoid.cmo -lib/coq/theories/Setoids/Setoid.glob -lib/coq/theories/Setoids/Setoid.v -lib/coq/theories/Setoids/Setoid.vo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Classical_sets.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Classical_sets.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Constructive_sets.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Constructive_sets.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Cpo.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Cpo.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Ensembles.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Ensembles.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets_facts.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets_facts.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Image.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Image.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Infinite_sets.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Infinite_sets.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Integers.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Integers.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Multiset.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Multiset.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Partial_Order.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Partial_Order.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Permut.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Permut.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_Classical_facts.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_Classical_facts.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_facts.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_facts.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1_facts.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1_facts.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2_facts.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2_facts.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3_facts.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3_facts.cmo -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Uniset.cmi -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Uniset.cmo -lib/coq/theories/Sets/Classical_sets.glob -lib/coq/theories/Sets/Classical_sets.v -lib/coq/theories/Sets/Classical_sets.vo -lib/coq/theories/Sets/Constructive_sets.glob -lib/coq/theories/Sets/Constructive_sets.v -lib/coq/theories/Sets/Constructive_sets.vo -lib/coq/theories/Sets/Cpo.glob -lib/coq/theories/Sets/Cpo.v -lib/coq/theories/Sets/Cpo.vo -lib/coq/theories/Sets/Ensembles.glob -lib/coq/theories/Sets/Ensembles.v -lib/coq/theories/Sets/Ensembles.vo -lib/coq/theories/Sets/Finite_sets.glob -lib/coq/theories/Sets/Finite_sets.v -lib/coq/theories/Sets/Finite_sets.vo -lib/coq/theories/Sets/Finite_sets_facts.glob -lib/coq/theories/Sets/Finite_sets_facts.v -lib/coq/theories/Sets/Finite_sets_facts.vo -lib/coq/theories/Sets/Image.glob -lib/coq/theories/Sets/Image.v -lib/coq/theories/Sets/Image.vo -lib/coq/theories/Sets/Infinite_sets.glob -lib/coq/theories/Sets/Infinite_sets.v -lib/coq/theories/Sets/Infinite_sets.vo -lib/coq/theories/Sets/Integers.glob -lib/coq/theories/Sets/Integers.v -lib/coq/theories/Sets/Integers.vo -lib/coq/theories/Sets/Multiset.glob -lib/coq/theories/Sets/Multiset.v -lib/coq/theories/Sets/Multiset.vo -lib/coq/theories/Sets/Partial_Order.glob -lib/coq/theories/Sets/Partial_Order.v -lib/coq/theories/Sets/Partial_Order.vo -lib/coq/theories/Sets/Permut.glob -lib/coq/theories/Sets/Permut.v -lib/coq/theories/Sets/Permut.vo -lib/coq/theories/Sets/Powerset.glob -lib/coq/theories/Sets/Powerset.v -lib/coq/theories/Sets/Powerset.vo -lib/coq/theories/Sets/Powerset_Classical_facts.glob -lib/coq/theories/Sets/Powerset_Classical_facts.v -lib/coq/theories/Sets/Powerset_Classical_facts.vo -lib/coq/theories/Sets/Powerset_facts.glob -lib/coq/theories/Sets/Powerset_facts.v -lib/coq/theories/Sets/Powerset_facts.vo -lib/coq/theories/Sets/Relations_1.glob -lib/coq/theories/Sets/Relations_1.v -lib/coq/theories/Sets/Relations_1.vo -lib/coq/theories/Sets/Relations_1_facts.glob -lib/coq/theories/Sets/Relations_1_facts.v -lib/coq/theories/Sets/Relations_1_facts.vo -lib/coq/theories/Sets/Relations_2.glob -lib/coq/theories/Sets/Relations_2.v -lib/coq/theories/Sets/Relations_2.vo -lib/coq/theories/Sets/Relations_2_facts.glob -lib/coq/theories/Sets/Relations_2_facts.v -lib/coq/theories/Sets/Relations_2_facts.vo -lib/coq/theories/Sets/Relations_3.glob -lib/coq/theories/Sets/Relations_3.v -lib/coq/theories/Sets/Relations_3.vo -lib/coq/theories/Sets/Relations_3_facts.glob -lib/coq/theories/Sets/Relations_3_facts.v -lib/coq/theories/Sets/Relations_3_facts.vo -lib/coq/theories/Sets/Uniset.glob -lib/coq/theories/Sets/Uniset.v -lib/coq/theories/Sets/Uniset.vo -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Heap.cmi -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Heap.cmo -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Mergesort.cmi -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Mergesort.cmo -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutEq.cmi -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutEq.cmo -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutSetoid.cmi -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutSetoid.cmo -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Permutation.cmi -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Permutation.cmo -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorted.cmi -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorted.cmo -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorting.cmi -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorting.cmo -lib/coq/theories/Sorting/Heap.glob -lib/coq/theories/Sorting/Heap.v -lib/coq/theories/Sorting/Heap.vo -lib/coq/theories/Sorting/Mergesort.glob -lib/coq/theories/Sorting/Mergesort.v -lib/coq/theories/Sorting/Mergesort.vo -lib/coq/theories/Sorting/PermutEq.glob -lib/coq/theories/Sorting/PermutEq.v -lib/coq/theories/Sorting/PermutEq.vo -lib/coq/theories/Sorting/PermutSetoid.glob -lib/coq/theories/Sorting/PermutSetoid.v -lib/coq/theories/Sorting/PermutSetoid.vo -lib/coq/theories/Sorting/Permutation.glob -lib/coq/theories/Sorting/Permutation.v -lib/coq/theories/Sorting/Permutation.vo -lib/coq/theories/Sorting/Sorted.glob -lib/coq/theories/Sorting/Sorted.v -lib/coq/theories/Sorting/Sorted.vo -lib/coq/theories/Sorting/Sorting.glob -lib/coq/theories/Sorting/Sorting.v -lib/coq/theories/Sorting/Sorting.vo -lib/coq/theories/Strings/.coq-native/NCoq_Strings_Ascii.cmi -lib/coq/theories/Strings/.coq-native/NCoq_Strings_Ascii.cmo -lib/coq/theories/Strings/.coq-native/NCoq_Strings_String.cmi -lib/coq/theories/Strings/.coq-native/NCoq_Strings_String.cmo -lib/coq/theories/Strings/Ascii.glob -lib/coq/theories/Strings/Ascii.v -lib/coq/theories/Strings/Ascii.vo -lib/coq/theories/Strings/String.glob -lib/coq/theories/Strings/String.v -lib/coq/theories/Strings/String.vo -lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableType.cmi -lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableType.cmo -lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableTypeEx.cmi -lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableTypeEx.cmo -lib/coq/theories/Structures/.coq-native/NCoq_Structures_Equalities.cmi -lib/coq/theories/Structures/.coq-native/NCoq_Structures_Equalities.cmo -lib/coq/theories/Structures/.coq-native/NCoq_Structures_EqualitiesFacts.cmi -lib/coq/theories/Structures/.coq-native/NCoq_Structures_EqualitiesFacts.cmo -lib/coq/theories/Structures/.coq-native/NCoq_Structures_GenericMinMax.cmi -lib/coq/theories/Structures/.coq-native/NCoq_Structures_GenericMinMax.cmo -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedType.cmi -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedType.cmo -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeAlt.cmi -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeAlt.cmo -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeEx.cmi -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeEx.cmo -lib/coq/theories/Structures/.coq-native/NCoq_Structures_Orders.cmi -lib/coq/theories/Structures/.coq-native/NCoq_Structures_Orders.cmo -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersAlt.cmi -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersAlt.cmo -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersEx.cmi -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersEx.cmo -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersFacts.cmi -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersFacts.cmo -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersLists.cmi -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersLists.cmo -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersTac.cmi -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersTac.cmo -lib/coq/theories/Structures/DecidableType.glob -lib/coq/theories/Structures/DecidableType.v -lib/coq/theories/Structures/DecidableType.vo -lib/coq/theories/Structures/DecidableTypeEx.glob -lib/coq/theories/Structures/DecidableTypeEx.v -lib/coq/theories/Structures/DecidableTypeEx.vo -lib/coq/theories/Structures/Equalities.glob -lib/coq/theories/Structures/Equalities.v -lib/coq/theories/Structures/Equalities.vo -lib/coq/theories/Structures/EqualitiesFacts.glob -lib/coq/theories/Structures/EqualitiesFacts.v -lib/coq/theories/Structures/EqualitiesFacts.vo -lib/coq/theories/Structures/GenericMinMax.glob -lib/coq/theories/Structures/GenericMinMax.v -lib/coq/theories/Structures/GenericMinMax.vo -lib/coq/theories/Structures/OrderedType.glob -lib/coq/theories/Structures/OrderedType.v -lib/coq/theories/Structures/OrderedType.vo -lib/coq/theories/Structures/OrderedTypeAlt.glob -lib/coq/theories/Structures/OrderedTypeAlt.v -lib/coq/theories/Structures/OrderedTypeAlt.vo -lib/coq/theories/Structures/OrderedTypeEx.glob -lib/coq/theories/Structures/OrderedTypeEx.v -lib/coq/theories/Structures/OrderedTypeEx.vo -lib/coq/theories/Structures/Orders.glob -lib/coq/theories/Structures/Orders.v -lib/coq/theories/Structures/Orders.vo -lib/coq/theories/Structures/OrdersAlt.glob -lib/coq/theories/Structures/OrdersAlt.v -lib/coq/theories/Structures/OrdersAlt.vo -lib/coq/theories/Structures/OrdersEx.glob -lib/coq/theories/Structures/OrdersEx.v -lib/coq/theories/Structures/OrdersEx.vo -lib/coq/theories/Structures/OrdersFacts.glob -lib/coq/theories/Structures/OrdersFacts.v -lib/coq/theories/Structures/OrdersFacts.vo -lib/coq/theories/Structures/OrdersLists.glob -lib/coq/theories/Structures/OrdersLists.v -lib/coq/theories/Structures/OrdersLists.vo -lib/coq/theories/Structures/OrdersTac.glob -lib/coq/theories/Structures/OrdersTac.v -lib/coq/theories/Structures/OrdersTac.vo -lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8.cmi -lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8.cmo -lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8_core.cmi -lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8_core.cmo -lib/coq/theories/Unicode/Utf8.glob -lib/coq/theories/Unicode/Utf8.v -lib/coq/theories/Unicode/Utf8.vo -lib/coq/theories/Unicode/Utf8_core.glob -lib/coq/theories/Unicode/Utf8_core.v -lib/coq/theories/Unicode/Utf8_core.vo -lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Fin.cmi -lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Fin.cmo -lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Vector.cmi -lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Vector.cmo -lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorDef.cmi -lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorDef.cmo -lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorEq.cmi -lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorEq.cmo -lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorSpec.cmi -lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorSpec.cmo -lib/coq/theories/Vectors/Fin.glob -lib/coq/theories/Vectors/Fin.v -lib/coq/theories/Vectors/Fin.vo -lib/coq/theories/Vectors/Vector.glob -lib/coq/theories/Vectors/Vector.v -lib/coq/theories/Vectors/Vector.vo -lib/coq/theories/Vectors/VectorDef.glob -lib/coq/theories/Vectors/VectorDef.v -lib/coq/theories/Vectors/VectorDef.vo -lib/coq/theories/Vectors/VectorEq.glob -lib/coq/theories/Vectors/VectorEq.v -lib/coq/theories/Vectors/VectorEq.vo -lib/coq/theories/Vectors/VectorSpec.glob -lib/coq/theories/Vectors/VectorSpec.v -lib/coq/theories/Vectors/VectorSpec.vo -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Disjoint_Union.cmi -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Disjoint_Union.cmo -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inclusion.cmi -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inclusion.cmo -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inverse_Image.cmi -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inverse_Image.cmo -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Exponentiation.cmi -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Exponentiation.cmo -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Product.cmi -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Product.cmo -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Transitive_Closure.cmi -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Transitive_Closure.cmo -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Union.cmi -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Union.cmo -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Well_Ordering.cmi -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Well_Ordering.cmo -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Wellfounded.cmi -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Wellfounded.cmo -lib/coq/theories/Wellfounded/Disjoint_Union.glob -lib/coq/theories/Wellfounded/Disjoint_Union.v -lib/coq/theories/Wellfounded/Disjoint_Union.vo -lib/coq/theories/Wellfounded/Inclusion.glob -lib/coq/theories/Wellfounded/Inclusion.v -lib/coq/theories/Wellfounded/Inclusion.vo -lib/coq/theories/Wellfounded/Inverse_Image.glob -lib/coq/theories/Wellfounded/Inverse_Image.v -lib/coq/theories/Wellfounded/Inverse_Image.vo -lib/coq/theories/Wellfounded/Lexicographic_Exponentiation.glob -lib/coq/theories/Wellfounded/Lexicographic_Exponentiation.v -lib/coq/theories/Wellfounded/Lexicographic_Exponentiation.vo -lib/coq/theories/Wellfounded/Lexicographic_Product.glob -lib/coq/theories/Wellfounded/Lexicographic_Product.v -lib/coq/theories/Wellfounded/Lexicographic_Product.vo -lib/coq/theories/Wellfounded/Transitive_Closure.glob -lib/coq/theories/Wellfounded/Transitive_Closure.v -lib/coq/theories/Wellfounded/Transitive_Closure.vo -lib/coq/theories/Wellfounded/Union.glob -lib/coq/theories/Wellfounded/Union.v -lib/coq/theories/Wellfounded/Union.vo -lib/coq/theories/Wellfounded/Well_Ordering.glob -lib/coq/theories/Wellfounded/Well_Ordering.v -lib/coq/theories/Wellfounded/Well_Ordering.vo -lib/coq/theories/Wellfounded/Wellfounded.glob -lib/coq/theories/Wellfounded/Wellfounded.v -lib/coq/theories/Wellfounded/Wellfounded.vo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinInt.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinInt.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinIntDef.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinIntDef.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Int.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Int.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Wf_Z.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Wf_Z.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_base.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_base.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_dec.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_dec.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zabs.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zabs.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbool.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbool.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcompare.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcompare.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcomplements.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcomplements.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdigits.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdigits.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdiv.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdiv.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeuclid.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeuclid.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeven.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeven.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zgcd_alt.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zgcd_alt.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zhints.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zhints.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zlogarithm.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zlogarithm.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmax.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmax.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmin.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmin.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zminmax.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zminmax.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmisc.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmisc.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znat.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znat.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znumtheory.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znumtheory.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zorder.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zorder.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_alt.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_alt.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_def.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_def.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_facts.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_facts.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpower.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpower.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zquot.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zquot.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zsqrt_compat.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zsqrt_compat.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zwf.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zwf.cmo -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_auxiliary.cmi -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_auxiliary.cmo -lib/coq/theories/ZArith/BinInt.glob -lib/coq/theories/ZArith/BinInt.v -lib/coq/theories/ZArith/BinInt.vo -lib/coq/theories/ZArith/BinIntDef.glob -lib/coq/theories/ZArith/BinIntDef.v -lib/coq/theories/ZArith/BinIntDef.vo -lib/coq/theories/ZArith/Int.glob -lib/coq/theories/ZArith/Int.v -lib/coq/theories/ZArith/Int.vo -lib/coq/theories/ZArith/Wf_Z.glob -lib/coq/theories/ZArith/Wf_Z.v -lib/coq/theories/ZArith/Wf_Z.vo -lib/coq/theories/ZArith/ZArith.glob -lib/coq/theories/ZArith/ZArith.v -lib/coq/theories/ZArith/ZArith.vo -lib/coq/theories/ZArith/ZArith_base.glob -lib/coq/theories/ZArith/ZArith_base.v -lib/coq/theories/ZArith/ZArith_base.vo -lib/coq/theories/ZArith/ZArith_dec.glob -lib/coq/theories/ZArith/ZArith_dec.v -lib/coq/theories/ZArith/ZArith_dec.vo -lib/coq/theories/ZArith/Zabs.glob -lib/coq/theories/ZArith/Zabs.v -lib/coq/theories/ZArith/Zabs.vo -lib/coq/theories/ZArith/Zbool.glob -lib/coq/theories/ZArith/Zbool.v -lib/coq/theories/ZArith/Zbool.vo -lib/coq/theories/ZArith/Zcompare.glob -lib/coq/theories/ZArith/Zcompare.v -lib/coq/theories/ZArith/Zcompare.vo -lib/coq/theories/ZArith/Zcomplements.glob -lib/coq/theories/ZArith/Zcomplements.v -lib/coq/theories/ZArith/Zcomplements.vo -lib/coq/theories/ZArith/Zdigits.glob -lib/coq/theories/ZArith/Zdigits.v -lib/coq/theories/ZArith/Zdigits.vo -lib/coq/theories/ZArith/Zdiv.glob -lib/coq/theories/ZArith/Zdiv.v -lib/coq/theories/ZArith/Zdiv.vo -lib/coq/theories/ZArith/Zeuclid.glob -lib/coq/theories/ZArith/Zeuclid.v -lib/coq/theories/ZArith/Zeuclid.vo -lib/coq/theories/ZArith/Zeven.glob -lib/coq/theories/ZArith/Zeven.v -lib/coq/theories/ZArith/Zeven.vo -lib/coq/theories/ZArith/Zgcd_alt.glob -lib/coq/theories/ZArith/Zgcd_alt.v -lib/coq/theories/ZArith/Zgcd_alt.vo -lib/coq/theories/ZArith/Zhints.glob -lib/coq/theories/ZArith/Zhints.v -lib/coq/theories/ZArith/Zhints.vo -lib/coq/theories/ZArith/Zlogarithm.glob -lib/coq/theories/ZArith/Zlogarithm.v -lib/coq/theories/ZArith/Zlogarithm.vo -lib/coq/theories/ZArith/Zmax.glob -lib/coq/theories/ZArith/Zmax.v -lib/coq/theories/ZArith/Zmax.vo -lib/coq/theories/ZArith/Zmin.glob -lib/coq/theories/ZArith/Zmin.v -lib/coq/theories/ZArith/Zmin.vo -lib/coq/theories/ZArith/Zminmax.glob -lib/coq/theories/ZArith/Zminmax.v -lib/coq/theories/ZArith/Zminmax.vo -lib/coq/theories/ZArith/Zmisc.glob -lib/coq/theories/ZArith/Zmisc.v -lib/coq/theories/ZArith/Zmisc.vo -lib/coq/theories/ZArith/Znat.glob -lib/coq/theories/ZArith/Znat.v -lib/coq/theories/ZArith/Znat.vo -lib/coq/theories/ZArith/Znumtheory.glob -lib/coq/theories/ZArith/Znumtheory.v -lib/coq/theories/ZArith/Znumtheory.vo -lib/coq/theories/ZArith/Zorder.glob -lib/coq/theories/ZArith/Zorder.v -lib/coq/theories/ZArith/Zorder.vo -lib/coq/theories/ZArith/Zpow_alt.glob -lib/coq/theories/ZArith/Zpow_alt.v -lib/coq/theories/ZArith/Zpow_alt.vo -lib/coq/theories/ZArith/Zpow_def.glob -lib/coq/theories/ZArith/Zpow_def.v -lib/coq/theories/ZArith/Zpow_def.vo -lib/coq/theories/ZArith/Zpow_facts.glob -lib/coq/theories/ZArith/Zpow_facts.v -lib/coq/theories/ZArith/Zpow_facts.vo -lib/coq/theories/ZArith/Zpower.glob -lib/coq/theories/ZArith/Zpower.v -lib/coq/theories/ZArith/Zpower.vo -lib/coq/theories/ZArith/Zquot.glob -lib/coq/theories/ZArith/Zquot.v -lib/coq/theories/ZArith/Zquot.vo -lib/coq/theories/ZArith/Zsqrt_compat.glob -lib/coq/theories/ZArith/Zsqrt_compat.v -lib/coq/theories/ZArith/Zsqrt_compat.vo -lib/coq/theories/ZArith/Zwf.glob -lib/coq/theories/ZArith/Zwf.v -lib/coq/theories/ZArith/Zwf.vo -lib/coq/theories/ZArith/auxiliary.glob -lib/coq/theories/ZArith/auxiliary.v -lib/coq/theories/ZArith/auxiliary.vo -lib/coq/tools/coqdoc/coqdoc.css -lib/coq/tools/coqdoc/coqdoc.sty -lib/coq/toplevel/assumptions.cmi -lib/coq/toplevel/auto_ind_decl.cmi -lib/coq/toplevel/class.cmi -lib/coq/toplevel/classes.cmi -lib/coq/toplevel/command.cmi -lib/coq/toplevel/coqinit.cmi -lib/coq/toplevel/coqloop.cmi -lib/coq/toplevel/coqtop.cmi -lib/coq/toplevel/discharge.cmi -lib/coq/toplevel/explainErr.cmi -lib/coq/toplevel/himsg.cmi -lib/coq/toplevel/ind_tables.cmi -lib/coq/toplevel/indschemes.cmi -lib/coq/toplevel/locality.cmi -lib/coq/toplevel/metasyntax.cmi -lib/coq/toplevel/mltop.cmi -lib/coq/toplevel/obligations.cmi -lib/coq/toplevel/record.cmi -lib/coq/toplevel/search.cmi -lib/coq/toplevel/toplevel.cma -lib/coq/toplevel/usage.cmi -lib/coq/toplevel/vernac.cmi -lib/coq/toplevel/vernacentries.cmi -lib/coq/toplevel/vernacinterp.cmi -lib/coq/toploop/coqidetop.cma -lib/coq/toploop/proofworkertop.cma -lib/coq/toploop/queryworkertop.cma -lib/coq/toploop/tacworkertop.cma -man/man1/coq-tex.1.gz -man/man1/coq_makefile.1.gz -man/man1/coqc.1.gz -man/man1/coqchk.1.gz -man/man1/coqdep.1.gz -man/man1/coqdoc.1.gz -man/man1/coqide.1.gz -man/man1/coqmktop.1.gz -man/man1/coqtop.1.gz -man/man1/coqtop.byte.1.gz -man/man1/coqtop.opt.1.gz -man/man1/coqwc.1.gz -man/man1/gallina.1.gz +bin/coqworker.opt +bin/csdpcert +bin/ocamllibdep +bin/votour +%%IDE%%@dir etc/xdg/coq +%%OCAML_SITELIBDIR%%/coq-core/META +%%OCAML_SITELIBDIR%%/coq-core/boot/boot.a +%%OCAML_SITELIBDIR%%/coq-core/boot/boot.cma +%%OCAML_SITELIBDIR%%/coq-core/boot/boot.cmi +%%OCAML_SITELIBDIR%%/coq-core/boot/boot.cmt +%%OCAML_SITELIBDIR%%/coq-core/boot/boot.cmx +%%OCAML_SITELIBDIR%%/coq-core/boot/boot.cmxa +%%OCAML_SITELIBDIR%%/coq-core/boot/boot.cmxs +%%OCAML_SITELIBDIR%%/coq-core/boot/boot.ml +%%OCAML_SITELIBDIR%%/coq-core/boot/boot__Env.cmi +%%OCAML_SITELIBDIR%%/coq-core/boot/boot__Env.cmt +%%OCAML_SITELIBDIR%%/coq-core/boot/boot__Env.cmti +%%OCAML_SITELIBDIR%%/coq-core/boot/boot__Env.cmx +%%OCAML_SITELIBDIR%%/coq-core/boot/boot__Path.cmi +%%OCAML_SITELIBDIR%%/coq-core/boot/boot__Path.cmt +%%OCAML_SITELIBDIR%%/coq-core/boot/boot__Path.cmti +%%OCAML_SITELIBDIR%%/coq-core/boot/boot__Path.cmx +%%OCAML_SITELIBDIR%%/coq-core/boot/boot__Usage.cmi +%%OCAML_SITELIBDIR%%/coq-core/boot/boot__Usage.cmt +%%OCAML_SITELIBDIR%%/coq-core/boot/boot__Usage.cmti +%%OCAML_SITELIBDIR%%/coq-core/boot/boot__Usage.cmx +%%OCAML_SITELIBDIR%%/coq-core/boot/boot__Util.cmi +%%OCAML_SITELIBDIR%%/coq-core/boot/boot__Util.cmt +%%OCAML_SITELIBDIR%%/coq-core/boot/boot__Util.cmti +%%OCAML_SITELIBDIR%%/coq-core/boot/boot__Util.cmx +%%OCAML_SITELIBDIR%%/coq-core/boot/env.ml +%%OCAML_SITELIBDIR%%/coq-core/boot/env.mli +%%OCAML_SITELIBDIR%%/coq-core/boot/path.ml +%%OCAML_SITELIBDIR%%/coq-core/boot/path.mli +%%OCAML_SITELIBDIR%%/coq-core/boot/usage.ml +%%OCAML_SITELIBDIR%%/coq-core/boot/usage.mli +%%OCAML_SITELIBDIR%%/coq-core/boot/util.ml +%%OCAML_SITELIBDIR%%/coq-core/boot/util.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/cArray.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/cArray.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/cArray.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/cArray.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/cArray.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/cArray.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/cEphemeron.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/cEphemeron.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/cEphemeron.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/cEphemeron.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/cEphemeron.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/cEphemeron.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/cList.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/cList.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/cList.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/cList.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/cList.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/cList.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/cMap.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/cMap.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/cMap.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/cMap.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/cMap.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/cMap.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/cObj.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/cObj.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/cObj.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/cObj.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/cObj.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/cObj.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/cSet.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/cSet.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/cSet.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/cSet.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/cSet.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/cSet.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/cSig.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/cSig.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/cSig.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/cString.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/cString.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/cString.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/cString.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/cString.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/cString.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/cThread.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/cThread.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/cThread.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/cThread.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/cThread.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/cThread.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/cUnix.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/cUnix.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/cUnix.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/cUnix.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/cUnix.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/cUnix.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/clib.a +%%OCAML_SITELIBDIR%%/coq-core/clib/clib.cma +%%OCAML_SITELIBDIR%%/coq-core/clib/clib.cmxa +%%OCAML_SITELIBDIR%%/coq-core/clib/clib.cmxs +%%OCAML_SITELIBDIR%%/coq-core/clib/diff2.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/diff2.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/diff2.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/diff2.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/diff2.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/diff2.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/dyn.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/dyn.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/dyn.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/dyn.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/dyn.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/dyn.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/exninfo.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/exninfo.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/exninfo.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/exninfo.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/exninfo.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/exninfo.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/hMap.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/hMap.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/hMap.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/hMap.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/hMap.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/hMap.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/hashcons.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/hashcons.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/hashcons.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/hashcons.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/hashcons.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/hashcons.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/hashset.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/hashset.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/hashset.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/hashset.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/hashset.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/hashset.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/heap.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/heap.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/heap.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/heap.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/heap.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/heap.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/iStream.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/iStream.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/iStream.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/iStream.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/iStream.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/iStream.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/int.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/int.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/int.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/int.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/int.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/int.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/monad.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/monad.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/monad.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/monad.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/monad.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/monad.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/neList.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/neList.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/neList.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/neList.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/neList.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/neList.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/option.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/option.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/option.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/option.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/option.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/option.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/orderedType.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/orderedType.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/orderedType.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/orderedType.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/orderedType.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/orderedType.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/polyMap.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/polyMap.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/polyMap.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/polyMap.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/polyMap.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/polyMap.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/predicate.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/predicate.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/predicate.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/predicate.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/predicate.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/predicate.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/range.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/range.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/range.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/range.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/range.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/range.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/sList.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/sList.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/sList.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/sList.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/sList.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/sList.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/segmenttree.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/segmenttree.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/segmenttree.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/segmenttree.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/segmenttree.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/segmenttree.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/store.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/store.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/store.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/store.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/store.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/store.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/terminal.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/terminal.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/terminal.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/terminal.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/terminal.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/terminal.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/trie.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/trie.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/trie.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/trie.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/trie.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/trie.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/unicode.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/unicode.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/unicode.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/unicode.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/unicode.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/unicode.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/unicodetable.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/unicodetable.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/unicodetable.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/unicodetable.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/unicodetable.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/unicodetable.mli +%%OCAML_SITELIBDIR%%/coq-core/clib/unionfind.cmi +%%OCAML_SITELIBDIR%%/coq-core/clib/unionfind.cmt +%%OCAML_SITELIBDIR%%/coq-core/clib/unionfind.cmti +%%OCAML_SITELIBDIR%%/coq-core/clib/unionfind.cmx +%%OCAML_SITELIBDIR%%/coq-core/clib/unionfind.ml +%%OCAML_SITELIBDIR%%/coq-core/clib/unionfind.mli +%%OCAML_SITELIBDIR%%/coq-core/config/config.a +%%OCAML_SITELIBDIR%%/coq-core/config/config.cma +%%OCAML_SITELIBDIR%%/coq-core/config/config.cmxa +%%OCAML_SITELIBDIR%%/coq-core/config/config.cmxs +%%OCAML_SITELIBDIR%%/coq-core/config/coq_config.cmi +%%OCAML_SITELIBDIR%%/coq-core/config/coq_config.cmt +%%OCAML_SITELIBDIR%%/coq-core/config/coq_config.cmti +%%OCAML_SITELIBDIR%%/coq-core/config/coq_config.cmx +%%OCAML_SITELIBDIR%%/coq-core/config/coq_config.ml +%%OCAML_SITELIBDIR%%/coq-core/config/coq_config.mli +%%OCAML_SITELIBDIR%%/coq-core/coqworkmgrapi/coqworkmgrApi.cmi +%%OCAML_SITELIBDIR%%/coq-core/coqworkmgrapi/coqworkmgrApi.cmt +%%OCAML_SITELIBDIR%%/coq-core/coqworkmgrapi/coqworkmgrApi.cmti +%%OCAML_SITELIBDIR%%/coq-core/coqworkmgrapi/coqworkmgrApi.cmx +%%OCAML_SITELIBDIR%%/coq-core/coqworkmgrapi/coqworkmgrApi.ml +%%OCAML_SITELIBDIR%%/coq-core/coqworkmgrapi/coqworkmgrApi.mli +%%OCAML_SITELIBDIR%%/coq-core/coqworkmgrapi/coqworkmgrlib.a +%%OCAML_SITELIBDIR%%/coq-core/coqworkmgrapi/coqworkmgrlib.cma +%%OCAML_SITELIBDIR%%/coq-core/coqworkmgrapi/coqworkmgrlib.cmxa +%%OCAML_SITELIBDIR%%/coq-core/coqworkmgrapi/coqworkmgrlib.cmxs +%%OCAML_SITELIBDIR%%/coq-core/dllcoqrun_stubs.so +%%OCAML_SITELIBDIR%%/coq-core/dune-package +%%OCAML_SITELIBDIR%%/coq-core/engine/eConstr.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/eConstr.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/eConstr.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/eConstr.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/eConstr.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/eConstr.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/engine.a +%%OCAML_SITELIBDIR%%/coq-core/engine/engine.cma +%%OCAML_SITELIBDIR%%/coq-core/engine/engine.cmxa +%%OCAML_SITELIBDIR%%/coq-core/engine/engine.cmxs +%%OCAML_SITELIBDIR%%/coq-core/engine/evar_kinds.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/evar_kinds.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/evar_kinds.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/evar_kinds.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/evar_kinds.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/evar_kinds.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/evarutil.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/evarutil.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/evarutil.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/evarutil.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/evarutil.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/evarutil.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/evd.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/evd.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/evd.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/evd.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/evd.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/evd.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/ftactic.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/ftactic.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/ftactic.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/ftactic.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/ftactic.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/ftactic.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/logic_monad.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/logic_monad.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/logic_monad.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/logic_monad.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/logic_monad.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/logic_monad.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/namegen.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/namegen.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/namegen.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/namegen.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/namegen.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/namegen.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/nameops.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/nameops.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/nameops.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/nameops.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/nameops.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/nameops.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/proofview.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/proofview.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/proofview.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/proofview.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/proofview.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/proofview.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/proofview_monad.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/proofview_monad.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/proofview_monad.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/proofview_monad.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/proofview_monad.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/proofview_monad.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/termops.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/termops.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/termops.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/termops.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/termops.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/termops.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/uState.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/uState.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/uState.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/uState.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/uState.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/uState.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/univFlex.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/univFlex.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/univFlex.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/univFlex.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/univFlex.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/univFlex.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/univGen.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/univGen.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/univGen.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/univGen.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/univGen.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/univGen.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/univMinim.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/univMinim.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/univMinim.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/univMinim.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/univMinim.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/univMinim.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/univNames.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/univNames.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/univNames.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/univNames.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/univNames.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/univNames.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/univProblem.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/univProblem.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/univProblem.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/univProblem.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/univProblem.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/univProblem.mli +%%OCAML_SITELIBDIR%%/coq-core/engine/univSubst.cmi +%%OCAML_SITELIBDIR%%/coq-core/engine/univSubst.cmt +%%OCAML_SITELIBDIR%%/coq-core/engine/univSubst.cmti +%%OCAML_SITELIBDIR%%/coq-core/engine/univSubst.cmx +%%OCAML_SITELIBDIR%%/coq-core/engine/univSubst.ml +%%OCAML_SITELIBDIR%%/coq-core/engine/univSubst.mli +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramext.ml +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramext.mli +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib.a +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib.cma +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib.cmi +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib.cmt +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib.cmx +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib.cmxa +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib.cmxs +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib.ml +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__Gramext.cmi +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__Gramext.cmt +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__Gramext.cmti +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__Gramext.cmx +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__Grammar.cmi +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__Grammar.cmt +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__Grammar.cmti +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__Grammar.cmx +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__LStream.cmi +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__LStream.cmt +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__LStream.cmti +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__LStream.cmx +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__Plexing.cmi +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__Plexing.cmti +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__Stream.cmi +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__Stream.cmt +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__Stream.cmti +%%OCAML_SITELIBDIR%%/coq-core/gramlib/gramlib__Stream.cmx +%%OCAML_SITELIBDIR%%/coq-core/gramlib/grammar.ml +%%OCAML_SITELIBDIR%%/coq-core/gramlib/grammar.mli +%%OCAML_SITELIBDIR%%/coq-core/gramlib/lStream.ml +%%OCAML_SITELIBDIR%%/coq-core/gramlib/lStream.mli +%%OCAML_SITELIBDIR%%/coq-core/gramlib/plexing.mli +%%OCAML_SITELIBDIR%%/coq-core/gramlib/stream.ml +%%OCAML_SITELIBDIR%%/coq-core/gramlib/stream.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/abbreviation.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/abbreviation.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/abbreviation.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/abbreviation.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/abbreviation.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/abbreviation.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/constrexpr.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/constrexpr.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/constrexpr.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/constrexpr_ops.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/constrexpr_ops.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/constrexpr_ops.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/constrexpr_ops.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/constrexpr_ops.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/constrexpr_ops.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/constrextern.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/constrextern.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/constrextern.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/constrextern.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/constrextern.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/constrextern.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/constrintern.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/constrintern.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/constrintern.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/constrintern.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/constrintern.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/constrintern.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/decls.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/decls.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/decls.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/decls.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/decls.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/decls.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/dumpglob.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/dumpglob.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/dumpglob.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/dumpglob.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/dumpglob.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/dumpglob.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/genintern.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/genintern.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/genintern.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/genintern.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/genintern.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/genintern.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/impargs.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/impargs.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/impargs.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/impargs.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/impargs.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/impargs.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/implicit_quantifiers.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/implicit_quantifiers.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/implicit_quantifiers.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/implicit_quantifiers.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/implicit_quantifiers.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/implicit_quantifiers.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/interp.a +%%OCAML_SITELIBDIR%%/coq-core/interp/interp.cma +%%OCAML_SITELIBDIR%%/coq-core/interp/interp.cmxa +%%OCAML_SITELIBDIR%%/coq-core/interp/interp.cmxs +%%OCAML_SITELIBDIR%%/coq-core/interp/modintern.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/modintern.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/modintern.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/modintern.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/modintern.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/modintern.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/notation.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/notation.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/notation.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/notation.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/notation.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/notation.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/notation_ops.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/notation_ops.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/notation_ops.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/notation_ops.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/notation_ops.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/notation_ops.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/notation_term.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/notation_term.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/notation_term.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/notationextern.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/notationextern.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/notationextern.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/notationextern.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/notationextern.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/notationextern.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/numTok.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/numTok.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/numTok.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/numTok.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/numTok.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/numTok.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/reserve.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/reserve.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/reserve.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/reserve.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/reserve.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/reserve.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/smartlocate.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/smartlocate.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/smartlocate.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/smartlocate.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/smartlocate.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/smartlocate.mli +%%OCAML_SITELIBDIR%%/coq-core/interp/stdarg.cmi +%%OCAML_SITELIBDIR%%/coq-core/interp/stdarg.cmt +%%OCAML_SITELIBDIR%%/coq-core/interp/stdarg.cmti +%%OCAML_SITELIBDIR%%/coq-core/interp/stdarg.cmx +%%OCAML_SITELIBDIR%%/coq-core/interp/stdarg.ml +%%OCAML_SITELIBDIR%%/coq-core/interp/stdarg.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/cClosure.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/cClosure.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/cClosure.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/cClosure.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/cClosure.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/cClosure.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/cPrimitives.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/cPrimitives.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/cPrimitives.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/cPrimitives.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/cPrimitives.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/cPrimitives.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/constant_typing.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/constant_typing.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/constant_typing.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/constant_typing.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/constant_typing.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/constant_typing.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/constr.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/constr.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/constr.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/constr.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/constr.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/constr.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/context.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/context.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/context.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/context.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/context.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/context.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/conv_oracle.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/conv_oracle.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/conv_oracle.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/conv_oracle.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/conv_oracle.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/conv_oracle.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/conversion.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/conversion.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/conversion.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/conversion.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/conversion.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/conversion.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/cooking.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/cooking.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/cooking.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/cooking.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/cooking.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/cooking.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/declarations.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/declarations.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/declarations.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/declareops.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/declareops.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/declareops.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/declareops.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/declareops.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/declareops.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/discharge.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/discharge.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/discharge.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/discharge.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/discharge.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/discharge.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/entries.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/entries.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/entries.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/environ.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/environ.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/environ.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/environ.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/environ.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/environ.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/esubst.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/esubst.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/esubst.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/esubst.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/esubst.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/esubst.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/evar.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/evar.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/evar.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/evar.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/evar.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/evar.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/float64.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/float64.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/float64.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/float64.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/float64.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/float64.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/float64_common.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/float64_common.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/float64_common.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/float64_common.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/float64_common.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/float64_common.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/genlambda.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/genlambda.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/genlambda.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/genlambda.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/genlambda.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/genlambda.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/indTyping.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/indTyping.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/indTyping.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/indTyping.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/indTyping.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/indTyping.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/indtypes.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/indtypes.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/indtypes.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/indtypes.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/indtypes.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/indtypes.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/inductive.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/inductive.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/inductive.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/inductive.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/inductive.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/inductive.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/inferCumulativity.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/inferCumulativity.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/inferCumulativity.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/inferCumulativity.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/inferCumulativity.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/inferCumulativity.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/kernel.a +%%OCAML_SITELIBDIR%%/coq-core/kernel/kernel.cma +%%OCAML_SITELIBDIR%%/coq-core/kernel/kernel.cmxa +%%OCAML_SITELIBDIR%%/coq-core/kernel/kernel.cmxs +%%OCAML_SITELIBDIR%%/coq-core/kernel/mod_subst.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/mod_subst.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/mod_subst.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/mod_subst.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/mod_subst.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/mod_subst.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/mod_typing.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/mod_typing.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/mod_typing.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/mod_typing.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/mod_typing.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/mod_typing.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/modops.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/modops.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/modops.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/modops.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/modops.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/modops.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/names.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/names.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/names.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/names.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/names.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/names.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativecode.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativecode.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativecode.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativecode.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativecode.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativecode.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativeconv.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativeconv.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativeconv.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativeconv.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativeconv.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativeconv.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelambda.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelambda.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelambda.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelambda.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelambda.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelambda.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelib.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelib.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelib.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelib.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelib.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelib.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelibrary.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelibrary.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelibrary.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelibrary.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelibrary.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativelibrary.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativevalues.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativevalues.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativevalues.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativevalues.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativevalues.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/nativevalues.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/opaqueproof.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/opaqueproof.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/opaqueproof.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/opaqueproof.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/opaqueproof.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/opaqueproof.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/parray.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/parray.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/parray.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/parray.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/parray.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/parray.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/primred.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/primred.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/primred.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/primred.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/primred.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/primred.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/redFlags.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/redFlags.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/redFlags.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/redFlags.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/redFlags.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/redFlags.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/reduction.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/reduction.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/reduction.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/reduction.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/reduction.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/reduction.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/relevanceops.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/relevanceops.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/relevanceops.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/relevanceops.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/relevanceops.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/relevanceops.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/retroknowledge.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/retroknowledge.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/retroknowledge.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/retroknowledge.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/retroknowledge.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/retroknowledge.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/safe_typing.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/safe_typing.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/safe_typing.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/safe_typing.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/safe_typing.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/safe_typing.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/section.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/section.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/section.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/section.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/section.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/section.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/sorts.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/sorts.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/sorts.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/sorts.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/sorts.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/sorts.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/subtyping.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/subtyping.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/subtyping.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/subtyping.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/subtyping.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/subtyping.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/term.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/term.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/term.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/term.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/term.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/term.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/transparentState.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/transparentState.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/transparentState.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/transparentState.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/transparentState.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/transparentState.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/type_errors.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/type_errors.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/type_errors.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/type_errors.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/type_errors.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/type_errors.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/typeops.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/typeops.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/typeops.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/typeops.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/typeops.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/typeops.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/uGraph.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/uGraph.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/uGraph.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/uGraph.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/uGraph.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/uGraph.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/uVars.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/uVars.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/uVars.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/uVars.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/uVars.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/uVars.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/uint63.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/uint63.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/uint63.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/uint63.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/uint63.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/uint63.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/univ.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/univ.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/univ.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/univ.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/univ.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/univ.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/values.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/values.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/values.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/vars.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/vars.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/vars.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/vars.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/vars.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/vars.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/vconv.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/vconv.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/vconv.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/vconv.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/vconv.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/vconv.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/vm.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/vm.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/vm.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/vm.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/vm.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/vm.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmbytecodes.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmbytecodes.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmbytecodes.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmbytecodes.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmbytecodes.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmbytecodes.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmbytegen.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmbytegen.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmbytegen.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmbytegen.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmbytegen.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmbytegen.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmemitcodes.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmemitcodes.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmemitcodes.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmemitcodes.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmemitcodes.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmemitcodes.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmerrors.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmerrors.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmerrors.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmerrors.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmerrors.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmerrors.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmlambda.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmlambda.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmlambda.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmlambda.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmlambda.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmlambda.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmopcodes.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmopcodes.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmopcodes.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmopcodes.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmopcodes.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmopcodes.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmsymtable.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmsymtable.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmsymtable.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmsymtable.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmsymtable.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmsymtable.mli +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmvalues.cmi +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmvalues.cmt +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmvalues.cmti +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmvalues.cmx +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmvalues.ml +%%OCAML_SITELIBDIR%%/coq-core/kernel/vmvalues.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/acyclicGraph.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/acyclicGraph.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/acyclicGraph.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/acyclicGraph.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/acyclicGraph.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/acyclicGraph.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/aux_file.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/aux_file.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/aux_file.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/aux_file.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/aux_file.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/aux_file.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/cAst.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/cAst.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/cAst.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/cAst.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/cAst.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/cAst.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/cDebug.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/cDebug.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/cDebug.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/cDebug.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/cDebug.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/cDebug.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/cErrors.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/cErrors.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/cErrors.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/cErrors.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/cErrors.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/cErrors.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/cProfile.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/cProfile.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/cProfile.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/cProfile.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/cProfile.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/cProfile.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/cWarnings.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/cWarnings.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/cWarnings.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/cWarnings.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/cWarnings.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/cWarnings.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/control.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/control.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/control.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/control.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/control.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/control.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/coqProject_file.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/coqProject_file.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/coqProject_file.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/coqProject_file.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/coqProject_file.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/coqProject_file.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/core_plugins_findlib_compat.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/core_plugins_findlib_compat.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/core_plugins_findlib_compat.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/core_plugins_findlib_compat.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/core_plugins_findlib_compat.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/core_plugins_findlib_compat.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/dAst.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/dAst.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/dAst.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/dAst.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/dAst.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/dAst.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/deprecation.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/deprecation.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/deprecation.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/deprecation.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/deprecation.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/deprecation.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/envars.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/envars.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/envars.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/envars.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/envars.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/envars.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/feedback.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/feedback.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/feedback.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/feedback.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/feedback.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/feedback.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/flags.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/flags.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/flags.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/flags.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/flags.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/flags.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/hook.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/hook.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/hook.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/hook.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/hook.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/hook.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/instr.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/instr.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/instr.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/instr.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/instr.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/instr.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/lib.a +%%OCAML_SITELIBDIR%%/coq-core/lib/lib.cma +%%OCAML_SITELIBDIR%%/coq-core/lib/lib.cmxa +%%OCAML_SITELIBDIR%%/coq-core/lib/lib.cmxs +%%OCAML_SITELIBDIR%%/coq-core/lib/loc.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/loc.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/loc.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/loc.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/loc.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/loc.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/newProfile.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/newProfile.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/newProfile.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/newProfile.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/newProfile.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/newProfile.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/objFile.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/objFile.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/objFile.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/objFile.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/objFile.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/objFile.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/pp.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/pp.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/pp.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/pp.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/pp.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/pp.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/pp_diff.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/pp_diff.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/pp_diff.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/pp_diff.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/pp_diff.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/pp_diff.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/rtree.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/rtree.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/rtree.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/rtree.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/rtree.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/rtree.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/spawn.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/spawn.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/spawn.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/spawn.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/spawn.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/spawn.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/stateid.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/stateid.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/stateid.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/stateid.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/stateid.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/stateid.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/system.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/system.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/system.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/system.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/system.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/system.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/util.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/util.cmt +%%OCAML_SITELIBDIR%%/coq-core/lib/util.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/util.cmx +%%OCAML_SITELIBDIR%%/coq-core/lib/util.ml +%%OCAML_SITELIBDIR%%/coq-core/lib/util.mli +%%OCAML_SITELIBDIR%%/coq-core/lib/xml_datatype.cmi +%%OCAML_SITELIBDIR%%/coq-core/lib/xml_datatype.cmti +%%OCAML_SITELIBDIR%%/coq-core/lib/xml_datatype.mli +%%OCAML_SITELIBDIR%%/coq-core/library/coqlib.cmi +%%OCAML_SITELIBDIR%%/coq-core/library/coqlib.cmt +%%OCAML_SITELIBDIR%%/coq-core/library/coqlib.cmti +%%OCAML_SITELIBDIR%%/coq-core/library/coqlib.cmx +%%OCAML_SITELIBDIR%%/coq-core/library/coqlib.ml +%%OCAML_SITELIBDIR%%/coq-core/library/coqlib.mli +%%OCAML_SITELIBDIR%%/coq-core/library/global.cmi +%%OCAML_SITELIBDIR%%/coq-core/library/global.cmt +%%OCAML_SITELIBDIR%%/coq-core/library/global.cmti +%%OCAML_SITELIBDIR%%/coq-core/library/global.cmx +%%OCAML_SITELIBDIR%%/coq-core/library/global.ml +%%OCAML_SITELIBDIR%%/coq-core/library/global.mli +%%OCAML_SITELIBDIR%%/coq-core/library/globnames.cmi +%%OCAML_SITELIBDIR%%/coq-core/library/globnames.cmt +%%OCAML_SITELIBDIR%%/coq-core/library/globnames.cmti +%%OCAML_SITELIBDIR%%/coq-core/library/globnames.cmx +%%OCAML_SITELIBDIR%%/coq-core/library/globnames.ml +%%OCAML_SITELIBDIR%%/coq-core/library/globnames.mli +%%OCAML_SITELIBDIR%%/coq-core/library/goptions.cmi +%%OCAML_SITELIBDIR%%/coq-core/library/goptions.cmt +%%OCAML_SITELIBDIR%%/coq-core/library/goptions.cmti +%%OCAML_SITELIBDIR%%/coq-core/library/goptions.cmx +%%OCAML_SITELIBDIR%%/coq-core/library/goptions.ml +%%OCAML_SITELIBDIR%%/coq-core/library/goptions.mli +%%OCAML_SITELIBDIR%%/coq-core/library/lib.cmi +%%OCAML_SITELIBDIR%%/coq-core/library/lib.cmt +%%OCAML_SITELIBDIR%%/coq-core/library/lib.cmti +%%OCAML_SITELIBDIR%%/coq-core/library/lib.cmx +%%OCAML_SITELIBDIR%%/coq-core/library/lib.ml +%%OCAML_SITELIBDIR%%/coq-core/library/lib.mli +%%OCAML_SITELIBDIR%%/coq-core/library/libnames.cmi +%%OCAML_SITELIBDIR%%/coq-core/library/libnames.cmt +%%OCAML_SITELIBDIR%%/coq-core/library/libnames.cmti +%%OCAML_SITELIBDIR%%/coq-core/library/libnames.cmx +%%OCAML_SITELIBDIR%%/coq-core/library/libnames.ml +%%OCAML_SITELIBDIR%%/coq-core/library/libnames.mli +%%OCAML_SITELIBDIR%%/coq-core/library/libobject.cmi +%%OCAML_SITELIBDIR%%/coq-core/library/libobject.cmt +%%OCAML_SITELIBDIR%%/coq-core/library/libobject.cmti +%%OCAML_SITELIBDIR%%/coq-core/library/libobject.cmx +%%OCAML_SITELIBDIR%%/coq-core/library/libobject.ml +%%OCAML_SITELIBDIR%%/coq-core/library/libobject.mli +%%OCAML_SITELIBDIR%%/coq-core/library/library.a +%%OCAML_SITELIBDIR%%/coq-core/library/library.cma +%%OCAML_SITELIBDIR%%/coq-core/library/library.cmxa +%%OCAML_SITELIBDIR%%/coq-core/library/library.cmxs +%%OCAML_SITELIBDIR%%/coq-core/library/library_info.cmi +%%OCAML_SITELIBDIR%%/coq-core/library/library_info.cmt +%%OCAML_SITELIBDIR%%/coq-core/library/library_info.cmti +%%OCAML_SITELIBDIR%%/coq-core/library/library_info.cmx +%%OCAML_SITELIBDIR%%/coq-core/library/library_info.ml +%%OCAML_SITELIBDIR%%/coq-core/library/library_info.mli +%%OCAML_SITELIBDIR%%/coq-core/library/nametab.cmi +%%OCAML_SITELIBDIR%%/coq-core/library/nametab.cmt +%%OCAML_SITELIBDIR%%/coq-core/library/nametab.cmti +%%OCAML_SITELIBDIR%%/coq-core/library/nametab.cmx +%%OCAML_SITELIBDIR%%/coq-core/library/nametab.ml +%%OCAML_SITELIBDIR%%/coq-core/library/nametab.mli +%%OCAML_SITELIBDIR%%/coq-core/library/summary.cmi +%%OCAML_SITELIBDIR%%/coq-core/library/summary.cmt +%%OCAML_SITELIBDIR%%/coq-core/library/summary.cmti +%%OCAML_SITELIBDIR%%/coq-core/library/summary.cmx +%%OCAML_SITELIBDIR%%/coq-core/library/summary.ml +%%OCAML_SITELIBDIR%%/coq-core/library/summary.mli +%%OCAML_SITELIBDIR%%/coq-core/opam +%%OCAML_SITELIBDIR%%/coq-core/parsing/cLexer.cmi +%%OCAML_SITELIBDIR%%/coq-core/parsing/cLexer.cmt +%%OCAML_SITELIBDIR%%/coq-core/parsing/cLexer.cmti +%%OCAML_SITELIBDIR%%/coq-core/parsing/cLexer.cmx +%%OCAML_SITELIBDIR%%/coq-core/parsing/cLexer.ml +%%OCAML_SITELIBDIR%%/coq-core/parsing/cLexer.mli +%%OCAML_SITELIBDIR%%/coq-core/parsing/extend.cmi +%%OCAML_SITELIBDIR%%/coq-core/parsing/extend.cmt +%%OCAML_SITELIBDIR%%/coq-core/parsing/extend.cmti +%%OCAML_SITELIBDIR%%/coq-core/parsing/extend.cmx +%%OCAML_SITELIBDIR%%/coq-core/parsing/extend.ml +%%OCAML_SITELIBDIR%%/coq-core/parsing/extend.mli +%%OCAML_SITELIBDIR%%/coq-core/parsing/g_constr.cmi +%%OCAML_SITELIBDIR%%/coq-core/parsing/g_constr.cmt +%%OCAML_SITELIBDIR%%/coq-core/parsing/g_constr.cmti +%%OCAML_SITELIBDIR%%/coq-core/parsing/g_constr.cmx +%%OCAML_SITELIBDIR%%/coq-core/parsing/g_constr.ml +%%OCAML_SITELIBDIR%%/coq-core/parsing/g_constr.mli +%%OCAML_SITELIBDIR%%/coq-core/parsing/g_prim.cmi +%%OCAML_SITELIBDIR%%/coq-core/parsing/g_prim.cmt +%%OCAML_SITELIBDIR%%/coq-core/parsing/g_prim.cmti +%%OCAML_SITELIBDIR%%/coq-core/parsing/g_prim.cmx +%%OCAML_SITELIBDIR%%/coq-core/parsing/g_prim.ml +%%OCAML_SITELIBDIR%%/coq-core/parsing/g_prim.mli +%%OCAML_SITELIBDIR%%/coq-core/parsing/notation_gram.cmi +%%OCAML_SITELIBDIR%%/coq-core/parsing/notation_gram.cmti +%%OCAML_SITELIBDIR%%/coq-core/parsing/notation_gram.mli +%%OCAML_SITELIBDIR%%/coq-core/parsing/notgram_ops.cmi +%%OCAML_SITELIBDIR%%/coq-core/parsing/notgram_ops.cmt +%%OCAML_SITELIBDIR%%/coq-core/parsing/notgram_ops.cmti +%%OCAML_SITELIBDIR%%/coq-core/parsing/notgram_ops.cmx +%%OCAML_SITELIBDIR%%/coq-core/parsing/notgram_ops.ml +%%OCAML_SITELIBDIR%%/coq-core/parsing/notgram_ops.mli +%%OCAML_SITELIBDIR%%/coq-core/parsing/parsing.a +%%OCAML_SITELIBDIR%%/coq-core/parsing/parsing.cma +%%OCAML_SITELIBDIR%%/coq-core/parsing/parsing.cmxa +%%OCAML_SITELIBDIR%%/coq-core/parsing/parsing.cmxs +%%OCAML_SITELIBDIR%%/coq-core/parsing/pcoq.cmi +%%OCAML_SITELIBDIR%%/coq-core/parsing/pcoq.cmt +%%OCAML_SITELIBDIR%%/coq-core/parsing/pcoq.cmti +%%OCAML_SITELIBDIR%%/coq-core/parsing/pcoq.cmx +%%OCAML_SITELIBDIR%%/coq-core/parsing/pcoq.ml +%%OCAML_SITELIBDIR%%/coq-core/parsing/pcoq.mli +%%OCAML_SITELIBDIR%%/coq-core/parsing/tok.cmi +%%OCAML_SITELIBDIR%%/coq-core/parsing/tok.cmt +%%OCAML_SITELIBDIR%%/coq-core/parsing/tok.cmti +%%OCAML_SITELIBDIR%%/coq-core/parsing/tok.cmx +%%OCAML_SITELIBDIR%%/coq-core/parsing/tok.ml +%%OCAML_SITELIBDIR%%/coq-core/parsing/tok.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/btauto_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/btauto_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/btauto_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/btauto_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/btauto_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/btauto_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/btauto_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/btauto_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/btauto_plugin__G_btauto.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/btauto_plugin__G_btauto.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/btauto_plugin__G_btauto.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/btauto_plugin__G_btauto.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/btauto_plugin__Refl_btauto.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/btauto_plugin__Refl_btauto.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/btauto_plugin__Refl_btauto.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/btauto_plugin__Refl_btauto.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/g_btauto.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/g_btauto.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/refl_btauto.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/btauto/refl_btauto.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin__Ccalgo.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin__Ccalgo.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin__Ccalgo.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin__Ccalgo.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin__Ccproof.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin__Ccproof.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin__Ccproof.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin__Ccproof.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin__Cctac.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin__Cctac.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin__Cctac.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin__Cctac.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin__G_congruence.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin__G_congruence.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin__G_congruence.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cc_plugin__G_congruence.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/ccalgo.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/ccalgo.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/ccproof.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/ccproof.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cctac.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/cctac.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/g_congruence.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/cc/g_congruence.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive_plugin__Derive.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive_plugin__Derive.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive_plugin__Derive.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive_plugin__Derive.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive_plugin__G_derive.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive_plugin__G_derive.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive_plugin__G_derive.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/derive_plugin__G_derive.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/g_derive.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/derive/g_derive.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/common.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/common.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extract_env.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extract_env.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Common.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Common.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Common.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Common.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Extract_env.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Extract_env.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Extract_env.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Extract_env.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Extraction.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Extraction.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Extraction.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Extraction.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__G_extraction.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__G_extraction.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__G_extraction.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__G_extraction.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Haskell.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Haskell.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Haskell.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Haskell.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Json.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Json.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Json.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Json.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Miniml.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Miniml.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Miniml.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Miniml.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Mlutil.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Mlutil.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Mlutil.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Mlutil.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Modutil.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Modutil.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Modutil.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Modutil.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Ocaml.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Ocaml.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Ocaml.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Ocaml.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Scheme.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Scheme.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Scheme.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Scheme.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Table.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Table.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Table.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/extraction_plugin__Table.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/g_extraction.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/g_extraction.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/haskell.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/haskell.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/json.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/json.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/miniml.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/miniml.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/mlutil.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/mlutil.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/modutil.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/modutil.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/ocaml.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/ocaml.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/scheme.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/scheme.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/table.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/extraction/table.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Formula.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Formula.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Formula.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Formula.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__G_ground.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__G_ground.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__G_ground.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__G_ground.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Ground.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Ground.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Ground.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Ground.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Instances.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Instances.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Instances.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Instances.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Rules.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Rules.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Rules.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Rules.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Sequent.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Sequent.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Sequent.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Sequent.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Unify.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Unify.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Unify.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/firstorder_plugin__Unify.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/formula.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/formula.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/g_ground.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/g_ground.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/ground.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/ground.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/instances.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/instances.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/rules.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/rules.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/sequent.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/sequent.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/unify.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/firstorder/unify.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/functional_principles_proofs.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/functional_principles_proofs.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/functional_principles_types.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/functional_principles_types.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Functional_principles_proofs.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Functional_principles_proofs.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Functional_principles_proofs.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Functional_principles_proofs.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Functional_principles_types.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Functional_principles_types.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Functional_principles_types.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Functional_principles_types.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__G_indfun.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__G_indfun.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__G_indfun.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__G_indfun.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Gen_principle.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Gen_principle.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Gen_principle.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Gen_principle.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Glob_term_to_relation.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Glob_term_to_relation.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Glob_term_to_relation.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Glob_term_to_relation.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Glob_termops.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Glob_termops.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Glob_termops.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Glob_termops.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Indfun.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Indfun.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Indfun.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Indfun.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Indfun_common.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Indfun_common.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Indfun_common.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Indfun_common.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Invfun.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Invfun.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Invfun.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Invfun.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Recdef.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Recdef.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Recdef.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/funind_plugin__Recdef.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/g_indfun.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/g_indfun.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/gen_principle.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/gen_principle.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/glob_term_to_relation.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/glob_term_to_relation.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/glob_termops.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/glob_termops.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/indfun.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/indfun.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/indfun_common.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/indfun_common.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/invfun.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/invfun.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/recdef.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/funind/recdef.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/comRewrite.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/comRewrite.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/coretactics.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/coretactics.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/extraargs.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/extraargs.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/extratactics.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/extratactics.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/g_auto.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/g_auto.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/g_class.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/g_class.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/g_eqdecide.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/g_eqdecide.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/g_ltac.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/g_ltac.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/g_obligations.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/g_obligations.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/g_rewrite.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/g_rewrite.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/g_tactic.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/g_tactic.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/internals.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/internals.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/leminv.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/leminv.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__ComRewrite.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__ComRewrite.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__ComRewrite.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__ComRewrite.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Coretactics.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Coretactics.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Coretactics.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Coretactics.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Extraargs.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Extraargs.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Extraargs.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Extraargs.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Extratactics.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Extratactics.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Extratactics.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Extratactics.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_auto.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_auto.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_auto.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_auto.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_class.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_class.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_class.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_class.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_eqdecide.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_eqdecide.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_eqdecide.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_eqdecide.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_ltac.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_ltac.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_ltac.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_ltac.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_obligations.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_obligations.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_obligations.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_obligations.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_rewrite.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_rewrite.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_rewrite.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_rewrite.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_tactic.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_tactic.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_tactic.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__G_tactic.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Internals.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Internals.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Internals.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Internals.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Leminv.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Leminv.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Leminv.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Leminv.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Pltac.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Pltac.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Pltac.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Pltac.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Pptactic.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Pptactic.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Pptactic.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Pptactic.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Profile_ltac.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Profile_ltac.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Profile_ltac.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Profile_ltac.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Profile_ltac_tactics.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Profile_ltac_tactics.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Profile_ltac_tactics.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Profile_ltac_tactics.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacarg.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacarg.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacarg.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacarg.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Taccoerce.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Taccoerce.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Taccoerce.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Taccoerce.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacentries.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacentries.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacentries.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacentries.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacenv.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacenv.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacenv.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacenv.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacexpr.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacexpr.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacexpr.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacexpr.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacintern.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacintern.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacintern.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacintern.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacinterp.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacinterp.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacinterp.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacinterp.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacsubst.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacsubst.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacsubst.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tacsubst.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tactic_debug.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tactic_debug.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tactic_debug.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tactic_debug.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tactic_matching.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tactic_matching.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tactic_matching.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tactic_matching.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tactic_option.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tactic_option.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tactic_option.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/ltac_plugin__Tactic_option.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/pltac.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/pltac.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/pptactic.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/pptactic.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/profile_ltac.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/profile_ltac.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/profile_ltac_tactics.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/profile_ltac_tactics.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tacarg.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tacarg.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/taccoerce.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/taccoerce.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tacentries.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tacentries.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tacenv.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tacenv.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tacexpr.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tacexpr.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tacintern.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tacintern.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tacinterp.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tacinterp.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tacsubst.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tacsubst.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tactic_debug.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tactic_debug.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tactic_matching.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tactic_matching.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tactic_option.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac/tactic_option.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/g_ltac2.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/g_ltac2.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__G_ltac2.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__G_ltac2.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__G_ltac2.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__G_ltac2.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2bt.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2bt.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2bt.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2bt.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2core.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2core.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2core.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2core.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2dyn.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2dyn.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2dyn.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2dyn.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2entries.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2entries.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2entries.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2entries.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2env.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2env.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2env.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2env.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2expr.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2expr.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2externals.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2externals.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2externals.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2externals.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2extffi.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2extffi.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2extffi.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2extffi.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2ffi.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2ffi.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2ffi.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2ffi.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2intern.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2intern.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2intern.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2intern.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2interp.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2interp.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2interp.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2interp.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2match.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2match.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2match.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2match.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2print.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2print.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2print.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2print.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2qexpr.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2qexpr.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2quote.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2quote.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2quote.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2quote.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2stdlib.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2stdlib.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2stdlib.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2stdlib.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2tactics.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2tactics.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2tactics.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2tactics.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2types.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2types.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2typing_env.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2typing_env.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2typing_env.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/ltac2_plugin__Tac2typing_env.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2bt.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2bt.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2core.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2core.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2dyn.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2dyn.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2entries.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2entries.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2env.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2env.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2expr.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2externals.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2externals.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2extffi.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2extffi.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2ffi.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2ffi.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2intern.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2intern.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2interp.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2interp.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2match.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2match.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2print.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2print.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2qexpr.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2quote.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2quote.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2stdlib.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2stdlib.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2tactics.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2tactics.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2types.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2typing_env.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ltac2/tac2typing_env.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/certificate.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/certificate.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/coq_micromega.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/coq_micromega.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/g_micromega.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/g_micromega.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/itv.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/itv.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/linsolve.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/linsolve.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Certificate.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Certificate.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Certificate.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Certificate.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Coq_micromega.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Coq_micromega.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Coq_micromega.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Coq_micromega.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__G_micromega.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__G_micromega.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__G_micromega.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__G_micromega.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Itv.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Itv.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Itv.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Itv.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Linsolve.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Linsolve.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Linsolve.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Linsolve.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Micromega.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Micromega.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Micromega.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Micromega.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Mutils.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Mutils.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Mutils.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Mutils.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__NumCompat.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__NumCompat.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__NumCompat.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__NumCompat.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Persistent_cache.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Persistent_cache.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Persistent_cache.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Persistent_cache.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Polynomial.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Polynomial.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Polynomial.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Polynomial.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Simplex.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Simplex.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Simplex.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Simplex.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Sos.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Sos.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Sos.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Sos.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Sos_lib.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Sos_lib.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Sos_lib.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Sos_lib.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Sos_types.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Sos_types.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Sos_types.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Sos_types.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Vect.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Vect.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Vect.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/micromega_plugin__Vect.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/mutils.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/mutils.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/numCompat.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/numCompat.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/persistent_cache.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/persistent_cache.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/polynomial.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/polynomial.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/simplex.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/simplex.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/sos.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/sos.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/sos_lib.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/sos_lib.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/sos_types.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/sos_types.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/vect.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/micromega/vect.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/g_nsatz.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/g_nsatz.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/ideal.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/ideal.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__G_nsatz.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__G_nsatz.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__G_nsatz.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__G_nsatz.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__Ideal.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__Ideal.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__Ideal.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__Ideal.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__Nsatz.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__Nsatz.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__Nsatz.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__Nsatz.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__Polynom.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__Polynom.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__Polynom.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__Polynom.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__Utile.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__Utile.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__Utile.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/nsatz_plugin__Utile.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/polynom.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/polynom.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/utile.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/nsatz/utile.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/g_number_string.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/g_number_string.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin__G_number_string.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin__G_number_string.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin__G_number_string.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin__G_number_string.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin__Number.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin__Number.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin__Number.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin__Number.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin__String_notation.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin__String_notation.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin__String_notation.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/number_string_notation_plugin__String_notation.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/string_notation.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/number_string_notation/string_notation.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/g_ring.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/g_ring.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_ast.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_ast.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin__G_ring.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin__G_ring.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin__G_ring.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin__G_ring.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin__Ring.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin__Ring.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin__Ring.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin__Ring.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin__Ring_ast.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin__Ring_ast.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin__Ring_ast.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ring/ring_plugin__Ring_ast.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/g_rtauto.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/g_rtauto.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/proof_search.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/proof_search.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/refl_tauto.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/refl_tauto.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin__G_rtauto.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin__G_rtauto.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin__G_rtauto.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin__G_rtauto.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin__Proof_search.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin__Proof_search.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin__Proof_search.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin__Proof_search.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin__Refl_tauto.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin__Refl_tauto.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin__Refl_tauto.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/rtauto/rtauto_plugin__Refl_tauto.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrast.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrbwd.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrbwd.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrcommon.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrcommon.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrast.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrast.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrbwd.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrbwd.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrbwd.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrbwd.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrcommon.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrcommon.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrcommon.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrcommon.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrelim.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrelim.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrelim.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrelim.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrequality.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrequality.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrequality.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrequality.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrfwd.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrfwd.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrfwd.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrfwd.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssripats.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssripats.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssripats.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssripats.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrparser.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrparser.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrparser.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrparser.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrprinters.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrprinters.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrprinters.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrprinters.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrtacs.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrtacs.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrtacs.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrtacs.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrtacticals.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrtacticals.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrtacticals.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrtacticals.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrvernac.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrvernac.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrvernac.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrvernac.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrview.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrview.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrview.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrview.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrelim.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrelim.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrequality.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrequality.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrfwd.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrfwd.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssripats.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssripats.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrparser.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrparser.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrprinters.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrprinters.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrtacs.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrtacs.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrtacticals.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrtacticals.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrvernac.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrvernac.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrview.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssreflect/ssrview.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/g_ssrmatching.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/g_ssrmatching.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching_plugin__G_ssrmatching.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching_plugin__G_ssrmatching.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching_plugin__G_ssrmatching.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching_plugin__G_ssrmatching.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching_plugin__Ssrmatching.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching_plugin__Ssrmatching.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching_plugin__Ssrmatching.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/ssrmatching/ssrmatching_plugin__Ssrmatching.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tauto/tauto.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tauto/tauto.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/tauto/tauto_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/tauto/tauto_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/tauto/tauto_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tauto/tauto_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tauto/tauto_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tauto/tauto_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/tauto/tauto_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/tauto/tauto_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tauto/tauto_plugin__Tauto.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tauto/tauto_plugin__Tauto.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tauto/tauto_plugin__Tauto.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/tauto/tauto_plugin__Tauto.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/g_tuto0.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_main.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_main.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_plugin__G_tuto0.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_plugin__G_tuto0.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_plugin__G_tuto0.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_plugin__Tuto0_main.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_plugin__Tuto0_main.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_plugin__Tuto0_main.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p0/tuto0_plugin__Tuto0_main.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/g_tuto1.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/inspector.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/inspector.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/simple_check.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/simple_check.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/simple_declare.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/simple_declare.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/simple_print.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/simple_print.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__G_tuto1.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__G_tuto1.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__G_tuto1.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__Inspector.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__Inspector.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__Inspector.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__Inspector.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_check.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_check.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_check.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_check.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_declare.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_declare.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_declare.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_declare.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_print.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_print.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_print.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_print.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/counter.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/counter.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/custom.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/custom.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/g_tuto2.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/persistent_counter.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/persistent_counter.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin__Counter.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin__Counter.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin__Counter.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin__Counter.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin__Custom.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin__Custom.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin__Custom.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin__Custom.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin__G_tuto2.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin__G_tuto2.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin__G_tuto2.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin__Persistent_counter.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin__Persistent_counter.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin__Persistent_counter.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p2/tuto2_plugin__Persistent_counter.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/construction_game.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/construction_game.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/g_tuto3.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin__Construction_game.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin__Construction_game.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin__Construction_game.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin__Construction_game.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin__G_tuto3.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin__G_tuto3.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin__G_tuto3.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin__Tuto_tactic.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin__Tuto_tactic.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin__Tuto_tactic.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto3_plugin__Tuto_tactic.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto_tactic.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/tutorial/p3/tuto_tactic.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/g_zify.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/g_zify.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify.mli +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify_plugin.a +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify_plugin.cma +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify_plugin.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify_plugin.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify_plugin.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify_plugin.cmxa +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify_plugin.cmxs +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify_plugin.ml +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify_plugin__G_zify.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify_plugin__G_zify.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify_plugin__G_zify.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify_plugin__G_zify.cmx +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify_plugin__Zify.cmi +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify_plugin__Zify.cmt +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify_plugin__Zify.cmti +%%OCAML_SITELIBDIR%%/coq-core/plugins/zify/zify_plugin__Zify.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/arguments_renaming.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/arguments_renaming.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/arguments_renaming.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/arguments_renaming.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/arguments_renaming.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/arguments_renaming.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/cases.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/cases.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/cases.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/cases.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/cases.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/cases.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/cbv.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/cbv.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/cbv.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/cbv.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/cbv.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/cbv.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/coercion.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/coercion.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/coercion.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/coercion.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/coercion.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/coercion.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/coercionops.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/coercionops.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/coercionops.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/coercionops.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/coercionops.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/coercionops.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/constr_matching.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/constr_matching.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/constr_matching.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/constr_matching.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/constr_matching.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/constr_matching.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/detyping.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/detyping.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/detyping.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/detyping.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/detyping.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/detyping.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evarconv.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evarconv.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evarconv.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evarconv.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evarconv.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evarconv.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evardefine.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evardefine.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evardefine.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evardefine.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evardefine.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evardefine.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evarsolve.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evarsolve.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evarsolve.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evarsolve.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evarsolve.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/evarsolve.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/find_subterm.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/find_subterm.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/find_subterm.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/find_subterm.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/find_subterm.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/find_subterm.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/genarg.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/genarg.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/genarg.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/genarg.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/genarg.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/genarg.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/geninterp.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/geninterp.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/geninterp.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/geninterp.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/geninterp.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/geninterp.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/gensubst.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/gensubst.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/gensubst.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/gensubst.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/gensubst.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/gensubst.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/globEnv.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/globEnv.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/globEnv.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/globEnv.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/globEnv.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/globEnv.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/glob_ops.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/glob_ops.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/glob_ops.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/glob_ops.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/glob_ops.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/glob_ops.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/glob_term.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/glob_term.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/glob_term.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/heads.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/heads.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/heads.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/heads.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/heads.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/heads.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/indrec.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/indrec.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/indrec.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/indrec.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/indrec.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/indrec.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/inductiveops.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/inductiveops.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/inductiveops.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/inductiveops.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/inductiveops.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/inductiveops.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/keys.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/keys.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/keys.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/keys.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/keys.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/keys.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/locus.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/locus.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/locus.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/locusops.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/locusops.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/locusops.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/locusops.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/locusops.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/locusops.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/ltac_pretype.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/ltac_pretype.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/ltac_pretype.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/nativenorm.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/nativenorm.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/nativenorm.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/nativenorm.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/nativenorm.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/nativenorm.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pattern.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pattern.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pattern.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/patternops.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/patternops.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/patternops.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/patternops.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/patternops.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/patternops.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pretype_errors.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pretype_errors.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pretype_errors.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pretype_errors.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pretype_errors.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pretype_errors.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pretyping.a +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pretyping.cma +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pretyping.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pretyping.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pretyping.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pretyping.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pretyping.cmxa +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pretyping.cmxs +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pretyping.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/pretyping.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/program.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/program.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/program.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/program.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/program.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/program.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/reductionops.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/reductionops.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/reductionops.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/reductionops.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/reductionops.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/reductionops.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/retyping.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/retyping.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/retyping.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/retyping.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/retyping.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/retyping.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/structures.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/structures.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/structures.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/structures.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/structures.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/structures.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/tacred.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/tacred.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/tacred.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/tacred.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/tacred.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/tacred.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typeclasses.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typeclasses.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typeclasses.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typeclasses.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typeclasses.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typeclasses.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typeclasses_errors.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typeclasses_errors.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typeclasses_errors.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typeclasses_errors.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typeclasses_errors.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typeclasses_errors.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typing.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typing.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typing.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typing.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typing.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/typing.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/unification.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/unification.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/unification.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/unification.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/unification.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/unification.mli +%%OCAML_SITELIBDIR%%/coq-core/pretyping/vnorm.cmi +%%OCAML_SITELIBDIR%%/coq-core/pretyping/vnorm.cmt +%%OCAML_SITELIBDIR%%/coq-core/pretyping/vnorm.cmti +%%OCAML_SITELIBDIR%%/coq-core/pretyping/vnorm.cmx +%%OCAML_SITELIBDIR%%/coq-core/pretyping/vnorm.ml +%%OCAML_SITELIBDIR%%/coq-core/pretyping/vnorm.mli +%%OCAML_SITELIBDIR%%/coq-core/printing/genprint.cmi +%%OCAML_SITELIBDIR%%/coq-core/printing/genprint.cmt +%%OCAML_SITELIBDIR%%/coq-core/printing/genprint.cmti +%%OCAML_SITELIBDIR%%/coq-core/printing/genprint.cmx +%%OCAML_SITELIBDIR%%/coq-core/printing/genprint.ml +%%OCAML_SITELIBDIR%%/coq-core/printing/genprint.mli +%%OCAML_SITELIBDIR%%/coq-core/printing/ppconstr.cmi +%%OCAML_SITELIBDIR%%/coq-core/printing/ppconstr.cmt +%%OCAML_SITELIBDIR%%/coq-core/printing/ppconstr.cmti +%%OCAML_SITELIBDIR%%/coq-core/printing/ppconstr.cmx +%%OCAML_SITELIBDIR%%/coq-core/printing/ppconstr.ml +%%OCAML_SITELIBDIR%%/coq-core/printing/ppconstr.mli +%%OCAML_SITELIBDIR%%/coq-core/printing/ppextend.cmi +%%OCAML_SITELIBDIR%%/coq-core/printing/ppextend.cmt +%%OCAML_SITELIBDIR%%/coq-core/printing/ppextend.cmti +%%OCAML_SITELIBDIR%%/coq-core/printing/ppextend.cmx +%%OCAML_SITELIBDIR%%/coq-core/printing/ppextend.ml +%%OCAML_SITELIBDIR%%/coq-core/printing/ppextend.mli +%%OCAML_SITELIBDIR%%/coq-core/printing/pputils.cmi +%%OCAML_SITELIBDIR%%/coq-core/printing/pputils.cmt +%%OCAML_SITELIBDIR%%/coq-core/printing/pputils.cmti +%%OCAML_SITELIBDIR%%/coq-core/printing/pputils.cmx +%%OCAML_SITELIBDIR%%/coq-core/printing/pputils.ml +%%OCAML_SITELIBDIR%%/coq-core/printing/pputils.mli +%%OCAML_SITELIBDIR%%/coq-core/printing/printer.cmi +%%OCAML_SITELIBDIR%%/coq-core/printing/printer.cmt +%%OCAML_SITELIBDIR%%/coq-core/printing/printer.cmti +%%OCAML_SITELIBDIR%%/coq-core/printing/printer.cmx +%%OCAML_SITELIBDIR%%/coq-core/printing/printer.ml +%%OCAML_SITELIBDIR%%/coq-core/printing/printer.mli +%%OCAML_SITELIBDIR%%/coq-core/printing/printing.a +%%OCAML_SITELIBDIR%%/coq-core/printing/printing.cma +%%OCAML_SITELIBDIR%%/coq-core/printing/printing.cmxa +%%OCAML_SITELIBDIR%%/coq-core/printing/printing.cmxs +%%OCAML_SITELIBDIR%%/coq-core/printing/proof_diffs.cmi +%%OCAML_SITELIBDIR%%/coq-core/printing/proof_diffs.cmt +%%OCAML_SITELIBDIR%%/coq-core/printing/proof_diffs.cmti +%%OCAML_SITELIBDIR%%/coq-core/printing/proof_diffs.cmx +%%OCAML_SITELIBDIR%%/coq-core/printing/proof_diffs.ml +%%OCAML_SITELIBDIR%%/coq-core/printing/proof_diffs.mli +%%OCAML_SITELIBDIR%%/coq-core/proofs/clenv.cmi +%%OCAML_SITELIBDIR%%/coq-core/proofs/clenv.cmt +%%OCAML_SITELIBDIR%%/coq-core/proofs/clenv.cmti +%%OCAML_SITELIBDIR%%/coq-core/proofs/clenv.cmx +%%OCAML_SITELIBDIR%%/coq-core/proofs/clenv.ml +%%OCAML_SITELIBDIR%%/coq-core/proofs/clenv.mli +%%OCAML_SITELIBDIR%%/coq-core/proofs/goal_select.cmi +%%OCAML_SITELIBDIR%%/coq-core/proofs/goal_select.cmt +%%OCAML_SITELIBDIR%%/coq-core/proofs/goal_select.cmti +%%OCAML_SITELIBDIR%%/coq-core/proofs/goal_select.cmx +%%OCAML_SITELIBDIR%%/coq-core/proofs/goal_select.ml +%%OCAML_SITELIBDIR%%/coq-core/proofs/goal_select.mli +%%OCAML_SITELIBDIR%%/coq-core/proofs/logic.cmi +%%OCAML_SITELIBDIR%%/coq-core/proofs/logic.cmt +%%OCAML_SITELIBDIR%%/coq-core/proofs/logic.cmti +%%OCAML_SITELIBDIR%%/coq-core/proofs/logic.cmx +%%OCAML_SITELIBDIR%%/coq-core/proofs/logic.ml +%%OCAML_SITELIBDIR%%/coq-core/proofs/logic.mli +%%OCAML_SITELIBDIR%%/coq-core/proofs/miscprint.cmi +%%OCAML_SITELIBDIR%%/coq-core/proofs/miscprint.cmt +%%OCAML_SITELIBDIR%%/coq-core/proofs/miscprint.cmti +%%OCAML_SITELIBDIR%%/coq-core/proofs/miscprint.cmx +%%OCAML_SITELIBDIR%%/coq-core/proofs/miscprint.ml +%%OCAML_SITELIBDIR%%/coq-core/proofs/miscprint.mli +%%OCAML_SITELIBDIR%%/coq-core/proofs/proof.cmi +%%OCAML_SITELIBDIR%%/coq-core/proofs/proof.cmt +%%OCAML_SITELIBDIR%%/coq-core/proofs/proof.cmti +%%OCAML_SITELIBDIR%%/coq-core/proofs/proof.cmx +%%OCAML_SITELIBDIR%%/coq-core/proofs/proof.ml +%%OCAML_SITELIBDIR%%/coq-core/proofs/proof.mli +%%OCAML_SITELIBDIR%%/coq-core/proofs/proof_bullet.cmi +%%OCAML_SITELIBDIR%%/coq-core/proofs/proof_bullet.cmt +%%OCAML_SITELIBDIR%%/coq-core/proofs/proof_bullet.cmti +%%OCAML_SITELIBDIR%%/coq-core/proofs/proof_bullet.cmx +%%OCAML_SITELIBDIR%%/coq-core/proofs/proof_bullet.ml +%%OCAML_SITELIBDIR%%/coq-core/proofs/proof_bullet.mli +%%OCAML_SITELIBDIR%%/coq-core/proofs/proofs.a +%%OCAML_SITELIBDIR%%/coq-core/proofs/proofs.cma +%%OCAML_SITELIBDIR%%/coq-core/proofs/proofs.cmxa +%%OCAML_SITELIBDIR%%/coq-core/proofs/proofs.cmxs +%%OCAML_SITELIBDIR%%/coq-core/proofs/refine.cmi +%%OCAML_SITELIBDIR%%/coq-core/proofs/refine.cmt +%%OCAML_SITELIBDIR%%/coq-core/proofs/refine.cmti +%%OCAML_SITELIBDIR%%/coq-core/proofs/refine.cmx +%%OCAML_SITELIBDIR%%/coq-core/proofs/refine.ml +%%OCAML_SITELIBDIR%%/coq-core/proofs/refine.mli +%%OCAML_SITELIBDIR%%/coq-core/proofs/tacmach.cmi +%%OCAML_SITELIBDIR%%/coq-core/proofs/tacmach.cmt +%%OCAML_SITELIBDIR%%/coq-core/proofs/tacmach.cmti +%%OCAML_SITELIBDIR%%/coq-core/proofs/tacmach.cmx +%%OCAML_SITELIBDIR%%/coq-core/proofs/tacmach.ml +%%OCAML_SITELIBDIR%%/coq-core/proofs/tacmach.mli +%%OCAML_SITELIBDIR%%/coq-core/proofs/tactypes.cmi +%%OCAML_SITELIBDIR%%/coq-core/proofs/tactypes.cmti +%%OCAML_SITELIBDIR%%/coq-core/proofs/tactypes.mli +%%OCAML_SITELIBDIR%%/coq-core/revision +%%OCAML_SITELIBDIR%%/coq-core/stm/asyncTaskQueue.cmi +%%OCAML_SITELIBDIR%%/coq-core/stm/asyncTaskQueue.cmt +%%OCAML_SITELIBDIR%%/coq-core/stm/asyncTaskQueue.cmti +%%OCAML_SITELIBDIR%%/coq-core/stm/asyncTaskQueue.cmx +%%OCAML_SITELIBDIR%%/coq-core/stm/asyncTaskQueue.ml +%%OCAML_SITELIBDIR%%/coq-core/stm/asyncTaskQueue.mli +%%OCAML_SITELIBDIR%%/coq-core/stm/dag.cmi +%%OCAML_SITELIBDIR%%/coq-core/stm/dag.cmt +%%OCAML_SITELIBDIR%%/coq-core/stm/dag.cmti +%%OCAML_SITELIBDIR%%/coq-core/stm/dag.cmx +%%OCAML_SITELIBDIR%%/coq-core/stm/dag.ml +%%OCAML_SITELIBDIR%%/coq-core/stm/dag.mli +%%OCAML_SITELIBDIR%%/coq-core/stm/partac.cmi +%%OCAML_SITELIBDIR%%/coq-core/stm/partac.cmt +%%OCAML_SITELIBDIR%%/coq-core/stm/partac.cmti +%%OCAML_SITELIBDIR%%/coq-core/stm/partac.cmx +%%OCAML_SITELIBDIR%%/coq-core/stm/partac.ml +%%OCAML_SITELIBDIR%%/coq-core/stm/partac.mli +%%OCAML_SITELIBDIR%%/coq-core/stm/proofBlockDelimiter.cmi +%%OCAML_SITELIBDIR%%/coq-core/stm/proofBlockDelimiter.cmt +%%OCAML_SITELIBDIR%%/coq-core/stm/proofBlockDelimiter.cmti +%%OCAML_SITELIBDIR%%/coq-core/stm/proofBlockDelimiter.cmx +%%OCAML_SITELIBDIR%%/coq-core/stm/proofBlockDelimiter.ml +%%OCAML_SITELIBDIR%%/coq-core/stm/proofBlockDelimiter.mli +%%OCAML_SITELIBDIR%%/coq-core/stm/spawned.cmi +%%OCAML_SITELIBDIR%%/coq-core/stm/spawned.cmt +%%OCAML_SITELIBDIR%%/coq-core/stm/spawned.cmti +%%OCAML_SITELIBDIR%%/coq-core/stm/spawned.cmx +%%OCAML_SITELIBDIR%%/coq-core/stm/spawned.ml +%%OCAML_SITELIBDIR%%/coq-core/stm/spawned.mli +%%OCAML_SITELIBDIR%%/coq-core/stm/stm.a +%%OCAML_SITELIBDIR%%/coq-core/stm/stm.cma +%%OCAML_SITELIBDIR%%/coq-core/stm/stm.cmi +%%OCAML_SITELIBDIR%%/coq-core/stm/stm.cmt +%%OCAML_SITELIBDIR%%/coq-core/stm/stm.cmti +%%OCAML_SITELIBDIR%%/coq-core/stm/stm.cmx +%%OCAML_SITELIBDIR%%/coq-core/stm/stm.cmxa +%%OCAML_SITELIBDIR%%/coq-core/stm/stm.cmxs +%%OCAML_SITELIBDIR%%/coq-core/stm/stm.ml +%%OCAML_SITELIBDIR%%/coq-core/stm/stm.mli +%%OCAML_SITELIBDIR%%/coq-core/stm/stmargs.cmi +%%OCAML_SITELIBDIR%%/coq-core/stm/stmargs.cmt +%%OCAML_SITELIBDIR%%/coq-core/stm/stmargs.cmti +%%OCAML_SITELIBDIR%%/coq-core/stm/stmargs.cmx +%%OCAML_SITELIBDIR%%/coq-core/stm/stmargs.ml +%%OCAML_SITELIBDIR%%/coq-core/stm/stmargs.mli +%%OCAML_SITELIBDIR%%/coq-core/stm/tQueue.cmi +%%OCAML_SITELIBDIR%%/coq-core/stm/tQueue.cmt +%%OCAML_SITELIBDIR%%/coq-core/stm/tQueue.cmti +%%OCAML_SITELIBDIR%%/coq-core/stm/tQueue.cmx +%%OCAML_SITELIBDIR%%/coq-core/stm/tQueue.ml +%%OCAML_SITELIBDIR%%/coq-core/stm/tQueue.mli +%%OCAML_SITELIBDIR%%/coq-core/stm/vcs.cmi +%%OCAML_SITELIBDIR%%/coq-core/stm/vcs.cmt +%%OCAML_SITELIBDIR%%/coq-core/stm/vcs.cmti +%%OCAML_SITELIBDIR%%/coq-core/stm/vcs.cmx +%%OCAML_SITELIBDIR%%/coq-core/stm/vcs.ml +%%OCAML_SITELIBDIR%%/coq-core/stm/vcs.mli +%%OCAML_SITELIBDIR%%/coq-core/stm/vio_checking.cmi +%%OCAML_SITELIBDIR%%/coq-core/stm/vio_checking.cmt +%%OCAML_SITELIBDIR%%/coq-core/stm/vio_checking.cmti +%%OCAML_SITELIBDIR%%/coq-core/stm/vio_checking.cmx +%%OCAML_SITELIBDIR%%/coq-core/stm/vio_checking.ml +%%OCAML_SITELIBDIR%%/coq-core/stm/vio_checking.mli +%%OCAML_SITELIBDIR%%/coq-core/stm/workerPool.cmi +%%OCAML_SITELIBDIR%%/coq-core/stm/workerPool.cmt +%%OCAML_SITELIBDIR%%/coq-core/stm/workerPool.cmti +%%OCAML_SITELIBDIR%%/coq-core/stm/workerPool.cmx +%%OCAML_SITELIBDIR%%/coq-core/stm/workerPool.ml +%%OCAML_SITELIBDIR%%/coq-core/stm/workerPool.mli +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqargs.cmi +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqargs.cmt +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqargs.cmti +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqargs.cmx +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqargs.ml +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqargs.mli +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqinit.cmi +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqinit.cmt +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqinit.cmti +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqinit.cmx +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqinit.ml +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqinit.mli +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqloadpath.cmi +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqloadpath.cmt +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqloadpath.cmti +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqloadpath.cmx +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqloadpath.ml +%%OCAML_SITELIBDIR%%/coq-core/sysinit/coqloadpath.mli +%%OCAML_SITELIBDIR%%/coq-core/sysinit/sysinit.a +%%OCAML_SITELIBDIR%%/coq-core/sysinit/sysinit.cma +%%OCAML_SITELIBDIR%%/coq-core/sysinit/sysinit.cmxa +%%OCAML_SITELIBDIR%%/coq-core/sysinit/sysinit.cmxs +%%OCAML_SITELIBDIR%%/coq-core/tactics/abstract.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/abstract.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/abstract.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/abstract.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/abstract.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/abstract.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/auto.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/auto.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/auto.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/auto.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/auto.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/auto.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/autorewrite.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/autorewrite.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/autorewrite.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/autorewrite.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/autorewrite.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/autorewrite.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/btermdn.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/btermdn.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/btermdn.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/btermdn.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/btermdn.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/btermdn.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/cbn.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/cbn.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/cbn.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/cbn.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/cbn.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/cbn.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/class_tactics.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/class_tactics.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/class_tactics.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/class_tactics.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/class_tactics.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/class_tactics.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/contradiction.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/contradiction.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/contradiction.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/contradiction.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/contradiction.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/contradiction.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/declareScheme.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/declareScheme.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/declareScheme.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/declareScheme.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/declareScheme.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/declareScheme.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/dn.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/dn.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/dn.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/dn.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/dn.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/dn.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/eClause.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/eClause.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/eClause.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/eClause.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/eClause.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/eClause.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/eauto.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/eauto.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/eauto.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/eauto.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/eauto.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/eauto.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/elim.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/elim.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/elim.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/elim.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/elim.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/elim.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/elimschemes.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/elimschemes.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/elimschemes.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/elimschemes.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/elimschemes.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/elimschemes.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/eqdecide.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/eqdecide.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/eqdecide.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/eqdecide.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/eqdecide.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/eqdecide.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/eqschemes.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/eqschemes.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/eqschemes.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/eqschemes.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/eqschemes.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/eqschemes.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/equality.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/equality.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/equality.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/equality.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/equality.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/equality.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/evar_tactics.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/evar_tactics.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/evar_tactics.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/evar_tactics.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/evar_tactics.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/evar_tactics.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/generalize.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/generalize.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/generalize.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/generalize.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/generalize.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/generalize.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/genredexpr.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/genredexpr.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/genredexpr.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/hints.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/hints.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/hints.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/hints.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/hints.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/hints.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/hipattern.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/hipattern.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/hipattern.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/hipattern.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/hipattern.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/hipattern.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/ind_tables.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/ind_tables.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/ind_tables.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/ind_tables.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/ind_tables.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/ind_tables.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/induction.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/induction.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/induction.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/induction.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/induction.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/induction.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/inv.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/inv.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/inv.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/inv.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/inv.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/inv.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/ppred.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/ppred.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/ppred.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/ppred.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/ppred.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/ppred.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/redexpr.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/redexpr.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/redexpr.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/redexpr.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/redexpr.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/redexpr.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/redops.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/redops.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/redops.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/redops.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/redops.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/redops.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/rewrite.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/rewrite.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/rewrite.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/rewrite.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/rewrite.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/rewrite.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/tacticals.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/tacticals.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/tacticals.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/tacticals.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/tacticals.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/tacticals.mli +%%OCAML_SITELIBDIR%%/coq-core/tactics/tactics.a +%%OCAML_SITELIBDIR%%/coq-core/tactics/tactics.cma +%%OCAML_SITELIBDIR%%/coq-core/tactics/tactics.cmi +%%OCAML_SITELIBDIR%%/coq-core/tactics/tactics.cmt +%%OCAML_SITELIBDIR%%/coq-core/tactics/tactics.cmti +%%OCAML_SITELIBDIR%%/coq-core/tactics/tactics.cmx +%%OCAML_SITELIBDIR%%/coq-core/tactics/tactics.cmxa +%%OCAML_SITELIBDIR%%/coq-core/tactics/tactics.cmxs +%%OCAML_SITELIBDIR%%/coq-core/tactics/tactics.ml +%%OCAML_SITELIBDIR%%/coq-core/tactics/tactics.mli +%%OCAML_SITELIBDIR%%/coq-core/tools/CoqMakefile.in +%%OCAML_SITELIBDIR%%/coq-core/tools/TimeFileMaker.py +%%OCAML_SITELIBDIR%%/coq-core/tools/coqdoc/coqdoc.css +%%OCAML_SITELIBDIR%%/coq-core/tools/coqdoc/coqdoc.sty +%%OCAML_SITELIBDIR%%/coq-core/tools/make-both-single-timing-files.py +%%OCAML_SITELIBDIR%%/coq-core/tools/make-both-time-files.py +%%OCAML_SITELIBDIR%%/coq-core/tools/make-one-time-file.py +%%OCAML_SITELIBDIR%%/coq-core/top_printers/top_printers.a +%%OCAML_SITELIBDIR%%/coq-core/top_printers/top_printers.cma +%%OCAML_SITELIBDIR%%/coq-core/top_printers/top_printers.cmi +%%OCAML_SITELIBDIR%%/coq-core/top_printers/top_printers.cmt +%%OCAML_SITELIBDIR%%/coq-core/top_printers/top_printers.cmti +%%OCAML_SITELIBDIR%%/coq-core/top_printers/top_printers.cmx +%%OCAML_SITELIBDIR%%/coq-core/top_printers/top_printers.cmxa +%%OCAML_SITELIBDIR%%/coq-core/top_printers/top_printers.cmxs +%%OCAML_SITELIBDIR%%/coq-core/top_printers/top_printers.ml +%%OCAML_SITELIBDIR%%/coq-core/top_printers/top_printers.mli +%%OCAML_SITELIBDIR%%/coq-core/toplevel/ccompile.cmi +%%OCAML_SITELIBDIR%%/coq-core/toplevel/ccompile.cmt +%%OCAML_SITELIBDIR%%/coq-core/toplevel/ccompile.cmti +%%OCAML_SITELIBDIR%%/coq-core/toplevel/ccompile.cmx +%%OCAML_SITELIBDIR%%/coq-core/toplevel/ccompile.ml +%%OCAML_SITELIBDIR%%/coq-core/toplevel/ccompile.mli +%%OCAML_SITELIBDIR%%/coq-core/toplevel/colors.cmi +%%OCAML_SITELIBDIR%%/coq-core/toplevel/colors.cmt +%%OCAML_SITELIBDIR%%/coq-core/toplevel/colors.cmti +%%OCAML_SITELIBDIR%%/coq-core/toplevel/colors.cmx +%%OCAML_SITELIBDIR%%/coq-core/toplevel/colors.ml +%%OCAML_SITELIBDIR%%/coq-core/toplevel/colors.mli +%%OCAML_SITELIBDIR%%/coq-core/toplevel/common_compile.cmi +%%OCAML_SITELIBDIR%%/coq-core/toplevel/common_compile.cmt +%%OCAML_SITELIBDIR%%/coq-core/toplevel/common_compile.cmti +%%OCAML_SITELIBDIR%%/coq-core/toplevel/common_compile.cmx +%%OCAML_SITELIBDIR%%/coq-core/toplevel/common_compile.ml +%%OCAML_SITELIBDIR%%/coq-core/toplevel/common_compile.mli +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqc.cmi +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqc.cmt +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqc.cmti +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqc.cmx +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqc.ml +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqc.mli +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqcargs.cmi +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqcargs.cmt +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqcargs.cmti +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqcargs.cmx +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqcargs.ml +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqcargs.mli +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqloop.cmi +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqloop.cmt +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqloop.cmti +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqloop.cmx +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqloop.ml +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqloop.mli +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqrc.cmi +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqrc.cmt +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqrc.cmti +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqrc.cmx +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqrc.ml +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqrc.mli +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqtop.cmi +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqtop.cmt +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqtop.cmti +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqtop.cmx +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqtop.ml +%%OCAML_SITELIBDIR%%/coq-core/toplevel/coqtop.mli +%%OCAML_SITELIBDIR%%/coq-core/toplevel/g_toplevel.cmi +%%OCAML_SITELIBDIR%%/coq-core/toplevel/g_toplevel.cmt +%%OCAML_SITELIBDIR%%/coq-core/toplevel/g_toplevel.cmti +%%OCAML_SITELIBDIR%%/coq-core/toplevel/g_toplevel.cmx +%%OCAML_SITELIBDIR%%/coq-core/toplevel/g_toplevel.ml +%%OCAML_SITELIBDIR%%/coq-core/toplevel/g_toplevel.mli +%%OCAML_SITELIBDIR%%/coq-core/toplevel/load.cmi +%%OCAML_SITELIBDIR%%/coq-core/toplevel/load.cmt +%%OCAML_SITELIBDIR%%/coq-core/toplevel/load.cmti +%%OCAML_SITELIBDIR%%/coq-core/toplevel/load.cmx +%%OCAML_SITELIBDIR%%/coq-core/toplevel/load.ml +%%OCAML_SITELIBDIR%%/coq-core/toplevel/load.mli +%%OCAML_SITELIBDIR%%/coq-core/toplevel/memtrace_init.cmi +%%OCAML_SITELIBDIR%%/coq-core/toplevel/memtrace_init.cmt +%%OCAML_SITELIBDIR%%/coq-core/toplevel/memtrace_init.cmti +%%OCAML_SITELIBDIR%%/coq-core/toplevel/memtrace_init.cmx +%%OCAML_SITELIBDIR%%/coq-core/toplevel/memtrace_init.ml +%%OCAML_SITELIBDIR%%/coq-core/toplevel/memtrace_init.mli +%%OCAML_SITELIBDIR%%/coq-core/toplevel/toplevel.a +%%OCAML_SITELIBDIR%%/coq-core/toplevel/toplevel.cma +%%OCAML_SITELIBDIR%%/coq-core/toplevel/toplevel.cmxa +%%OCAML_SITELIBDIR%%/coq-core/toplevel/toplevel.cmxs +%%OCAML_SITELIBDIR%%/coq-core/toplevel/vernac.cmi +%%OCAML_SITELIBDIR%%/coq-core/toplevel/vernac.cmt +%%OCAML_SITELIBDIR%%/coq-core/toplevel/vernac.cmti +%%OCAML_SITELIBDIR%%/coq-core/toplevel/vernac.cmx +%%OCAML_SITELIBDIR%%/coq-core/toplevel/vernac.ml +%%OCAML_SITELIBDIR%%/coq-core/toplevel/vernac.mli +%%OCAML_SITELIBDIR%%/coq-core/toplevel/vio_compile.cmi +%%OCAML_SITELIBDIR%%/coq-core/toplevel/vio_compile.cmt +%%OCAML_SITELIBDIR%%/coq-core/toplevel/vio_compile.cmti +%%OCAML_SITELIBDIR%%/coq-core/toplevel/vio_compile.cmx +%%OCAML_SITELIBDIR%%/coq-core/toplevel/vio_compile.ml +%%OCAML_SITELIBDIR%%/coq-core/toplevel/vio_compile.mli +%%OCAML_SITELIBDIR%%/coq-core/toplevel/workerLoop.cmi +%%OCAML_SITELIBDIR%%/coq-core/toplevel/workerLoop.cmt +%%OCAML_SITELIBDIR%%/coq-core/toplevel/workerLoop.cmti +%%OCAML_SITELIBDIR%%/coq-core/toplevel/workerLoop.cmx +%%OCAML_SITELIBDIR%%/coq-core/toplevel/workerLoop.ml +%%OCAML_SITELIBDIR%%/coq-core/toplevel/workerLoop.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/assumptions.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/assumptions.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/assumptions.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/assumptions.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/assumptions.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/assumptions.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/attributes.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/attributes.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/attributes.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/attributes.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/attributes.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/attributes.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/auto_ind_decl.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/auto_ind_decl.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/auto_ind_decl.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/auto_ind_decl.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/auto_ind_decl.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/auto_ind_decl.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/canonical.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/canonical.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/canonical.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/canonical.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/canonical.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/canonical.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/classes.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/classes.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/classes.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/classes.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/classes.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/classes.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/comArguments.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/comArguments.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/comArguments.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/comArguments.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/comArguments.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/comArguments.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/comAssumption.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/comAssumption.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/comAssumption.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/comAssumption.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/comAssumption.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/comAssumption.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/comCoercion.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/comCoercion.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/comCoercion.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/comCoercion.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/comCoercion.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/comCoercion.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/comDefinition.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/comDefinition.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/comDefinition.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/comDefinition.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/comDefinition.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/comDefinition.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/comExtraDeps.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/comExtraDeps.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/comExtraDeps.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/comExtraDeps.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/comExtraDeps.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/comExtraDeps.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/comFixpoint.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/comFixpoint.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/comFixpoint.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/comFixpoint.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/comFixpoint.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/comFixpoint.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/comHints.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/comHints.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/comHints.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/comHints.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/comHints.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/comHints.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/comInductive.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/comInductive.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/comInductive.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/comInductive.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/comInductive.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/comInductive.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/comPrimitive.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/comPrimitive.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/comPrimitive.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/comPrimitive.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/comPrimitive.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/comPrimitive.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/comProgramFixpoint.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/comProgramFixpoint.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/comProgramFixpoint.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/comProgramFixpoint.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/comProgramFixpoint.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/comProgramFixpoint.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/comSearch.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/comSearch.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/comSearch.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/comSearch.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/comSearch.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/comSearch.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/comTactic.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/comTactic.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/comTactic.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/comTactic.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/comTactic.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/comTactic.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/debugHook.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/debugHook.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/debugHook.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/debugHook.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/debugHook.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/debugHook.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/declare.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/declare.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/declare.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/declare.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/declare.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/declare.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/declareInd.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/declareInd.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/declareInd.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/declareInd.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/declareInd.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/declareInd.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/declareUniv.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/declareUniv.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/declareUniv.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/declareUniv.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/declareUniv.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/declareUniv.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/declaremods.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/declaremods.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/declaremods.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/declaremods.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/declaremods.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/declaremods.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/egramcoq.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/egramcoq.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/egramcoq.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/egramcoq.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/egramcoq.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/egramcoq.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/egramml.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/egramml.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/egramml.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/egramml.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/egramml.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/egramml.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/future.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/future.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/future.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/future.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/future.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/future.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/g_proofs.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/g_proofs.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/g_proofs.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/g_proofs.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/g_proofs.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/g_proofs.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/g_vernac.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/g_vernac.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/g_vernac.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/g_vernac.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/g_vernac.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/g_vernac.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/himsg.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/himsg.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/himsg.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/himsg.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/himsg.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/himsg.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/indschemes.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/indschemes.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/indschemes.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/indschemes.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/indschemes.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/indschemes.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/library.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/library.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/library.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/library.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/library.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/library.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/loadpath.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/loadpath.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/loadpath.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/loadpath.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/loadpath.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/loadpath.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/locality.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/locality.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/locality.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/locality.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/locality.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/locality.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/metasyntax.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/metasyntax.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/metasyntax.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/metasyntax.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/metasyntax.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/metasyntax.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/mltop.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/mltop.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/mltop.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/mltop.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/mltop.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/mltop.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/opaques.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/opaques.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/opaques.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/opaques.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/opaques.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/opaques.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/ppvernac.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/ppvernac.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/ppvernac.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/ppvernac.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/ppvernac.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/ppvernac.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/prettyp.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/prettyp.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/prettyp.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/prettyp.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/prettyp.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/prettyp.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/printmod.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/printmod.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/printmod.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/printmod.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/printmod.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/printmod.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/proof_using.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/proof_using.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/proof_using.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/proof_using.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/proof_using.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/proof_using.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/pvernac.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/pvernac.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/pvernac.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/pvernac.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/pvernac.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/pvernac.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/recLemmas.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/recLemmas.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/recLemmas.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/recLemmas.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/recLemmas.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/recLemmas.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/record.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/record.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/record.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/record.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/record.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/record.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/retrieveObl.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/retrieveObl.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/retrieveObl.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/retrieveObl.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/retrieveObl.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/retrieveObl.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/search.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/search.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/search.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/search.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/search.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/search.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/synterp.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/synterp.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/synterp.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/synterp.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/synterp.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/synterp.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/topfmt.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/topfmt.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/topfmt.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/topfmt.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/topfmt.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/topfmt.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernac.a +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernac.cma +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernac.cmxa +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernac.cmxs +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernac_classifier.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernac_classifier.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernac_classifier.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernac_classifier.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernac_classifier.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernac_classifier.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacentries.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacentries.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacentries.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacentries.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacentries.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacentries.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacexpr.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacexpr.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacexpr.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacextend.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacextend.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacextend.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacextend.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacextend.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacextend.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacinterp.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacinterp.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacinterp.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacinterp.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacinterp.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacinterp.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacoptions.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacoptions.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacoptions.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacoptions.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacoptions.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacoptions.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacprop.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacprop.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacprop.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacprop.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacprop.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacprop.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacstate.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacstate.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacstate.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacstate.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacstate.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernacstate.mli +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernactypes.cmi +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernactypes.cmt +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernactypes.cmti +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernactypes.cmx +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernactypes.ml +%%OCAML_SITELIBDIR%%/coq-core/vernac/vernactypes.mli +%%OCAML_SITELIBDIR%%/coq-core/vm/coqrun.a +%%OCAML_SITELIBDIR%%/coq-core/vm/coqrun.cma +%%OCAML_SITELIBDIR%%/coq-core/vm/coqrun.cmi +%%OCAML_SITELIBDIR%%/coq-core/vm/coqrun.cmt +%%OCAML_SITELIBDIR%%/coq-core/vm/coqrun.cmx +%%OCAML_SITELIBDIR%%/coq-core/vm/coqrun.cmxa +%%OCAML_SITELIBDIR%%/coq-core/vm/coqrun.cmxs +%%OCAML_SITELIBDIR%%/coq-core/vm/coqrun.ml +%%OCAML_SITELIBDIR%%/coq-core/vm/libcoqrun_stubs.a +%%OCAML_SITELIBDIR%%/coq-stdlib/META +%%OCAML_SITELIBDIR%%/coq-stdlib/dune-package +%%OCAML_SITELIBDIR%%/coq-stdlib/opam +%%OCAML_SITELIBDIR%%/coq/META +%%OCAML_SITELIBDIR%%/coq/dune-package +%%OCAML_SITELIBDIR%%/coq/opam +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Arith.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Arith.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Arith_base.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Arith_base.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Between.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Between.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Bool_nat.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Bool_nat.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Cantor.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Cantor.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Compare.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Compare.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Compare_dec.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Compare_dec.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_EqNat.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_EqNat.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Euclid.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Euclid.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Factorial.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Factorial.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_PeanoNat.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_PeanoNat.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Peano_dec.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Peano_dec.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Wf_nat.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Arith/.coq-native/NCoq_Arith_Wf_nat.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Arith.glob +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Arith.v +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Arith.vo +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Arith.vos +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Arith_base.glob +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Arith_base.v +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Arith_base.vo +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Arith_base.vos +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Between.glob +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Between.v +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Between.vo +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Between.vos +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Bool_nat.glob +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Bool_nat.v +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Bool_nat.vo +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Bool_nat.vos +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Cantor.glob +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Cantor.v +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Cantor.vo +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Cantor.vos +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Compare.glob +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Compare.v +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Compare.vo +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Compare.vos +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Compare_dec.glob +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Compare_dec.v +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Compare_dec.vo +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Compare_dec.vos +%%OCAML_SITELIBDIR%%/coq/theories/Arith/EqNat.glob +%%OCAML_SITELIBDIR%%/coq/theories/Arith/EqNat.v +%%OCAML_SITELIBDIR%%/coq/theories/Arith/EqNat.vo +%%OCAML_SITELIBDIR%%/coq/theories/Arith/EqNat.vos +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Euclid.glob +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Euclid.v +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Euclid.vo +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Euclid.vos +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Factorial.glob +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Factorial.v +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Factorial.vo +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Factorial.vos +%%OCAML_SITELIBDIR%%/coq/theories/Arith/PeanoNat.glob +%%OCAML_SITELIBDIR%%/coq/theories/Arith/PeanoNat.v +%%OCAML_SITELIBDIR%%/coq/theories/Arith/PeanoNat.vo +%%OCAML_SITELIBDIR%%/coq/theories/Arith/PeanoNat.vos +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Peano_dec.glob +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Peano_dec.v +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Peano_dec.vo +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Peano_dec.vos +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Wf_nat.glob +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Wf_nat.v +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Wf_nat.vo +%%OCAML_SITELIBDIR%%/coq/theories/Arith/Wf_nat.vos +%%OCAML_SITELIBDIR%%/coq/theories/Array/.coq-native/NCoq_Array_PArray.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Array/.coq-native/NCoq_Array_PArray.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Array/PArray.glob +%%OCAML_SITELIBDIR%%/coq/theories/Array/PArray.v +%%OCAML_SITELIBDIR%%/coq/theories/Array/PArray.vo +%%OCAML_SITELIBDIR%%/coq/theories/Array/PArray.vos +%%OCAML_SITELIBDIR%%/coq/theories/Bool/.coq-native/NCoq_Bool_Bool.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Bool/.coq-native/NCoq_Bool_Bool.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Bool/.coq-native/NCoq_Bool_BoolEq.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Bool/.coq-native/NCoq_Bool_BoolEq.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Bool/.coq-native/NCoq_Bool_BoolOrder.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Bool/.coq-native/NCoq_Bool_BoolOrder.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Bool/.coq-native/NCoq_Bool_Bvector.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Bool/.coq-native/NCoq_Bool_Bvector.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Bool/.coq-native/NCoq_Bool_DecBool.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Bool/.coq-native/NCoq_Bool_DecBool.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Bool/.coq-native/NCoq_Bool_IfProp.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Bool/.coq-native/NCoq_Bool_IfProp.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Bool/.coq-native/NCoq_Bool_Sumbool.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Bool/.coq-native/NCoq_Bool_Sumbool.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Bool/.coq-native/NCoq_Bool_Zerob.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Bool/.coq-native/NCoq_Bool_Zerob.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Bool/Bool.glob +%%OCAML_SITELIBDIR%%/coq/theories/Bool/Bool.v +%%OCAML_SITELIBDIR%%/coq/theories/Bool/Bool.vo +%%OCAML_SITELIBDIR%%/coq/theories/Bool/Bool.vos +%%OCAML_SITELIBDIR%%/coq/theories/Bool/BoolEq.glob +%%OCAML_SITELIBDIR%%/coq/theories/Bool/BoolEq.v +%%OCAML_SITELIBDIR%%/coq/theories/Bool/BoolEq.vo +%%OCAML_SITELIBDIR%%/coq/theories/Bool/BoolEq.vos +%%OCAML_SITELIBDIR%%/coq/theories/Bool/BoolOrder.glob +%%OCAML_SITELIBDIR%%/coq/theories/Bool/BoolOrder.v +%%OCAML_SITELIBDIR%%/coq/theories/Bool/BoolOrder.vo +%%OCAML_SITELIBDIR%%/coq/theories/Bool/BoolOrder.vos +%%OCAML_SITELIBDIR%%/coq/theories/Bool/Bvector.glob +%%OCAML_SITELIBDIR%%/coq/theories/Bool/Bvector.v +%%OCAML_SITELIBDIR%%/coq/theories/Bool/Bvector.vo +%%OCAML_SITELIBDIR%%/coq/theories/Bool/Bvector.vos +%%OCAML_SITELIBDIR%%/coq/theories/Bool/DecBool.glob +%%OCAML_SITELIBDIR%%/coq/theories/Bool/DecBool.v +%%OCAML_SITELIBDIR%%/coq/theories/Bool/DecBool.vo +%%OCAML_SITELIBDIR%%/coq/theories/Bool/DecBool.vos +%%OCAML_SITELIBDIR%%/coq/theories/Bool/IfProp.glob +%%OCAML_SITELIBDIR%%/coq/theories/Bool/IfProp.v +%%OCAML_SITELIBDIR%%/coq/theories/Bool/IfProp.vo +%%OCAML_SITELIBDIR%%/coq/theories/Bool/IfProp.vos +%%OCAML_SITELIBDIR%%/coq/theories/Bool/Sumbool.glob +%%OCAML_SITELIBDIR%%/coq/theories/Bool/Sumbool.v +%%OCAML_SITELIBDIR%%/coq/theories/Bool/Sumbool.vo +%%OCAML_SITELIBDIR%%/coq/theories/Bool/Sumbool.vos +%%OCAML_SITELIBDIR%%/coq/theories/Bool/Zerob.glob +%%OCAML_SITELIBDIR%%/coq/theories/Bool/Zerob.v +%%OCAML_SITELIBDIR%%/coq/theories/Bool/Zerob.vo +%%OCAML_SITELIBDIR%%/coq/theories/Bool/Zerob.vos +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_CEquivalence.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_CEquivalence.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_CMorphisms.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_CMorphisms.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_CRelationClasses.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_CRelationClasses.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_DecidableClass.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_DecidableClass.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_EquivDec.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_EquivDec.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_Equivalence.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_Equivalence.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_Init.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_Init.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Prop.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Prop.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Relations.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Relations.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_RelationClasses.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_RelationClasses.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_RelationPairs.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_RelationPairs.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidClass.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidClass.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidDec.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidDec.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidTactics.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidTactics.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Classes/CEquivalence.glob +%%OCAML_SITELIBDIR%%/coq/theories/Classes/CEquivalence.v +%%OCAML_SITELIBDIR%%/coq/theories/Classes/CEquivalence.vo +%%OCAML_SITELIBDIR%%/coq/theories/Classes/CEquivalence.vos +%%OCAML_SITELIBDIR%%/coq/theories/Classes/CMorphisms.glob +%%OCAML_SITELIBDIR%%/coq/theories/Classes/CMorphisms.v +%%OCAML_SITELIBDIR%%/coq/theories/Classes/CMorphisms.vo +%%OCAML_SITELIBDIR%%/coq/theories/Classes/CMorphisms.vos +%%OCAML_SITELIBDIR%%/coq/theories/Classes/CRelationClasses.glob +%%OCAML_SITELIBDIR%%/coq/theories/Classes/CRelationClasses.v +%%OCAML_SITELIBDIR%%/coq/theories/Classes/CRelationClasses.vo +%%OCAML_SITELIBDIR%%/coq/theories/Classes/CRelationClasses.vos +%%OCAML_SITELIBDIR%%/coq/theories/Classes/DecidableClass.glob +%%OCAML_SITELIBDIR%%/coq/theories/Classes/DecidableClass.v +%%OCAML_SITELIBDIR%%/coq/theories/Classes/DecidableClass.vo +%%OCAML_SITELIBDIR%%/coq/theories/Classes/DecidableClass.vos +%%OCAML_SITELIBDIR%%/coq/theories/Classes/EquivDec.glob +%%OCAML_SITELIBDIR%%/coq/theories/Classes/EquivDec.v +%%OCAML_SITELIBDIR%%/coq/theories/Classes/EquivDec.vo +%%OCAML_SITELIBDIR%%/coq/theories/Classes/EquivDec.vos +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Equivalence.glob +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Equivalence.v +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Equivalence.vo +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Equivalence.vos +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Init.glob +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Init.v +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Init.vo +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Init.vos +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Morphisms.glob +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Morphisms.v +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Morphisms.vo +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Morphisms.vos +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Morphisms_Prop.glob +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Morphisms_Prop.v +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Morphisms_Prop.vo +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Morphisms_Prop.vos +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Morphisms_Relations.glob +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Morphisms_Relations.v +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Morphisms_Relations.vo +%%OCAML_SITELIBDIR%%/coq/theories/Classes/Morphisms_Relations.vos +%%OCAML_SITELIBDIR%%/coq/theories/Classes/RelationClasses.glob +%%OCAML_SITELIBDIR%%/coq/theories/Classes/RelationClasses.v +%%OCAML_SITELIBDIR%%/coq/theories/Classes/RelationClasses.vo +%%OCAML_SITELIBDIR%%/coq/theories/Classes/RelationClasses.vos +%%OCAML_SITELIBDIR%%/coq/theories/Classes/RelationPairs.glob +%%OCAML_SITELIBDIR%%/coq/theories/Classes/RelationPairs.v +%%OCAML_SITELIBDIR%%/coq/theories/Classes/RelationPairs.vo +%%OCAML_SITELIBDIR%%/coq/theories/Classes/RelationPairs.vos +%%OCAML_SITELIBDIR%%/coq/theories/Classes/SetoidClass.glob +%%OCAML_SITELIBDIR%%/coq/theories/Classes/SetoidClass.v +%%OCAML_SITELIBDIR%%/coq/theories/Classes/SetoidClass.vo +%%OCAML_SITELIBDIR%%/coq/theories/Classes/SetoidClass.vos +%%OCAML_SITELIBDIR%%/coq/theories/Classes/SetoidDec.glob +%%OCAML_SITELIBDIR%%/coq/theories/Classes/SetoidDec.v +%%OCAML_SITELIBDIR%%/coq/theories/Classes/SetoidDec.vo +%%OCAML_SITELIBDIR%%/coq/theories/Classes/SetoidDec.vos +%%OCAML_SITELIBDIR%%/coq/theories/Classes/SetoidTactics.glob +%%OCAML_SITELIBDIR%%/coq/theories/Classes/SetoidTactics.v +%%OCAML_SITELIBDIR%%/coq/theories/Classes/SetoidTactics.vo +%%OCAML_SITELIBDIR%%/coq/theories/Classes/SetoidTactics.vos +%%OCAML_SITELIBDIR%%/coq/theories/Compat/.coq-native/NCoq_Compat_AdmitAxiom.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Compat/.coq-native/NCoq_Compat_AdmitAxiom.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Compat/.coq-native/NCoq_Compat_Coq817.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Compat/.coq-native/NCoq_Compat_Coq817.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Compat/.coq-native/NCoq_Compat_Coq818.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Compat/.coq-native/NCoq_Compat_Coq818.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Compat/.coq-native/NCoq_Compat_Coq819.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Compat/.coq-native/NCoq_Compat_Coq819.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Compat/AdmitAxiom.glob +%%OCAML_SITELIBDIR%%/coq/theories/Compat/AdmitAxiom.v +%%OCAML_SITELIBDIR%%/coq/theories/Compat/AdmitAxiom.vo +%%OCAML_SITELIBDIR%%/coq/theories/Compat/AdmitAxiom.vos +%%OCAML_SITELIBDIR%%/coq/theories/Compat/Coq817.glob +%%OCAML_SITELIBDIR%%/coq/theories/Compat/Coq817.v +%%OCAML_SITELIBDIR%%/coq/theories/Compat/Coq817.vo +%%OCAML_SITELIBDIR%%/coq/theories/Compat/Coq817.vos +%%OCAML_SITELIBDIR%%/coq/theories/Compat/Coq818.glob +%%OCAML_SITELIBDIR%%/coq/theories/Compat/Coq818.v +%%OCAML_SITELIBDIR%%/coq/theories/Compat/Coq818.vo +%%OCAML_SITELIBDIR%%/coq/theories/Compat/Coq818.vos +%%OCAML_SITELIBDIR%%/coq/theories/Compat/Coq819.glob +%%OCAML_SITELIBDIR%%/coq/theories/Compat/Coq819.v +%%OCAML_SITELIBDIR%%/coq/theories/Compat/Coq819.vo +%%OCAML_SITELIBDIR%%/coq/theories/Compat/Coq819.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FMapAVL.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FMapAVL.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFacts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFacts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFullAVL.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFullAVL.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FMapInterface.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FMapInterface.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FMapList.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FMapList.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FMapPositive.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FMapPositive.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FMapWeakList.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FMapWeakList.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FMaps.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FMaps.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetAVL.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetAVL.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetBridge.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetBridge.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetCompat.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetCompat.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetDecide.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetDecide.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetEqProperties.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetEqProperties.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetFacts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetFacts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetInterface.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetInterface.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetList.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetList.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetPositive.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetPositive.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetProperties.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetProperties.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetToFiniteSet.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetToFiniteSet.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetWeakList.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSetWeakList.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSets.cmi +%%OCAML_SITELIBDIR%%/coq/theories/FSets/.coq-native/NCoq_FSets_FSets.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapAVL.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapAVL.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapAVL.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapAVL.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapFacts.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapFacts.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapFacts.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapFacts.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapFullAVL.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapFullAVL.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapFullAVL.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapFullAVL.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapInterface.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapInterface.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapInterface.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapInterface.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapList.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapList.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapList.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapList.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapPositive.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapPositive.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapPositive.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapPositive.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapWeakList.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapWeakList.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapWeakList.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMapWeakList.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMaps.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMaps.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMaps.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FMaps.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetAVL.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetAVL.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetAVL.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetAVL.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetBridge.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetBridge.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetBridge.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetBridge.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetCompat.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetCompat.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetCompat.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetCompat.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetDecide.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetDecide.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetDecide.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetDecide.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetEqProperties.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetEqProperties.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetEqProperties.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetEqProperties.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetFacts.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetFacts.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetFacts.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetFacts.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetInterface.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetInterface.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetInterface.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetInterface.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetList.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetList.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetList.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetList.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetPositive.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetPositive.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetPositive.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetPositive.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetProperties.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetProperties.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetProperties.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetProperties.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetToFiniteSet.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetToFiniteSet.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetToFiniteSet.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetToFiniteSet.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetWeakList.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetWeakList.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetWeakList.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSetWeakList.vos +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSets.glob +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSets.v +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSets.vo +%%OCAML_SITELIBDIR%%/coq/theories/FSets/FSets.vos +%%OCAML_SITELIBDIR%%/coq/theories/Floats/.coq-native/NCoq_Floats_FloatAxioms.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Floats/.coq-native/NCoq_Floats_FloatAxioms.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Floats/.coq-native/NCoq_Floats_FloatClass.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Floats/.coq-native/NCoq_Floats_FloatClass.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Floats/.coq-native/NCoq_Floats_FloatLemmas.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Floats/.coq-native/NCoq_Floats_FloatLemmas.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Floats/.coq-native/NCoq_Floats_FloatOps.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Floats/.coq-native/NCoq_Floats_FloatOps.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Floats/.coq-native/NCoq_Floats_Floats.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Floats/.coq-native/NCoq_Floats_Floats.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Floats/.coq-native/NCoq_Floats_PrimFloat.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Floats/.coq-native/NCoq_Floats_PrimFloat.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Floats/.coq-native/NCoq_Floats_SpecFloat.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Floats/.coq-native/NCoq_Floats_SpecFloat.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Floats/FloatAxioms.glob +%%OCAML_SITELIBDIR%%/coq/theories/Floats/FloatAxioms.v +%%OCAML_SITELIBDIR%%/coq/theories/Floats/FloatAxioms.vo +%%OCAML_SITELIBDIR%%/coq/theories/Floats/FloatAxioms.vos +%%OCAML_SITELIBDIR%%/coq/theories/Floats/FloatClass.glob +%%OCAML_SITELIBDIR%%/coq/theories/Floats/FloatClass.v +%%OCAML_SITELIBDIR%%/coq/theories/Floats/FloatClass.vo +%%OCAML_SITELIBDIR%%/coq/theories/Floats/FloatClass.vos +%%OCAML_SITELIBDIR%%/coq/theories/Floats/FloatLemmas.glob +%%OCAML_SITELIBDIR%%/coq/theories/Floats/FloatLemmas.v +%%OCAML_SITELIBDIR%%/coq/theories/Floats/FloatLemmas.vo +%%OCAML_SITELIBDIR%%/coq/theories/Floats/FloatLemmas.vos +%%OCAML_SITELIBDIR%%/coq/theories/Floats/FloatOps.glob +%%OCAML_SITELIBDIR%%/coq/theories/Floats/FloatOps.v +%%OCAML_SITELIBDIR%%/coq/theories/Floats/FloatOps.vo +%%OCAML_SITELIBDIR%%/coq/theories/Floats/FloatOps.vos +%%OCAML_SITELIBDIR%%/coq/theories/Floats/Floats.glob +%%OCAML_SITELIBDIR%%/coq/theories/Floats/Floats.v +%%OCAML_SITELIBDIR%%/coq/theories/Floats/Floats.vo +%%OCAML_SITELIBDIR%%/coq/theories/Floats/Floats.vos +%%OCAML_SITELIBDIR%%/coq/theories/Floats/PrimFloat.glob +%%OCAML_SITELIBDIR%%/coq/theories/Floats/PrimFloat.v +%%OCAML_SITELIBDIR%%/coq/theories/Floats/PrimFloat.vo +%%OCAML_SITELIBDIR%%/coq/theories/Floats/PrimFloat.vos +%%OCAML_SITELIBDIR%%/coq/theories/Floats/SpecFloat.glob +%%OCAML_SITELIBDIR%%/coq/theories/Floats/SpecFloat.v +%%OCAML_SITELIBDIR%%/coq/theories/Floats/SpecFloat.vo +%%OCAML_SITELIBDIR%%/coq/theories/Floats/SpecFloat.vos +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Byte.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Byte.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Datatypes.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Datatypes.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Decimal.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Decimal.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Hexadecimal.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Hexadecimal.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Logic.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Logic.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Ltac.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Ltac.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Nat.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Nat.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Notations.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Notations.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Number.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Number.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Peano.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Peano.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Prelude.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Prelude.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Specif.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Specif.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Tactics.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Tactics.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Tauto.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Tauto.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Wf.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Init/.coq-native/NCoq_Init_Wf.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Init/Byte.glob +%%OCAML_SITELIBDIR%%/coq/theories/Init/Byte.v +%%OCAML_SITELIBDIR%%/coq/theories/Init/Byte.vo +%%OCAML_SITELIBDIR%%/coq/theories/Init/Byte.vos +%%OCAML_SITELIBDIR%%/coq/theories/Init/Datatypes.glob +%%OCAML_SITELIBDIR%%/coq/theories/Init/Datatypes.v +%%OCAML_SITELIBDIR%%/coq/theories/Init/Datatypes.vo +%%OCAML_SITELIBDIR%%/coq/theories/Init/Datatypes.vos +%%OCAML_SITELIBDIR%%/coq/theories/Init/Decimal.glob +%%OCAML_SITELIBDIR%%/coq/theories/Init/Decimal.v +%%OCAML_SITELIBDIR%%/coq/theories/Init/Decimal.vo +%%OCAML_SITELIBDIR%%/coq/theories/Init/Decimal.vos +%%OCAML_SITELIBDIR%%/coq/theories/Init/Hexadecimal.glob +%%OCAML_SITELIBDIR%%/coq/theories/Init/Hexadecimal.v +%%OCAML_SITELIBDIR%%/coq/theories/Init/Hexadecimal.vo +%%OCAML_SITELIBDIR%%/coq/theories/Init/Hexadecimal.vos +%%OCAML_SITELIBDIR%%/coq/theories/Init/Logic.glob +%%OCAML_SITELIBDIR%%/coq/theories/Init/Logic.v +%%OCAML_SITELIBDIR%%/coq/theories/Init/Logic.vo +%%OCAML_SITELIBDIR%%/coq/theories/Init/Logic.vos +%%OCAML_SITELIBDIR%%/coq/theories/Init/Ltac.glob +%%OCAML_SITELIBDIR%%/coq/theories/Init/Ltac.v +%%OCAML_SITELIBDIR%%/coq/theories/Init/Ltac.vo +%%OCAML_SITELIBDIR%%/coq/theories/Init/Ltac.vos +%%OCAML_SITELIBDIR%%/coq/theories/Init/Nat.glob +%%OCAML_SITELIBDIR%%/coq/theories/Init/Nat.v +%%OCAML_SITELIBDIR%%/coq/theories/Init/Nat.vo +%%OCAML_SITELIBDIR%%/coq/theories/Init/Nat.vos +%%OCAML_SITELIBDIR%%/coq/theories/Init/Notations.glob +%%OCAML_SITELIBDIR%%/coq/theories/Init/Notations.v +%%OCAML_SITELIBDIR%%/coq/theories/Init/Notations.vo +%%OCAML_SITELIBDIR%%/coq/theories/Init/Notations.vos +%%OCAML_SITELIBDIR%%/coq/theories/Init/Number.glob +%%OCAML_SITELIBDIR%%/coq/theories/Init/Number.v +%%OCAML_SITELIBDIR%%/coq/theories/Init/Number.vo +%%OCAML_SITELIBDIR%%/coq/theories/Init/Number.vos +%%OCAML_SITELIBDIR%%/coq/theories/Init/Peano.glob +%%OCAML_SITELIBDIR%%/coq/theories/Init/Peano.v +%%OCAML_SITELIBDIR%%/coq/theories/Init/Peano.vo +%%OCAML_SITELIBDIR%%/coq/theories/Init/Peano.vos +%%OCAML_SITELIBDIR%%/coq/theories/Init/Prelude.glob +%%OCAML_SITELIBDIR%%/coq/theories/Init/Prelude.v +%%OCAML_SITELIBDIR%%/coq/theories/Init/Prelude.vo +%%OCAML_SITELIBDIR%%/coq/theories/Init/Prelude.vos +%%OCAML_SITELIBDIR%%/coq/theories/Init/Specif.glob +%%OCAML_SITELIBDIR%%/coq/theories/Init/Specif.v +%%OCAML_SITELIBDIR%%/coq/theories/Init/Specif.vo +%%OCAML_SITELIBDIR%%/coq/theories/Init/Specif.vos +%%OCAML_SITELIBDIR%%/coq/theories/Init/Tactics.glob +%%OCAML_SITELIBDIR%%/coq/theories/Init/Tactics.v +%%OCAML_SITELIBDIR%%/coq/theories/Init/Tactics.vo +%%OCAML_SITELIBDIR%%/coq/theories/Init/Tactics.vos +%%OCAML_SITELIBDIR%%/coq/theories/Init/Tauto.glob +%%OCAML_SITELIBDIR%%/coq/theories/Init/Tauto.v +%%OCAML_SITELIBDIR%%/coq/theories/Init/Tauto.vo +%%OCAML_SITELIBDIR%%/coq/theories/Init/Tauto.vos +%%OCAML_SITELIBDIR%%/coq/theories/Init/Wf.glob +%%OCAML_SITELIBDIR%%/coq/theories/Init/Wf.v +%%OCAML_SITELIBDIR%%/coq/theories/Init/Wf.vo +%%OCAML_SITELIBDIR%%/coq/theories/Init/Wf.vos +%%OCAML_SITELIBDIR%%/coq/theories/Lists/.coq-native/NCoq_Lists_List.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Lists/.coq-native/NCoq_Lists_List.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Lists/.coq-native/NCoq_Lists_ListDec.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Lists/.coq-native/NCoq_Lists_ListDec.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Lists/.coq-native/NCoq_Lists_ListSet.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Lists/.coq-native/NCoq_Lists_ListSet.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Lists/.coq-native/NCoq_Lists_ListTactics.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Lists/.coq-native/NCoq_Lists_ListTactics.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidList.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidList.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidPermutation.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidPermutation.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Lists/.coq-native/NCoq_Lists_StreamMemo.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Lists/.coq-native/NCoq_Lists_StreamMemo.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Lists/.coq-native/NCoq_Lists_Streams.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Lists/.coq-native/NCoq_Lists_Streams.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Lists/List.glob +%%OCAML_SITELIBDIR%%/coq/theories/Lists/List.v +%%OCAML_SITELIBDIR%%/coq/theories/Lists/List.vo +%%OCAML_SITELIBDIR%%/coq/theories/Lists/List.vos +%%OCAML_SITELIBDIR%%/coq/theories/Lists/ListDec.glob +%%OCAML_SITELIBDIR%%/coq/theories/Lists/ListDec.v +%%OCAML_SITELIBDIR%%/coq/theories/Lists/ListDec.vo +%%OCAML_SITELIBDIR%%/coq/theories/Lists/ListDec.vos +%%OCAML_SITELIBDIR%%/coq/theories/Lists/ListSet.glob +%%OCAML_SITELIBDIR%%/coq/theories/Lists/ListSet.v +%%OCAML_SITELIBDIR%%/coq/theories/Lists/ListSet.vo +%%OCAML_SITELIBDIR%%/coq/theories/Lists/ListSet.vos +%%OCAML_SITELIBDIR%%/coq/theories/Lists/ListTactics.glob +%%OCAML_SITELIBDIR%%/coq/theories/Lists/ListTactics.v +%%OCAML_SITELIBDIR%%/coq/theories/Lists/ListTactics.vo +%%OCAML_SITELIBDIR%%/coq/theories/Lists/ListTactics.vos +%%OCAML_SITELIBDIR%%/coq/theories/Lists/SetoidList.glob +%%OCAML_SITELIBDIR%%/coq/theories/Lists/SetoidList.v +%%OCAML_SITELIBDIR%%/coq/theories/Lists/SetoidList.vo +%%OCAML_SITELIBDIR%%/coq/theories/Lists/SetoidList.vos +%%OCAML_SITELIBDIR%%/coq/theories/Lists/SetoidPermutation.glob +%%OCAML_SITELIBDIR%%/coq/theories/Lists/SetoidPermutation.v +%%OCAML_SITELIBDIR%%/coq/theories/Lists/SetoidPermutation.vo +%%OCAML_SITELIBDIR%%/coq/theories/Lists/SetoidPermutation.vos +%%OCAML_SITELIBDIR%%/coq/theories/Lists/StreamMemo.glob +%%OCAML_SITELIBDIR%%/coq/theories/Lists/StreamMemo.v +%%OCAML_SITELIBDIR%%/coq/theories/Lists/StreamMemo.vo +%%OCAML_SITELIBDIR%%/coq/theories/Lists/StreamMemo.vos +%%OCAML_SITELIBDIR%%/coq/theories/Lists/Streams.glob +%%OCAML_SITELIBDIR%%/coq/theories/Lists/Streams.v +%%OCAML_SITELIBDIR%%/coq/theories/Lists/Streams.vo +%%OCAML_SITELIBDIR%%/coq/theories/Lists/Streams.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Adjointification.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Adjointification.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Berardi.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Berardi.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ChoiceFacts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ChoiceFacts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Classical.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Classical.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalChoice.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalChoice.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalDescription.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalDescription.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalEpsilon.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalEpsilon.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalFacts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalFacts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalUniqueChoice.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalUniqueChoice.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Pred_Type.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Pred_Type.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Prop.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Prop.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ConstructiveEpsilon.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ConstructiveEpsilon.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Decidable.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Decidable.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Description.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Description.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Diaconescu.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Diaconescu.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Epsilon.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Epsilon.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_EqdepFacts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_EqdepFacts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep_dec.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep_dec.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalFunctionRepresentative.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalFunctionRepresentative.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalityFacts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalityFacts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_FinFun.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_FinFun.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_FunctionalExtensionality.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_FunctionalExtensionality.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_HLevels.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_HLevels.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Hurkens.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_Hurkens.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_IndefiniteDescription.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_IndefiniteDescription.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_JMeq.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_JMeq.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevance.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevance.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevanceFacts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevanceFacts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_PropExtensionality.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_PropExtensionality.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_PropExtensionalityFacts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_PropExtensionalityFacts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_PropFacts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_PropFacts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_RelationalChoice.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_RelationalChoice.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_SetIsType.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_SetIsType.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_SetoidChoice.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_SetoidChoice.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_StrictProp.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_StrictProp.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_WKL.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_WKL.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_WeakFan.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Logic/.coq-native/NCoq_Logic_WeakFan.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Adjointification.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Adjointification.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Adjointification.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Adjointification.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Berardi.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Berardi.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Berardi.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Berardi.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ChoiceFacts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ChoiceFacts.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ChoiceFacts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ChoiceFacts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Classical.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Classical.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Classical.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Classical.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalChoice.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalChoice.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalChoice.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalChoice.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalDescription.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalDescription.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalDescription.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalDescription.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalEpsilon.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalEpsilon.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalEpsilon.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalEpsilon.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalFacts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalFacts.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalFacts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalFacts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalUniqueChoice.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalUniqueChoice.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalUniqueChoice.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ClassicalUniqueChoice.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Classical_Pred_Type.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Classical_Pred_Type.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Classical_Pred_Type.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Classical_Pred_Type.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Classical_Prop.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Classical_Prop.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Classical_Prop.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Classical_Prop.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ConstructiveEpsilon.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ConstructiveEpsilon.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ConstructiveEpsilon.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ConstructiveEpsilon.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Decidable.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Decidable.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Decidable.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Decidable.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Description.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Description.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Description.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Description.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Diaconescu.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Diaconescu.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Diaconescu.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Diaconescu.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Epsilon.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Epsilon.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Epsilon.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Epsilon.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Eqdep.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Eqdep.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Eqdep.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Eqdep.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/EqdepFacts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/EqdepFacts.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/EqdepFacts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/EqdepFacts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Eqdep_dec.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Eqdep_dec.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Eqdep_dec.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Eqdep_dec.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ExtensionalFunctionRepresentative.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ExtensionalFunctionRepresentative.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ExtensionalFunctionRepresentative.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ExtensionalFunctionRepresentative.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ExtensionalityFacts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ExtensionalityFacts.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ExtensionalityFacts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ExtensionalityFacts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/FinFun.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/FinFun.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/FinFun.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/FinFun.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/FunctionalExtensionality.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/FunctionalExtensionality.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/FunctionalExtensionality.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/FunctionalExtensionality.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/HLevels.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/HLevels.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/HLevels.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/HLevels.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Hurkens.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Hurkens.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Hurkens.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/Hurkens.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/IndefiniteDescription.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/IndefiniteDescription.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/IndefiniteDescription.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/IndefiniteDescription.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/JMeq.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/JMeq.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/JMeq.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/JMeq.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ProofIrrelevance.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ProofIrrelevance.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ProofIrrelevance.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ProofIrrelevance.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ProofIrrelevanceFacts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ProofIrrelevanceFacts.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ProofIrrelevanceFacts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/ProofIrrelevanceFacts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/PropExtensionality.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/PropExtensionality.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/PropExtensionality.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/PropExtensionality.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/PropExtensionalityFacts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/PropExtensionalityFacts.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/PropExtensionalityFacts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/PropExtensionalityFacts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/PropFacts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/PropFacts.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/PropFacts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/PropFacts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/RelationalChoice.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/RelationalChoice.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/RelationalChoice.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/RelationalChoice.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/SetIsType.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/SetIsType.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/SetIsType.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/SetIsType.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/SetoidChoice.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/SetoidChoice.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/SetoidChoice.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/SetoidChoice.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/StrictProp.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/StrictProp.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/StrictProp.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/StrictProp.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/WKL.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/WKL.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/WKL.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/WKL.vos +%%OCAML_SITELIBDIR%%/coq/theories/Logic/WeakFan.glob +%%OCAML_SITELIBDIR%%/coq/theories/Logic/WeakFan.v +%%OCAML_SITELIBDIR%%/coq/theories/Logic/WeakFan.vo +%%OCAML_SITELIBDIR%%/coq/theories/Logic/WeakFan.vos +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetAVL.cmi +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetAVL.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetDecide.cmi +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetDecide.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetEqProperties.cmi +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetEqProperties.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetFacts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetFacts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetGenTree.cmi +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetGenTree.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetInterface.cmi +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetInterface.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetList.cmi +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetList.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetPositive.cmi +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetPositive.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetProperties.cmi +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetProperties.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetRBT.cmi +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetRBT.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetToFiniteSet.cmi +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetToFiniteSet.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetWeakList.cmi +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSetWeakList.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSets.cmi +%%OCAML_SITELIBDIR%%/coq/theories/MSets/.coq-native/NCoq_MSets_MSets.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetAVL.glob +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetAVL.v +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetAVL.vo +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetAVL.vos +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetDecide.glob +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetDecide.v +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetDecide.vo +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetDecide.vos +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetEqProperties.glob +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetEqProperties.v +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetEqProperties.vo +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetEqProperties.vos +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetFacts.glob +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetFacts.v +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetFacts.vo +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetFacts.vos +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetGenTree.glob +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetGenTree.v +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetGenTree.vo +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetGenTree.vos +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetInterface.glob +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetInterface.v +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetInterface.vo +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetInterface.vos +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetList.glob +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetList.v +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetList.vo +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetList.vos +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetPositive.glob +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetPositive.v +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetPositive.vo +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetPositive.vos +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetProperties.glob +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetProperties.v +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetProperties.vo +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetProperties.vos +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetRBT.glob +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetRBT.v +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetRBT.vo +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetRBT.vos +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetToFiniteSet.glob +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetToFiniteSet.v +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetToFiniteSet.vo +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetToFiniteSet.vos +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetWeakList.glob +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetWeakList.v +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetWeakList.vo +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSetWeakList.vos +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSets.glob +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSets.v +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSets.vo +%%OCAML_SITELIBDIR%%/coq/theories/MSets/MSets.vos +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_BinNat.cmi +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_BinNat.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_BinNatDef.cmi +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_BinNatDef.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_NArith.cmi +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_NArith.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_Ndec.cmi +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_Ndec.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_Ndigits.cmi +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_Ndigits.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_Ndist.cmi +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_Ndist.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_Ndiv_def.cmi +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_Ndiv_def.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_Ngcd_def.cmi +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_Ngcd_def.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_Nnat.cmi +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_Nnat.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_Nsqrt_def.cmi +%%OCAML_SITELIBDIR%%/coq/theories/NArith/.coq-native/NCoq_NArith_Nsqrt_def.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/NArith/BinNat.glob +%%OCAML_SITELIBDIR%%/coq/theories/NArith/BinNat.v +%%OCAML_SITELIBDIR%%/coq/theories/NArith/BinNat.vo +%%OCAML_SITELIBDIR%%/coq/theories/NArith/BinNat.vos +%%OCAML_SITELIBDIR%%/coq/theories/NArith/BinNatDef.glob +%%OCAML_SITELIBDIR%%/coq/theories/NArith/BinNatDef.v +%%OCAML_SITELIBDIR%%/coq/theories/NArith/BinNatDef.vo +%%OCAML_SITELIBDIR%%/coq/theories/NArith/BinNatDef.vos +%%OCAML_SITELIBDIR%%/coq/theories/NArith/NArith.glob +%%OCAML_SITELIBDIR%%/coq/theories/NArith/NArith.v +%%OCAML_SITELIBDIR%%/coq/theories/NArith/NArith.vo +%%OCAML_SITELIBDIR%%/coq/theories/NArith/NArith.vos +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ndec.glob +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ndec.v +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ndec.vo +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ndec.vos +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ndigits.glob +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ndigits.v +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ndigits.vo +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ndigits.vos +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ndist.glob +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ndist.v +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ndist.vo +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ndist.vos +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ndiv_def.glob +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ndiv_def.v +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ndiv_def.vo +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ndiv_def.vos +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ngcd_def.glob +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ngcd_def.v +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ngcd_def.vo +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Ngcd_def.vos +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Nnat.glob +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Nnat.v +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Nnat.vo +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Nnat.vos +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Nsqrt_def.glob +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Nsqrt_def.v +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Nsqrt_def.vo +%%OCAML_SITELIBDIR%%/coq/theories/NArith/Nsqrt_def.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_AltBinNotations.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_AltBinNotations.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_BinNums.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_BinNums.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalFacts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalFacts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalN.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalN.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalNat.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalNat.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalPos.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalPos.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalQ.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalQ.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalR.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalR.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalString.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalString.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalZ.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalZ.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalFacts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalFacts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalN.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalN.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalNat.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalNat.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalPos.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalPos.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalQ.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalQ.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalR.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalR.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalString.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalString.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalZ.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalZ.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_NaryFunctions.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_NaryFunctions.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_NumPrelude.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/.coq-native/NCoq_Numbers_NumPrelude.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/AltBinNotations.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/AltBinNotations.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/AltBinNotations.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/AltBinNotations.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/BinNums.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/BinNums.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/BinNums.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/BinNums.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CarryType.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CarryType.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CyclicAxioms.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CyclicAxioms.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_DoubleType.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_DoubleType.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_NZCyclic.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_NZCyclic.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/CarryType.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/CarryType.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/CarryType.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/CarryType.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/DoubleType.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/DoubleType.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/DoubleType.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/DoubleType.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/NZCyclic.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/NZCyclic.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/NZCyclic.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Abstract/NZCyclic.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Cyclic63.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Cyclic63.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_PrimInt63.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_PrimInt63.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Ring63.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Ring63.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Sint63.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Sint63.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Uint63.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Uint63.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/Cyclic63.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/Cyclic63.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/Cyclic63.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/Cyclic63.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/PrimInt63.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/PrimInt63.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/PrimInt63.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/PrimInt63.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/Ring63.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/Ring63.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/Ring63.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/Ring63.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/Sint63.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/Sint63.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/Sint63.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/Sint63.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/Uint63.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/Uint63.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/Uint63.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Cyclic/Int63/Uint63.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalFacts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalFacts.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalFacts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalFacts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalN.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalN.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalN.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalN.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalNat.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalNat.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalNat.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalNat.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalPos.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalPos.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalPos.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalPos.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalQ.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalQ.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalQ.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalQ.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalR.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalR.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalR.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalR.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalString.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalString.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalString.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalString.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalZ.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalZ.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalZ.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/DecimalZ.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalFacts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalFacts.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalFacts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalFacts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalN.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalN.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalN.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalN.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalNat.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalNat.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalNat.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalNat.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalPos.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalPos.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalPos.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalPos.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalQ.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalQ.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalQ.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalQ.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalR.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalR.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalR.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalR.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalString.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalString.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalString.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalString.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalZ.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalZ.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalZ.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/HexadecimalZ.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAdd.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAdd.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAddOrder.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAddOrder.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAxioms.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAxioms.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBase.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBase.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBits.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBits.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivEucl.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivEucl.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivFloor.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivFloor.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivTrunc.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivTrunc.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZGcd.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZGcd.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLcm.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLcm.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMaxMin.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMaxMin.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMul.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMul.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMulOrder.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMulOrder.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZParity.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZParity.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZPow.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZPow.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZProperties.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZProperties.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZSgnAbs.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZSgnAbs.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZAdd.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZAdd.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZAdd.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZAdd.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZAddOrder.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZAddOrder.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZAddOrder.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZAddOrder.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZAxioms.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZAxioms.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZAxioms.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZAxioms.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZBase.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZBase.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZBase.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZBase.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZBits.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZBits.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZBits.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZBits.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZDivEucl.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZDivEucl.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZDivEucl.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZDivEucl.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZDivFloor.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZDivFloor.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZDivFloor.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZDivFloor.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZDivTrunc.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZDivTrunc.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZDivTrunc.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZDivTrunc.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZGcd.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZGcd.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZGcd.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZGcd.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZLcm.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZLcm.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZLcm.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZLcm.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZLt.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZLt.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZLt.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZLt.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZMaxMin.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZMaxMin.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZMaxMin.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZMaxMin.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZMul.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZMul.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZMul.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZMul.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZMulOrder.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZMulOrder.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZMulOrder.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZMulOrder.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZParity.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZParity.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZParity.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZParity.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZPow.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZPow.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZPow.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZPow.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZProperties.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZProperties.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZProperties.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZProperties.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZSgnAbs.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZSgnAbs.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZSgnAbs.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Abstract/ZSgnAbs.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Binary/.coq-native/NCoq_Numbers_Integer_Binary_ZBinary.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Binary/.coq-native/NCoq_Numbers_Integer_Binary_ZBinary.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Binary/ZBinary.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Binary/ZBinary.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Binary/ZBinary.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/Binary/ZBinary.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/NatPairs/.coq-native/NCoq_Numbers_Integer_NatPairs_ZNatPairs.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/NatPairs/.coq-native/NCoq_Numbers_Integer_NatPairs_ZNatPairs.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NaryFunctions.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NaryFunctions.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NaryFunctions.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NaryFunctions.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAdd.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAdd.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAddOrder.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAddOrder.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAxioms.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAxioms.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBase.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBase.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBits.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBits.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDiv.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDiv.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDomain.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDomain.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZGcd.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZGcd.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZLog.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZLog.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMul.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMul.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMulOrder.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMulOrder.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZOrder.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZOrder.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZParity.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZParity.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZPow.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZPow.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZProperties.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZProperties.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZSqrt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZSqrt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZAdd.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZAdd.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZAdd.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZAdd.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZAddOrder.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZAddOrder.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZAddOrder.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZAddOrder.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZAxioms.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZAxioms.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZAxioms.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZAxioms.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZBase.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZBase.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZBase.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZBase.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZBits.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZBits.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZBits.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZBits.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZDiv.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZDiv.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZDiv.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZDiv.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZDomain.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZDomain.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZDomain.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZDomain.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZGcd.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZGcd.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZGcd.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZGcd.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZLog.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZLog.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZLog.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZLog.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZMul.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZMul.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZMul.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZMul.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZMulOrder.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZMulOrder.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZMulOrder.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZMulOrder.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZOrder.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZOrder.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZOrder.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZOrder.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZParity.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZParity.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZParity.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZParity.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZPow.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZPow.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZPow.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZPow.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZProperties.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZProperties.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZProperties.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZProperties.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZSqrt.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZSqrt.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZSqrt.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NatInt/NZSqrt.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAdd.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAdd.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAddOrder.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAddOrder.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAxioms.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAxioms.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBase.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBase.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBits.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBits.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDefOps.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDefOps.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv0.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv0.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NGcd.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NGcd.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NIso.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NIso.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm0.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm0.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLog.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLog.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMaxMin.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMaxMin.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMulOrder.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMulOrder.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NOrder.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NOrder.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NParity.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NParity.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NPow.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NPow.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NProperties.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NProperties.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSqrt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSqrt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NStrongRec.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NStrongRec.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSub.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSub.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NAdd.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NAdd.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NAdd.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NAdd.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NAddOrder.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NAddOrder.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NAddOrder.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NAddOrder.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NAxioms.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NAxioms.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NAxioms.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NAxioms.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NBase.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NBase.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NBase.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NBase.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NBits.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NBits.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NBits.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NBits.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NDefOps.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NDefOps.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NDefOps.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NDefOps.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NDiv.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NDiv.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NDiv.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NDiv.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NDiv0.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NDiv0.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NDiv0.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NDiv0.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NGcd.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NGcd.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NGcd.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NGcd.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NIso.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NIso.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NIso.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NIso.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NLcm.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NLcm.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NLcm.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NLcm.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NLcm0.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NLcm0.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NLcm0.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NLcm0.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NLog.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NLog.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NLog.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NLog.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NMaxMin.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NMaxMin.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NMaxMin.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NMaxMin.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NMulOrder.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NMulOrder.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NMulOrder.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NMulOrder.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NOrder.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NOrder.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NOrder.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NOrder.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NParity.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NParity.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NParity.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NParity.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NPow.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NPow.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NPow.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NPow.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NProperties.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NProperties.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NProperties.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NProperties.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NSqrt.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NSqrt.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NSqrt.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NSqrt.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NStrongRec.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NStrongRec.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NStrongRec.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NStrongRec.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NSub.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NSub.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NSub.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Abstract/NSub.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Binary/.coq-native/NCoq_Numbers_Natural_Binary_NBinary.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Binary/.coq-native/NCoq_Numbers_Natural_Binary_NBinary.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Binary/NBinary.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Binary/NBinary.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Binary/NBinary.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/Natural/Binary/NBinary.vos +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NumPrelude.glob +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NumPrelude.v +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NumPrelude.vo +%%OCAML_SITELIBDIR%%/coq/theories/Numbers/NumPrelude.vos +%%OCAML_SITELIBDIR%%/coq/theories/PArith/.coq-native/NCoq_PArith_BinPos.cmi +%%OCAML_SITELIBDIR%%/coq/theories/PArith/.coq-native/NCoq_PArith_BinPos.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/PArith/.coq-native/NCoq_PArith_BinPosDef.cmi +%%OCAML_SITELIBDIR%%/coq/theories/PArith/.coq-native/NCoq_PArith_BinPosDef.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/PArith/.coq-native/NCoq_PArith_PArith.cmi +%%OCAML_SITELIBDIR%%/coq/theories/PArith/.coq-native/NCoq_PArith_PArith.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/PArith/.coq-native/NCoq_PArith_POrderedType.cmi +%%OCAML_SITELIBDIR%%/coq/theories/PArith/.coq-native/NCoq_PArith_POrderedType.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/PArith/.coq-native/NCoq_PArith_Pnat.cmi +%%OCAML_SITELIBDIR%%/coq/theories/PArith/.coq-native/NCoq_PArith_Pnat.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/PArith/BinPos.glob +%%OCAML_SITELIBDIR%%/coq/theories/PArith/BinPos.v +%%OCAML_SITELIBDIR%%/coq/theories/PArith/BinPos.vo +%%OCAML_SITELIBDIR%%/coq/theories/PArith/BinPos.vos +%%OCAML_SITELIBDIR%%/coq/theories/PArith/BinPosDef.glob +%%OCAML_SITELIBDIR%%/coq/theories/PArith/BinPosDef.v +%%OCAML_SITELIBDIR%%/coq/theories/PArith/BinPosDef.vo +%%OCAML_SITELIBDIR%%/coq/theories/PArith/BinPosDef.vos +%%OCAML_SITELIBDIR%%/coq/theories/PArith/PArith.glob +%%OCAML_SITELIBDIR%%/coq/theories/PArith/PArith.v +%%OCAML_SITELIBDIR%%/coq/theories/PArith/PArith.vo +%%OCAML_SITELIBDIR%%/coq/theories/PArith/PArith.vos +%%OCAML_SITELIBDIR%%/coq/theories/PArith/POrderedType.glob +%%OCAML_SITELIBDIR%%/coq/theories/PArith/POrderedType.v +%%OCAML_SITELIBDIR%%/coq/theories/PArith/POrderedType.vo +%%OCAML_SITELIBDIR%%/coq/theories/PArith/POrderedType.vos +%%OCAML_SITELIBDIR%%/coq/theories/PArith/Pnat.glob +%%OCAML_SITELIBDIR%%/coq/theories/PArith/Pnat.v +%%OCAML_SITELIBDIR%%/coq/theories/PArith/Pnat.vo +%%OCAML_SITELIBDIR%%/coq/theories/PArith/Pnat.vos +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Basics.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Basics.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Combinators.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Combinators.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Equality.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Equality.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Program.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Program.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Subset.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Subset.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Syntax.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Syntax.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Tactics.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Tactics.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Utils.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Utils.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Wf.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Program/.coq-native/NCoq_Program_Wf.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Program/Basics.glob +%%OCAML_SITELIBDIR%%/coq/theories/Program/Basics.v +%%OCAML_SITELIBDIR%%/coq/theories/Program/Basics.vo +%%OCAML_SITELIBDIR%%/coq/theories/Program/Basics.vos +%%OCAML_SITELIBDIR%%/coq/theories/Program/Combinators.glob +%%OCAML_SITELIBDIR%%/coq/theories/Program/Combinators.v +%%OCAML_SITELIBDIR%%/coq/theories/Program/Combinators.vo +%%OCAML_SITELIBDIR%%/coq/theories/Program/Combinators.vos +%%OCAML_SITELIBDIR%%/coq/theories/Program/Equality.glob +%%OCAML_SITELIBDIR%%/coq/theories/Program/Equality.v +%%OCAML_SITELIBDIR%%/coq/theories/Program/Equality.vo +%%OCAML_SITELIBDIR%%/coq/theories/Program/Equality.vos +%%OCAML_SITELIBDIR%%/coq/theories/Program/Program.glob +%%OCAML_SITELIBDIR%%/coq/theories/Program/Program.v +%%OCAML_SITELIBDIR%%/coq/theories/Program/Program.vo +%%OCAML_SITELIBDIR%%/coq/theories/Program/Program.vos +%%OCAML_SITELIBDIR%%/coq/theories/Program/Subset.glob +%%OCAML_SITELIBDIR%%/coq/theories/Program/Subset.v +%%OCAML_SITELIBDIR%%/coq/theories/Program/Subset.vo +%%OCAML_SITELIBDIR%%/coq/theories/Program/Subset.vos +%%OCAML_SITELIBDIR%%/coq/theories/Program/Syntax.glob +%%OCAML_SITELIBDIR%%/coq/theories/Program/Syntax.v +%%OCAML_SITELIBDIR%%/coq/theories/Program/Syntax.vo +%%OCAML_SITELIBDIR%%/coq/theories/Program/Syntax.vos +%%OCAML_SITELIBDIR%%/coq/theories/Program/Tactics.glob +%%OCAML_SITELIBDIR%%/coq/theories/Program/Tactics.v +%%OCAML_SITELIBDIR%%/coq/theories/Program/Tactics.vo +%%OCAML_SITELIBDIR%%/coq/theories/Program/Tactics.vos +%%OCAML_SITELIBDIR%%/coq/theories/Program/Utils.glob +%%OCAML_SITELIBDIR%%/coq/theories/Program/Utils.v +%%OCAML_SITELIBDIR%%/coq/theories/Program/Utils.vo +%%OCAML_SITELIBDIR%%/coq/theories/Program/Utils.vos +%%OCAML_SITELIBDIR%%/coq/theories/Program/Wf.glob +%%OCAML_SITELIBDIR%%/coq/theories/Program/Wf.v +%%OCAML_SITELIBDIR%%/coq/theories/Program/Wf.vo +%%OCAML_SITELIBDIR%%/coq/theories/Program/Wf.vos +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_QArith.cmi +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_QArith.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_QArith_base.cmi +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_QArith_base.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_QOrderedType.cmi +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_QOrderedType.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qabs.cmi +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qabs.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qcabs.cmi +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qcabs.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qcanon.cmi +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qcanon.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qfield.cmi +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qfield.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qminmax.cmi +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qminmax.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qpower.cmi +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qpower.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qreals.cmi +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qreals.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qreduction.cmi +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qreduction.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qring.cmi +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qring.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qround.cmi +%%OCAML_SITELIBDIR%%/coq/theories/QArith/.coq-native/NCoq_QArith_Qround.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/QArith/QArith.glob +%%OCAML_SITELIBDIR%%/coq/theories/QArith/QArith.v +%%OCAML_SITELIBDIR%%/coq/theories/QArith/QArith.vo +%%OCAML_SITELIBDIR%%/coq/theories/QArith/QArith.vos +%%OCAML_SITELIBDIR%%/coq/theories/QArith/QArith_base.glob +%%OCAML_SITELIBDIR%%/coq/theories/QArith/QArith_base.v +%%OCAML_SITELIBDIR%%/coq/theories/QArith/QArith_base.vo +%%OCAML_SITELIBDIR%%/coq/theories/QArith/QArith_base.vos +%%OCAML_SITELIBDIR%%/coq/theories/QArith/QOrderedType.glob +%%OCAML_SITELIBDIR%%/coq/theories/QArith/QOrderedType.v +%%OCAML_SITELIBDIR%%/coq/theories/QArith/QOrderedType.vo +%%OCAML_SITELIBDIR%%/coq/theories/QArith/QOrderedType.vos +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qabs.glob +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qabs.v +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qabs.vo +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qabs.vos +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qcabs.glob +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qcabs.v +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qcabs.vo +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qcabs.vos +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qcanon.glob +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qcanon.v +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qcanon.vo +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qcanon.vos +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qfield.glob +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qfield.v +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qfield.vo +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qfield.vos +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qminmax.glob +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qminmax.v +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qminmax.vo +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qminmax.vos +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qpower.glob +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qpower.v +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qpower.vo +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qpower.vos +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qreals.glob +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qreals.v +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qreals.vo +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qreals.vos +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qreduction.glob +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qreduction.v +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qreduction.vo +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qreduction.vos +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qring.glob +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qring.v +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qring.vo +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qring.vos +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qround.glob +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qround.v +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qround.vo +%%OCAML_SITELIBDIR%%/coq/theories/QArith/Qround.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Alembert.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Alembert.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_AltSeries.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_AltSeries.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_ArithProp.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_ArithProp.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Binomial.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Binomial.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Cauchy_prod.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Cauchy_prod.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_ClassicalConstructiveReals.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_ClassicalConstructiveReals.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_ClassicalDedekindReals.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_ClassicalDedekindReals.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_plus.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_plus.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_rel.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_rel.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_DiscrR.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_DiscrR.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Exp_prop.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Exp_prop.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Integration.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Integration.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_MVT.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_MVT.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Machin.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Machin.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_NewtonInt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_NewtonInt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_PSeries_reg.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_PSeries_reg.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_PartSum.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_PartSum.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_RIneq.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_RIneq.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_RList.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_RList.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_ROrderedType.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_ROrderedType.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_R_Ifp.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_R_Ifp.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqr.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqr.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqrt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqrt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis1.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis1.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis2.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis2.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis3.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis3.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis4.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis4.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis5.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis5.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis_reg.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis_reg.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Ratan.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Ratan.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Raxioms.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Raxioms.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rbase.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rbase.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rbasic_fun.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rbasic_fun.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rcomplete.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rcomplete.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rdefinitions.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rdefinitions.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rderiv.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rderiv.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Reals.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Reals.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rfunctions.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rfunctions.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rgeom.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rgeom.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt_SF.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt_SF.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rlimit.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rlimit.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rlogic.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rlogic.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rminmax.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rminmax.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rpow_def.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rpow_def.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rpower.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rpower.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rprod.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rprod.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rregisternames.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rregisternames.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rseries.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rseries.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rsigma.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rsigma.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rsqrt_def.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rsqrt_def.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtopology.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtopology.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo1.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo1.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_alt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_alt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_calc.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_calc.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_def.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_def.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_facts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_facts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_fun.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_fun.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_reg.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_reg.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Runcountable.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Runcountable.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_SeqProp.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_SeqProp.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_SeqSeries.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_SeqSeries.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_SplitAbsolu.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_SplitAbsolu.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_SplitRmult.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_SplitRmult.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Sqrt_reg.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/.coq-native/NCoq_Reals_Sqrt_reg.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveAbs.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveAbs.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveLUB.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveLUB.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveLimits.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveLimits.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveMinMax.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveMinMax.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructivePower.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructivePower.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveReals.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveReals.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveRealsMorphisms.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveRealsMorphisms.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveSum.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveSum.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveAbs.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveAbs.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveAbs.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveAbs.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveLUB.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveLUB.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveLUB.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveLUB.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveLimits.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveLimits.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveLimits.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveLimits.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveMinMax.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveMinMax.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveMinMax.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveMinMax.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructivePower.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructivePower.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructivePower.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructivePower.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveReals.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveReals.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveReals.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveReals.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveRealsMorphisms.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveRealsMorphisms.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveRealsMorphisms.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveRealsMorphisms.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveSum.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveSum.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveSum.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Abstract/ConstructiveSum.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Alembert.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Alembert.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Alembert.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Alembert.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/AltSeries.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/AltSeries.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/AltSeries.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/AltSeries.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/ArithProp.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/ArithProp.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/ArithProp.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/ArithProp.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Binomial.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Binomial.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Binomial.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Binomial.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyAbs.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyAbs.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyReals.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyReals.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyRealsMult.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyRealsMult.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveExtra.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveExtra.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveRcomplete.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveRcomplete.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_PosExtra.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_PosExtra.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_QExtra.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_QExtra.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveCauchyAbs.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveCauchyAbs.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveCauchyAbs.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveCauchyAbs.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveCauchyReals.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveCauchyReals.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveCauchyReals.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveCauchyReals.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveCauchyRealsMult.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveCauchyRealsMult.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveCauchyRealsMult.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveCauchyRealsMult.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveExtra.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveExtra.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveExtra.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveExtra.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveRcomplete.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveRcomplete.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveRcomplete.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/ConstructiveRcomplete.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/PosExtra.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/PosExtra.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/PosExtra.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/PosExtra.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/QExtra.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/QExtra.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/QExtra.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy/QExtra.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy_prod.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy_prod.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy_prod.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cauchy_prod.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/ClassicalConstructiveReals.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/ClassicalConstructiveReals.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/ClassicalConstructiveReals.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/ClassicalConstructiveReals.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/ClassicalDedekindReals.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/ClassicalDedekindReals.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/ClassicalDedekindReals.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/ClassicalDedekindReals.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cos_plus.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cos_plus.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cos_plus.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cos_plus.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cos_rel.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cos_rel.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cos_rel.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Cos_rel.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/DiscrR.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/DiscrR.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/DiscrR.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/DiscrR.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Exp_prop.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Exp_prop.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Exp_prop.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Exp_prop.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Integration.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Integration.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Integration.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Integration.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/MVT.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/MVT.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/MVT.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/MVT.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Machin.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Machin.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Machin.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Machin.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/NewtonInt.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/NewtonInt.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/NewtonInt.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/NewtonInt.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/PSeries_reg.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/PSeries_reg.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/PSeries_reg.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/PSeries_reg.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/PartSum.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/PartSum.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/PartSum.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/PartSum.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/RIneq.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/RIneq.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/RIneq.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/RIneq.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/RList.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/RList.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/RList.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/RList.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/ROrderedType.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/ROrderedType.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/ROrderedType.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/ROrderedType.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/R_Ifp.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/R_Ifp.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/R_Ifp.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/R_Ifp.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/R_sqr.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/R_sqr.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/R_sqr.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/R_sqr.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/R_sqrt.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/R_sqrt.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/R_sqrt.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/R_sqrt.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis1.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis1.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis1.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis1.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis2.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis2.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis2.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis2.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis3.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis3.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis3.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis3.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis4.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis4.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis4.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis4.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis5.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis5.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis5.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis5.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis_reg.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis_reg.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis_reg.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ranalysis_reg.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ratan.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ratan.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ratan.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Ratan.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Raxioms.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Raxioms.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Raxioms.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Raxioms.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rbase.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rbase.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rbase.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rbase.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rbasic_fun.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rbasic_fun.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rbasic_fun.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rbasic_fun.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rcomplete.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rcomplete.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rcomplete.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rcomplete.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rdefinitions.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rdefinitions.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rdefinitions.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rdefinitions.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rderiv.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rderiv.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rderiv.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rderiv.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Reals.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Reals.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Reals.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Reals.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rfunctions.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rfunctions.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rfunctions.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rfunctions.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rgeom.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rgeom.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rgeom.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rgeom.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/RiemannInt.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/RiemannInt.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/RiemannInt.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/RiemannInt.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/RiemannInt_SF.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/RiemannInt_SF.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/RiemannInt_SF.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/RiemannInt_SF.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rlimit.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rlimit.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rlimit.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rlimit.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rlogic.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rlogic.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rlogic.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rlogic.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rminmax.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rminmax.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rminmax.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rminmax.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rpow_def.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rpow_def.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rpow_def.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rpow_def.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rpower.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rpower.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rpower.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rpower.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rprod.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rprod.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rprod.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rprod.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rregisternames.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rregisternames.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rregisternames.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rregisternames.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rseries.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rseries.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rseries.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rseries.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rsigma.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rsigma.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rsigma.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rsigma.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rsqrt_def.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rsqrt_def.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rsqrt_def.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rsqrt_def.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtopology.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtopology.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtopology.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtopology.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo1.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo1.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo1.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo1.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_alt.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_alt.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_alt.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_alt.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_calc.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_calc.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_calc.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_calc.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_def.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_def.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_def.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_def.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_facts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_facts.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_facts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_facts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_fun.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_fun.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_fun.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_fun.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_reg.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_reg.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_reg.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Rtrigo_reg.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Runcountable.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Runcountable.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Runcountable.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Runcountable.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/SeqProp.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/SeqProp.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/SeqProp.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/SeqProp.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/SeqSeries.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/SeqSeries.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/SeqSeries.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/SeqSeries.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/SplitAbsolu.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/SplitAbsolu.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/SplitAbsolu.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/SplitAbsolu.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/SplitRmult.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/SplitRmult.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/SplitRmult.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/SplitRmult.vos +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Sqrt_reg.glob +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Sqrt_reg.v +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Sqrt_reg.vo +%%OCAML_SITELIBDIR%%/coq/theories/Reals/Sqrt_reg.vos +%%OCAML_SITELIBDIR%%/coq/theories/Relations/.coq-native/NCoq_Relations_Operators_Properties.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Relations/.coq-native/NCoq_Relations_Operators_Properties.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Definitions.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Definitions.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Operators.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Operators.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Relations/.coq-native/NCoq_Relations_Relations.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Relations/.coq-native/NCoq_Relations_Relations.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Relations/Operators_Properties.glob +%%OCAML_SITELIBDIR%%/coq/theories/Relations/Operators_Properties.v +%%OCAML_SITELIBDIR%%/coq/theories/Relations/Operators_Properties.vo +%%OCAML_SITELIBDIR%%/coq/theories/Relations/Operators_Properties.vos +%%OCAML_SITELIBDIR%%/coq/theories/Relations/Relation_Definitions.glob +%%OCAML_SITELIBDIR%%/coq/theories/Relations/Relation_Definitions.v +%%OCAML_SITELIBDIR%%/coq/theories/Relations/Relation_Definitions.vo +%%OCAML_SITELIBDIR%%/coq/theories/Relations/Relation_Definitions.vos +%%OCAML_SITELIBDIR%%/coq/theories/Relations/Relation_Operators.glob +%%OCAML_SITELIBDIR%%/coq/theories/Relations/Relation_Operators.v +%%OCAML_SITELIBDIR%%/coq/theories/Relations/Relation_Operators.vo +%%OCAML_SITELIBDIR%%/coq/theories/Relations/Relation_Operators.vos +%%OCAML_SITELIBDIR%%/coq/theories/Relations/Relations.glob +%%OCAML_SITELIBDIR%%/coq/theories/Relations/Relations.v +%%OCAML_SITELIBDIR%%/coq/theories/Relations/Relations.vo +%%OCAML_SITELIBDIR%%/coq/theories/Relations/Relations.vos +%%OCAML_SITELIBDIR%%/coq/theories/Setoids/.coq-native/NCoq_Setoids_Setoid.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Setoids/.coq-native/NCoq_Setoids_Setoid.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Setoids/Setoid.glob +%%OCAML_SITELIBDIR%%/coq/theories/Setoids/Setoid.v +%%OCAML_SITELIBDIR%%/coq/theories/Setoids/Setoid.vo +%%OCAML_SITELIBDIR%%/coq/theories/Setoids/Setoid.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Classical_sets.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Classical_sets.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Constructive_sets.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Constructive_sets.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Cpo.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Cpo.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Ensembles.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Ensembles.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets_facts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets_facts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Image.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Image.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Infinite_sets.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Infinite_sets.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Integers.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Integers.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Multiset.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Multiset.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Partial_Order.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Partial_Order.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Permut.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Permut.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_Classical_facts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_Classical_facts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_facts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_facts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1_facts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1_facts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2_facts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2_facts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3_facts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3_facts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Uniset.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sets/.coq-native/NCoq_Sets_Uniset.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Classical_sets.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Classical_sets.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Classical_sets.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Classical_sets.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Constructive_sets.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Constructive_sets.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Constructive_sets.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Constructive_sets.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Cpo.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Cpo.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Cpo.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Cpo.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Ensembles.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Ensembles.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Ensembles.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Ensembles.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Finite_sets.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Finite_sets.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Finite_sets.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Finite_sets.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Finite_sets_facts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Finite_sets_facts.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Finite_sets_facts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Finite_sets_facts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Image.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Image.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Image.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Image.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Infinite_sets.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Infinite_sets.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Infinite_sets.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Infinite_sets.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Integers.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Integers.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Integers.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Integers.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Multiset.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Multiset.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Multiset.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Multiset.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Partial_Order.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Partial_Order.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Partial_Order.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Partial_Order.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Permut.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Permut.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Permut.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Permut.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Powerset.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Powerset.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Powerset.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Powerset.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Powerset_Classical_facts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Powerset_Classical_facts.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Powerset_Classical_facts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Powerset_Classical_facts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Powerset_facts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Powerset_facts.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Powerset_facts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Powerset_facts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_1.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_1.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_1.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_1.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_1_facts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_1_facts.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_1_facts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_1_facts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_2.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_2.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_2.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_2.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_2_facts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_2_facts.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_2_facts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_2_facts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_3.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_3.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_3.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_3.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_3_facts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_3_facts.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_3_facts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Relations_3_facts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Uniset.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Uniset.v +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Uniset.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sets/Uniset.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/.coq-native/NCoq_Sorting_CPermutation.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/.coq-native/NCoq_Sorting_CPermutation.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/.coq-native/NCoq_Sorting_Heap.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/.coq-native/NCoq_Sorting_Heap.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/.coq-native/NCoq_Sorting_Mergesort.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/.coq-native/NCoq_Sorting_Mergesort.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutEq.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutEq.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutSetoid.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutSetoid.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/.coq-native/NCoq_Sorting_Permutation.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/.coq-native/NCoq_Sorting_Permutation.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorted.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorted.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorting.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorting.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/CPermutation.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/CPermutation.v +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/CPermutation.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/CPermutation.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Heap.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Heap.v +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Heap.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Heap.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Mergesort.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Mergesort.v +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Mergesort.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Mergesort.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/PermutEq.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/PermutEq.v +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/PermutEq.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/PermutEq.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/PermutSetoid.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/PermutSetoid.v +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/PermutSetoid.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/PermutSetoid.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Permutation.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Permutation.v +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Permutation.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Permutation.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Sorted.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Sorted.v +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Sorted.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Sorted.vos +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Sorting.glob +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Sorting.v +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Sorting.vo +%%OCAML_SITELIBDIR%%/coq/theories/Sorting/Sorting.vos +%%OCAML_SITELIBDIR%%/coq/theories/Strings/.coq-native/NCoq_Strings_Ascii.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Strings/.coq-native/NCoq_Strings_Ascii.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Strings/.coq-native/NCoq_Strings_BinaryString.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Strings/.coq-native/NCoq_Strings_BinaryString.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Strings/.coq-native/NCoq_Strings_Byte.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Strings/.coq-native/NCoq_Strings_Byte.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Strings/.coq-native/NCoq_Strings_ByteVector.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Strings/.coq-native/NCoq_Strings_ByteVector.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Strings/.coq-native/NCoq_Strings_HexString.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Strings/.coq-native/NCoq_Strings_HexString.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Strings/.coq-native/NCoq_Strings_OctalString.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Strings/.coq-native/NCoq_Strings_OctalString.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Strings/.coq-native/NCoq_Strings_String.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Strings/.coq-native/NCoq_Strings_String.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Strings/Ascii.glob +%%OCAML_SITELIBDIR%%/coq/theories/Strings/Ascii.v +%%OCAML_SITELIBDIR%%/coq/theories/Strings/Ascii.vo +%%OCAML_SITELIBDIR%%/coq/theories/Strings/Ascii.vos +%%OCAML_SITELIBDIR%%/coq/theories/Strings/BinaryString.glob +%%OCAML_SITELIBDIR%%/coq/theories/Strings/BinaryString.v +%%OCAML_SITELIBDIR%%/coq/theories/Strings/BinaryString.vo +%%OCAML_SITELIBDIR%%/coq/theories/Strings/BinaryString.vos +%%OCAML_SITELIBDIR%%/coq/theories/Strings/Byte.glob +%%OCAML_SITELIBDIR%%/coq/theories/Strings/Byte.v +%%OCAML_SITELIBDIR%%/coq/theories/Strings/Byte.vo +%%OCAML_SITELIBDIR%%/coq/theories/Strings/Byte.vos +%%OCAML_SITELIBDIR%%/coq/theories/Strings/ByteVector.glob +%%OCAML_SITELIBDIR%%/coq/theories/Strings/ByteVector.v +%%OCAML_SITELIBDIR%%/coq/theories/Strings/ByteVector.vo +%%OCAML_SITELIBDIR%%/coq/theories/Strings/ByteVector.vos +%%OCAML_SITELIBDIR%%/coq/theories/Strings/HexString.glob +%%OCAML_SITELIBDIR%%/coq/theories/Strings/HexString.v +%%OCAML_SITELIBDIR%%/coq/theories/Strings/HexString.vo +%%OCAML_SITELIBDIR%%/coq/theories/Strings/HexString.vos +%%OCAML_SITELIBDIR%%/coq/theories/Strings/OctalString.glob +%%OCAML_SITELIBDIR%%/coq/theories/Strings/OctalString.v +%%OCAML_SITELIBDIR%%/coq/theories/Strings/OctalString.vo +%%OCAML_SITELIBDIR%%/coq/theories/Strings/OctalString.vos +%%OCAML_SITELIBDIR%%/coq/theories/Strings/String.glob +%%OCAML_SITELIBDIR%%/coq/theories/Strings/String.v +%%OCAML_SITELIBDIR%%/coq/theories/Strings/String.vo +%%OCAML_SITELIBDIR%%/coq/theories/Strings/String.vos +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableType.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableType.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableTypeEx.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableTypeEx.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_Equalities.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_Equalities.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_EqualitiesFacts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_EqualitiesFacts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_GenericMinMax.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_GenericMinMax.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedType.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedType.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeAlt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeAlt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeEx.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeEx.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_Orders.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_Orders.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersAlt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersAlt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersEx.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersEx.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersFacts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersFacts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersLists.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersLists.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersTac.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersTac.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Structures/DecidableType.glob +%%OCAML_SITELIBDIR%%/coq/theories/Structures/DecidableType.v +%%OCAML_SITELIBDIR%%/coq/theories/Structures/DecidableType.vo +%%OCAML_SITELIBDIR%%/coq/theories/Structures/DecidableType.vos +%%OCAML_SITELIBDIR%%/coq/theories/Structures/DecidableTypeEx.glob +%%OCAML_SITELIBDIR%%/coq/theories/Structures/DecidableTypeEx.v +%%OCAML_SITELIBDIR%%/coq/theories/Structures/DecidableTypeEx.vo +%%OCAML_SITELIBDIR%%/coq/theories/Structures/DecidableTypeEx.vos +%%OCAML_SITELIBDIR%%/coq/theories/Structures/Equalities.glob +%%OCAML_SITELIBDIR%%/coq/theories/Structures/Equalities.v +%%OCAML_SITELIBDIR%%/coq/theories/Structures/Equalities.vo +%%OCAML_SITELIBDIR%%/coq/theories/Structures/Equalities.vos +%%OCAML_SITELIBDIR%%/coq/theories/Structures/EqualitiesFacts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Structures/EqualitiesFacts.v +%%OCAML_SITELIBDIR%%/coq/theories/Structures/EqualitiesFacts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Structures/EqualitiesFacts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Structures/GenericMinMax.glob +%%OCAML_SITELIBDIR%%/coq/theories/Structures/GenericMinMax.v +%%OCAML_SITELIBDIR%%/coq/theories/Structures/GenericMinMax.vo +%%OCAML_SITELIBDIR%%/coq/theories/Structures/GenericMinMax.vos +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrderedType.glob +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrderedType.v +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrderedType.vo +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrderedType.vos +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrderedTypeAlt.glob +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrderedTypeAlt.v +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrderedTypeAlt.vo +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrderedTypeAlt.vos +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrderedTypeEx.glob +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrderedTypeEx.v +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrderedTypeEx.vo +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrderedTypeEx.vos +%%OCAML_SITELIBDIR%%/coq/theories/Structures/Orders.glob +%%OCAML_SITELIBDIR%%/coq/theories/Structures/Orders.v +%%OCAML_SITELIBDIR%%/coq/theories/Structures/Orders.vo +%%OCAML_SITELIBDIR%%/coq/theories/Structures/Orders.vos +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersAlt.glob +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersAlt.v +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersAlt.vo +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersAlt.vos +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersEx.glob +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersEx.v +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersEx.vo +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersEx.vos +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersFacts.glob +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersFacts.v +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersFacts.vo +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersFacts.vos +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersLists.glob +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersLists.v +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersLists.vo +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersLists.vos +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersTac.glob +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersTac.v +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersTac.vo +%%OCAML_SITELIBDIR%%/coq/theories/Structures/OrdersTac.vos +%%OCAML_SITELIBDIR%%/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8_core.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8_core.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Unicode/Utf8.glob +%%OCAML_SITELIBDIR%%/coq/theories/Unicode/Utf8.v +%%OCAML_SITELIBDIR%%/coq/theories/Unicode/Utf8.vo +%%OCAML_SITELIBDIR%%/coq/theories/Unicode/Utf8.vos +%%OCAML_SITELIBDIR%%/coq/theories/Unicode/Utf8_core.glob +%%OCAML_SITELIBDIR%%/coq/theories/Unicode/Utf8_core.v +%%OCAML_SITELIBDIR%%/coq/theories/Unicode/Utf8_core.vo +%%OCAML_SITELIBDIR%%/coq/theories/Unicode/Utf8_core.vos +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/.coq-native/NCoq_Vectors_Fin.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/.coq-native/NCoq_Vectors_Fin.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/.coq-native/NCoq_Vectors_Vector.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/.coq-native/NCoq_Vectors_Vector.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorDef.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorDef.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorEq.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorEq.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorSpec.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorSpec.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/Fin.glob +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/Fin.v +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/Fin.vo +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/Fin.vos +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/Vector.glob +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/Vector.v +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/Vector.vo +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/Vector.vos +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/VectorDef.glob +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/VectorDef.v +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/VectorDef.vo +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/VectorDef.vos +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/VectorEq.glob +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/VectorEq.v +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/VectorEq.vo +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/VectorEq.vos +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/VectorSpec.glob +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/VectorSpec.v +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/VectorSpec.vo +%%OCAML_SITELIBDIR%%/coq/theories/Vectors/VectorSpec.vos +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Disjoint_Union.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Disjoint_Union.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inclusion.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inclusion.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inverse_Image.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inverse_Image.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Exponentiation.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Exponentiation.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Product.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Product.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Transitive_Closure.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Transitive_Closure.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Union.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Union.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Well_Ordering.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Well_Ordering.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Wellfounded.cmi +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Wellfounded.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Disjoint_Union.glob +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Disjoint_Union.v +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Disjoint_Union.vo +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Disjoint_Union.vos +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Inclusion.glob +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Inclusion.v +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Inclusion.vo +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Inclusion.vos +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Inverse_Image.glob +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Inverse_Image.v +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Inverse_Image.vo +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Inverse_Image.vos +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Lexicographic_Exponentiation.glob +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Lexicographic_Exponentiation.v +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Lexicographic_Exponentiation.vo +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Lexicographic_Exponentiation.vos +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Lexicographic_Product.glob +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Lexicographic_Product.v +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Lexicographic_Product.vo +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Lexicographic_Product.vos +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Transitive_Closure.glob +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Transitive_Closure.v +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Transitive_Closure.vo +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Transitive_Closure.vos +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Union.glob +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Union.v +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Union.vo +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Union.vos +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Well_Ordering.glob +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Well_Ordering.v +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Well_Ordering.vo +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Well_Ordering.vos +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Wellfounded.glob +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Wellfounded.v +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Wellfounded.vo +%%OCAML_SITELIBDIR%%/coq/theories/Wellfounded/Wellfounded.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinInt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinInt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinIntDef.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinIntDef.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Int.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Int.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Wf_Z.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Wf_Z.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_base.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_base.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_dec.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_dec.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zabs.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zabs.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbitwise.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbitwise.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbool.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbool.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcompare.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcompare.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcomplements.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcomplements.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdiv.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdiv.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeuclid.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeuclid.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeven.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeven.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zgcd_alt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zgcd_alt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zhints.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zhints.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmax.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmax.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmin.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmin.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zminmax.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zminmax.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmisc.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmisc.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znat.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znat.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znumtheory.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znumtheory.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zorder.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zorder.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_alt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_alt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_def.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_def.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_facts.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_facts.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpower.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpower.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zquot.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zquot.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zwf.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zwf.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_auxiliary.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/.coq-native/NCoq_ZArith_auxiliary.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/BinInt.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/BinInt.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/BinInt.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/BinInt.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/BinIntDef.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/BinIntDef.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/BinIntDef.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/BinIntDef.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Int.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Int.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Int.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Int.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Wf_Z.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Wf_Z.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Wf_Z.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Wf_Z.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/ZArith.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/ZArith.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/ZArith.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/ZArith.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/ZArith_base.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/ZArith_base.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/ZArith_base.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/ZArith_base.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/ZArith_dec.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/ZArith_dec.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/ZArith_dec.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/ZArith_dec.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zabs.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zabs.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zabs.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zabs.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zbitwise.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zbitwise.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zbitwise.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zbitwise.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zbool.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zbool.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zbool.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zbool.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zcompare.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zcompare.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zcompare.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zcompare.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zcomplements.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zcomplements.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zcomplements.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zcomplements.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zdiv.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zdiv.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zdiv.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zdiv.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zeuclid.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zeuclid.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zeuclid.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zeuclid.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zeven.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zeven.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zeven.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zeven.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zgcd_alt.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zgcd_alt.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zgcd_alt.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zgcd_alt.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zhints.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zhints.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zhints.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zhints.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zmax.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zmax.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zmax.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zmax.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zmin.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zmin.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zmin.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zmin.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zminmax.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zminmax.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zminmax.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zminmax.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zmisc.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zmisc.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zmisc.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zmisc.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Znat.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Znat.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Znat.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Znat.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Znumtheory.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Znumtheory.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Znumtheory.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Znumtheory.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zorder.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zorder.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zorder.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zorder.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zpow_alt.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zpow_alt.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zpow_alt.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zpow_alt.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zpow_def.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zpow_def.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zpow_def.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zpow_def.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zpow_facts.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zpow_facts.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zpow_facts.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zpow_facts.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zpower.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zpower.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zpower.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zpower.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zquot.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zquot.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zquot.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zquot.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zwf.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zwf.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zwf.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/Zwf.vos +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/auxiliary.glob +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/auxiliary.v +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/auxiliary.vo +%%OCAML_SITELIBDIR%%/coq/theories/ZArith/auxiliary.vos +%%OCAML_SITELIBDIR%%/coq/theories/btauto/.coq-native/NCoq_btauto_Algebra.cmi +%%OCAML_SITELIBDIR%%/coq/theories/btauto/.coq-native/NCoq_btauto_Algebra.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/btauto/.coq-native/NCoq_btauto_Btauto.cmi +%%OCAML_SITELIBDIR%%/coq/theories/btauto/.coq-native/NCoq_btauto_Btauto.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/btauto/.coq-native/NCoq_btauto_Reflect.cmi +%%OCAML_SITELIBDIR%%/coq/theories/btauto/.coq-native/NCoq_btauto_Reflect.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/btauto/Algebra.glob +%%OCAML_SITELIBDIR%%/coq/theories/btauto/Algebra.v +%%OCAML_SITELIBDIR%%/coq/theories/btauto/Algebra.vo +%%OCAML_SITELIBDIR%%/coq/theories/btauto/Algebra.vos +%%OCAML_SITELIBDIR%%/coq/theories/btauto/Btauto.glob +%%OCAML_SITELIBDIR%%/coq/theories/btauto/Btauto.v +%%OCAML_SITELIBDIR%%/coq/theories/btauto/Btauto.vo +%%OCAML_SITELIBDIR%%/coq/theories/btauto/Btauto.vos +%%OCAML_SITELIBDIR%%/coq/theories/btauto/Reflect.glob +%%OCAML_SITELIBDIR%%/coq/theories/btauto/Reflect.v +%%OCAML_SITELIBDIR%%/coq/theories/btauto/Reflect.vo +%%OCAML_SITELIBDIR%%/coq/theories/btauto/Reflect.vos +%%OCAML_SITELIBDIR%%/coq/theories/derive/.coq-native/NCoq_derive_Derive.cmi +%%OCAML_SITELIBDIR%%/coq/theories/derive/.coq-native/NCoq_derive_Derive.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/derive/Derive.glob +%%OCAML_SITELIBDIR%%/coq/theories/derive/Derive.v +%%OCAML_SITELIBDIR%%/coq/theories/derive/Derive.vo +%%OCAML_SITELIBDIR%%/coq/theories/derive/Derive.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellBasic.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellBasic.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInteger.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInteger.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatNum.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatNum.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellString.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellString.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInteger.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInteger.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZNum.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZNum.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlFloats.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlFloats.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlInt63.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlInt63.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlPArray.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlPArray.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlBasic.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlBasic.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlChar.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlChar.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlIntConv.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlIntConv.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatBigInt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatBigInt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatInt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatInt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNativeString.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNativeString.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlString.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlString.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlZBigInt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlZBigInt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlZInt.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlZInt.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_Extraction.cmi +%%OCAML_SITELIBDIR%%/coq/theories/extraction/.coq-native/NCoq_extraction_Extraction.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellBasic.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellBasic.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellBasic.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellBasic.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellNatInt.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellNatInt.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellNatInt.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellNatInt.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellNatInteger.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellNatInteger.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellNatInteger.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellNatInteger.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellNatNum.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellNatNum.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellNatNum.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellNatNum.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellString.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellString.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellString.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellString.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellZInt.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellZInt.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellZInt.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellZInt.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellZInteger.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellZInteger.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellZInteger.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellZInteger.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellZNum.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellZNum.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellZNum.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrHaskellZNum.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOCamlFloats.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOCamlFloats.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOCamlFloats.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOCamlFloats.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOCamlInt63.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOCamlInt63.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOCamlInt63.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOCamlInt63.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOCamlPArray.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOCamlPArray.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOCamlPArray.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOCamlPArray.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlBasic.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlBasic.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlBasic.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlBasic.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlChar.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlChar.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlChar.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlChar.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlIntConv.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlIntConv.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlIntConv.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlIntConv.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlNatBigInt.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlNatBigInt.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlNatBigInt.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlNatBigInt.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlNatInt.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlNatInt.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlNatInt.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlNatInt.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlNativeString.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlNativeString.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlNativeString.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlNativeString.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlString.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlString.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlString.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlString.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlZBigInt.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlZBigInt.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlZBigInt.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlZBigInt.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlZInt.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlZInt.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlZInt.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/ExtrOcamlZInt.vos +%%OCAML_SITELIBDIR%%/coq/theories/extraction/Extraction.glob +%%OCAML_SITELIBDIR%%/coq/theories/extraction/Extraction.v +%%OCAML_SITELIBDIR%%/coq/theories/extraction/Extraction.vo +%%OCAML_SITELIBDIR%%/coq/theories/extraction/Extraction.vos +%%OCAML_SITELIBDIR%%/coq/theories/funind/.coq-native/NCoq_funind_FunInd.cmi +%%OCAML_SITELIBDIR%%/coq/theories/funind/.coq-native/NCoq_funind_FunInd.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/funind/.coq-native/NCoq_funind_Recdef.cmi +%%OCAML_SITELIBDIR%%/coq/theories/funind/.coq-native/NCoq_funind_Recdef.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/funind/FunInd.glob +%%OCAML_SITELIBDIR%%/coq/theories/funind/FunInd.v +%%OCAML_SITELIBDIR%%/coq/theories/funind/FunInd.vo +%%OCAML_SITELIBDIR%%/coq/theories/funind/FunInd.vos +%%OCAML_SITELIBDIR%%/coq/theories/funind/Recdef.glob +%%OCAML_SITELIBDIR%%/coq/theories/funind/Recdef.v +%%OCAML_SITELIBDIR%%/coq/theories/funind/Recdef.vo +%%OCAML_SITELIBDIR%%/coq/theories/funind/Recdef.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_DeclConstant.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_DeclConstant.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Env.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Env.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_EnvRing.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_EnvRing.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Fourier.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Fourier.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Fourier_util.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Fourier_util.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Lia.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Lia.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Lqa.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Lqa.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Lra.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Lra.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_MExtraction.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_MExtraction.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_OrderedRing.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_OrderedRing.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Psatz.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Psatz.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_QMicromega.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_QMicromega.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_RMicromega.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_RMicromega.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Refl.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Refl.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_RingMicromega.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_RingMicromega.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Tauto.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Tauto.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_VarMap.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_VarMap.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZArith_hints.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZArith_hints.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZCoeff.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZCoeff.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZMicromega.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZMicromega.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Zify.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Zify.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyBool.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyBool.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyClasses.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyClasses.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyComparison.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyComparison.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyInst.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyInst.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyN.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyN.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyNat.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyNat.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyPow.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyPow.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifySint63.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifySint63.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyUint63.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyUint63.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Ztac.cmi +%%OCAML_SITELIBDIR%%/coq/theories/micromega/.coq-native/NCoq_micromega_Ztac.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/micromega/DeclConstant.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/DeclConstant.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/DeclConstant.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/DeclConstant.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Env.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Env.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Env.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Env.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/EnvRing.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/EnvRing.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/EnvRing.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/EnvRing.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Fourier.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Fourier.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Fourier.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Fourier.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Fourier_util.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Fourier_util.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Fourier_util.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Fourier_util.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Lia.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Lia.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Lia.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Lia.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Lqa.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Lqa.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Lqa.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Lqa.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Lra.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Lra.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Lra.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Lra.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/MExtraction.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/MExtraction.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/MExtraction.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/MExtraction.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/OrderedRing.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/OrderedRing.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/OrderedRing.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/OrderedRing.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Psatz.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Psatz.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Psatz.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Psatz.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/QMicromega.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/QMicromega.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/QMicromega.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/QMicromega.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/RMicromega.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/RMicromega.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/RMicromega.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/RMicromega.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Refl.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Refl.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Refl.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Refl.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/RingMicromega.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/RingMicromega.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/RingMicromega.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/RingMicromega.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Tauto.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Tauto.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Tauto.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Tauto.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/VarMap.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/VarMap.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/VarMap.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/VarMap.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZArith_hints.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZArith_hints.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZArith_hints.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZArith_hints.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZCoeff.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZCoeff.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZCoeff.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZCoeff.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZMicromega.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZMicromega.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZMicromega.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZMicromega.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Zify.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Zify.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Zify.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Zify.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyBool.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyBool.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyBool.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyBool.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyClasses.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyClasses.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyClasses.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyClasses.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyComparison.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyComparison.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyComparison.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyComparison.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyInst.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyInst.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyInst.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyInst.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyN.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyN.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyN.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyN.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyNat.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyNat.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyNat.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyNat.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyPow.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyPow.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyPow.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyPow.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifySint63.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifySint63.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifySint63.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifySint63.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyUint63.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyUint63.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyUint63.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/ZifyUint63.vos +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Ztac.glob +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Ztac.v +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Ztac.vo +%%OCAML_SITELIBDIR%%/coq/theories/micromega/Ztac.vos +%%OCAML_SITELIBDIR%%/coq/theories/nsatz/.coq-native/NCoq_nsatz_Nsatz.cmi +%%OCAML_SITELIBDIR%%/coq/theories/nsatz/.coq-native/NCoq_nsatz_Nsatz.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/nsatz/.coq-native/NCoq_nsatz_NsatzTactic.cmi +%%OCAML_SITELIBDIR%%/coq/theories/nsatz/.coq-native/NCoq_nsatz_NsatzTactic.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/nsatz/Nsatz.glob +%%OCAML_SITELIBDIR%%/coq/theories/nsatz/Nsatz.v +%%OCAML_SITELIBDIR%%/coq/theories/nsatz/Nsatz.vo +%%OCAML_SITELIBDIR%%/coq/theories/nsatz/Nsatz.vos +%%OCAML_SITELIBDIR%%/coq/theories/nsatz/NsatzTactic.glob +%%OCAML_SITELIBDIR%%/coq/theories/nsatz/NsatzTactic.v +%%OCAML_SITELIBDIR%%/coq/theories/nsatz/NsatzTactic.vo +%%OCAML_SITELIBDIR%%/coq/theories/nsatz/NsatzTactic.vos +%%OCAML_SITELIBDIR%%/coq/theories/omega/.coq-native/NCoq_omega_OmegaLemmas.cmi +%%OCAML_SITELIBDIR%%/coq/theories/omega/.coq-native/NCoq_omega_OmegaLemmas.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/omega/.coq-native/NCoq_omega_PreOmega.cmi +%%OCAML_SITELIBDIR%%/coq/theories/omega/.coq-native/NCoq_omega_PreOmega.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/omega/OmegaLemmas.glob +%%OCAML_SITELIBDIR%%/coq/theories/omega/OmegaLemmas.v +%%OCAML_SITELIBDIR%%/coq/theories/omega/OmegaLemmas.vo +%%OCAML_SITELIBDIR%%/coq/theories/omega/OmegaLemmas.vos +%%OCAML_SITELIBDIR%%/coq/theories/omega/PreOmega.glob +%%OCAML_SITELIBDIR%%/coq/theories/omega/PreOmega.v +%%OCAML_SITELIBDIR%%/coq/theories/omega/PreOmega.vo +%%OCAML_SITELIBDIR%%/coq/theories/omega/PreOmega.vos +%%OCAML_SITELIBDIR%%/coq/theories/rtauto/.coq-native/NCoq_rtauto_Bintree.cmi +%%OCAML_SITELIBDIR%%/coq/theories/rtauto/.coq-native/NCoq_rtauto_Bintree.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/rtauto/.coq-native/NCoq_rtauto_Rtauto.cmi +%%OCAML_SITELIBDIR%%/coq/theories/rtauto/.coq-native/NCoq_rtauto_Rtauto.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/rtauto/Bintree.glob +%%OCAML_SITELIBDIR%%/coq/theories/rtauto/Bintree.v +%%OCAML_SITELIBDIR%%/coq/theories/rtauto/Bintree.vo +%%OCAML_SITELIBDIR%%/coq/theories/rtauto/Bintree.vos +%%OCAML_SITELIBDIR%%/coq/theories/rtauto/Rtauto.glob +%%OCAML_SITELIBDIR%%/coq/theories/rtauto/Rtauto.v +%%OCAML_SITELIBDIR%%/coq/theories/rtauto/Rtauto.vo +%%OCAML_SITELIBDIR%%/coq/theories/rtauto/Rtauto.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Algebra_syntax.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Algebra_syntax.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_ArithRing.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_ArithRing.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_BinList.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_BinList.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Cring.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Cring.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field_tac.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field_tac.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field_theory.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field_theory.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_InitialRing.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_InitialRing.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Integral_domain.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Integral_domain.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_NArithRing.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_NArithRing.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_initial.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_initial.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_polynom.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_polynom.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_tac.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_tac.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_RealField.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_RealField.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_base.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_base.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_polynom.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_polynom.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_tac.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_tac.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_theory.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_theory.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Q.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Q.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_R.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_R.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Z.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Z.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_ZArithRing.cmi +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_ZArithRing.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Algebra_syntax.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Algebra_syntax.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Algebra_syntax.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Algebra_syntax.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/ArithRing.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/ArithRing.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/ArithRing.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/ArithRing.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/BinList.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/BinList.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/BinList.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/BinList.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Cring.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Cring.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Cring.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Cring.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Field.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Field.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Field.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Field.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Field_tac.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Field_tac.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Field_tac.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Field_tac.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Field_theory.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Field_theory.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Field_theory.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Field_theory.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/InitialRing.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/InitialRing.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/InitialRing.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/InitialRing.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Integral_domain.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Integral_domain.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Integral_domain.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Integral_domain.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/NArithRing.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/NArithRing.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/NArithRing.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/NArithRing.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ncring.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ncring.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ncring.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ncring.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ncring_initial.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ncring_initial.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ncring_initial.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ncring_initial.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ncring_polynom.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ncring_polynom.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ncring_polynom.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ncring_polynom.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ncring_tac.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ncring_tac.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ncring_tac.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ncring_tac.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/RealField.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/RealField.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/RealField.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/RealField.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring_base.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring_base.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring_base.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring_base.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring_polynom.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring_polynom.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring_polynom.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring_polynom.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring_tac.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring_tac.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring_tac.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring_tac.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring_theory.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring_theory.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring_theory.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Ring_theory.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Rings_Q.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Rings_Q.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Rings_Q.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Rings_Q.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Rings_R.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Rings_R.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Rings_R.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Rings_R.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Rings_Z.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Rings_Z.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Rings_Z.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/Rings_Z.vos +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/ZArithRing.glob +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/ZArithRing.v +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/ZArithRing.vo +%%OCAML_SITELIBDIR%%/coq/theories/setoid_ring/ZArithRing.vos +%%OCAML_SITELIBDIR%%/coq/theories/ssr/.coq-native/NCoq_ssr_ssrbool.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ssr/.coq-native/NCoq_ssr_ssrbool.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ssr/.coq-native/NCoq_ssr_ssrclasses.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ssr/.coq-native/NCoq_ssr_ssrclasses.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ssr/.coq-native/NCoq_ssr_ssreflect.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ssr/.coq-native/NCoq_ssr_ssreflect.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ssr/.coq-native/NCoq_ssr_ssrfun.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ssr/.coq-native/NCoq_ssr_ssrfun.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ssr/.coq-native/NCoq_ssr_ssrsetoid.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ssr/.coq-native/NCoq_ssr_ssrsetoid.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ssr/.coq-native/NCoq_ssr_ssrunder.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ssr/.coq-native/NCoq_ssr_ssrunder.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrbool.glob +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrbool.v +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrbool.vo +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrbool.vos +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrclasses.glob +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrclasses.v +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrclasses.vo +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrclasses.vos +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssreflect.glob +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssreflect.v +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssreflect.vo +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssreflect.vos +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrfun.glob +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrfun.v +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrfun.vo +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrfun.vos +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrsetoid.glob +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrsetoid.v +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrsetoid.vo +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrsetoid.vos +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrunder.glob +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrunder.v +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrunder.vo +%%OCAML_SITELIBDIR%%/coq/theories/ssr/ssrunder.vos +%%OCAML_SITELIBDIR%%/coq/theories/ssrmatching/.coq-native/NCoq_ssrmatching_ssrmatching.cmi +%%OCAML_SITELIBDIR%%/coq/theories/ssrmatching/.coq-native/NCoq_ssrmatching_ssrmatching.cmxs +%%OCAML_SITELIBDIR%%/coq/theories/ssrmatching/ssrmatching.glob +%%OCAML_SITELIBDIR%%/coq/theories/ssrmatching/ssrmatching.v +%%OCAML_SITELIBDIR%%/coq/theories/ssrmatching/ssrmatching.vo +%%OCAML_SITELIBDIR%%/coq/theories/ssrmatching/ssrmatching.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Array.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Array.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Bool.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Bool.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Char.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Char.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Constant.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Constant.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Constr.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Constr.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Constructor.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Constructor.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Control.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Control.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Env.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Env.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Evar.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Evar.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_FMap.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_FMap.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_FSet.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_FSet.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Float.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Float.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Fresh.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Fresh.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ident.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ident.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ind.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ind.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Init.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Init.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Int.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Int.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Lazy.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Lazy.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_List.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_List.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ltac1.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ltac1.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ltac2.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ltac2.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Message.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Message.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Meta.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Meta.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Notations.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Notations.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Option.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Option.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Pattern.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Pattern.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Printf.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Printf.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Proj.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Proj.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_RedFlags.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_RedFlags.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ref.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ref.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Std.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Std.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_String.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_String.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_TransparentState.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_TransparentState.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Uint63.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Uint63.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Unification.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/.coq-native/NLtac2_Unification.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Array.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Array.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Array.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Array.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Bool.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Bool.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Bool.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Bool.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Char.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Char.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Char.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Char.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Compat/.coq-native/NLtac2_Compat_Coq818.cmi +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Compat/.coq-native/NLtac2_Compat_Coq818.cmxs +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Compat/Coq818.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Compat/Coq818.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Compat/Coq818.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Compat/Coq818.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Constant.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Constant.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Constant.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Constant.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Constr.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Constr.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Constr.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Constr.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Constructor.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Constructor.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Constructor.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Constructor.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Control.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Control.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Control.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Control.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Env.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Env.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Env.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Env.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Evar.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Evar.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Evar.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Evar.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/FMap.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/FMap.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/FMap.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/FMap.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/FSet.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/FSet.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/FSet.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/FSet.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Float.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Float.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Float.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Float.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Fresh.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Fresh.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Fresh.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Fresh.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ident.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ident.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ident.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ident.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ind.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ind.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ind.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ind.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Init.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Init.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Init.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Init.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Int.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Int.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Int.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Int.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Lazy.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Lazy.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Lazy.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Lazy.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/List.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/List.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/List.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/List.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ltac1.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ltac1.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ltac1.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ltac1.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ltac2.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ltac2.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ltac2.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ltac2.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Message.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Message.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Message.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Message.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Meta.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Meta.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Meta.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Meta.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Notations.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Notations.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Notations.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Notations.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Option.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Option.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Option.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Option.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Pattern.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Pattern.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Pattern.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Pattern.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Printf.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Printf.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Printf.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Printf.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Proj.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Proj.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Proj.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Proj.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/RedFlags.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/RedFlags.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/RedFlags.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/RedFlags.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ref.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ref.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ref.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Ref.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Std.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Std.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Std.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Std.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/String.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/String.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/String.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/String.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/TransparentState.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/TransparentState.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/TransparentState.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/TransparentState.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Uint63.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Uint63.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Uint63.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Uint63.vos +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Unification.glob +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Unification.v +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Unification.vo +%%OCAML_SITELIBDIR%%/coq/user-contrib/Ltac2/Unification.vos +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/META +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/core/core.a +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/core/core.cma +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/core/core.cmxa +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/core/core.cmxs +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/core/document.cmi +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/core/document.cmt +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/core/document.cmti +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/core/document.cmx +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/core/document.ml +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/core/document.mli +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/dune-package +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/opam +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/interface.cmi +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/interface.cmti +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/interface.mli +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/protocol.a +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/protocol.cma +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/protocol.cmxa +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/protocol.cmxs +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/richpp.cmi +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/richpp.cmt +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/richpp.cmti +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/richpp.cmx +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/richpp.ml +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/richpp.mli +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/serialize.cmi +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/serialize.cmt +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/serialize.cmti +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/serialize.cmx +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/serialize.ml +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/serialize.mli +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_lexer.cmi +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_lexer.cmt +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_lexer.cmti +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_lexer.cmx +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_lexer.ml +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_lexer.mli +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_parser.cmi +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_parser.cmt +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_parser.cmti +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_parser.cmx +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_parser.ml +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_parser.mli +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_printer.cmi +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_printer.cmt +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_printer.cmti +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_printer.cmx +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_printer.ml +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xml_printer.mli +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xmlprotocol.cmi +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xmlprotocol.cmt +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xmlprotocol.cmti +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xmlprotocol.cmx +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xmlprotocol.ml +%%IDE%%%%OCAML_SITELIBDIR%%/coqide-server/protocol/xmlprotocol.mli +%%IDE%%%%OCAML_SITELIBDIR%%/coqide/META +%%IDE%%%%OCAML_SITELIBDIR%%/coqide/dune-package +%%IDE%%%%OCAML_SITELIBDIR%%/coqide/opam %%PORTDOCS%%%%DATADIR%%/coq-ssreflect.lang %%PORTDOCS%%%%DATADIR%%/coq.lang %%PORTDOCS%%%%DATADIR%%/coq.png %%PORTDOCS%%%%DATADIR%%/coq_style.xml -%%PORTDOCS%%%%DOCSDIR%%/FAQ-CoqIde -%%EMACS_SITE_LISPDIR%%/coq/coq-font-lock.el -%%EMACS_SITE_LISPDIR%%/coq/coq-inferior.el -%%EMACS_SITE_LISPDIR%%/coq/gallina-db.el -%%EMACS_SITE_LISPDIR%%/coq/gallina-syntax.el -%%EMACS_SITE_LISPDIR%%/coq/gallina.el -%%PORTDOCS%%%%EMACS_SITE_LISPDIR%%/coqdoc.sty -@dir lib/coq/user-contrib -%%IDE%%@dir etc/xdg/coq +@comment %%PORTDOCS%%%%DOCSDIR%%/FAQ-CoqIde +@comment %%EMACS_SITE_LISPDIR%%/coq/coq-font-lock.el +@comment %%EMACS_SITE_LISPDIR%%/coq/coq-inferior.el +@comment %%EMACS_SITE_LISPDIR%%/coq/gallina-db.el +@comment %%EMACS_SITE_LISPDIR%%/coq/gallina-syntax.el +@comment %%EMACS_SITE_LISPDIR%%/coq/gallina.el +@comment %%PORTDOCS%%%%EMACS_SITE_LISPDIR%%/coqdoc.sty +%%DATADIR%%/default.bindings +share/doc/ocaml/coq-core/LICENSE +share/doc/ocaml/coq-core/README.md +share/doc/ocaml/coq-stdlib/LICENSE +share/doc/ocaml/coq-stdlib/README.md +share/doc/ocaml/coq/LICENSE +share/doc/ocaml/coq/README.md +share/doc/ocaml/coq/odoc-pages/index.mld +share/doc/ocaml/coqide-server/LICENSE +share/doc/ocaml/coqide-server/README.md +share/doc/ocaml/coqide/FAQ +share/doc/ocaml/coqide/LICENSE +share/doc/ocaml/coqide/README.md +share/doc/ocaml/coqide/odoc-pages/index.mld +share/man/man1/coq-tex.1.gz +share/man/man1/coq_makefile.1.gz +share/man/man1/coqc.1.gz +share/man/man1/coqchk.1.gz +share/man/man1/coqdep.1.gz +share/man/man1/coqdoc.1.gz +share/man/man1/coqide.1.gz +share/man/man1/coqnative.1.gz +share/man/man1/coqtop.1.gz +share/man/man1/coqtop.byte.1.gz +share/man/man1/coqtop.opt.1.gz +share/man/man1/coqwc.1.gz +%%PORTDOCS%%%%TEXMFDIR%%/tex/latex/misc/coqdoc.sty diff --git a/math/facile/Makefile b/math/facile/Makefile index e3bbb53da74e..7ed824d618fd 100644 --- a/math/facile/Makefile +++ b/math/facile/Makefile @@ -1,26 +1,26 @@ PORTNAME= facile PORTVERSION= 1.1.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MASTER_SITES= http://opti.recherche.enac.fr/facile/distrib/ MAINTAINER= kde@FreeBSD.org COMMENT= Functional Constraint Library WWW= http://www.recherche.enac.fr/log/facile/ LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gmake USE_OCAML= yes HAS_CONFIGURE= yes ALL_TARGET= compile post-configure: ${REINPLACE_CMD} -e "s,make,${MAKE_CMD},; \ s,cp,${INSTALL_DATA},;\ s,mkdir,${MKDIR}," ${WRKSRC}/Makefile ${REINPLACE_CMD} -e "s,${LOCALBASE},${STAGEDIR}${PREFIX}," \ ${WRKSRC}/config_Makefile .include diff --git a/math/ocaml-num/Makefile b/math/ocaml-num/Makefile index 1a628eb6f4c7..c762dfd61cc1 100644 --- a/math/ocaml-num/Makefile +++ b/math/ocaml-num/Makefile @@ -1,24 +1,24 @@ PORTNAME= num PORTVERSION= 1.4 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math PKGNAMEPREFIX= ocaml- MAINTAINER= danfe@FreeBSD.org COMMENT= Legacy library for arbitrary-precision arithmetic WWW= https://github.com/ocaml/num LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gmake USE_GITHUB= yes GH_ACCOUNT= ocaml USE_OCAML= yes MAKE_ENV= OCAMLFIND_DESTDIR="${STAGEDIR}${OCAMLFIND_DESTDIR}" MAKE_JOBS_UNSAFE= yes TEST_TARGET= test .include diff --git a/math/ocaml-ocamlgraph/Makefile b/math/ocaml-ocamlgraph/Makefile index b305379a0e2a..34936a306992 100644 --- a/math/ocaml-ocamlgraph/Makefile +++ b/math/ocaml-ocamlgraph/Makefile @@ -1,51 +1,51 @@ PORTNAME= ocamlgraph PORTVERSION= 1.8.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MASTER_SITES= http://ocamlgraph.lri.fr/download/ \ ftp://ftp.stack.nl/pub/users/johans/ocamlgraph/ PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= Graph manipulation library for OCaml WWW= https://ocamlgraph.lri.fr/ USES= gmake USE_OCAML= yes USE_OCAML_FINDLIB= yes USE_OCAML_LDCONFIG= yes USE_OCAMLFIND_PLIST= yes OCAML_LDLIBS= ${OCAML_LIBDIR}/${PORTNAME} GNU_CONFIGURE= yes ALL_TARGET= all INSTALL_TARGET= install MAKE_JOBS_UNSAFE= yes PORTSCOUT= skipv:1.81 PLIST_SUB= OCAMLGRAPHDIR="${OCAML_LDLIBS}" DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} PORTDOCS= * OPTIONS_DEFINE= DOCS OPTIONS_SUB= yes DOCS_ALL_TARGET= doc post-patch-DOCS-on: @${REINPLACE_CMD} -e '/VIEWER_DIR. doc/d' ${WRKSRC}/Makefile.in post-patch: # Override auto-detection @${REINPLACE_CMD} -Ee 's/(LABLGTK2)=yes/\1=no/' ${WRKSRC}/configure post-install: ${INSTALL_DATA} ${WRKSRC}/META ${STAGEDIR}${PREFIX}/${OCAML_LDLIBS} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/* ${STAGEDIR}${DOCSDIR} .include diff --git a/math/ocaml-zarith/Makefile b/math/ocaml-zarith/Makefile index 7e02f8db6812..ec8246f747b5 100644 --- a/math/ocaml-zarith/Makefile +++ b/math/ocaml-zarith/Makefile @@ -1,40 +1,46 @@ PORTNAME= ${GH_PROJECT:tl} PORTVERSION= 1.13 DISTVERSIONPREFIX= release- +PORTREVISION= 1 CATEGORIES= math PKGNAMEPREFIX= ocaml- MAINTAINER= danfe@FreeBSD.org COMMENT= OCaml arithmetic library for arbitrary precision integers WWW= https://forge.ocamlcore.org/projects/zarith LICENSE= LGPL20 LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libgmp.so:math/gmp USES= gmake localbase:ldflags tar:tgz USE_GITHUB= yes GH_ACCOUNT= ocaml GH_PROJECT= Zarith USE_OCAML= yes USE_OCAML_FINDLIB= yes -OCAMLFIND_LDCONF= /dev/null +USE_OCAML_LDCONFIG= yes HAS_CONFIGURE= yes ALL_TARGET= all CONFIGURE_ENV= DESTDIR=${STAGEDIR} MAKE_JOBS_UNSAFE= yes PORTDOCS= html DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} OPTIONS_DEFINE= DOCS DOCS_ALL_TARGET=doc +post-install: + @${STRIP_CMD} \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/dllzarith.so \ + ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/zarith.cmxs + post-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} ${MV} ${WRKSRC}/html ${STAGEDIR}${DOCSDIR} .include diff --git a/math/teyjus/Makefile b/math/teyjus/Makefile index cca9570b6563..cafc79f444e0 100644 --- a/math/teyjus/Makefile +++ b/math/teyjus/Makefile @@ -1,35 +1,42 @@ PORTNAME= teyjus DISTVERSIONPREFIX= v DISTVERSION= 2.1-7 DISTVERSIONSUFFIX= -ge63f40a PORTREVISION= 1 CATEGORIES= math lang MAINTAINER= yuri@FreeBSD.org COMMENT= Higher-order logic programming language Lambda Prolog WWW= http://teyjus.cs.umn.edu/ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= ocamlopt:lang/ocaml \ - omake:devel/omake \ +BUILD_DEPENDS= omake:devel/omake \ bash:shells/bash USES= dos2unix shebangfix DOS2UNIX_FILES= source/OMakefile SHEBANG_GLOB= run_test +USE_OCAML= yes USE_GITHUB= yes +CFLAGS+= -Wno-error=comment EXES= tjcc tjdepend tjdis tjlink tjsim PLIST_FILES= ${EXES:S/^/bin\//} +# replacing bundled and outdated OCaml headers with a symlink to +# the current headers +post-patch: + ${RM} -r ${WRKSRC}/source/front/caml + ${LN} -s ${LOCALBASE}/${OCAML_LIBDIR}/caml ${WRKSRC}/source/front/caml + do-build: - @cd ${WRKSRC} && omake + @(cd ${WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} omake) do-install: .for e in ${EXES} ${INSTALL_PROGRAM} ${WRKSRC}/source/${e}.opt ${STAGEDIR}${PREFIX}/bin/${e} .endfor .include diff --git a/net-p2p/mldonkey/Makefile b/net-p2p/mldonkey/Makefile index e1558b12593f..19f31f068dcd 100644 --- a/net-p2p/mldonkey/Makefile +++ b/net-p2p/mldonkey/Makefile @@ -1,160 +1,165 @@ PORTNAME= mldonkey DISTVERSION= 3.1.7-2 CATEGORIES+= net-p2p MASTER_SITES= https://github.com/ygrek/${PORTNAME}/releases/download/release-3-1-7-2/ MAINTAINER?= danfe@FreeBSD.org COMMENT?= Multi-protocol peer-to-peer client written in OCaml WWW= https://mldonkey.sourceforge.net/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/Copying.txt CONFLICTS= mldonkey{-{core,gui},}-devel BUILD_DEPENDS= ${LOCALBASE}/lib/ocaml/nums.cma:math/ocaml-num USES= compiler:c++11-lang cpe gmake iconv pkgconfig tar:bzip2 +ARCH!= uname -p +.if ${ARCH} == i386 +# `as' is used to compile src/utils/lib/md4_i386.s +USE_BINUTILS= yes +.endif USE_CXXSTD= c++14 USE_OCAML= yes USE_OCAML_CAMLP4=yes GNU_CONFIGURE= yes CONFIGURE_ARGS= ac_cv_lib_charset_locale_charset=no ALL_TARGET= opt MAKE_ENV+= OCAMLRUNPARAM="l=256M" MAKE_JOBS_UNSAFE= yes SUB_FILES= pkg-message ### ## Options activation ### OPTIONS_DEFINE= GD DOCS EXAMPLES OPTIONS_DEFAULT=CORE GD GUI OPTIONS_MULTI= CLIENT OPTIONS_MULTI_CLIENT=CORE GUI CORE_DESC= Client 'core' support .include .if ${PORT_OPTIONS:MGUI} && ${PORT_OPTIONS:MCORE} CONFLICTS+= mldonkey-core-[0.9]* CONFLICTS+= mldonkey-gui-[0.9]* PLIST_SUB+= CORE="" GUI="" GUICORE="" .else # (${PORT_OPTIONS:MGUI} && ${PORT_OPTIONS:MCORE}) . if !${PORT_OPTIONS:MGUI} PKGNAMESUFFIX= -core CONFLICTS+= mldonkey-gui-[0.9]* CONFIGURE_ARGS+=--disable-gui PLIST_SUB+= CORE="" GUI="@comment " GUICORE="@comment " . endif # !${PORT_OPTIONS:MGUI} . if !${PORT_OPTIONS:MCORE} PKGNAMESUFFIX= -gui CONFLICTS+= mldonkey-core-[0.9]* PLIST_SUB+= CORE="@comment " GUI="" GUICORE="@comment " . endif # !${PORT_OPTIONS:MCORE} .endif # ${PORT_OPTIONS:MGUI} && ${PORT_OPTIONS:MCORE} .if ${PORT_OPTIONS:MGUI} BUILD_DEPENDS+= ${LOCALBASE}/lib/ocaml/site-lib/lablgtk2/lablrsvg.cma:x11-toolkits/ocaml-lablgtk2 CONFIGURE_ARGS+=--enable-gui=newgui2 # we don't need lablgtk as RUN dependency, but we need gtk+glib USES+= gnome USE_GNOME= gtk20 librsvg2 .endif # ${PORT_OPTIONS:MGUI} .if ${PORT_OPTIONS:MCORE} USE_RC_SUBR= mlnet SUB_LIST+= SH=${SH:Q} . if ${PORT_OPTIONS:MGD} LIB_DEPENDS+= libgd.so:graphics/gd . else CONFIGURE_ARGS+=--disable-gd . endif .endif PORTDOCS= Authors.txt Bugs.txt ChangeLog Developers.txt \ Install.txt Todo.txt ed2k_links.txt # build additional tools ALL_TARGET+= \ mld_hash .include .if ${ARCH:Mpowerpc64*} LLD_UNSAFE= yes .endif post-patch: @${SED} \ -e "s|%%PREFIX%%|${PREFIX}|" \ -e "s|%%SH%%|${SH}|" \ ${FILESDIR}/wrapper.sh > \ ${WRKDIR}/wrapper.sh @${REINPLACE_CMD} \ -e 's|$$OCAMLLIB/$$LABLGTK_NAME|$$OCAMLLIB/site-lib/$$LABLGTK_NAME|' \ -e 's|^DEVFLAGS=|&-unsafe-string|' \ ${WRKSRC}/config/configure @${REINPLACE_CMD} \ -e 's|+labl|+site-lib/labl|' \ -e '/BITSTRING/s|OCAMLC)|& -unsafe-string|' \ ${WRKSRC}/config/Makefile.in @${REINPLACE_CMD} -E \ -e 's@(#include <)(lablgtk2/)@\1site-lib/\2@' \ ${WRKSRC}/src/gtk2/gui/x11/systraystubs.c # update server.met provider @${REINPLACE_CMD} -E \ -e 's|http://www.gruk.org/server.met.gz|http://www.jd2k.com/server.met|' \ -e 's|http://www.bluetack.co.uk/config/antip2p.txt|http://www.bluetack.co.uk/config/level1.gz|' \ ${WRKSRC}/src/daemon/common/commonOptions.ml \ ${WRKSRC}/src/networks/donkey/donkeyServers.ml do-install: .if ${PORT_OPTIONS:MCORE} ${INSTALL_PROGRAM} ${WRKSRC}/mld_hash ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/mlnet ${STAGEDIR}${PREFIX}/bin/mlnet-real ${INSTALL_SCRIPT} ${WRKDIR}/wrapper.sh ${STAGEDIR}${PREFIX}/bin/mlnet .if ${PORT_OPTIONS:MEXAMPLES} @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_SCRIPT} ${FILESDIR}/kill_mldonkey ${STAGEDIR}${EXAMPLESDIR} .endif .endif .if ${PORT_OPTIONS:MGUI} ${INSTALL_PROGRAM} ${WRKSRC}/mlgui ${STAGEDIR}${PREFIX}/bin .endif .if ${PORT_OPTIONS:MGUI} && ${PORT_OPTIONS:MCORE} ${INSTALL_SCRIPT} ${WRKSRC}/distrib/mldonkey_previewer ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/mlguistarter ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/mlnet+gui ${STAGEDIR}${PREFIX}/bin .endif .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} .for _file in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/distrib/${_file} ${STAGEDIR}${DOCSDIR} .endfor .endif install-user: extract .if !defined(LANGUAGE) @${ECHO_MSG} "Please call as: make install-user LANGUAGE=" @${ECHO_MSG} "with one of en,de,fr,fr.noaccents,sp !" .else @${CP} ${WRKSRC}/distrib/i18n/gui_messages.ini.${LANGUAGE}\ ${HOME}/.mldonkey_gui_messages.ini .endif .include diff --git a/net-p2p/mldonkey/files/patch-src_networks_donkey_donkeyClient.ml b/net-p2p/mldonkey/files/patch-src_networks_donkey_donkeyClient.ml new file mode 100644 index 000000000000..7556ff82ee00 --- /dev/null +++ b/net-p2p/mldonkey/files/patch-src_networks_donkey_donkeyClient.ml @@ -0,0 +1,11 @@ +--- src/networks/donkey/donkeyClient.ml.orig 2020-07-06 02:50:39 UTC ++++ src/networks/donkey/donkeyClient.ml +@@ -811,8 +811,6 @@ another better way, since this functionnality is still + end + + +-external hash_param : int -> int -> 'a -> int = "caml_hash_univ_param" "noalloc" +-let hash x = hash_param 10 100 x + + let shared_of_file file = + match file.file_shared with diff --git a/net-p2p/mldonkey/files/patch-src_utils_lib_CryptoPP.h b/net-p2p/mldonkey/files/patch-src_utils_lib_CryptoPP.h index 8a5f7deedb6c..092d80ee6c05 100644 --- a/net-p2p/mldonkey/files/patch-src_utils_lib_CryptoPP.h +++ b/net-p2p/mldonkey/files/patch-src_utils_lib_CryptoPP.h @@ -1,31 +1,39 @@ src/utils/lib/CryptoPP.h:3941:26: error: ISO C++11 does not allow access declarations; use using declarations instead BufferedTransformation::Get; ^ ---- src/utils/lib/CryptoPP.h.orig 2014-03-10 16:33:21 UTC +--- src/utils/lib/CryptoPP.h.orig 2020-07-06 02:50:39 UTC +++ src/utils/lib/CryptoPP.h -@@ -3938,15 +3938,15 @@ class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE Sink : public Bu +@@ -86,6 +86,7 @@ + #define CRYPTOPP_H + + #include ++#define CAML_NAME_SPACE + #include + #include + +@@ -3938,15 +3939,15 @@ class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE Sink : public Bu { protected: // make these functions protected to help prevent unintentional calls to them - BufferedTransformation::Get; - BufferedTransformation::Peek; - BufferedTransformation::TransferTo; - BufferedTransformation::CopyTo; - BufferedTransformation::CopyRangeTo; - BufferedTransformation::TransferMessagesTo; - BufferedTransformation::CopyMessagesTo; - BufferedTransformation::TransferAllTo; - BufferedTransformation::CopyAllTo; + using BufferedTransformation::Get; + using BufferedTransformation::Peek; + using BufferedTransformation::TransferTo; + using BufferedTransformation::CopyTo; + using BufferedTransformation::CopyRangeTo; + using BufferedTransformation::TransferMessagesTo; + using BufferedTransformation::CopyMessagesTo; + using BufferedTransformation::TransferAllTo; + using BufferedTransformation::CopyAllTo; unsigned int TransferTo2(BufferedTransformation& /* target */, unsigned long &transferBytes, const std::string& /* channel */ = NULL_CHANNEL, bool /* blocking */ = true) {transferBytes = 0; return 0;} unsigned int CopyRangeTo2(BufferedTransformation& /* target */, unsigned long& /* begin */, unsigned long /* end */ = ULONG_MAX, const std::string& /* channel */ = NULL_CHANNEL, bool /* blocking */ = true) const diff --git a/net/unison240/files/patch-Makefile.OCaml b/net/unison240/files/patch-Makefile.OCaml index dfd96642b5e9..624f4afe967d 100644 --- a/net/unison240/files/patch-Makefile.OCaml +++ b/net/unison240/files/patch-Makefile.OCaml @@ -1,29 +1,38 @@ --- Makefile.OCaml.orig 2014-12-30 02:21:28 UTC +++ Makefile.OCaml -@@ -72,7 +72,7 @@ OCAMLLIBDIR=$(shell ocamlc -v | tail -1 | sed -e 's/.* +@@ -72,7 +72,7 @@ LABLGTKLIB=$(OCAMLLIBDIR)/lablgtk # This should be set to an appropriate value automatically, depending # on whether the lablgtk library is available LABLGTKLIB=$(OCAMLLIBDIR)/lablgtk -LABLGTK2LIB=$(OCAMLLIBDIR)/lablgtk2 +LABLGTK2LIB=$(OCAMLLIBDIR)/site-lib/lablgtk2 ##BCP [3/2007]: Removed temporarily, since the OSX UI is not working well ## at the moment and we don't want to confuse people by building it by default ifeq ($(OSARCH),osx) -@@ -91,7 +91,7 @@ buildexecutable:: +@@ -91,7 +91,7 @@ INCLFLAGS=-I lwt -I ubase -I system ### Default parameters INCLFLAGS=-I lwt -I ubase -I system -CAMLFLAGS+=$(INCLFLAGS) +CAMLFLAGS+=$(INCLFLAGS) -unsafe-string CAMLFLAGS+=-I system/$(SYSTEM) -I lwt/$(SYSTEM) ifeq ($(OSARCH),win32) -@@ -292,7 +292,7 @@ endif +@@ -233,7 +233,7 @@ OCAMLLIBS+=unix.cma str.cma bigarray.cma + # File extensions will be substituted for the native code version + OCAMLLIBS+=unix.cma str.cma bigarray.cma + +-COBJS+=osxsupport$(OBJ_EXT) pty$(OBJ_EXT) bytearray_stubs$(OBJ_EXT) ++COBJS+=osxsupport$(OBJ_EXT) pty$(OBJ_EXT) bytearray_stubs$(OBJ_EXT) hash_compat$(OBJ_EXT) + + ######################################################################## + ### User Interface setup +@@ -292,7 +292,7 @@ ifeq ($(UISTYLE), gtk2) # Gtk2 GUI ifeq ($(UISTYLE), gtk2) - CAMLFLAGS+=-I +lablgtk2 + CAMLFLAGS+=-I +site-lib/lablgtk2 OCAMLOBJS+=pixmaps.cmo uigtk2.cmo linkgtk2.cmo OCAMLLIBS+=lablgtk.cma endif diff --git a/net/unison240/files/patch-hash__compat.c b/net/unison240/files/patch-hash__compat.c new file mode 100644 index 000000000000..ba746e41d22b --- /dev/null +++ b/net/unison240/files/patch-hash__compat.c @@ -0,0 +1,168 @@ +--- hash_compat.c.orig 2024-02-06 20:29:47 UTC ++++ hash_compat.c +@@ -0,0 +1,165 @@ ++/* The pre-OCaml 4.00 hash implementation */ ++/* FIXME: This is included for backwards compatibility only and must be ++ * REMOVED when a new hash function included in a stable release has been ++ * available for a few years. The removal of this function will break ++ * Unison version compatibility. There must be plenty of time given ++ * for users to upgrade (most users don't compile themselves and are at ++ * mercy of whatever package repositories they use). */ ++ ++/* Code copied from OCaml sources */ ++/**************************************************************************/ ++/* */ ++/* OCaml */ ++/* */ ++/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ ++/* */ ++/* Copyright 1996 Institut National de Recherche en Informatique et */ ++/* en Automatique. */ ++/* */ ++/* All rights reserved. This file is distributed under the terms of */ ++/* the GNU Lesser General Public License version 2.1, with the */ ++/* special exception on linking described in the file LICENSE. */ ++/* */ ++/**************************************************************************/ ++ ++#include ++#include ++#include ++ ++struct hash_state { ++ uintnat accu; ++ intnat univ_limit, univ_count; ++}; ++ ++static void hash_aux(struct hash_state*, value obj); ++ ++CAMLprim value unsn_hash_univ_param(value count, value limit, value obj) ++{ ++ struct hash_state h; ++ h.univ_limit = Long_val(limit); ++ h.univ_count = Long_val(count); ++ h.accu = 0; ++ hash_aux(&h, obj); ++ return Val_long(h.accu & 0x3FFFFFFF); ++ /* The & has two purposes: ensure that the return value is positive ++ and give the same result on 32 bit and 64 bit architectures. */ ++} ++ ++#define Alpha 65599 ++#define Beta 19 ++#define Combine(new) (h->accu = h->accu * Alpha + (new)) ++#define Combine_small(new) (h->accu = h->accu * Beta + (new)) ++ ++static void hash_aux(struct hash_state* h, value obj) ++{ ++ unsigned char * p; ++ mlsize_t i, j; ++ tag_t tag; ++ ++ h->univ_limit--; ++ if (h->univ_count < 0 || h->univ_limit < 0) return; ++ ++ again: ++ if (Is_long(obj)) { ++ h->univ_count--; ++ Combine(Long_val(obj)); ++ return; ++ } ++ if (! Is_in_value_area(obj)) { ++ /* obj is a pointer outside the heap, to an object with ++ a priori unknown structure. Use its physical address as hash key. */ ++ Combine((intnat) obj); ++ return; ++ } ++ /* Pointers into the heap are well-structured blocks. So are atoms. ++ We can inspect the block contents. */ ++ /* The code needs reindenting later. Leaving as is to facilitate review. */ ++ tag = Tag_val(obj); ++ switch (tag) { ++ case String_tag: ++ h->univ_count--; ++ i = caml_string_length(obj); ++ for (p = &Byte_u(obj, 0); i > 0; i--, p++) ++ Combine_small(*p); ++ break; ++ case Double_tag: ++ /* For doubles, we inspect their binary representation, LSB first. ++ The results are consistent among all platforms with IEEE floats. */ ++ h->univ_count--; ++#ifdef ARCH_BIG_ENDIAN ++ for (p = &Byte_u(obj, sizeof(double) - 1), i = sizeof(double); ++ i > 0; ++ p--, i--) ++#else ++ for (p = &Byte_u(obj, 0), i = sizeof(double); ++ i > 0; ++ p++, i--) ++#endif ++ Combine_small(*p); ++ break; ++ case Double_array_tag: ++ h->univ_count--; ++ for (j = 0; j < Bosize_val(obj); j += sizeof(double)) { ++#ifdef ARCH_BIG_ENDIAN ++ for (p = &Byte_u(obj, j + sizeof(double) - 1), i = sizeof(double); ++ i > 0; ++ p--, i--) ++#else ++ for (p = &Byte_u(obj, j), i = sizeof(double); ++ i > 0; ++ p++, i--) ++#endif ++ Combine_small(*p); ++ } ++ break; ++ case Abstract_tag: ++ /* We don't know anything about the contents of the block. ++ Better do nothing. */ ++ break; ++ case Infix_tag: ++ hash_aux(h, obj - Infix_offset_val(obj)); ++ break; ++ case Forward_tag: ++ obj = Forward_val (obj); ++ goto again; ++ case Object_tag: ++ h->univ_count--; ++ Combine(Oid_val(obj)); ++ break; ++ case Custom_tag: ++ /* If no hashing function provided, do nothing */ ++ if (Custom_ops_val(obj)->hash != NULL) { ++ h->univ_count--; ++ Combine(Custom_ops_val(obj)->hash(obj)); ++ } ++ break; ++#ifdef NO_NAKED_POINTERS ++ case Closure_tag: ++ h->univ_count--; ++ Combine_small(tag); ++ /* Recursively hash the environment fields */ ++ i = Wosize_val(obj); ++ j = Start_env_closinfo(Closinfo_val(obj)); ++ while (i > j) { ++ i--; ++ hash_aux(h, Field(obj, i)); ++ } ++ /* Combine the code pointers, closure info fields, and infix headers */ ++ while (i > 0) { ++ i--; ++ Combine(Field(obj, i)); ++ h->univ_count--; ++ } ++ break; ++#endif ++ default: ++ h->univ_count--; ++ Combine_small(tag); ++ i = Wosize_val(obj); ++ while (i != 0) { ++ i--; ++ hash_aux(h, Field(obj, i)); ++ } ++ break; ++ } ++} diff --git a/net/unison240/files/patch-uutil.ml b/net/unison240/files/patch-uutil.ml new file mode 100644 index 000000000000..cf364ade3fcf --- /dev/null +++ b/net/unison240/files/patch-uutil.ml @@ -0,0 +1,11 @@ +--- uutil.ml.orig 2024-02-06 20:32:31 UTC ++++ uutil.ml +@@ -34,7 +34,7 @@ let hash2 x y = (17 * x + 257 * y) land 0x3FFFFFFF + + let hash2 x y = (17 * x + 257 * y) land 0x3FFFFFFF + +-external hash_param : int -> int -> 'a -> int = "caml_hash_univ_param" "noalloc" ++external hash_param : int -> int -> 'a -> int = "unsn_hash_univ_param" "noalloc" + + let hash x = hash_param 10 100 x + diff --git a/net/unison248/Makefile b/net/unison248/Makefile index 44cdcabe527e..a17c5f845bfc 100644 --- a/net/unison248/Makefile +++ b/net/unison248/Makefile @@ -1,112 +1,113 @@ PORTNAME= unison PORTVERSION= 2.48.15 PORTREVISION= 5 DISTVERSIONPREFIX= v DISTVERSIONSUFFIX= v4 CATEGORIES= net MAINTAINER= madpilot@FreeBSD.org COMMENT= User-level file synchronization tool WWW= https://www.cis.upenn.edu/~bcpierce/unison/ LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING FLAVORS= x11 nox11 FLAVOR?= ${FLAVORS:[1]} VERSIONSUFFIX= 248 nox11_PKGNAMESUFFIX= ${VERSIONSUFFIX}-nox11 nox11_CONFLICTS_INSTALL= unison${VERSIONSUFFIX} x11_PKGNAMESUFFIX= ${VERSIONSUFFIX} x11_CONFLICTS_INSTALL= unison${VERSIONSUFFIX}-nox11 x11_BUILD_DEPENDS= lablgtk2:x11-toolkits/ocaml-lablgtk2 \ icotool:graphics/icoutils x11_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 PLIST_SUB= PORTVERSION=${PORTVERSION} VERSIONSUFFIX=${VERSIONSUFFIX} USES= gmake localbase USE_OCAML= yes WRKSRC_SUBDIR= src NO_OCAML_RUNDEPENDS=yes CONFLICTS= unison-devel MAKE_ENV= CLIBS="${LIBS:S/^-/-ccopt -/}" COFLAGS="${CFLAGS:C/ *(-[^ ]*) */ -ccopt \"\1 \"/gW}" +MAKE_JOBS_UNSAFE= yes ALL_TARGET= unison all USE_GITHUB= yes GH_ACCOUNT= bcpierce00 DOCS= BUGS.txt NEWS README DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX} OPTIONS_DEFINE= DOCS FSMONITOR OPTIONS_DEFAULT?= FSMONITOR FSMONITOR_DESC= Compile and install fsmonitor plugin OPTIONS_SUB= YES FSMONITOR_LIB_DEPENDS= libinotify.so:devel/libinotify .if ${FLAVOR} == nox11 MAKE_ARGS= UISTYLE=text PKGMESSAGE= ${PKGDIR}/pkg-message.nox11 PLIST_SUB+= X11="@comment " .else MAKE_ARGS= UISTYLE=gtk2 SUB_FILES= ${PORTNAME}.desktop SUB_LIST= PORTVERSION=${PORTVERSION} VERSIONSUFFIX=${VERSIONSUFFIX} USE_GNOME+= atk cairo gdkpixbuf2 glib20 gtk20 pango USES+= gettext-runtime gnome PLIST_SUB+= X11="" .endif post-patch-FSMONITOR-off: @${REINPLACE_CMD} -e 's/-include fsmonitor/#&/' \ ${WRKSRC}/Makefile.OCaml post-patch-FSMONITOR-on: @${REINPLACE_CMD} \ -e '/let suffix = if Util.osType/s/else "" in/else "${VERSIONSUFFIX}" in/' \ ${WRKSRC}/fswatch.ml post-patch: # remove unconditional raise, which causes self tests to always fail ${REINPLACE_CMD} -e '/remove me/d' ${WRKSRC}/test.ml .if ${FLAVOR} == nox11 @${REINPLACE_CMD} -e 's/CFLAGS/COFLAGS/g' \ ${WRKSRC}/Makefile.OCaml ${WRKSRC}/fsmonitor/linux/Makefile .else @${REINPLACE_CMD} -Ee 's@(\+|/)(lablgtk2)@\1site-lib/\2@' \ -e 's/CFLAGS/COFLAGS/g' \ ${WRKSRC}/Makefile.OCaml ${WRKSRC}/fsmonitor/linux/Makefile .endif post-build: (cd ${WRKSRC} && HOME=${WRKSRC} ./unison -selftest -ui text -batch) .if ${FLAVOR} == x11 @${ECHO} Building text-only version @${ECHO} ${WRKSRC} ${SETENV} ${MAKE_ENV} ${MAKE_CMD} -C ${WRKSRC} UISTYLE=text NAME=unison-text @cd ${WRKSRC}/win32rc && ${LOCALBASE}/bin/icotool -x U.ico .endif do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}${VERSIONSUFFIX} .if ${FLAVOR} == x11 ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}-text ${STAGEDIR}${PREFIX}/bin/${PORTNAME}${VERSIONSUFFIX}-text ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.desktop ${STAGEDIR}${DESKTOPDIR}/${PORTNAME}${VERSIONSUFFIX}.desktop ${INSTALL_DATA} ${WRKSRC}/win32rc/U_4_48x48x32.png ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}${VERSIONSUFFIX}.png .endif do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR} do-install-FSMONITOR-on: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}-fsmonitor ${STAGEDIR}${PREFIX}/bin/${PORTNAME}-fsmonitor${VERSIONSUFFIX} .include diff --git a/net/unison248/files/patch-Makefile.OCaml b/net/unison248/files/patch-Makefile.OCaml index 3e91ae298763..73ff7ac83133 100644 --- a/net/unison248/files/patch-Makefile.OCaml +++ b/net/unison248/files/patch-Makefile.OCaml @@ -1,34 +1,43 @@ ---- Makefile.OCaml.orig 2017-03-23 16:39:49 UTC +--- Makefile.OCaml.orig 2017-12-18 12:23:54 UTC +++ Makefile.OCaml -@@ -32,7 +32,11 @@ ifeq ($(shell uname),OpenBSD) +@@ -32,7 +32,11 @@ ifeq ($(shell uname),NetBSD) else ifeq ($(shell uname),NetBSD) OSARCH=NetBSD +else +ifeq ($(shell uname),FreeBSD) + OSARCH=FreeBSD endif +endif ifeq ($(shell uname),Linux) OSARCH=Linux endif -@@ -311,6 +315,10 @@ ifeq ($(OSARCH),Linux) +@@ -240,7 +244,7 @@ OCAMLLIBS+=unix.cma str.cma bigarray.cma + # File extensions will be substituted for the native code version + OCAMLLIBS+=unix.cma str.cma bigarray.cma + +-COBJS+=osxsupport$(OBJ_EXT) pty$(OBJ_EXT) bytearray_stubs$(OBJ_EXT) ++COBJS+=osxsupport$(OBJ_EXT) pty$(OBJ_EXT) bytearray_stubs$(OBJ_EXT) hash_compat$(OBJ_EXT) + + ######################################################################## + ### User Interface setup +@@ -311,6 +315,10 @@ endif -include fsmonitor/linux/Makefile src/fsmonitor/linux/Makefile endif +ifeq ($(OSARCH),FreeBSD) +-include fsmonitor/linux/Makefile src/fsmonitor/linux/Makefile +endif + ifeq ($(OSARCH),win32gnuc) -include fsmonitor/windows/Makefile src/fsmonitor/windows/Makefile endif @@ -436,7 +444,7 @@ win32rc/unison.res.lib: win32rc/unison.res %.o %.obj: %.c @echo "$(OCAMLOPT): $< ---> $@" - $(CAMLC) $(CAMLFLAGS) -ccopt $(OUTPUT_SEL)$(CWD)/$@ -c $(CWD)/$< + $(CAMLC) $(CAMLFLAGS) -ccopt $(OUTPUT_SEL)$(CWD)/$@ -c $(CFLAGS) $(CWD)/$< $(NAME)$(EXEC_EXT): $(CAMLOBJS) $(COBJS) @echo Linking $@ diff --git a/net/unison248/files/patch-hash__compat.c b/net/unison248/files/patch-hash__compat.c new file mode 100644 index 000000000000..ba746e41d22b --- /dev/null +++ b/net/unison248/files/patch-hash__compat.c @@ -0,0 +1,168 @@ +--- hash_compat.c.orig 2024-02-06 20:29:47 UTC ++++ hash_compat.c +@@ -0,0 +1,165 @@ ++/* The pre-OCaml 4.00 hash implementation */ ++/* FIXME: This is included for backwards compatibility only and must be ++ * REMOVED when a new hash function included in a stable release has been ++ * available for a few years. The removal of this function will break ++ * Unison version compatibility. There must be plenty of time given ++ * for users to upgrade (most users don't compile themselves and are at ++ * mercy of whatever package repositories they use). */ ++ ++/* Code copied from OCaml sources */ ++/**************************************************************************/ ++/* */ ++/* OCaml */ ++/* */ ++/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ ++/* */ ++/* Copyright 1996 Institut National de Recherche en Informatique et */ ++/* en Automatique. */ ++/* */ ++/* All rights reserved. This file is distributed under the terms of */ ++/* the GNU Lesser General Public License version 2.1, with the */ ++/* special exception on linking described in the file LICENSE. */ ++/* */ ++/**************************************************************************/ ++ ++#include ++#include ++#include ++ ++struct hash_state { ++ uintnat accu; ++ intnat univ_limit, univ_count; ++}; ++ ++static void hash_aux(struct hash_state*, value obj); ++ ++CAMLprim value unsn_hash_univ_param(value count, value limit, value obj) ++{ ++ struct hash_state h; ++ h.univ_limit = Long_val(limit); ++ h.univ_count = Long_val(count); ++ h.accu = 0; ++ hash_aux(&h, obj); ++ return Val_long(h.accu & 0x3FFFFFFF); ++ /* The & has two purposes: ensure that the return value is positive ++ and give the same result on 32 bit and 64 bit architectures. */ ++} ++ ++#define Alpha 65599 ++#define Beta 19 ++#define Combine(new) (h->accu = h->accu * Alpha + (new)) ++#define Combine_small(new) (h->accu = h->accu * Beta + (new)) ++ ++static void hash_aux(struct hash_state* h, value obj) ++{ ++ unsigned char * p; ++ mlsize_t i, j; ++ tag_t tag; ++ ++ h->univ_limit--; ++ if (h->univ_count < 0 || h->univ_limit < 0) return; ++ ++ again: ++ if (Is_long(obj)) { ++ h->univ_count--; ++ Combine(Long_val(obj)); ++ return; ++ } ++ if (! Is_in_value_area(obj)) { ++ /* obj is a pointer outside the heap, to an object with ++ a priori unknown structure. Use its physical address as hash key. */ ++ Combine((intnat) obj); ++ return; ++ } ++ /* Pointers into the heap are well-structured blocks. So are atoms. ++ We can inspect the block contents. */ ++ /* The code needs reindenting later. Leaving as is to facilitate review. */ ++ tag = Tag_val(obj); ++ switch (tag) { ++ case String_tag: ++ h->univ_count--; ++ i = caml_string_length(obj); ++ for (p = &Byte_u(obj, 0); i > 0; i--, p++) ++ Combine_small(*p); ++ break; ++ case Double_tag: ++ /* For doubles, we inspect their binary representation, LSB first. ++ The results are consistent among all platforms with IEEE floats. */ ++ h->univ_count--; ++#ifdef ARCH_BIG_ENDIAN ++ for (p = &Byte_u(obj, sizeof(double) - 1), i = sizeof(double); ++ i > 0; ++ p--, i--) ++#else ++ for (p = &Byte_u(obj, 0), i = sizeof(double); ++ i > 0; ++ p++, i--) ++#endif ++ Combine_small(*p); ++ break; ++ case Double_array_tag: ++ h->univ_count--; ++ for (j = 0; j < Bosize_val(obj); j += sizeof(double)) { ++#ifdef ARCH_BIG_ENDIAN ++ for (p = &Byte_u(obj, j + sizeof(double) - 1), i = sizeof(double); ++ i > 0; ++ p--, i--) ++#else ++ for (p = &Byte_u(obj, j), i = sizeof(double); ++ i > 0; ++ p++, i--) ++#endif ++ Combine_small(*p); ++ } ++ break; ++ case Abstract_tag: ++ /* We don't know anything about the contents of the block. ++ Better do nothing. */ ++ break; ++ case Infix_tag: ++ hash_aux(h, obj - Infix_offset_val(obj)); ++ break; ++ case Forward_tag: ++ obj = Forward_val (obj); ++ goto again; ++ case Object_tag: ++ h->univ_count--; ++ Combine(Oid_val(obj)); ++ break; ++ case Custom_tag: ++ /* If no hashing function provided, do nothing */ ++ if (Custom_ops_val(obj)->hash != NULL) { ++ h->univ_count--; ++ Combine(Custom_ops_val(obj)->hash(obj)); ++ } ++ break; ++#ifdef NO_NAKED_POINTERS ++ case Closure_tag: ++ h->univ_count--; ++ Combine_small(tag); ++ /* Recursively hash the environment fields */ ++ i = Wosize_val(obj); ++ j = Start_env_closinfo(Closinfo_val(obj)); ++ while (i > j) { ++ i--; ++ hash_aux(h, Field(obj, i)); ++ } ++ /* Combine the code pointers, closure info fields, and infix headers */ ++ while (i > 0) { ++ i--; ++ Combine(Field(obj, i)); ++ h->univ_count--; ++ } ++ break; ++#endif ++ default: ++ h->univ_count--; ++ Combine_small(tag); ++ i = Wosize_val(obj); ++ while (i != 0) { ++ i--; ++ hash_aux(h, Field(obj, i)); ++ } ++ break; ++ } ++} diff --git a/net/unison248/files/patch-uutil.ml b/net/unison248/files/patch-uutil.ml new file mode 100644 index 000000000000..cf364ade3fcf --- /dev/null +++ b/net/unison248/files/patch-uutil.ml @@ -0,0 +1,11 @@ +--- uutil.ml.orig 2024-02-06 20:32:31 UTC ++++ uutil.ml +@@ -34,7 +34,7 @@ let hash2 x y = (17 * x + 257 * y) land 0x3FFFFFFF + + let hash2 x y = (17 * x + 257 * y) land 0x3FFFFFFF + +-external hash_param : int -> int -> 'a -> int = "caml_hash_univ_param" "noalloc" ++external hash_param : int -> int -> 'a -> int = "unsn_hash_univ_param" "noalloc" + + let hash x = hash_param 10 100 x + diff --git a/security/ocaml-ssl/Makefile b/security/ocaml-ssl/Makefile index 9bf7ed9c26bb..9d096a157b62 100644 --- a/security/ocaml-ssl/Makefile +++ b/security/ocaml-ssl/Makefile @@ -1,37 +1,38 @@ PORTNAME= ssl PORTVERSION= 0.5.13 +PORTREVISION= 1 CATEGORIES= security devel PKGNAMEPREFIX= ocaml- MAINTAINER= danfe@FreeBSD.org COMMENT= OpenSSL bindings for OCaml WWW= https://github.com/savonet/ocaml-ssl LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= dune:devel/ocaml-dune USES= ssl USE_GITHUB= yes GH_ACCOUNT= savonet GH_PROJECT= ocaml-ssl USE_OCAML= yes DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} EXAMPLESDIR= ${OCAML_EXAMPLESDIR}/${PORTNAME} OPTIONS_DEFINE= DOCS EXAMPLES do-build: cd ${BUILD_WRKSRC} && dune build -p ${PORTNAME} -j ${MAKE_JOBS_NUMBER} do-install: cd ${INSTALL_WRKSRC} && dune install --destdir=${STAGEDIR} \ --libdir=${PREFIX}/${OCAML_SITELIBDIR} do-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR} .include diff --git a/sysutils/ledit/Makefile b/sysutils/ledit/Makefile index dc7451c36f6c..889e9eba6e6b 100644 --- a/sysutils/ledit/Makefile +++ b/sysutils/ledit/Makefile @@ -1,38 +1,39 @@ PORTNAME= ledit -PORTVERSION= 2.04 -PORTREVISION= 2 +PORTVERSION= 2.06 CATEGORIES= sysutils -MASTER_SITES= http://cristal.inria.fr/%SUBDIR%/ \ - http://pauillac.inria.fr/%SUBDIR%/ -MASTER_SITE_SUBDIR= ~ddr/${PORTNAME}/distrib/src MAINTAINER= k@stereochro.me COMMENT= Line editor to be used with interactive commands WWW= http://cristal.inria.fr/~ddr/ledit/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= camlp5r:devel/ocaml-camlp5 +BUILD_DEPENDS= camlp5r:devel/ocaml-camlp5 \ + ${OCAMLFIND_DEPEND} -USES= gmake tar:tgz +USES= gmake USE_OCAML= yes +USE_GITHUB= yes +GH_ACCOUNT= chetmurthy +GH_TAGNAME= ledit-${PORTVERSION:S/./-/} ALL_TARGET= all ledit.opt MAKE_JOBS_UNSAFE= yes OPTIONS_DEFINE= DOCS do-configure: - ${REINPLACE_CMD} -e '/^BINDIR=/s|/usr/local|${STAGEDIR}${PREFIX}|' \ - -e '/^LIBDIR=/s|/usr/local|${STAGEDIR}${PREFIX}|' \ - -e '/^MANDIR=/s|/usr/local|${STAGEDIR}${PREFIX}/share|' \ + ${REINPLACE_CMD} -e '/^INCLUDES=/s|-I +../camlp-streams|-I +site-lib/camlp-streams|' \ + -e '/^CAMLP5=/s|-I +../camlp-streams|-I +site-lib/camlp-streams|' \ ${WRKSRC}/Makefile -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ledit +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/ledit.opt ${STAGEDIR}${PREFIX}/bin/ledit @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/CHANGES ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/CHANGES ${STAGEDIR}${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/share/man/man1 + @${INSTALL_MAN} ${WRKSRC}/ledit.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include diff --git a/sysutils/ledit/distinfo b/sysutils/ledit/distinfo index f4404065e7a0..bb656293e8a8 100644 --- a/sysutils/ledit/distinfo +++ b/sysutils/ledit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1571546227 -SHA256 (ledit-2.04.tgz) = 484897016b001b6d64eb24e38a213177b230ebf8e0d9808a969b62f012e70ee4 -SIZE (ledit-2.04.tgz) = 24430 +TIMESTAMP = 1706880759 +SHA256 (chetmurthy-ledit-2.06-ledit-2-06_GH0.tar.gz) = 9fb4fe256ca9e878a0b47dfd43b4c64c6a3f089c9e76193b2db347f0d90855be +SIZE (chetmurthy-ledit-2.06-ledit-2-06_GH0.tar.gz) = 25413 diff --git a/sysutils/ledit/files/patch-go.ml b/sysutils/ledit/files/patch-go.ml new file mode 100644 index 000000000000..8a2c604dbae1 --- /dev/null +++ b/sysutils/ledit/files/patch-go.ml @@ -0,0 +1,11 @@ +--- go.ml.orig 2022-12-23 21:06:50 UTC ++++ go.ml +@@ -14,7 +14,7 @@ open Sys; + open Ledit; + open Sys; + +-value version = "2.05"; ++value version = "2.06"; + + value usage () = do { + prerr_string "Usage: "; diff --git a/textproc/ocaml-text/Makefile b/textproc/ocaml-text/Makefile index c50774fd5f43..62ae470e5616 100644 --- a/textproc/ocaml-text/Makefile +++ b/textproc/ocaml-text/Makefile @@ -1,52 +1,52 @@ PORTNAME= text PORTVERSION= 0.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= OCaml library for dealing with text WWW= https://forge.ocamlcore.org/projects/ocaml-text/ BUILD_DEPENDS= ocamlbuild:devel/ocaml-ocamlbuild USE_GITHUB= yes GH_ACCOUNT= vbmithr GH_PROJECT= ${PKGNAMEPREFIX}${PORTNAME} USES= gmake HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix ${PREFIX} \ --destdir ${STAGEDIR} USE_OCAML= yes USE_OCAML_FINDLIB= yes USE_OCAML_CAMLP4= yes USE_OCAML_LDCONFIG= yes USE_OCAMLFIND_PLIST= yes SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} OPTIONS_DEFINE= PCRE OPTIONS_DEFAULT= PCRE PCRE_CONFIGURE_ENABLE= pcre PCRE_BUILD_DEPENDS= ${SA_DIR}/pcre/pcre.a:devel/ocaml-pcre PCRE_RUN_DEPENDS= ${SA_DIR}/pcre/pcre.a:devel/ocaml-pcre post-patch: @${REINPLACE_CMD} -e 's,"install" :: findlib_name,"install" :: "-destdir ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib" :: "-ldconf /dev/null" :: findlib_name,' \ ${WRKSRC}/setup.ml do-configure: cd ${WRKSRC}; ocaml setup.ml -configure ${CONFIGURE_ARGS} do-build: cd ${WRKSRC}; ocaml setup.ml -build do-install: ${MKDIR} ${STAGEDIR}${OCAMLFIND_DESTDIR} cd ${WRKSRC}; ocaml setup.ml -install .include diff --git a/www/geneweb/Makefile b/www/geneweb/Makefile index 752457442848..d224efaec9e2 100644 --- a/www/geneweb/Makefile +++ b/www/geneweb/Makefile @@ -1,43 +1,45 @@ PORTNAME= geneweb DISTVERSIONPREFIX= distrib- DISTVERSION= 6-08 PORTREVISION= 3 CATEGORIES= www MAINTAINER= alex@stangl.us COMMENT= Advanced genealogy software WWW= https://opensource.geneanet.org/projects/geneweb/ LICENSE= GPLv2 BUILD_DEPENDS= ocamlc:lang/ocaml \ camlp5:devel/ocaml-camlp5 \ ocamlfind:devel/ocaml-findlib USE_GITHUB= yes GH_ACCOUNT= geneweb GH_TAGNAME= 13c850a0cc3973daf7ae3e0772a1621f84052041 CONFLICTS_INSTALL= coreutils # bin/gwc HAS_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes MAKE_ENV+= STAGEDIR=${STAGEDIR} SUB_FILES+= pkg-message USE_RC_SUBR= gwd post-patch: - @${REINPLACE_CMD} -e 's,52,& -unsafe-string,' \ + @${REINPLACE_CMD} \ + -e 's,^OCAMLC=.*,OCAMLC=ocamlfind ocamlc -package camlp5.streams -package camlp5.gramlib -package unix -package str -w -3 -warn-error +a-52 -unsafe-string,' \ + -e 's,^OCAMLOPT=.*,OCAMLOPT=ocamlfind ocamlopt -package camlp5.streams -package camlp5.gramlib -package unix -package str -w -3 -warn-error +a-52 -unsafe-string,' \ ${WRKSRC}/tools/Makefile.inc.unix post-install: (cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} distrib) ${INSTALL_DATA} ${WRKSRC}/etc/a.gwf ${STAGEDIR}${PREFIX}/share/geneweb @${MKDIR} ${STAGEDIR}${PREFIX}/share/geneweb/distribution @${CP} -a ${WRKSRC}/distribution ${STAGEDIR}${PREFIX}/share/geneweb/ @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/gwc1 @${STRIP_CMD} ${STAGEDIR}${PREFIX}/share/geneweb/distribution/gw/gwc1 ${INSTALL_SCRIPT} ${FILESDIR}/install.sh ${STAGEDIR}${PREFIX}/share/geneweb .include diff --git a/www/geneweb/files/patch-ged2gwb_Makefile b/www/geneweb/files/patch-ged2gwb_Makefile new file mode 100644 index 000000000000..b8158fc3c38d --- /dev/null +++ b/www/geneweb/files/patch-ged2gwb_Makefile @@ -0,0 +1,18 @@ +--- ged2gwb/Makefile.orig 2024-02-11 19:42:58 UTC ++++ ged2gwb/Makefile +@@ -26,13 +26,13 @@ ged2gwb.opt: $(OBJS:.cmo=.cmx) + $(OCAMLC) -custom $(STATIC) $(OCAMLD) unix.cma str.cma $(LIBUNIX) -I $(CAMLP5D) gramlib.cma $(OBJS) -o ged2gwb.out + + ged2gwb.opt: $(OBJS:.cmo=.cmx) +- $(OCAMLOPT) $(STATIC) unix.cmxa str.cmxa $(LIBUNIX) -I $(CAMLP5D) gramlib.cmxa $(OBJS:.cmo=.cmx) -o ged2gwb.opt ++ $(OCAMLOPT) -linkpkg $(OBJS:.cmo=.cmx) -o ged2gwb.opt + + ged2gwb2.out: $(OBJS2) + $(OCAMLC) -custom $(STATIC) $(OCAMLD) unix.cma str.cma $(LIBUNIX) -I $(CAMLP5D) gramlib.cma $(OBJS2) -o ged2gwb2.out + + ged2gwb2.opt: $(OBJS2:.cmo=.cmx) +- $(OCAMLOPT) $(STATIC) unix.cmxa str.cmxa $(LIBUNIX) -I $(CAMLP5D) gramlib.cmxa $(OBJS2:.cmo=.cmx) -o ged2gwb2.opt ++ $(OCAMLOPT) -linkpkg $(OBJS2:.cmo=.cmx) -o ged2gwb2.opt + + depend: + TOP=.. ../tools/camlp5_depend.sh $(OCAMLI) *.ml* > .depend diff --git a/www/geneweb/files/patch-ged2gwb_ged2gwb.ml b/www/geneweb/files/patch-ged2gwb_ged2gwb.ml new file mode 100644 index 000000000000..4f79a70b096b --- /dev/null +++ b/www/geneweb/files/patch-ged2gwb_ged2gwb.ml @@ -0,0 +1,11 @@ +--- ged2gwb/ged2gwb.ml.orig 2024-02-11 19:27:48 UTC ++++ ged2gwb/ged2gwb.ml +@@ -603,7 +603,7 @@ value date_lexer = + ; + + value date_lexer = +- {Token.tok_func s = (make_date_lexing s, fun _ -> Token.dummy_loc); ++ {Token.tok_func s = (make_date_lexing s, Plexing.Locations.create()); + Token.tok_using = using_token; Token.tok_removing _ = (); + Token.tok_match = tparse; Token.tok_text _ = ""; + Token.tok_comm = None} diff --git a/www/geneweb/files/patch-ged2gwb_ged2gwb2.ml b/www/geneweb/files/patch-ged2gwb_ged2gwb2.ml new file mode 100644 index 000000000000..dfd4eb15e342 --- /dev/null +++ b/www/geneweb/files/patch-ged2gwb_ged2gwb2.ml @@ -0,0 +1,11 @@ +--- ged2gwb/ged2gwb2.ml.orig 2024-02-11 19:44:49 UTC ++++ ged2gwb/ged2gwb2.ml +@@ -501,7 +501,7 @@ value date_lexer = + ; + + value date_lexer = +- {Token.tok_func s = (make_date_lexing s, fun _ -> Token.dummy_loc); ++ {Token.tok_func s = (make_date_lexing s, Plexing.Locations.create ()); + Token.tok_using = using_token; Token.tok_removing _ = (); + Token.tok_match = tparse; Token.tok_text _ = ""; + Token.tok_comm = None} diff --git a/www/geneweb/files/patch-setup_Makefile b/www/geneweb/files/patch-setup_Makefile new file mode 100644 index 000000000000..2d4cfb73c3e4 --- /dev/null +++ b/www/geneweb/files/patch-setup_Makefile @@ -0,0 +1,11 @@ +--- setup/Makefile.orig 2024-02-11 19:47:03 UTC ++++ setup/Makefile +@@ -64,7 +64,7 @@ setup.opt: $(OBJS:.cmo=.cmx) + $(OCAMLC) -custom $(STATIC) unix.cma $(LIBUNIX) $(OBJS) -o setup.out + + setup.opt: $(OBJS:.cmo=.cmx) +- $(OCAMLOPT) $(STATIC) unix.cmxa $(LIBUNIX) $(OBJS:.cmo=.cmx) -o setup.opt ++ $(OCAMLOPT) -linkpkg $(OBJS:.cmo=.cmx) -o setup.opt + + depend: + TOP=.. ../tools/camlp5_depend.sh $(OCAMLI) *.ml* > .depend diff --git a/www/geneweb/files/patch-src__Makefile b/www/geneweb/files/patch-src__Makefile index 35ed89973d9d..bcb4bd2c2b1f 100644 --- a/www/geneweb/files/patch-src__Makefile +++ b/www/geneweb/files/patch-src__Makefile @@ -1,10 +1,19 @@ --- ./src/Makefile.orig 2013-03-01 03:06:44.000000000 UTC +++ ./src/Makefile 2014-05-13 23:46:54.000000000 @@ -2,7 +2,6 @@ include ../tools/Makefile.inc -PREFIX=/usr OCAMLI=-I ../wserver -I ../dag2html GWC_OBJS=argl.cmo lock.cmo adef.cmo iovalue.cmo buff.cmo name.cmo mutil.cmo secure.cmo btree.cmo futil.cmo dutil.cmo database.cmo db2.cmo db2disk.cmo diff.cmo outbase.cmo gwdb.cmo pqueue.cmo progrBar.cmo consang.cmo consangAll.cmo checkItem.cmo check.cmo calendar.cmo notesLinks.cmo gwcomp.cmo db1link.cmo gwc.cmo GWC2_OBJS=calendar.cmo adef.cmo iovalue.cmo buff.cmo name.cmo mutil.cmo gwcomp.cmo argl.cmo lock.cmo progrBar.cmo secure.cmo iochan.cmo futil.cmo db2.cmo db2out.cmo notesLinks.cmo db2disk.cmo dutil.cmo btree.cmo database.cmo gwdb.cmo consang.cmo consangAll.cmo checkItem.cmo check.cmo db2link.cmo gwc2.cmo +@@ -99,7 +98,7 @@ gwd.opt: $(GWD_OBJS:.cmo=.cmx) + gwd.opt: $(GWD_OBJS:.cmo=.cmx) + $(OCAMLOPT) $(GWD_OBJS1:.cmo=.cmx) -a -o x1.cmxa + $(OCAMLOPT) $(GWD_OBJS2:.cmo=.cmx) -a -o x2.cmxa +- $(OCAMLOPT) $(STATIC) unix.cmxa str.cmxa -I $(CAMLP5D) gramlib.cmxa x1.cmxa x2.cmxa compilation.cmx gwd.cmx $(LIBUNIX) -o gwd.opt ++ $(OCAMLOPT) -linkpkg x1.cmxa x2.cmxa compilation.cmx gwd.cmx -o gwd.opt + + gwu.out: $(GWU_OBJS) + $(OCAMLC) -custom $(STATIC) unix.cma $(LIBUNIX) $(GWU_OBJS) -o gwu.out diff --git a/www/geneweb/files/patch-src_dag.ml b/www/geneweb/files/patch-src_dag.ml new file mode 100644 index 000000000000..2ee9d41b42c2 --- /dev/null +++ b/www/geneweb/files/patch-src_dag.ml @@ -0,0 +1,52 @@ +--- src/dag.ml.orig 2016-11-06 14:21:56 UTC ++++ src/dag.ml +@@ -48,7 +48,7 @@ value tag_dag d = + }) + d + ; +-end END; ++end; END; + + (* input dag *) + +@@ -308,7 +308,7 @@ value print_table conf hts = + end_centered conf; + } + ; +-end END; ++end; END; + + (* + * Print without HTML table tags: using
+@@ -837,7 +837,7 @@ value print_html_table conf hts =
+     else print_table conf hts
+   }
+ ;
+-end END;
++end; END;
+ 
+ value make_tree_hts conf base elem_txt vbar_txt invert set spl d =
+   let no_group = p_getenv conf.env "nogroup" = Some "on" in
+@@ -1026,7 +1026,7 @@ value print_dag_page conf base page_title hts next_txt
+     Hutil.trailer conf
+   }
+ ;
+-end END;
++end; END;
+ 
+ (* *)
+ 
+@@ -1275,11 +1275,11 @@ value old_print_slices_menu_or_dag_page conf base page
+   if p_getenv conf.env "slices" = Some "on" then print_slices_menu conf hts
+   else print_dag_page conf base page_title hts next_txt
+ ;
+-end ELSE declare
++end; ELSE declare
+ value old_print_slices_menu_or_dag_page conf base page_title hts next_txt =
+   incorrect_request conf
+ ;
+-end END;
++end; END;
+ 
+ value print_slices_menu_or_dag_page conf base page_title hts next_txt =
+ (**)
diff --git a/www/geneweb/files/patch-src_date.ml b/www/geneweb/files/patch-src_date.ml
new file mode 100644
index 000000000000..51e10a47b836
--- /dev/null
+++ b/www/geneweb/files/patch-src_date.ml
@@ -0,0 +1,26 @@
+--- src/date.ml.orig	2024-02-11 18:32:01 UTC
++++ src/date.ml
+@@ -1185,7 +1185,7 @@ value old_print_calendar conf base =
+     trailer conf;
+   }
+ ;
+-end END;
++end; END;
+ 
+ (* *)
+ 
+@@ -1241,7 +1241,7 @@ value print_calendar conf base =
+     (fun _ -> Templ.eval_transl conf) (fun _ -> raise Not_found)
+     get_vother set_vother (print_foreach conf) [] (eval_julian_day conf)
+ ;
+-end ELSE declare
++end; ELSE declare
+ value print_calendar conf base =
+   Hutil.interp conf base "calendar"
+     {Templ.eval_var = eval_var conf;
+@@ -1251,4 +1251,4 @@ value print_calendar conf base =
+      Templ.print_foreach = print_foreach conf}
+     [] (eval_julian_day conf)
+ ;
+-end END;
++end; END;
diff --git a/www/geneweb/files/patch-src_db2disk.ml b/www/geneweb/files/patch-src_db2disk.ml
new file mode 100644
index 000000000000..a1c8ff62cce3
--- /dev/null
+++ b/www/geneweb/files/patch-src_db2disk.ml
@@ -0,0 +1,20 @@
+--- src/db2disk.ml.orig	2024-02-11 18:31:31 UTC
++++ src/db2disk.ml
+@@ -230,7 +230,7 @@ value spi2_first db2 spi (f1, f2) s = do {
+         let ic = fast_open_in_bin_and_seek db2 f1 f2 "index.dat" pos in
+         try
+           loop i where rec loop i =
+-            let (s1, pos) : (string * int) = Iovalue.input ic in
++            let (s1, pos) = Iovalue.input ic in
+             if start_with s1 s then Some (s1, pos, i) else loop (i + 1)
+         with
+         [ End_of_file -> None ]
+@@ -284,7 +284,7 @@ value spi2_next db2 spi (f1, f2) need_whole_list =
+             let pos = input_binary_int ic in
+             fast_open_in_bin_and_seek db2 f1 f2 "index.dat" pos
+           in
+-          let (s, pos) : (string * int) = Iovalue.input ic in
++          let (s, pos) = Iovalue.input ic in
+           let dlen = i - spi.curr_i in
+           Some (i, s, pos, dlen)
+         with
diff --git a/www/geneweb/files/patch-src_gwd.ml b/www/geneweb/files/patch-src_gwd.ml
new file mode 100644
index 000000000000..f47b13df5a72
--- /dev/null
+++ b/www/geneweb/files/patch-src_gwd.ml
@@ -0,0 +1,38 @@
+--- src/gwd.ml.orig	2024-02-11 19:03:33 UTC
++++ src/gwd.ml
+@@ -27,7 +27,7 @@ IFDEF UNIX THEN
+   [Open_wronly; Open_append; Open_creat; Open_text; Open_nonblock]
+ ;
+ IFDEF UNIX THEN
+-value max_clients = ref None
++value max_clients = ref None;
+ END;
+ value robot_xcl = ref None;
+ value auth_file = ref "";
+@@ -1749,7 +1749,7 @@ IFDEF SYS_COMMAND THEN
+ ;
+ 
+ IFDEF SYS_COMMAND THEN
+-value wserver_auto_call = ref False
++value wserver_auto_call = ref False;
+ END;
+ 
+ value geneweb_server () =
+@@ -1809,7 +1809,7 @@ value cgi_timeout tmout _ =
+     Wserver.wprint "\n";
+     Wserver.wflush ();
+     exit 0;
+-  }
++  };
+ END;
+ 
+ IFDEF UNIX THEN
+@@ -1818,7 +1818,7 @@ value manage_cgi_timeout tmout =
+     let _ = Sys.signal Sys.sigalrm (Sys.Signal_handle (cgi_timeout tmout)) in
+     let _ = Unix.alarm tmout in
+     ()
+-  else ()
++  else ();
+ END;
+ 
+ value geneweb_cgi addr script_name contents =
diff --git a/www/geneweb/files/patch-src_mutil.ml b/www/geneweb/files/patch-src_mutil.ml
new file mode 100644
index 000000000000..9cd2eadfdf23
--- /dev/null
+++ b/www/geneweb/files/patch-src_mutil.ml
@@ -0,0 +1,20 @@
+--- src/mutil.ml.orig	2024-02-11 18:31:48 UTC
++++ src/mutil.ml
+@@ -95,7 +95,7 @@ value decline case s =
+       | '>' -> String.sub s ibeg (i + 1 - ibeg) ^ loop (i + 1) (i + 1)
+       | _ -> loop ibeg (i + 1) ]
+ ;
+-end ELSE declare
++end; ELSE declare
+ (* [decline] has been deprecated since version 5.00
+    compatibility code: *)
+ value colon_to_at_word s ibeg iend =
+@@ -158,7 +158,7 @@ value decline case s =
+     (if not (String.contains s ':') then s else colon_to_at s)
+ ;
+ (* end compatibility code *)
+-end END;
++end; END;
+ 
+ value nominative s =
+   match rindex s ':' with
diff --git a/www/geneweb/files/patch-src_relation.ml b/www/geneweb/files/patch-src_relation.ml
new file mode 100644
index 000000000000..b34a3c83f85e
--- /dev/null
+++ b/www/geneweb/files/patch-src_relation.ml
@@ -0,0 +1,16 @@
+--- src/relation.ml.orig	2024-02-11 19:02:59 UTC
++++ src/relation.ml
+@@ -194,11 +194,11 @@ value old_print_relationship_dag conf base elem_txt vb
+   let hts = Dag.make_tree_hts conf base elem_txt vbar_txt invert set [] d in
+   Dag.print_slices_menu_or_dag_page conf base page_title hts next_txt
+ ;
+-end ELSE declare
++end; ELSE declare
+ value old_print_relationship_dag conf base elem_txt vbar_txt path next_txt =
+   incorrect_request conf
+ ;
+-end END;
++end; END;
+ 
+ value add_common_parent base ip1 ip2 set =
+   let a1 = poi base ip1 in
diff --git a/www/geneweb/files/patch-tools_camlp5__comm.sh b/www/geneweb/files/patch-tools_camlp5__comm.sh
new file mode 100644
index 000000000000..8fb5e568bb61
--- /dev/null
+++ b/www/geneweb/files/patch-tools_camlp5__comm.sh
@@ -0,0 +1,11 @@
+--- tools/camlp5_comm.sh.orig	2024-02-11 18:33:15 UTC
++++ tools/camlp5_comm.sh
+@@ -1,7 +1,7 @@
+ #!/bin/sh
+ # $Id: camlp5_comm.sh,v 5.2 2010-09-23 17:16:49 ddr Exp $
+ 
+-ARGS1="$TOP/wserver/pa_macro5.cmo"
++ARGS1="`ocamlfind query camlp5.macro`/pa_macro.cmo"
+ FILE=
+ while test "" != "$1"; do
+ 	case $1 in
diff --git a/www/geneweb/files/patch-wserver_Makefile b/www/geneweb/files/patch-wserver_Makefile
new file mode 100644
index 000000000000..0bc23fc5d7ba
--- /dev/null
+++ b/www/geneweb/files/patch-wserver_Makefile
@@ -0,0 +1,17 @@
+--- wserver/Makefile.orig	2024-02-11 18:30:32 UTC
++++ wserver/Makefile
+@@ -4,12 +4,8 @@ OBJS=wserver.cmo
+ 
+ OBJS=wserver.cmo
+ 
+-all:: pa_macro5.cmo $(OBJS)
+-opt:: pa_macro5.cmo $(OBJS:.cmo=.cmx)
+-
+-pa_macro5.cmo: pa_macro5.ml
+-	camlp5r pa_extend.cmo q_MLast.cmo -o pa_macro5.ppo pa_macro5.ml
+-	ocamlc -c -I "`camlp5 -where`" -impl pa_macro5.ppo
++all:: $(OBJS)
++opt:: $(OBJS:.cmo=.cmx)
+ 
+ depend:
+ 	TOP=.. ../tools/camlp5_depend.sh $(OCAMLI) *.ml* > .depend
diff --git a/www/geneweb/files/patch-wserver_wserver.ml b/www/geneweb/files/patch-wserver_wserver.ml
new file mode 100644
index 000000000000..21ea44996da0
--- /dev/null
+++ b/www/geneweb/files/patch-wserver_wserver.ml
@@ -0,0 +1,61 @@
+--- wserver/wserver.ml.orig	2024-02-11 18:29:57 UTC
++++ wserver/wserver.ml
+@@ -263,7 +263,7 @@ value timeout tmout spid _ =
+     else ();
+     let _ = Unix.waitpid [] pid in ();
+     exit 2
+-  }
++  };
+ END;
+ 
+ value get_request_and_content strm =
+@@ -363,7 +363,7 @@ value copy_what_necessary t oc =
+          })
+   in
+   let _ = get_request_and_content strm in
+-  ()
++  ();
+ END;
+ 
+ value rec list_remove x =
+@@ -372,13 +372,13 @@ value rec list_remove x =
+   | [y :: l] -> if x = y then l else [y :: list_remove x l] ]
+ ;
+ 
+-IFDEF NOFORK THEN declare end ELSE
+-value pids = ref []
++IFDEF NOFORK THEN declare end; ELSE
++value pids = ref [];
+ END;
+-IFDEF NOFORK THEN declare end ELSE
+-value cleanup_verbose = ref True
++IFDEF NOFORK THEN declare end; ELSE
++value cleanup_verbose = ref True;
+ END;
+-IFDEF NOFORK THEN declare end ELSE
++IFDEF NOFORK THEN declare end; ELSE
+ value cleanup_sons () =
+   List.iter
+     (fun p ->
+@@ -402,10 +402,10 @@ value cleanup_sons () =
+        in
+        if pid = 0 then ()
+        else pids.val := list_remove pid pids.val)
+-     pids.val
++     pids.val;
+ END;
+ 
+-IFDEF NOFORK THEN declare end ELSE
++IFDEF NOFORK THEN declare end; ELSE
+ value wait_available max_clients s =
+   match max_clients with
+   [ Some m ->
+@@ -434,7 +434,7 @@ eprintf "*** %02d/%02d/%4d %02d:%02d:%02d %d process(e
+           else ();
+         };
+       }
+-  | None -> () ]
++  | None -> () ];
+ END;
+ 
+ value wait_and_compact s =
diff --git a/x11-toolkits/Makefile b/x11-toolkits/Makefile
index f8f53de0f11c..e6db59e838e5 100644
--- a/x11-toolkits/Makefile
+++ b/x11-toolkits/Makefile
@@ -1,255 +1,256 @@
     COMMENT = X11 toolkits
 
     SUBDIR += SoXt
     SUBDIR += Xaw3d
     SUBDIR += Xmt
     SUBDIR += amtk
     SUBDIR += blt
     SUBDIR += bwidget
     SUBDIR += color-widgets-qt5
     SUBDIR += copperspice
     SUBDIR += ctk
     SUBDIR += fltk
     SUBDIR += fox16
     SUBDIR += fox17
     SUBDIR += fxscintilla
     SUBDIR += gdl
     SUBDIR += girara
     SUBDIR += gnome-pty-helper
     SUBDIR += gnustep-back
     SUBDIR += gnustep-gui
     SUBDIR += granite
     SUBDIR += granite7
     SUBDIR += gstreamer1-plugins-gtk
     SUBDIR += gstreamer1-plugins-pango
     SUBDIR += gtk-layer-shell
     SUBDIR += gtk-sharp-beans
     SUBDIR += gtk-sharp20
     SUBDIR += gtk-sharp30
     SUBDIR += gtk20
     SUBDIR += gtk30
     SUBDIR += gtk4-layer-shell
     SUBDIR += gtk40
     SUBDIR += gtkd
     SUBDIR += gtkdatabox
     SUBDIR += gtkextra
     SUBDIR += gtkglarea2
     SUBDIR += gtkglext
     SUBDIR += gtkglextmm
     SUBDIR += gtkimageview
     SUBDIR += gtkmm24
     SUBDIR += gtkmm30
     SUBDIR += gtksourceview2
     SUBDIR += gtksourceview3
     SUBDIR += gtksourceview4
     SUBDIR += gtksourceview5
     SUBDIR += gtksourceviewmm3
     SUBDIR += guile-gnome-platform
     SUBDIR += imgui
     SUBDIR += irrlicht
     SUBDIR += itk
     SUBDIR += iwidgets
     SUBDIR += kddockwidgets
     SUBDIR += kf5-attica
     SUBDIR += kf5-kcompletion
     SUBDIR += kf5-kconfigwidgets
     SUBDIR += kf5-kdesignerplugin
     SUBDIR += kf5-kguiaddons
     SUBDIR += kf5-kirigami2
     SUBDIR += kf5-kitemviews
     SUBDIR += kf5-kjobwidgets
     SUBDIR += kf5-ktextwidgets
     SUBDIR += kf5-kwidgetsaddons
     SUBDIR += kf5-kxmlgui
     SUBDIR += kf6-attica
     SUBDIR += kf6-kcompletion
     SUBDIR += kf6-kconfigwidgets
     SUBDIR += kf6-kguiaddons
     SUBDIR += kf6-kirigami
     SUBDIR += kf6-kitemviews
     SUBDIR += kf6-kjobwidgets
     SUBDIR += kf6-ktextwidgets
     SUBDIR += kf6-kwidgetsaddons
     SUBDIR += kf6-kxmlgui
     SUBDIR += kirigami-addons
     SUBDIR += kirigami-addons-devel
     SUBDIR += kproperty
     SUBDIR += lesstif
     SUBDIR += libXaw
     SUBDIR += libXmu
     SUBDIR += libXt
     SUBDIR += libadwaita
     SUBDIR += libdazzle
     SUBDIR += libdecor
     SUBDIR += libgdiplus
     SUBDIR += libhandy
     SUBDIR += libhandy0
     SUBDIR += libshumate
     SUBDIR += libunique3
     SUBDIR += libwnck
     SUBDIR += libwnck3
     SUBDIR += libxaw3dxft
     SUBDIR += linux-c7-gtk2
     SUBDIR += linux-c7-gtk3
     SUBDIR += linux-c7-openmotif
     SUBDIR += linux-c7-pango
     SUBDIR += linux-c7-qt-x11
     SUBDIR += linux-c7-tk85
     SUBDIR += movingmotif
     SUBDIR += mowitz
     SUBDIR += mygui
     SUBDIR += mygui-dummy
     SUBDIR += mygui-ogre
     SUBDIR += mygui-opengl
     SUBDIR += nanogui
     SUBDIR += neXtaw
     SUBDIR += ntk
     SUBDIR += nuklear
+    SUBDIR += ocaml-graphics
     SUBDIR += ocaml-lablgtk2
     SUBDIR += ocaml-lablgtk3
     SUBDIR += ocaml-labltk
     SUBDIR += open-motif
     SUBDIR += open-motif-devel
     SUBDIR += osm-gps-map
     SUBDIR += otk
     SUBDIR += p5-Alien-wxWidgets
     SUBDIR += p5-Glade2
     SUBDIR += p5-Gtk2
     SUBDIR += p5-Gtk2-Chmod
     SUBDIR += p5-Gtk2-Ex-Dialogs
     SUBDIR += p5-Gtk2-Ex-FormFactory
     SUBDIR += p5-Gtk2-Ex-PodViewer
     SUBDIR += p5-Gtk2-Ex-Simple-List
     SUBDIR += p5-Gtk2-Ex-Utils
     SUBDIR += p5-Gtk2-ImageView
     SUBDIR += p5-Gtk2-PathButtonBar
     SUBDIR += p5-Gtk3
     SUBDIR += p5-Gtk3-ImageView
     SUBDIR += p5-Gtk3-SimpleList
     SUBDIR += p5-Pango
     SUBDIR += p5-Prima
     SUBDIR += p5-Test-Tk
     SUBDIR += p5-Tk
     SUBDIR += p5-Tk-Action
     SUBDIR += p5-Tk-Autoscroll
     SUBDIR += p5-Tk-ColourChooser
     SUBDIR += p5-Tk-Contrib
     SUBDIR += p5-Tk-CursorControl
     SUBDIR += p5-Tk-DKW
     SUBDIR += p5-Tk-Date
     SUBDIR += p5-Tk-DynaTabFrame
     SUBDIR += p5-Tk-Enscript
     SUBDIR += p5-Tk-FileDialog
     SUBDIR += p5-Tk-FontDialog
     SUBDIR += p5-Tk-GBARR
     SUBDIR += p5-Tk-Getopt
     SUBDIR += p5-Tk-HistEntry
     SUBDIR += p5-Tk-JComboBox
     SUBDIR += p5-Tk-ResizeButton
     SUBDIR += p5-Tk-Role-Dialog
     SUBDIR += p5-Tk-Role-HasWidgets
     SUBDIR += p5-Tk-Splashscreen
     SUBDIR += p5-Tk-Sugar
     SUBDIR += p5-Tk-TableMatrix
     SUBDIR += p5-Tk-ToolBar
     SUBDIR += p5-Tk-WaitBox
     SUBDIR += pango
     SUBDIR += pangolin
     SUBDIR += pangomm
     SUBDIR += pangox-compat
     SUBDIR += plasma5-kdeplasma-addons
     SUBDIR += plasma6-kdeplasma-addons
     SUBDIR += plib
     SUBDIR += py-AnyQt
     SUBDIR += py-Pmw
     SUBDIR += py-awesometkinter
     SUBDIR += py-easygui
     SUBDIR += py-fltk
     SUBDIR += py-guietta
     SUBDIR += py-python-xlib
     SUBDIR += py-qt5-chart
     SUBDIR += py-qt6-chart
     SUBDIR += py-qt6-datavis3d
     SUBDIR += py-tkinter
     SUBDIR += py-tktreectrl
     SUBDIR += py-wxPython4
     SUBDIR += pythonqt
     SUBDIR += qhotkey
     SUBDIR += qml-box2d
     SUBDIR += qt5-charts
     SUBDIR += qt5-datavis3d
     SUBDIR += qt5-declarative
     SUBDIR += qt5-declarative-test
     SUBDIR += qt5-gamepad
     SUBDIR += qt5-gui
     SUBDIR += qt5-quick3d
     SUBDIR += qt5-quickcontrols
     SUBDIR += qt5-quickcontrols2
     SUBDIR += qt5-quicktimeline
     SUBDIR += qt5-uiplugin
     SUBDIR += qt5-virtualkeyboard
     SUBDIR += qt5-widgets
     SUBDIR += qt5pas
     SUBDIR += qt6-charts
     SUBDIR += qt6-datavis3d
     SUBDIR += qt6-declarative
     SUBDIR += qt6-graphs
     SUBDIR += qt6-quick3d
     SUBDIR += qt6-quicktimeline
     SUBDIR += qt6-shadertools
     SUBDIR += qt6-virtualkeyboard
     SUBDIR += qt6pas
     SUBDIR += qtermwidget
     SUBDIR += qwt5-qt5
     SUBDIR += qwt6
     SUBDIR += redkite
     SUBDIR += rep-gtk2
     SUBDIR += rubygem-gdk3
     SUBDIR += rubygem-gdk4
     SUBDIR += rubygem-gtk2
     SUBDIR += rubygem-gtk3
     SUBDIR += rubygem-gtk4
     SUBDIR += rubygem-gtksourceview3
     SUBDIR += rubygem-gtksourceview4
     SUBDIR += rubygem-pango
     SUBDIR += rubygem-poppler
     SUBDIR += rubygem-tk
     SUBDIR += rubygem-uh
     SUBDIR += rubygem-vte3
     SUBDIR += rubygem-vte4
     SUBDIR += scintilla
     SUBDIR += sdl_pango
     SUBDIR += shared-desktop-ontologies
     SUBDIR += skinlf
     SUBDIR += soqt
     SUBDIR += swt
     SUBDIR += tepl6
     SUBDIR += termit
     SUBDIR += tix
     SUBDIR += tk-wrapper
     SUBDIR += tk85
     SUBDIR += tk86
     SUBDIR += tk87
     SUBDIR += tkdnd
     SUBDIR += tkshape
     SUBDIR += tktable
     SUBDIR += tktray
     SUBDIR += tktreectrl
     SUBDIR += unique
     SUBDIR += viewklass
     SUBDIR += vte
     SUBDIR += vte3
     SUBDIR += wlroots
     SUBDIR += wlroots-devel
     SUBDIR += wlroots015
     SUBDIR += wlroots016
     SUBDIR += wmapp
     SUBDIR += wxgtk30
     SUBDIR += wxgtk32
     SUBDIR += xbae
     SUBDIR += xforms
     SUBDIR += xmhtml
     SUBDIR += xwallpaper
     SUBDIR += ztoolkit
 
 .include 
diff --git a/x11-toolkits/ocaml-graphics/Makefile b/x11-toolkits/ocaml-graphics/Makefile
new file mode 100644
index 000000000000..8978f669d580
--- /dev/null
+++ b/x11-toolkits/ocaml-graphics/Makefile
@@ -0,0 +1,39 @@
+PORTNAME=	graphics
+PORTVERSION=	5.1.2
+PORTREVISION=	1
+CATEGORIES=	x11-toolkits
+PKGNAMEPREFIX=	ocaml-
+
+MAINTAINER=	freebsd@dev.thsi.be
+COMMENT=	Graphics library for OCaml
+WWW=		https://github.com/ocaml/graphics
+
+LICENSE=	LGPL21
+
+USES=		ocaml:dune pkgconfig xorg
+USE_GITHUB=	yes
+GH_ACCOUNT=	ocaml
+GH_PROJECT=	graphics
+USE_OCAML=	yes
+USE_OCAML_LDCONFIG=	yes
+USE_XORG=	x11 xorgproto
+
+DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
+PORTDOCS=	CHANGES.md LICENSE README.md
+
+OPTIONS_DEFINE=		DOCS
+
+SA_DIR=		${LOCALBASE}/${OCAML_SITELIBDIR}
+
+post-install:
+	@${STRIP_CMD} \
+		${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/dllgraphics_stubs.so \
+		${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/graphics.cmxs
+
+post-patch:
+	${REINPLACE_CMD} \
+		-e "s/(name graphics)/&\n (version ${PORTVERSION})/" \
+		-e "s/(lang dune 2.1)/(lang dune 2.5)/" \
+		${WRKSRC}/dune-project
+
+.include 
diff --git a/x11-toolkits/ocaml-graphics/distinfo b/x11-toolkits/ocaml-graphics/distinfo
new file mode 100644
index 000000000000..dce4c964db3f
--- /dev/null
+++ b/x11-toolkits/ocaml-graphics/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1643062145
+SHA256 (ocaml-graphics-5.1.2_GH0.tar.gz) = 9db6e8cd71a77fbec28cdee3fe5ed4640d6b92d9eb5ad68150beccae316620fe
+SIZE (ocaml-graphics-5.1.2_GH0.tar.gz) = 64498
diff --git a/x11-toolkits/ocaml-graphics/pkg-descr b/x11-toolkits/ocaml-graphics/pkg-descr
new file mode 100644
index 000000000000..102b990679af
--- /dev/null
+++ b/x11-toolkits/ocaml-graphics/pkg-descr
@@ -0,0 +1,3 @@
+The OCaml Graphics library provides a portable graphic interface for
+OCaml on Unix (X11) and Windows (Win32 API). It used to be distributed
+with the main OCaml distribution up until version 4.08.
diff --git a/x11-toolkits/ocaml-graphics/pkg-plist b/x11-toolkits/ocaml-graphics/pkg-plist
new file mode 100644
index 000000000000..11bfbcc77644
--- /dev/null
+++ b/x11-toolkits/ocaml-graphics/pkg-plist
@@ -0,0 +1,21 @@
+%%OCAML_SITELIBDIR%%/graphics/META
+%%OCAML_SITELIBDIR%%/graphics/dllgraphics_stubs.so
+%%OCAML_SITELIBDIR%%/graphics/dune-package
+%%OCAML_SITELIBDIR%%/graphics/graphics.a
+%%OCAML_SITELIBDIR%%/graphics/graphics.cma
+%%OCAML_SITELIBDIR%%/graphics/graphics.cmi
+%%OCAML_SITELIBDIR%%/graphics/graphics.cmt
+%%OCAML_SITELIBDIR%%/graphics/graphics.cmti
+%%OCAML_SITELIBDIR%%/graphics/graphics.cmx
+%%OCAML_SITELIBDIR%%/graphics/graphics.cmxa
+%%OCAML_SITELIBDIR%%/graphics/graphics.cmxs
+%%OCAML_SITELIBDIR%%/graphics/graphics.ml
+%%OCAML_SITELIBDIR%%/graphics/graphics.mli
+%%OCAML_SITELIBDIR%%/graphics/graphicsX11.cmi
+%%OCAML_SITELIBDIR%%/graphics/graphicsX11.cmt
+%%OCAML_SITELIBDIR%%/graphics/graphicsX11.cmti
+%%OCAML_SITELIBDIR%%/graphics/graphicsX11.cmx
+%%OCAML_SITELIBDIR%%/graphics/graphicsX11.ml
+%%OCAML_SITELIBDIR%%/graphics/graphicsX11.mli
+%%OCAML_SITELIBDIR%%/graphics/libgraphics_stubs.a
+%%OCAML_SITELIBDIR%%/graphics/opam
diff --git a/x11-toolkits/ocaml-lablgtk2/Makefile b/x11-toolkits/ocaml-lablgtk2/Makefile
index 66ccf024b1b6..b8b475901d3d 100644
--- a/x11-toolkits/ocaml-lablgtk2/Makefile
+++ b/x11-toolkits/ocaml-lablgtk2/Makefile
@@ -1,81 +1,82 @@
 PORTNAME=	lablgtk2
 PORTVERSION=	2.18.13
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	x11-toolkits
 PKGNAMEPREFIX=	ocaml-
 
 MAINTAINER=	danfe@FreeBSD.org
 COMMENT=	Objective Caml interface to GTK 2.x
 WWW=		https://garrigue.github.io/lablgtk/
 
 LICENSE=	LGPL21
 LICENSE_FILE=	${WRKSRC}/COPYING
 
 USES=		gmake gnome pkgconfig
 USE_GNOME=	cairo gdkpixbuf2 gtk20
 USE_OCAML=	yes
 USE_OCAML_FINDLIB=	yes
 USE_OCAML_CAMLP4=	yes
 USE_OCAML_LDCONFIG=	yes
 USE_OCAML_WASH=		yes
 
 HAS_CONFIGURE=	yes
 ALL_TARGET=	all opt
 MAKE_JOBS_UNSAFE=	yes
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	garrigue
 GH_PROJECT=	lablgtk
 
 PORTSCOUT=	limit:^${PORTVERSION:R:R}
 
 CONFIGURE_ARGS=	--prefix=${PREFIX} --with-libdir=${PREFIX}/${OCAML_LIBDIR} \
 		--without-gtksourceview --without-gnomeui \
 		--without-panel --without-gnomecanvas
 CONFIGURE_ENV=	CAMLP4O="camlp4 pa_o.cmo pa_op.cmo pr_dump.cmo"
 
 DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
 PORTDOCS=	COPYING README
 EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
 PORTEXAMPLES=	*
 
 OPTIONS_DEFINE=	DOCS EXAMPLES GLADE GTKGLAREA GTKSOURCEVIEW2 GTKSPELL LIBRSVG2
 OPTIONS_DEFAULT=	GLADE GTKGLAREA GTKSOURCEVIEW2 GTKSPELL LIBRSVG2
 OPTIONS_SUB=	yes
 
 GTKGLAREA_DESC=	GtkGLArea support
 GTKSOURCEVIEW2_DESC=	GtkSourceView 2 support
 GTKSPELL_DESC=	GtkSpell support
 
 GLADE_CONFIGURE_WITH=glade
 GLADE_USE=	GNOME=libglade2
 GLADE_VARS=	EXAMPLES_SUBDIRS+=glade
 
 GTKGLAREA_BUILD_DEPENDS=lablgl:graphics/ocaml-lablgl
 GTKGLAREA_LIB_DEPENDS=	libgtkgl-2.0.so:x11-toolkits/gtkglarea2
 GTKGLAREA_RUN_DEPENDS=	lablgl:graphics/ocaml-lablgl
 GTKGLAREA_CONFIGURE_WITH=gl
+GTKGLAREA_CONFIGURE_ENV=LABLGLDIR=+site-lib/lablGL
 GTKGLAREA_VARS=		EXAMPLES_SUBDIRS+=GL
 
 GTKSOURCEVIEW2_CONFIGURE_WITH=gtksourceview2
 GTKSOURCEVIEW2_USE=	GNOME=gtksourceview2
 GTKSOURCEVIEW2_VARS=	EXAMPLES_SUBDIRS+=sourceview
 
 GTKSPELL_LIB_DEPENDS=	libgtkspell.so:textproc/gtkspell
 GTKSPELL_CONFIGURE_WITH=gtkspell
 
 LIBRSVG2_CONFIGURE_WITH=rsvg
 LIBRSVG2_USE=		GNOME=librsvg2
 LIBRSVG2_VARS=		EXAMPLES_SUBDIRS+=rsvg
 
 post-install-DOCS-on:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
 
 post-install-EXAMPLES-on:
 	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
 	@cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \
 	"*.ml *.png *.rgb *.xpm text ${EXAMPLES_SUBDIRS}" \
 		${STAGEDIR}${EXAMPLESDIR}
 
 .include 
diff --git a/x11-toolkits/ocaml-lablgtk3/Makefile b/x11-toolkits/ocaml-lablgtk3/Makefile
index dbeeb3f711c5..22bd9791d93d 100644
--- a/x11-toolkits/ocaml-lablgtk3/Makefile
+++ b/x11-toolkits/ocaml-lablgtk3/Makefile
@@ -1,67 +1,67 @@
 PORTNAME=	lablgtk3
-PORTVERSION=	3.1.1
-PORTREVISION=	3
+PORTVERSION=	3.1.4
 CATEGORIES=	x11-toolkits
 PKGNAMEPREFIX=	ocaml-
 
 MAINTAINER=	madpilot@FreeBSD.org
 COMMENT=	Objective Caml interface to GTK 3.x
 WWW=		https://garrigue.github.io/lablgtk/
 
 LICENSE=	LGPL21
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 BUILD_DEPENDS=	dune:devel/ocaml-dune \
-		ocaml-cairo>0:graphics/ocaml-cairo
+		ocaml-cairo>0:graphics/ocaml-cairo \
+		${LOCALBASE}/${OCAML_SITELIBDIR}/camlp-streams/META:devel/ocaml-camlp-streams
 LIB_DEPENDS=	libharfbuzz.so:print/harfbuzz \
 		libfreetype.so:print/freetype2 \
 		libfontconfig.so:x11-fonts/fontconfig
 RUN_DEPENDS=	ocaml-cairo>0:graphics/ocaml-cairo
 
 USES=		gmake gnome pkgconfig
 USE_GNOME=	cairo gdkpixbuf2 gtk30
 USE_OCAML=	yes
 USE_OCAML_FINDLIB=	yes
 USE_OCAML_CAMLP4=	yes
 USE_OCAML_LDCONFIG=	yes
 
 TARGETS=	${PORTNAME}
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	garrigue
 GH_PROJECT=	lablgtk
 
 PORTSCOUT=	limit:^${PORTVERSION:R:R}
 
 DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
 EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
 PORTEXAMPLES=	*
 
 OPTIONS_DEFINE=		DOCS EXAMPLES GTKSOURCEVIEW3 GTKSPELL
 OPTIONS_DEFAULT=	GTKSOURCEVIEW3 GTKSPELL
 OPTIONS_SUB=		yes
 
 GTKSOURCEVIEW3_DESC=	GtkSourceView 3 support
 GTKSPELL_DESC=		GtkSpell support
 
 GTKSOURCEVIEW3_USE=	GNOME=gtksourceview3
 GTKSOURCEVIEW3_VARS=    TARGETS+=lablgtk3-sourceview3 EXAMPLES_SUBDIRS+=sourceview
 
 GTKSPELL_LIB_DEPENDS=	libgtkspell3-3.so:textproc/gtkspell3 \
 			libenchant-2.so:textproc/enchant2
 GTKSPELL_VARS=		TARGETS+=lablgtk3-gtkspell3
 
 do-build:
 	cd ${BUILD_WRKSRC} && dune build --verbose -p ${TARGETS:ts,} -j ${MAKE_JOBS_NUMBER}
 
 do-install:
 	cd ${INSTALL_WRKSRC} && dune install --destdir=${STAGEDIR} \
 		--libdir=${PREFIX}/${OCAML_SITELIBDIR} ${TARGETS}
 
 post-install-EXAMPLES-on:
 	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
 	@cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \
 	"*.ml *.png *.rgb *.xpm text ${EXAMPLES_SUBDIRS}" \
 		${STAGEDIR}${EXAMPLESDIR}
 
 .include 
diff --git a/x11-toolkits/ocaml-lablgtk3/distinfo b/x11-toolkits/ocaml-lablgtk3/distinfo
index 10bc05daec2c..23cf7ffe90f7 100644
--- a/x11-toolkits/ocaml-lablgtk3/distinfo
+++ b/x11-toolkits/ocaml-lablgtk3/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1669049529
-SHA256 (garrigue-lablgtk-3.1.1_GH0.tar.gz) = b1f71443772cc8b6b069283d9ccc68beb280edf5949b834ea06317adfe3ae682
-SIZE (garrigue-lablgtk-3.1.1_GH0.tar.gz) = 1031279
+TIMESTAMP = 1707228949
+SHA256 (garrigue-lablgtk-3.1.4_GH0.tar.gz) = fa23251e1b089a9b91feea11f3c77420ec9e5412221b02daf898bf542b51f7bd
+SIZE (garrigue-lablgtk-3.1.4_GH0.tar.gz) = 1045634
diff --git a/x11-toolkits/ocaml-lablgtk3/files/patch-src_ml__gtk.c b/x11-toolkits/ocaml-lablgtk3/files/patch-src_ml__gtk.c
new file mode 100644
index 000000000000..376bcf03c818
--- /dev/null
+++ b/x11-toolkits/ocaml-lablgtk3/files/patch-src_ml__gtk.c
@@ -0,0 +1,11 @@
+--- src/ml_gtk.c.orig	2024-02-06 14:32:07 UTC
++++ src/ml_gtk.c
+@@ -233,7 +233,7 @@ CAMLprim value ml_gtk_style_context_list_classes(value
+ ML_2 (gtk_style_context_remove_class, GtkStyleContext_val, String_val, Unit)
+ ML_2 (gtk_style_context_has_class, GtkStyleContext_val, String_val, Val_bool)
+ CAMLprim value ml_gtk_style_context_list_classes(value ctx)
+-{ return Val_GList(gtk_style_context_list_classes(GtkStyleContext_val(ctx)), Val_string); }
++{ return Val_GList(gtk_style_context_list_classes(GtkStyleContext_val(ctx)), (value_in)Val_string); }
+ 
+ /* gtkdata.h */
+ 
diff --git a/x11-toolkits/ocaml-labltk/Makefile b/x11-toolkits/ocaml-labltk/Makefile
index 7b4941fae228..24c84e2e6ef8 100644
--- a/x11-toolkits/ocaml-labltk/Makefile
+++ b/x11-toolkits/ocaml-labltk/Makefile
@@ -1,40 +1,48 @@
 PORTNAME=	labltk
-PORTVERSION=	8.06.7
+PORTVERSION=	8.06.12
 CATEGORIES=	x11-toolkits
 PKGNAMEPREFIX=	ocaml-
 
 MAINTAINER=	danfe@FreeBSD.org
 COMMENT=	Objective Caml interface to Tk
 WWW=		https://forge.ocamlcore.org/projects/labltk/
 
 LICENSE=	LGPL20
 
 USES=		gmake tk
+USE_GITHUB=	yes
+GH_ACCOUNT=	garrigue
+USE_OCAML=	yes
+USE_OCAML_LDCONFIG=	yes
 HAS_CONFIGURE=	yes
 CONFIGURE_ARGS=	-tkdefs "-I${LOCALBASE}/include -I${TCL_INCLUDEDIR}\
 		-I${TK_INCLUDEDIR}" \
 		-tklibs "-L${LOCALBASE}/lib -ltcl${TCL_SHLIB_VER}\
-		-ltk${TK_SHLIB_VER}" -verbose
-MAKE_JOBS_UNSAFE=yes
-USE_OCAML=	yes
+		-ltk${TK_SHLIB_VER}" \
+		-installbindir "${STAGEDIR}${PREFIX}/bin" \
+		-installdir "${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}" \
+		-libdir "${PREFIX}/${OCAML_LIBDIR}" \
+		-verbose
 
-ALL_TARGET=	all opt
+MAKE_ENV=		RANLIB=/usr/bin/ranlib INSTALLDIR_REL=${OCAML_SITELIBDIR}/${PORTNAME}
+MAKE_JOBS_UNSAFE=	yes
 
-USE_GITHUB=	yes
-GH_ACCOUNT=	garrigue
+ALL_TARGET=	all opt
 
 post-patch:
-	@${FIND} ${WRKSRC} -name 'Makefile*' | ${XARGS} ${REINPLACE_CMD} \
-		-e 's/$$(INSTALLDIR)/$$(DESTDIR)$$(INSTALLDIR)/g' \
-		-e 's/$$(INSTALLBINDIR)/$$(DESTDIR)$$(INSTALLBINDIR)/g' \
-		-e 's/$$(STUBLIBDIR)/$$(DESTDIR)$$(STUBLIBDIR)/g' \
-		-e 's/mkdir /& -p /g'
+	@${REINPLACE_CMD} \
+		-e '/exec $$(INSTALLDIR)/s|$$(INSTALLDIR)|$$(PREFIX)/$$(INSTALLDIR_REL)|g' \
+		${WRKSRC}/lib/Makefile
+
+post-configure:
+	${ECHO_CMD} "STUBLIBDIR=${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}" \
+		>> ${WRKSRC}/config/Makefile
 
 pre-install:
-	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/ocaml/stublibs
+	@${MKDIR} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}
 
 post-install:
-	${INSTALL_DATA} ${WRKSRC}/support/META ${STAGEDIR}${PREFIX}/lib/ocaml/${PORTNAME}
-	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ocaml/stublibs/dlllabltk.so
+	${INSTALL_DATA} ${WRKSRC}/support/META ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/dlllabltk.so
 
 .include 
diff --git a/x11-toolkits/ocaml-labltk/distinfo b/x11-toolkits/ocaml-labltk/distinfo
index 62adc5c3c9f2..8e28619193df 100644
--- a/x11-toolkits/ocaml-labltk/distinfo
+++ b/x11-toolkits/ocaml-labltk/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1681675195
-SHA256 (garrigue-labltk-8.06.7_GH0.tar.gz) = e20a41a644d3c8a877409f5a8f3f7eab9261655410875d3f4da680f5fc864b3e
-SIZE (garrigue-labltk-8.06.7_GH0.tar.gz) = 370870
+TIMESTAMP = 1706849462
+SHA256 (garrigue-labltk-8.06.12_GH0.tar.gz) = 14e0347cb12390212b67ea3078c7ae6b9f551464ef7cea8057d69c9a15060370
+SIZE (garrigue-labltk-8.06.12_GH0.tar.gz) = 372215
diff --git a/x11-toolkits/ocaml-labltk/pkg-plist b/x11-toolkits/ocaml-labltk/pkg-plist
index 7842ae1df634..5694a5c34736 100644
--- a/x11-toolkits/ocaml-labltk/pkg-plist
+++ b/x11-toolkits/ocaml-labltk/pkg-plist
@@ -1,339 +1,341 @@
 bin/labltk
 bin/ocamlbrowser
-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.cmx
-lib/ocaml/labltk/frx_after.mli
-lib/ocaml/labltk/frx_color.cmi
-lib/ocaml/labltk/frx_color.cmx
-lib/ocaml/labltk/frx_color.mli
-lib/ocaml/labltk/frx_ctext.cmi
-lib/ocaml/labltk/frx_ctext.cmx
-lib/ocaml/labltk/frx_ctext.mli
-lib/ocaml/labltk/frx_dialog.cmi
-lib/ocaml/labltk/frx_dialog.cmx
-lib/ocaml/labltk/frx_dialog.mli
-lib/ocaml/labltk/frx_entry.cmi
-lib/ocaml/labltk/frx_entry.cmx
-lib/ocaml/labltk/frx_entry.mli
-lib/ocaml/labltk/frx_fillbox.cmi
-lib/ocaml/labltk/frx_fillbox.cmx
-lib/ocaml/labltk/frx_fillbox.mli
-lib/ocaml/labltk/frx_fit.cmi
-lib/ocaml/labltk/frx_fit.cmx
-lib/ocaml/labltk/frx_fit.mli
-lib/ocaml/labltk/frx_focus.cmi
-lib/ocaml/labltk/frx_focus.cmx
-lib/ocaml/labltk/frx_focus.mli
-lib/ocaml/labltk/frx_font.cmi
-lib/ocaml/labltk/frx_font.cmx
-lib/ocaml/labltk/frx_font.mli
-lib/ocaml/labltk/frx_lbutton.mli
-lib/ocaml/labltk/frx_listbox.cmi
-lib/ocaml/labltk/frx_listbox.cmx
-lib/ocaml/labltk/frx_listbox.mli
-lib/ocaml/labltk/frx_mem.cmi
-lib/ocaml/labltk/frx_mem.cmx
-lib/ocaml/labltk/frx_mem.mli
-lib/ocaml/labltk/frx_misc.cmi
-lib/ocaml/labltk/frx_misc.cmx
-lib/ocaml/labltk/frx_misc.mli
-lib/ocaml/labltk/frx_req.cmi
-lib/ocaml/labltk/frx_req.cmx
-lib/ocaml/labltk/frx_req.mli
-lib/ocaml/labltk/frx_rpc.cmi
-lib/ocaml/labltk/frx_rpc.cmx
-lib/ocaml/labltk/frx_rpc.mli
-lib/ocaml/labltk/frx_selection.cmi
-lib/ocaml/labltk/frx_selection.cmx
-lib/ocaml/labltk/frx_selection.mli
-lib/ocaml/labltk/frx_synth.cmi
-lib/ocaml/labltk/frx_synth.cmx
-lib/ocaml/labltk/frx_synth.mli
-lib/ocaml/labltk/frx_text.cmi
-lib/ocaml/labltk/frx_text.cmx
-lib/ocaml/labltk/frx_text.mli
-lib/ocaml/labltk/frx_toplevel.mli
-lib/ocaml/labltk/frx_widget.cmi
-lib/ocaml/labltk/frx_widget.cmx
-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/liblabltk.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.cmx
-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/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/tkcompiler
-lib/ocaml/labltk/tkthread.cmi
-lib/ocaml/labltk/tkthread.cmo
-lib/ocaml/labltk/tkthread.mli
-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/labltk/META
-lib/ocaml/stublibs/dlllabltk.so
+%%OCAML_SITELIBDIR%%/labltk/META
+%%OCAML_SITELIBDIR%%/labltk/balloon.cmi
+%%OCAML_SITELIBDIR%%/labltk/balloon.cmx
+%%OCAML_SITELIBDIR%%/labltk/balloon.mli
+%%OCAML_SITELIBDIR%%/labltk/bell.cmi
+%%OCAML_SITELIBDIR%%/labltk/bell.cmx
+%%OCAML_SITELIBDIR%%/labltk/bell.mli
+%%OCAML_SITELIBDIR%%/labltk/button.cmi
+%%OCAML_SITELIBDIR%%/labltk/button.cmx
+%%OCAML_SITELIBDIR%%/labltk/button.mli
+%%OCAML_SITELIBDIR%%/labltk/camltkwrap.cmi
+%%OCAML_SITELIBDIR%%/labltk/camltkwrap.cmx
+%%OCAML_SITELIBDIR%%/labltk/cBell.cmi
+%%OCAML_SITELIBDIR%%/labltk/cBell.cmx
+%%OCAML_SITELIBDIR%%/labltk/cBell.mli
+%%OCAML_SITELIBDIR%%/labltk/cButton.cmi
+%%OCAML_SITELIBDIR%%/labltk/cButton.cmx
+%%OCAML_SITELIBDIR%%/labltk/cButton.mli
+%%OCAML_SITELIBDIR%%/labltk/cCanvas.cmi
+%%OCAML_SITELIBDIR%%/labltk/cCanvas.cmx
+%%OCAML_SITELIBDIR%%/labltk/cCanvas.mli
+%%OCAML_SITELIBDIR%%/labltk/cCheckbutton.cmi
+%%OCAML_SITELIBDIR%%/labltk/cCheckbutton.cmx
+%%OCAML_SITELIBDIR%%/labltk/cCheckbutton.mli
+%%OCAML_SITELIBDIR%%/labltk/cClipboard.cmi
+%%OCAML_SITELIBDIR%%/labltk/cClipboard.cmx
+%%OCAML_SITELIBDIR%%/labltk/cClipboard.mli
+%%OCAML_SITELIBDIR%%/labltk/cDialog.cmi
+%%OCAML_SITELIBDIR%%/labltk/cDialog.cmx
+%%OCAML_SITELIBDIR%%/labltk/cDialog.mli
+%%OCAML_SITELIBDIR%%/labltk/cEncoding.cmi
+%%OCAML_SITELIBDIR%%/labltk/cEncoding.cmx
+%%OCAML_SITELIBDIR%%/labltk/cEncoding.mli
+%%OCAML_SITELIBDIR%%/labltk/cEntry.cmi
+%%OCAML_SITELIBDIR%%/labltk/cEntry.cmx
+%%OCAML_SITELIBDIR%%/labltk/cEntry.mli
+%%OCAML_SITELIBDIR%%/labltk/cFocus.cmi
+%%OCAML_SITELIBDIR%%/labltk/cFocus.cmx
+%%OCAML_SITELIBDIR%%/labltk/cFocus.mli
+%%OCAML_SITELIBDIR%%/labltk/cFont.cmi
+%%OCAML_SITELIBDIR%%/labltk/cFont.cmx
+%%OCAML_SITELIBDIR%%/labltk/cFont.mli
+%%OCAML_SITELIBDIR%%/labltk/cFrame.cmi
+%%OCAML_SITELIBDIR%%/labltk/cFrame.cmx
+%%OCAML_SITELIBDIR%%/labltk/cFrame.mli
+%%OCAML_SITELIBDIR%%/labltk/cGrab.cmi
+%%OCAML_SITELIBDIR%%/labltk/cGrab.cmx
+%%OCAML_SITELIBDIR%%/labltk/cGrab.mli
+%%OCAML_SITELIBDIR%%/labltk/cGrid.cmi
+%%OCAML_SITELIBDIR%%/labltk/cGrid.cmx
+%%OCAML_SITELIBDIR%%/labltk/cGrid.mli
+%%OCAML_SITELIBDIR%%/labltk/cImage.cmi
+%%OCAML_SITELIBDIR%%/labltk/cImage.cmx
+%%OCAML_SITELIBDIR%%/labltk/cImage.mli
+%%OCAML_SITELIBDIR%%/labltk/cImagebitmap.cmi
+%%OCAML_SITELIBDIR%%/labltk/cImagebitmap.cmx
+%%OCAML_SITELIBDIR%%/labltk/cImagebitmap.mli
+%%OCAML_SITELIBDIR%%/labltk/cImagephoto.cmi
+%%OCAML_SITELIBDIR%%/labltk/cImagephoto.cmx
+%%OCAML_SITELIBDIR%%/labltk/cImagephoto.mli
+%%OCAML_SITELIBDIR%%/labltk/cLabel.cmi
+%%OCAML_SITELIBDIR%%/labltk/cLabel.cmx
+%%OCAML_SITELIBDIR%%/labltk/cLabel.mli
+%%OCAML_SITELIBDIR%%/labltk/cListbox.cmi
+%%OCAML_SITELIBDIR%%/labltk/cListbox.cmx
+%%OCAML_SITELIBDIR%%/labltk/cListbox.mli
+%%OCAML_SITELIBDIR%%/labltk/cMenu.cmi
+%%OCAML_SITELIBDIR%%/labltk/cMenu.cmx
+%%OCAML_SITELIBDIR%%/labltk/cMenu.mli
+%%OCAML_SITELIBDIR%%/labltk/cMenubutton.cmi
+%%OCAML_SITELIBDIR%%/labltk/cMenubutton.cmx
+%%OCAML_SITELIBDIR%%/labltk/cMenubutton.mli
+%%OCAML_SITELIBDIR%%/labltk/cMessage.cmi
+%%OCAML_SITELIBDIR%%/labltk/cMessage.cmx
+%%OCAML_SITELIBDIR%%/labltk/cMessage.mli
+%%OCAML_SITELIBDIR%%/labltk/cOption.cmi
+%%OCAML_SITELIBDIR%%/labltk/cOption.cmx
+%%OCAML_SITELIBDIR%%/labltk/cOption.mli
+%%OCAML_SITELIBDIR%%/labltk/cOptionmenu.cmi
+%%OCAML_SITELIBDIR%%/labltk/cOptionmenu.cmx
+%%OCAML_SITELIBDIR%%/labltk/cOptionmenu.mli
+%%OCAML_SITELIBDIR%%/labltk/cPack.cmi
+%%OCAML_SITELIBDIR%%/labltk/cPack.cmx
+%%OCAML_SITELIBDIR%%/labltk/cPack.mli
+%%OCAML_SITELIBDIR%%/labltk/cPalette.cmi
+%%OCAML_SITELIBDIR%%/labltk/cPalette.cmx
+%%OCAML_SITELIBDIR%%/labltk/cPalette.mli
+%%OCAML_SITELIBDIR%%/labltk/cPixmap.cmi
+%%OCAML_SITELIBDIR%%/labltk/cPixmap.cmx
+%%OCAML_SITELIBDIR%%/labltk/cPixmap.mli
+%%OCAML_SITELIBDIR%%/labltk/cPlace.cmi
+%%OCAML_SITELIBDIR%%/labltk/cPlace.cmx
+%%OCAML_SITELIBDIR%%/labltk/cPlace.mli
+%%OCAML_SITELIBDIR%%/labltk/cRadiobutton.cmi
+%%OCAML_SITELIBDIR%%/labltk/cRadiobutton.cmx
+%%OCAML_SITELIBDIR%%/labltk/cRadiobutton.mli
+%%OCAML_SITELIBDIR%%/labltk/cResource.cmi
+%%OCAML_SITELIBDIR%%/labltk/cResource.cmx
+%%OCAML_SITELIBDIR%%/labltk/cResource.mli
+%%OCAML_SITELIBDIR%%/labltk/cScale.cmi
+%%OCAML_SITELIBDIR%%/labltk/cScale.cmx
+%%OCAML_SITELIBDIR%%/labltk/cScale.mli
+%%OCAML_SITELIBDIR%%/labltk/cScrollbar.cmi
+%%OCAML_SITELIBDIR%%/labltk/cScrollbar.cmx
+%%OCAML_SITELIBDIR%%/labltk/cScrollbar.mli
+%%OCAML_SITELIBDIR%%/labltk/cSelection.cmi
+%%OCAML_SITELIBDIR%%/labltk/cSelection.cmx
+%%OCAML_SITELIBDIR%%/labltk/cSelection.mli
+%%OCAML_SITELIBDIR%%/labltk/cText.cmi
+%%OCAML_SITELIBDIR%%/labltk/cText.cmx
+%%OCAML_SITELIBDIR%%/labltk/cText.mli
+%%OCAML_SITELIBDIR%%/labltk/cTk.cmi
+%%OCAML_SITELIBDIR%%/labltk/cTk.cmx
+%%OCAML_SITELIBDIR%%/labltk/cTkvars.cmi
+%%OCAML_SITELIBDIR%%/labltk/cTkvars.cmx
+%%OCAML_SITELIBDIR%%/labltk/cTkvars.mli
+%%OCAML_SITELIBDIR%%/labltk/cTkwait.cmi
+%%OCAML_SITELIBDIR%%/labltk/cTkwait.cmx
+%%OCAML_SITELIBDIR%%/labltk/cTkwait.mli
+%%OCAML_SITELIBDIR%%/labltk/cToplevel.cmi
+%%OCAML_SITELIBDIR%%/labltk/cToplevel.cmx
+%%OCAML_SITELIBDIR%%/labltk/cToplevel.mli
+%%OCAML_SITELIBDIR%%/labltk/cWinfo.cmi
+%%OCAML_SITELIBDIR%%/labltk/cWinfo.cmx
+%%OCAML_SITELIBDIR%%/labltk/cWinfo.mli
+%%OCAML_SITELIBDIR%%/labltk/cWm.cmi
+%%OCAML_SITELIBDIR%%/labltk/cWm.cmx
+%%OCAML_SITELIBDIR%%/labltk/cWm.mli
+%%OCAML_SITELIBDIR%%/labltk/camltk.cmi
+%%OCAML_SITELIBDIR%%/labltk/camltk.cmx
+%%OCAML_SITELIBDIR%%/labltk/canvas.cmi
+%%OCAML_SITELIBDIR%%/labltk/canvas.cmx
+%%OCAML_SITELIBDIR%%/labltk/canvas.mli
+%%OCAML_SITELIBDIR%%/labltk/checkbutton.cmi
+%%OCAML_SITELIBDIR%%/labltk/checkbutton.cmx
+%%OCAML_SITELIBDIR%%/labltk/checkbutton.mli
+%%OCAML_SITELIBDIR%%/labltk/clipboard.cmi
+%%OCAML_SITELIBDIR%%/labltk/clipboard.cmx
+%%OCAML_SITELIBDIR%%/labltk/clipboard.mli
+%%OCAML_SITELIBDIR%%/labltk/dialog.cmi
+%%OCAML_SITELIBDIR%%/labltk/dialog.cmx
+%%OCAML_SITELIBDIR%%/labltk/dialog.mli
+%%OCAML_SITELIBDIR%%/labltk/dlllabltk.so
+%%OCAML_SITELIBDIR%%/labltk/encoding.cmi
+%%OCAML_SITELIBDIR%%/labltk/encoding.cmx
+%%OCAML_SITELIBDIR%%/labltk/encoding.mli
+%%OCAML_SITELIBDIR%%/labltk/entry.cmi
+%%OCAML_SITELIBDIR%%/labltk/entry.cmx
+%%OCAML_SITELIBDIR%%/labltk/entry.mli
+%%OCAML_SITELIBDIR%%/labltk/fileevent.cmi
+%%OCAML_SITELIBDIR%%/labltk/fileevent.cmx
+%%OCAML_SITELIBDIR%%/labltk/fileevent.mli
+%%OCAML_SITELIBDIR%%/labltk/fileselect.cmi
+%%OCAML_SITELIBDIR%%/labltk/fileselect.cmx
+%%OCAML_SITELIBDIR%%/labltk/fileselect.mli
+%%OCAML_SITELIBDIR%%/labltk/focus.cmi
+%%OCAML_SITELIBDIR%%/labltk/focus.cmx
+%%OCAML_SITELIBDIR%%/labltk/focus.mli
+%%OCAML_SITELIBDIR%%/labltk/font.cmi
+%%OCAML_SITELIBDIR%%/labltk/font.cmx
+%%OCAML_SITELIBDIR%%/labltk/font.mli
+%%OCAML_SITELIBDIR%%/labltk/frame.cmi
+%%OCAML_SITELIBDIR%%/labltk/frame.cmx
+%%OCAML_SITELIBDIR%%/labltk/frame.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_after.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_after.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_after.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_color.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_color.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_color.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_ctext.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_ctext.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_ctext.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_dialog.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_dialog.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_dialog.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_entry.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_entry.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_entry.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_fillbox.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_fillbox.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_fillbox.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_fit.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_fit.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_fit.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_focus.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_focus.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_focus.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_font.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_font.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_font.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_lbutton.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_listbox.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_listbox.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_listbox.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_mem.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_mem.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_mem.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_misc.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_misc.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_misc.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_req.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_req.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_req.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_rpc.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_rpc.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_rpc.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_selection.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_selection.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_selection.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_synth.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_synth.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_synth.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_text.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_text.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_text.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_toplevel.mli
+%%OCAML_SITELIBDIR%%/labltk/frx_widget.cmi
+%%OCAML_SITELIBDIR%%/labltk/frx_widget.cmx
+%%OCAML_SITELIBDIR%%/labltk/frx_widget.mli
+%%OCAML_SITELIBDIR%%/labltk/frxlib.a
+%%OCAML_SITELIBDIR%%/labltk/frxlib.cma
+%%OCAML_SITELIBDIR%%/labltk/frxlib.cmxa
+%%OCAML_SITELIBDIR%%/labltk/grab.cmi
+%%OCAML_SITELIBDIR%%/labltk/grab.cmx
+%%OCAML_SITELIBDIR%%/labltk/grab.mli
+%%OCAML_SITELIBDIR%%/labltk/grid.cmi
+%%OCAML_SITELIBDIR%%/labltk/grid.cmx
+%%OCAML_SITELIBDIR%%/labltk/grid.mli
+%%OCAML_SITELIBDIR%%/labltk/image.cmi
+%%OCAML_SITELIBDIR%%/labltk/image.cmx
+%%OCAML_SITELIBDIR%%/labltk/image.mli
+%%OCAML_SITELIBDIR%%/labltk/imagebitmap.cmi
+%%OCAML_SITELIBDIR%%/labltk/imagebitmap.cmx
+%%OCAML_SITELIBDIR%%/labltk/imagebitmap.mli
+%%OCAML_SITELIBDIR%%/labltk/imagephoto.cmi
+%%OCAML_SITELIBDIR%%/labltk/imagephoto.cmx
+%%OCAML_SITELIBDIR%%/labltk/imagephoto.mli
+%%OCAML_SITELIBDIR%%/labltk/jpf_font.cmi
+%%OCAML_SITELIBDIR%%/labltk/jpf_font.cmx
+%%OCAML_SITELIBDIR%%/labltk/jpf_font.mli
+%%OCAML_SITELIBDIR%%/labltk/jpflib.a
+%%OCAML_SITELIBDIR%%/labltk/jpflib.cma
+%%OCAML_SITELIBDIR%%/labltk/jpflib.cmxa
+%%OCAML_SITELIBDIR%%/labltk/label.cmi
+%%OCAML_SITELIBDIR%%/labltk/label.cmx
+%%OCAML_SITELIBDIR%%/labltk/label.mli
+%%OCAML_SITELIBDIR%%/labltk/labltk.a
+%%OCAML_SITELIBDIR%%/labltk/labltk.cma
+%%OCAML_SITELIBDIR%%/labltk/labltk.cmi
+%%OCAML_SITELIBDIR%%/labltk/labltk.cmx
+%%OCAML_SITELIBDIR%%/labltk/labltk.cmxa
+%%OCAML_SITELIBDIR%%/labltk/labltktop
+%%OCAML_SITELIBDIR%%/labltk/liblabltk.a
+%%OCAML_SITELIBDIR%%/labltk/listbox.cmi
+%%OCAML_SITELIBDIR%%/labltk/listbox.cmx
+%%OCAML_SITELIBDIR%%/labltk/listbox.mli
+%%OCAML_SITELIBDIR%%/labltk/menu.cmi
+%%OCAML_SITELIBDIR%%/labltk/menu.cmx
+%%OCAML_SITELIBDIR%%/labltk/menu.mli
+%%OCAML_SITELIBDIR%%/labltk/menubutton.cmi
+%%OCAML_SITELIBDIR%%/labltk/menubutton.cmx
+%%OCAML_SITELIBDIR%%/labltk/menubutton.mli
+%%OCAML_SITELIBDIR%%/labltk/message.cmi
+%%OCAML_SITELIBDIR%%/labltk/message.cmx
+%%OCAML_SITELIBDIR%%/labltk/message.mli
+%%OCAML_SITELIBDIR%%/labltk/option.cmi
+%%OCAML_SITELIBDIR%%/labltk/option.cmx
+%%OCAML_SITELIBDIR%%/labltk/option.mli
+%%OCAML_SITELIBDIR%%/labltk/optionmenu.cmi
+%%OCAML_SITELIBDIR%%/labltk/optionmenu.cmx
+%%OCAML_SITELIBDIR%%/labltk/optionmenu.mli
+%%OCAML_SITELIBDIR%%/labltk/pack.cmi
+%%OCAML_SITELIBDIR%%/labltk/pack.cmx
+%%OCAML_SITELIBDIR%%/labltk/pack.mli
+%%OCAML_SITELIBDIR%%/labltk/palette.cmi
+%%OCAML_SITELIBDIR%%/labltk/palette.cmx
+%%OCAML_SITELIBDIR%%/labltk/palette.mli
+%%OCAML_SITELIBDIR%%/labltk/pixmap.cmi
+%%OCAML_SITELIBDIR%%/labltk/pixmap.cmx
+%%OCAML_SITELIBDIR%%/labltk/pixmap.mli
+%%OCAML_SITELIBDIR%%/labltk/place.cmi
+%%OCAML_SITELIBDIR%%/labltk/place.cmx
+%%OCAML_SITELIBDIR%%/labltk/place.mli
+%%OCAML_SITELIBDIR%%/labltk/pp
+%%OCAML_SITELIBDIR%%/labltk/protocol.cmi
+%%OCAML_SITELIBDIR%%/labltk/protocol.cmx
+%%OCAML_SITELIBDIR%%/labltk/protocol.mli
+%%OCAML_SITELIBDIR%%/labltk/radiobutton.cmi
+%%OCAML_SITELIBDIR%%/labltk/radiobutton.cmx
+%%OCAML_SITELIBDIR%%/labltk/radiobutton.mli
+%%OCAML_SITELIBDIR%%/labltk/rawwidget.cmi
+%%OCAML_SITELIBDIR%%/labltk/rawwidget.cmx
+%%OCAML_SITELIBDIR%%/labltk/rawwidget.mli
+%%OCAML_SITELIBDIR%%/labltk/scale.cmi
+%%OCAML_SITELIBDIR%%/labltk/scale.cmx
+%%OCAML_SITELIBDIR%%/labltk/scale.mli
+%%OCAML_SITELIBDIR%%/labltk/scrollbar.cmi
+%%OCAML_SITELIBDIR%%/labltk/scrollbar.cmx
+%%OCAML_SITELIBDIR%%/labltk/scrollbar.mli
+%%OCAML_SITELIBDIR%%/labltk/selection.cmi
+%%OCAML_SITELIBDIR%%/labltk/selection.cmx
+%%OCAML_SITELIBDIR%%/labltk/selection.mli
+%%OCAML_SITELIBDIR%%/labltk/shell.cmi
+%%OCAML_SITELIBDIR%%/labltk/shell.cmx
+%%OCAML_SITELIBDIR%%/labltk/shell.mli
+%%OCAML_SITELIBDIR%%/labltk/text.cmi
+%%OCAML_SITELIBDIR%%/labltk/text.cmx
+%%OCAML_SITELIBDIR%%/labltk/text.mli
+%%OCAML_SITELIBDIR%%/labltk/textvariable.cmi
+%%OCAML_SITELIBDIR%%/labltk/textvariable.cmx
+%%OCAML_SITELIBDIR%%/labltk/textvariable.mli
+%%OCAML_SITELIBDIR%%/labltk/timer.cmi
+%%OCAML_SITELIBDIR%%/labltk/timer.cmx
+%%OCAML_SITELIBDIR%%/labltk/timer.mli
+%%OCAML_SITELIBDIR%%/labltk/tk.cmi
+%%OCAML_SITELIBDIR%%/labltk/tk.cmx
+%%OCAML_SITELIBDIR%%/labltk/tkcompiler
+%%OCAML_SITELIBDIR%%/labltk/tkthread.cmi
+%%OCAML_SITELIBDIR%%/labltk/tkthread.cmo
+%%OCAML_SITELIBDIR%%/labltk/tkthread.mli
+%%OCAML_SITELIBDIR%%/labltk/tkvars.cmi
+%%OCAML_SITELIBDIR%%/labltk/tkvars.cmx
+%%OCAML_SITELIBDIR%%/labltk/tkvars.mli
+%%OCAML_SITELIBDIR%%/labltk/tkwait.cmi
+%%OCAML_SITELIBDIR%%/labltk/tkwait.cmx
+%%OCAML_SITELIBDIR%%/labltk/tkwait.mli
+%%OCAML_SITELIBDIR%%/labltk/toplevel.cmi
+%%OCAML_SITELIBDIR%%/labltk/toplevel.cmx
+%%OCAML_SITELIBDIR%%/labltk/toplevel.mli
+%%OCAML_SITELIBDIR%%/labltk/widget.cmi
+%%OCAML_SITELIBDIR%%/labltk/widget.cmx
+%%OCAML_SITELIBDIR%%/labltk/widget.mli
+%%OCAML_SITELIBDIR%%/labltk/winfo.cmi
+%%OCAML_SITELIBDIR%%/labltk/winfo.cmx
+%%OCAML_SITELIBDIR%%/labltk/winfo.mli
+%%OCAML_SITELIBDIR%%/labltk/wm.cmi
+%%OCAML_SITELIBDIR%%/labltk/wm.cmx
+%%OCAML_SITELIBDIR%%/labltk/wm.mli