View | Details | Raw Unified | Return to bug 218333 | Differences between
and this patch

Collapse All | Expand All

(-)Mk/bsd.ocaml.mk (-204 lines)
Lines 1-204 Link Here
1
# ex:ts=4
2
#
3
# $MBSDlabs: portmk/bsd.ocaml.mk,v 1.18 2006/08/06 18:47:23 stas Exp $
4
# $FreeBSD$
5
#
6
# bsd.ocaml.mk - Support for the Objective Caml language packages
7
#
8
# Author: Stanislav Sedov <ssedov@mbsd.msk.ru>
9
#
10
# Feel free to send any comments and suggestions to maintainer.
11
#
12
# Currently recognised variables are:
13
#
14
# USE_OCAML		-	Set if your port uses OCaml to build/install.
15
# NO_OCAML_BUILDDEPENDS	-	Don't add ocamlc to BUILD|EXTRACT|PATCH_DEPENDS.
16
# NO_OCAML_RUNDEPENDS	-	Don't add ocamlc to RUN_DEPENDS.
17
# USE_OCAML_FINDLIB	-	Set if your port uses ocamlfind to install
18
#				packages. Package direcories will be
19
#				automatically deleted.
20
# USE_OCAML_CAMLP4	-	Set if your port uses camlp4 to build.
21
# USE_OCAML_TK		-	Set if you port needs ocaml-labltk.
22
# NO_OCAMLTK_BUILDDEPENDS -	Don't add labltk to BUILD|EXTRACT|PATCH_DEPENDS.
23
# NO_OCAMLTK_RUNDEPENDS	-	Don't add labltk to RUN_DEPENDS.
24
# USE_OCAML_LDCONFIG	-	Set if your port installs shared libraries
25
#				into ocaml site-lib dir. OCaml ld.conf file
26
#				will be automatically processed.
27
# USE_OCAMLFIND_PLIST	-	Add contents of findlib target directories
28
#				automatically.
29
# USE_OCAML_WASH	-	Set if your port wants to automatically
30
#				purge shared Ocaml dirs on uninstall. It's
31
#				useful when installing to non-standard PREFIX
32
# OCAML_PKGDIRS		-	Directories under site-lib to be processed
33
#				if USE_OCAML_FINDLIB specified.
34
#				Default: ${PORTNAME}
35
# OCAML_LDLIBS		-	Directories under PREFIX to be automatically
36
#				added/removed from ld.conf
37
#				Default: ${OCAML_SITELIBDIR}/${PORTNAME}
38
39
.if !defined(OCAML_include)
40
41
OCAML_MAINTAINER=	ports@FreeBSD.org
42
OCAML_include=		bsd.ocaml.mk
43
44
#
45
# OCaml programs location
46
#
47
OCAMLC?=		${LOCALBASE}/bin/ocamlc
48
OCAMLC_OPT?=		${LOCALBASE}/bin/ocamlc.opt
49
OCAMLCP?=		${LOCALBASE}/bin/ocamlcp
50
OCAMLFIND?=		${LOCALBASE}/bin/ocamlfind
51
CAMLP4?=		${LOCALBASE}/bin/camlp4
52
OCAMLTK?=		${LOCALBASE}/bin/labltk
53
54
#
55
# OCaml library directory
56
#
57
OCAML_LIBDIR?=		lib/ocaml
58
59
#
60
# Where to install site libraries
61
#
62
OCAML_SITELIBDIR?=	${OCAML_LIBDIR}/site-lib
63
64
#
65
# OCaml compiler port dependency
66
#
67
OCAMLC_PORT?=		lang/ocaml
68
OCAMLC_DEPEND?=		${OCAMLC}:${OCAMLC_PORT}
69
70
#
71
# OCaml package manager port dependency
72
#
73
OCAMLFIND_PORT?=	devel/ocaml-findlib
74
OCAMLFIND_DEPEND?=	${OCAMLFIND}:${OCAMLFIND_PORT}
75
76
#
77
# OCaml camlp4 port dependency
78
#
79
CAMLP4_PORT?=		devel/ocaml-camlp4
80
CAMLP4_DEPEND?=		${CAMLP4}:${CAMLP4_PORT}
81
82
#
83
# OCaml TK bindings dependency
84
#
85
OCAMLTK_PORT?=		x11-toolkits/ocaml-labltk
86
OCAMLTK_DEPENDS?=	${OCAMLTK}:${OCAMLTK_PORT}
87
88
#
89
# Common OCaml examples and documents location
90
#
91
OCAML_DOCSDIR=		${PREFIX}/share/doc/ocaml
92
OCAML_EXAMPLESDIR=	${PREFIX}/share/examples/ocaml
93
94
#
95
# Location of OCaml ld.conf file
96
#
97
OCAML_LDCONF?=		${OCAML_LIBDIR}/ld.conf
98
99
# ocaml-findlib-1.4.1_1 wants to edit our ld.conf file, which does not
100
# work well with staging.
101
.if defined(USE_OCAML_LDCONFIG)
102
. if !target(ocaml-ldconfig)
103
OCAMLFIND_LDCONF?=	/dev/null
104
. endif
105
.endif
106
107
OCAMLFIND_DESTDIR?=	${PREFIX}/${OCAML_SITELIBDIR}
108
OCAMLFIND_LDCONF?=	${PREFIX}/${OCAML_LDCONF}
109
110
.if defined(USE_OCAML)
111
. if !defined(NO_OCAML_BUILDDEPENDS)
112
EXTRACT_DEPENDS+=	${OCAMLC_DEPEND}
113
PATCH_DEPENDS+=		${OCAMLC_DEPEND}
114
BUILD_DEPENDS+=		${OCAMLC_DEPEND}
115
. endif
116
. if !defined(NO_OCAML_RUNDEPENDS)
117
RUN_DEPENDS+=		${OCAMLC_DEPEND}
118
. endif
119
PLIST_SUB+=	OCAML_SITELIBDIR="${OCAML_SITELIBDIR}"
120
.endif
121
122
.if defined(USE_OCAML_FINDLIB)
123
#
124
# We'll additionally add ocamlfind to RUN_DEPENDS, since
125
# if the port requires ocamlfind to install - it requires
126
# some ocaml libraries and these libraries RUN_DEPENDS on
127
# ocamlfind
128
#
129
BUILD_DEPENDS+=		${OCAMLFIND_DEPEND}
130
RUN_DEPENDS+=		${OCAMLFIND_DEPEND}
131
MAKE_ENV+=	OCAMLFIND_DESTDIR="${STAGEDIR}${OCAMLFIND_DESTDIR}" \
132
		OCAMLFIND_LDCONF="${OCAMLFIND_LDCONF}"
133
134
#
135
# Directories under site-lib to process automatically
136
#
137
OCAML_PKGDIRS?=	${PORTNAME}
138
_USES_install+=	735:ocaml-findlib
139
. if !target(ocaml-findlib)
140
ocaml-findlib:
141
.  for DIR in ${OCAML_PKGDIRS}
142
.   if defined(USE_OCAMLFIND_PLIST)
143
	@${FIND} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${DIR}/ -type f -print | ${SED} -e \
144
		's,^${STAGEDIR}${PREFIX}/,,' >> ${TMPPLIST}
145
.   endif
146
	@${ECHO_CMD} "@postunexec ${OCAMLFIND} remove ${DIR} 2>/dev/null" \
147
		>> ${TMPPLIST}
148
.  endfor
149
. endif
150
.endif
151
152
.if defined(USE_OCAML_CAMLP4)
153
BUILD_DEPENDS+=		${CAMLP4_DEPEND}
154
.endif
155
156
.if defined(USE_OCAML_TK)
157
. if !defined(NO_OCAMLTK_BUILDDEPENDS)
158
EXTRACT_DEPENDS+=	${OCAMLTK_DEPENDS}
159
PATCH_DEPENDS+=		${OCAMLTK_DEPENDS}
160
BUILD_DEPENDS+=		${OCAMLTK_DEPENDS}
161
. endif
162
. if !defined(NO_OCAMLTK_RUNDEPENDS)
163
RUN_DEPENDS+=		${OCAMLTK_DEPENDS}
164
. endif
165
.endif
166
167
.if defined(USE_OCAML_LDCONFIG)
168
#
169
# Directories under PREFIX for appending to ld.conf
170
#
171
OCAML_LDLIBS?=	${OCAML_SITELIBDIR}/${PORTNAME}
172
_USES_install+=	740:ocaml-ldconfig
173
. if !target(ocaml-ldconfig)
174
ocaml-ldconfig:
175
.  for LIB in ${OCAML_LDLIBS}
176
	@${ECHO_CMD} "@postexec ${ECHO_CMD} "%D/${LIB}" >> %D/${OCAML_LDCONF}" \
177
		>> ${TMPPLIST}
178
	@${ECHO_CMD} "@postunexec ${SED} -i \"\" -e '/${LIB:S#/#\/#g}/d' %D/${OCAML_LDCONF}"  >> ${TMPPLIST}
179
.  endfor
180
. endif
181
.endif
182
183
.if defined(USE_OCAML_WASH)
184
. if !target(ocaml-wash)
185
_USES_install+=	745:ocaml-wash
186
ocaml-wash:
187
#	If ld.conf is empty
188
	@${ECHO_CMD} "@postunexec if [ ! -s %D/${OCAML_LDCONF} ]; then ${RM} %D/${OCAML_LDCONF}; fi || true" >> ${TMPPLIST}
189
. endif
190
.endif
191
192
.endif #!defined(OCAML_include)
193
194
.if defined(_POSTMKINCLUDED)
195
196
.if defined(USE_OCAML_FINDLIB)
197
198
pre-install: ${STAGEDIR}${OCAMLFIND_DESTDIR}
199
${STAGEDIR}${OCAMLFIND_DESTDIR}:
200
	@${MKDIR} ${.TARGET}
201
202
.endif
203
204
.endif # _POSTMKINCLUDED
(-)Mk/Uses/ocaml.mk (+245 lines)
Line 0 Link Here
1
# $FreeBSD$
2
#
3
# Provide support for the Objective Caml language packages
4
# Feature:      ocaml
5
# MAINTAINER:   hrs@FreeBSD.org
6
# Usage:        USES=   ocaml[:[build|run]]
7
#		USE_OCAML=	findlib ldconfig camlp4 camlp5 tk
8
# Valid args in USES=ocaml are:
9
#
10
# build		Add ocamlc only to BUILD_DEPENDS.
11
#
12
# run		Add ocamlc only to RUN_DEPENDS.
13
#
14
# If no arg is specified, dependency on ocamlc to both BUILD and RUN_DEPENDS.
15
#
16
# Valid keywords in USE_OCAML are:
17
#
18
# findlib[:plist]	Set if your port uses ocamlfind to install packages.
19
#			Package directories will be automatically deleted.
20
#			If "plist" argument is specified, the findlib target
21
#			directories will be added to the plist automatically.
22
#
23
# ocamlbuild	Set if your port uses ocamlbuild to build.
24
#
25
# camlp4	Set if your port uses camlp4 to build.
26
#
27
# camlp5	Set if your port uses camlp5 to build.
28
#
29
# tk		Set if you port needs ocaml-labltk.
30
#
31
# ldconfig	Set if your port installs shared libraries
32
#		into ocaml site-lib dir. OCaml ld.conf file
33
#		will be automatically processed.
34
#
35
# wash		Set if your port wants to automatically
36
#		purge shared Ocaml dirs on uninstall. It's
37
#		useful when installing to non-standard PREFIX
38
#
39
# nox11		Set if your port wants X11-disabled ocaml.
40
#
41
#
42
# OCAML_PKGDIRS		-	Directories under site-lib to be processed
43
#				if "findlib" specified.
44
#				Default: ${PORTNAME}
45
# OCAML_LDLIBS		-	Directories under PREFIX to be automatically
46
#				added/removed from ld.conf
47
#				Default: ${OCAML_SITELIBDIR}/${PORTNAME}
48
49
.if !defined(_INCLUDES_USES_OCAML_MK)
50
_INCLUDES_USES_OCAML_MK=	yes
51
52
_OCAML_ARGS=	${ocaml_ARGS}
53
.if empty(_OCAML_ARGS)
54
_OCAML_ARGS=	build run
55
.endif
56
.if !empty(USE_OCAML:Mfindlib*)
57
_OCAML_FINDLIB_ARGS=	${USE_OCAML:Mfindlib*:C/^.*://}
58
.endif
59
60
#
61
# OCaml programs location
62
#
63
OCAML_CMD?=		${LOCALBASE}/bin/ocaml
64
OCAMLC?=		${LOCALBASE}/bin/ocamlc
65
OCAMLC_OPT?=		${LOCALBASE}/bin/ocamlc.opt
66
OCAMLCP?=		${LOCALBASE}/bin/ocamlcp
67
OCAMLFIND?=		${LOCALBASE}/bin/ocamlfind
68
CAMLP4?=		${LOCALBASE}/bin/camlp4
69
CAMLP5?=		${LOCALBASE}/bin/camlp5
70
OCAMLTK?=		${LOCALBASE}/bin/labltk
71
OCAMLBUILD?=		${LOCALBASE}/bin/ocamlbuild
72
73
#
74
# OCaml library directory
75
#
76
OCAML_LIBDIR?=		lib/ocaml
77
78
#
79
# Where to install site libraries
80
#
81
OCAML_SITELIBDIR?=	${OCAML_LIBDIR}/site-lib
82
83
#
84
# OCaml compiler port dependency
85
#
86
OCAMLC_PORT?=		lang/ocaml
87
.if !empty(USE_OCAML:Mnox11)
88
OCAMLC_DEPEND?=		ocaml-nox11>=0:${OCAMLC_PORT}
89
.else
90
OCAMLC_DEPEND?=		${OCAMLC}:${OCAMLC_PORT}
91
.endif
92
93
#
94
# OCaml package manager port dependency
95
#
96
OCAMLFIND_PORT?=	devel/ocaml-findlib
97
OCAMLFIND_DEPEND?=	${OCAMLFIND}:${OCAMLFIND_PORT}
98
99
# OCaml build port dependency
100
#
101
OCAMLBUILD_PORT?=	devel/ocaml-ocamlbuild
102
OCAMLBUILD_DEPEND?=	${OCAMLBUILD}:${OCAMLBUILD_PORT}
103
104
#
105
# OCaml camlp4 port dependency
106
#
107
CAMLP4_PORT?=		devel/ocaml-camlp4
108
CAMLP4_DEPEND?=		${CAMLP4}:${CAMLP4_PORT}
109
110
#
111
# OCaml camlp5 port dependency
112
#
113
CAMLP5_PORT?=		devel/ocaml-camlp5
114
CAMLP5_DEPEND?=		${CAMLP5}:${CAMLP5_PORT}
115
116
#
117
# OCaml TK bindings dependency
118
119
#
120
# OCaml TK bindings dependency
121
#
122
OCAMLTK_PORT?=		x11-toolkits/ocaml-labltk
123
OCAMLTK_DEPENDS?=	${OCAMLTK}:${OCAMLTK_PORT}
124
125
#
126
# Common OCaml examples and documents location
127
#
128
OCAML_DOCSDIR=		${PREFIX}/share/doc/ocaml
129
OCAML_EXAMPLESDIR=	${PREFIX}/share/examples/ocaml
130
131
#
132
# Location of OCaml ld.conf file
133
#
134
OCAML_LDCONF?=		${OCAML_LIBDIR}/ld.conf
135
136
# ocaml-findlib-1.4.1_1 wants to edit our ld.conf file, which does not
137
# work well with staging.
138
.if !empty(USE_OCAML:Mldconfig)
139
. if !target(ocaml-ldconfig)
140
OCAMLFIND_LDCONF?=	/dev/null
141
. endif
142
.endif
143
144
OCAMLFIND_DESTDIR?=	${PREFIX}/${OCAML_SITELIBDIR}
145
OCAMLFIND_LDCONF?=	${PREFIX}/${OCAML_LDCONF}
146
147
PLIST_SUB+=	OCAML_SITELIBDIR="${OCAML_SITELIBDIR}"
148
.for K in ${_OCAML_ARGS}
149
${K:tu}_DEPENDS+=	${OCAMLC_DEPEND}
150
.endfor
151
152
.if !empty(USE_OCAML:Mfindlib*)
153
#
154
# We'll additionally add ocamlfind to RUN_DEPENDS, since
155
# if the port requires ocamlfind to install - it requires
156
# some ocaml libraries and these libraries RUN_DEPENDS on
157
# ocamlfind
158
#
159
BUILD_DEPENDS+=		${OCAMLFIND_DEPEND}
160
RUN_DEPENDS+=		${OCAMLFIND_DEPEND}
161
MAKE_ENV+=	OCAMLFIND_DESTDIR="${STAGEDIR}${OCAMLFIND_DESTDIR}" \
162
		OCAMLFIND_LDCONF="${OCAMLFIND_LDCONF}"
163
164
_USES_install+=	250:findlib-pre-install
165
.if !target(findlib-pre-install)
166
findlib-pre-install:
167
	@${MKDIR} ${STAGEDIR}${OCAMLFIND_DESTDIR}
168
.endif
169
#
170
# Directories under site-lib to process automatically
171
#
172
OCAML_PKGDIRS?=	${PORTNAME}
173
_USES_install+=	735:ocaml-findlib
174
. if !target(ocaml-findlib)
175
ocaml-findlib:
176
.  for DIR in ${OCAML_PKGDIRS}
177
.   if !empty(_OCAML_FINDLIB_ARGS:Mplist)
178
	@${FIND} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${DIR}/ \
179
	    -type f -print | ${SED} -e \
180
	    's,^${STAGEDIR}${PREFIX}/,,' >> ${TMPPLIST}
181
.   endif
182
#	@${ECHO_CMD} "@postunexec ${OCAMLFIND} remove ${DIR} 2>/dev/null" \
183
#		>> ${TMPPLIST}
184
.  endfor
185
. endif
186
.endif
187
188
.if !empty(USE_OCAML:Mocamlbuild)
189
BUILD_DEPENDS+=	${OCAMLBUILD_DEPEND}
190
.endif
191
192
OCAMLBUILD_PREFIX=	${PREFIX}
193
OCAMLBUILD_BINDIR=	${PREFIX}/bin
194
OCAMLBUILD_LIBDIR=	${PREFIX}/${OCAML_SITELIBDIR}
195
OCAMLBUILD_MANDIR=	${PREFIX}/man
196
MAKE_ENV+=	OCAMLBUILD_PREFIX=${OCAMLBUILD_PREFIX} \
197
		OCAMLBUILD_BINDIR=${OCAMLBUILD_BINDIR} \
198
		OCAMLBUILD_LIBDIR=${OCAMLBUILD_LIBDIR} \
199
		OCAMLBUILD_MANDIR=${OCAMLBUILD_MANDIR}
200
201
.if !empty(USE_OCAML:Mcamlp4)
202
BUILD_DEPENDS+=		${CAMLP4_DEPEND}
203
.endif
204
205
.if !empty(USE_OCAML:Mcamlp5)
206
BUILD_DEPENDS+=		${CAMLP5_DEPEND}
207
.endif
208
209
.if !empty(USE_OCAML:Mtk)
210
. if !defined(NO_OCAMLTK_BUILDDEPENDS)
211
EXTRACT_DEPENDS+=	${OCAMLTK_DEPENDS}
212
PATCH_DEPENDS+=		${OCAMLTK_DEPENDS}
213
BUILD_DEPENDS+=		${OCAMLTK_DEPENDS}
214
. endif
215
. if !defined(NO_OCAMLTK_RUNDEPENDS)
216
RUN_DEPENDS+=		${OCAMLTK_DEPENDS}
217
. endif
218
.endif
219
220
.if !empty(USE_OCAML:Mldconfig)
221
#
222
# Directories under PREFIX for appending to ld.conf
223
#
224
OCAML_LDLIBS?=	${OCAML_SITELIBDIR}/${PORTNAME}
225
_USES_install+=	740:ocaml-ldconfig
226
. if !target(ocaml-ldconfig)
227
ocaml-ldconfig:
228
.  for LIB in ${OCAML_LDLIBS}
229
	@${ECHO_CMD} "@postexec ${ECHO_CMD} "%D/${LIB}" >> %D/${OCAML_LDCONF}" \
230
		>> ${TMPPLIST}
231
	@${ECHO_CMD} "@postunexec ${SED} -i \"\" -e '/${LIB:S#/#\/#g}/d' %D/${OCAML_LDCONF}"  >> ${TMPPLIST}
232
.  endfor
233
. endif
234
.endif
235
236
.if !empty(USE_OCAML:Mwash)
237
. if !target(ocaml-wash)
238
_USES_install+=	745:ocaml-wash
239
ocaml-wash:
240
#	If ld.conf is empty
241
	@${ECHO_CMD} "@postunexec if [ ! -s %D/${OCAML_LDCONF} ]; then ${RM} %D/${OCAML_LDCONF}; fi || true" >> ${TMPPLIST}
242
. endif
243
.endif
244
245
.endif # !defined(_INCLUDES_USES_OCAML_MK)
(-)Mk/bsd.port.mk (-6 / +4 lines)
Lines 1363-1370 Link Here
1363
.include "${PORTSDIR}/Mk/bsd.ruby.mk"
1363
.include "${PORTSDIR}/Mk/bsd.ruby.mk"
1364
.endif
1364
.endif
1365
1365
1366
.if defined(USE_OCAML)
1366
.if defined(USE_OCAML) && \
1367
.include "${PORTSDIR}/Mk/bsd.ocaml.mk"
1367
    (!defined(USES) || (defined(USES) && !${USES:Mocaml*}))
1368
DEV_WARNING+= "Using USE_OCAML alone is deprecated, please use USES=ocaml"
1369
USES+=	ocaml
1368
.endif
1370
.endif
1369
1371
1370
.if defined(USE_APACHE) || defined(USE_APACHE_BUILD) || defined(USE_APACHE_RUN)
1372
.if defined(USE_APACHE) || defined(USE_APACHE_BUILD) || defined(USE_APACHE_RUN)
Lines 1847-1856 Link Here
1847
.include "${PORTSDIR}/Mk/bsd.java.mk"
1849
.include "${PORTSDIR}/Mk/bsd.java.mk"
1848
.endif
1850
.endif
1849
1851
1850
.if defined(USE_OCAML)
1851
.include "${PORTSDIR}/Mk/bsd.ocaml.mk"
1852
.endif
1853
1854
.if defined(USE_QT4) || defined(USE_QT5)
1852
.if defined(USE_QT4) || defined(USE_QT5)
1855
.include "${PORTSDIR}/Mk/bsd.qt.mk"
1853
.include "${PORTSDIR}/Mk/bsd.qt.mk"
1856
.endif
1854
.endif
(-)lang/ocaml/Makefile (-111 / +54 lines)
Lines 3-15 Link Here
3
# for committer: bump PORTREVISION for math/facile whenever ocaml gets updated
3
# for committer: bump PORTREVISION for math/facile whenever ocaml gets updated
4
4
5
PORTNAME=	ocaml
5
PORTNAME=	ocaml
6
PORTVERSION=	4.02.3
6
PORTVERSION=	4.04.0
7
CATEGORIES=	lang
7
CATEGORIES=	lang
8
MASTER_SITES=	http://caml.inria.fr/pub/distrib/${DISTNAME:R}/ GENTOO \
8
MASTER_SITES=	http://caml.inria.fr/pub/distrib/${DISTNAME:R}/ GENTOO \
9
		http://caml.inria.fr/pub/distrib/${DISTNAME:R}/:docs
9
		http://caml.inria.fr/pub/distrib/${DISTNAME:R}/:docs
10
PKGNAMESUFFIX=	${SFX}
10
DISTFILES=	${DISTNAME}${EXTRACT_SUFX}
11
11
12
MAINTAINER=	michipili@gmail.com
12
MAINTAINER=	hrs@FreeBSD.org
13
COMMENT=	Objective Caml compiler and programming environment
13
COMMENT=	Objective Caml compiler and programming environment
14
14
15
LICENSE=		QPL10 LGPL20
15
LICENSE=		QPL10 LGPL20
Lines 25-166 Link Here
25
BROKEN_mips=	No ASM support
25
BROKEN_mips=	No ASM support
26
26
27
USES=		cpe gmake tar:xz
27
USES=		cpe gmake tar:xz
28
USE_LDCONFIG=	yes
28
USE_LDCONFIG=	${PREFIX}/lib/ocaml
29
CPE_VENDOR=	inria
29
CPE_VENDOR=	inria
30
REINPLACE_ARGS=	-i ""
31
HAS_CONFIGURE=	yes
30
HAS_CONFIGURE=	yes
32
ALL_TARGET=	world.opt
33
STRIP=
31
STRIP=
34
SSP_UNSAFE=	yes
32
SSP_UNSAFE=	yes
35
MAKE_JOBS_UNSAFE=	yes
33
MAKE_ENV=	STAGEDIR="${STAGEDIR}"
36
34
CONFIGURE_ARGS=	-verbose \
37
MAKE_ENV+=	STAGEDIR="${STAGEDIR}"
35
		-prefix "${PREFIX}" \
38
CONFIGURE_ARGS=	-verbose -prefix "${PREFIX}" \
36
		-cc "${CC}" \
39
		-cc "${CC} ${CFLAGS}" \
40
		-as "${AS} ${ASFLAGS}" \
37
		-as "${AS} ${ASFLAGS}" \
41
		-aspp "${CC} -c" \
38
		-aspp "${CC} -c" \
42
		-partialld "${LD} -r"
39
		-partialld "${LD} -r"
40
ALL_TARGET=	world.opt
41
MAKE_JOBS_UNSAFE=	yes
42
PORTDOCS=	htmlman ${DOCSDISTNAME}-refman.ps.gz \
43
		${DOCSDISTNAME}-refman.pdf
44
CONFLICTS=	metaocaml-[0-9]*
43
45
44
OPTIONS_DEFINE=	X11 THREADS DOCS EXAMPLES
46
OPTIONS_DEFINE=	X11 THREADS DOCS EXAMPLES
45
OPTIONS_DEFAULT=X11 THREADS
47
OPTIONS_DEFAULT=X11 THREADS
46
CMP_LIB_DESC=	Install compiler libraries
48
OPTIONS_SUB=	yes
47
PORTDOCS=	htmlman ${DOCSDISTNAME}-refman.ps.gz \
48
		${DOCSDISTNAME}-refman.pdf
49
49
50
MODOPT=		camlp4o camlp4r ocamlc ocamldep ocamldoc ocamllex ocamlopt
50
X11_CONFIGURE_ON= -x11include ${LOCALBASE}/include -x11lib ${LOCALBASE}/lib
51
PATTERN=	[[:space:]]*(do|then)?[[:space:]]*)(\$$\(CP\)|cp)([[:space:]]
51
X11_CONFIGURE_OFF=-no-graph
52
DOCSDISTNAME=	${DISTNAME:C/([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)/\1.\2/}
52
X11_USE=	XORG=x11
53
X11_VARS=	CONFLICTS+=ocaml-nox11-[0-9]*
54
X11_VARS_OFF=	CONFLICTS+=ocaml-[0-9]* \
55
		PKGNAMESUFFIX=-nox11
53
56
54
CONFLICTS=	metaocaml-[0-9]*
57
THREADS_CONFIGURE_OFF=	-no-pthread
55
58
56
.include <bsd.port.options.mk>
59
DOCS_DISTFILES= ${DOCSDISTNAME}-refman-html.tar.gz:docs \
57
58
.if ${PORT_OPTIONS:MDOCS}
59
DISTFILES:=	${DISTNAME}${EXTRACT_SUFX} \
60
		${DOCSDISTNAME}-refman-html.tar.gz:docs \
61
		${DOCSDISTNAME}-refman.ps.gz:docs \
60
		${DOCSDISTNAME}-refman.ps.gz:docs \
62
		${DOCSDISTNAME}-refman.pdf:docs
61
		${DOCSDISTNAME}-refman.pdf:docs
63
EXTRACT_ONLY:=	${DISTNAME}${EXTRACT_SUFX} \
62
DOCS_EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} \
64
		${DOCSDISTNAME}-refman-html.tar.gz
63
		${DOCSDISTNAME}-refman-html.tar.gz
65
PLIST_SUB+=	DOC=""
66
PORTDOCS=	htmlman ${DOCSDISTNAME}-refman.ps.gz ${DOCSDISTNAME}-refman.pdf
67
.else
68
PLIST_SUB+=	DOC="@comment "
69
.endif
70
64
71
.if ${ARCH} == armv6
65
MODOPT=		camlp4o camlp4r ocamlc ocamldep ocamldoc ocamllex ocamlopt
72
CONFIGURE_ARGS+=	-as "${AS} ${ASFLAGS} -meabi=5"
66
PATTERN=	[[:space:]]*(do|then)?[[:space:]]*)(\$$\(CP\)|cp)([[:space:]]
73
.else
67
DOCSDISTNAME=	${DISTNAME:C/([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)/\1.\2/}
74
CONFIGURE_ARGS+=	-as "${AS} ${ASFLAGS}"
75
.endif
76
68
77
.if ${PORT_OPTIONS:MTHREADS}
69
.include <bsd.port.pre.mk>
78
PLIST_SUB+=	THREADS=""
79
THR_LD=		-lpthread
80
.else
81
PLIST_SUB+=	THREADS="@comment "
82
THR_LD=		#empty
83
CONFIGURE_ARGS+=-no-pthread
84
.endif
85
70
86
.if ${PORT_OPTIONS:MX11}
71
.if ${ARCH} == amd64 || \
87
PLIST_SUB+=	X11=""
72
    ${ARCH} == sparc64 || \
88
USE_XORG=	x11
73
    ${ARCH} == powerpc64 || \
89
CONFLICTS+=	ocaml-nox11-[0-9]*
74
    ${ARCH} == aarch64 || \
90
CONFIGURE_ARGS+=-x11include ${LOCALBASE}/include -x11lib ${LOCALBASE}/lib
75
    ${ARCH} == ia64 || \
76
    ${ARCH} == mips64
77
PLIST_SUB+=	N64=
91
.else
78
.else
92
PLIST_SUB+=	X11="@comment "
79
PLIST_SUB+=	N64="@comment "
93
SFX=		-nox11
94
CONFLICTS+=	ocaml-[0-9]*
95
CONFIGURE_ARGS+=-no-graph
96
.endif
80
.endif
81
.if ${ARCH} == armv6
82
ASFLAGS+=	-meabi=5
83
.endif
97
84
98
.include <bsd.port.pre.mk>
99
.include "${FILESDIR}/manfiles"
100
101
OCAML_ARCH=	${ARCH:S/x86_64/amd64/:S/powerpc/power/:S/armv6/arm/}
85
OCAML_ARCH=	${ARCH:S/x86_64/amd64/:S/powerpc/power/:S/armv6/arm/}
102
86
103
.if defined(NO_PROFILE) || ${OCAML_ARCH:Mpower} || ${OCAML_ARCH:Mamd64}
104
105
PLIST_SUB+=	PROF="@comment "
106
.else
107
PLIST_SUB+=	PROF=""
108
.endif
109
110
post-extract:
111
.if ${PORT_OPTIONS:MDOCS}
112
	@if ! (cd ${WRKDIR} && \
113
	  ${TAR} xf ${_DISTDIR}${DOCSDISTNAME}-refman-html.tar.gz \
114
	) \
115
	then \
116
	  exit 1; \
117
	fi;
118
.endif
119
120
post-patch:
87
post-patch:
121
	@${REINPLACE_CMD} \
122
		-e '\|MKLIB=|s|ar rc|${AR} rc|' \
123
		-e '\|RANLIB|s|ranlib|${RANLIB}|' \
124
		-e '\|bytecclinkopts=|s|""|"${LDFLAGS}"|' \
125
		-e "\|nativecclinkopts=|s|''|\"${LDFLAGS:C/-Wl,//}\"|" \
126
		-e '\|mksharedlib=|s|$$bytecc|& $$bytecclinkopts|' \
127
		-e 's|-lbfd -ldl|-lbfd $$dllib|' \
128
		${WRKSRC}/configure
129
# don't hardcode gcc for depend target
130
131
post-configure:
132
# CFLAGS safeness
133
	@${REINPLACE_CMD} -E \
134
		-e 's|(BYTECCCOMPOPTS[ \t]*=.*)|\1 ${CFLAGS}|' \
135
		-e 's|(NATIVECCCOMPOPTS[ \t]*=.*)|\1 ${CFLAGS}|' \
136
		-e '/^PTHREAD_LINK/s,-pthread,${THR_LD},g' \
137
		${WRKSRC}/config/Makefile
138
139
# INSTALL* safeness (which preserves the correct permissions despite
140
# user's umask(1)
141
	@${FIND} ${WRKDIR} -type f -name Makefile -print0 | \
88
	@${FIND} ${WRKDIR} -type f -name Makefile -print0 | \
142
		${XARGS} -0 -n 5 -x ${REINPLACE_CMD} -E \
89
	    ${XARGS} -0 -n 5 -x ${REINPLACE_CMD} -E \
143
		-e 's,\$$\(ARCH\),${OCAML_ARCH},g'	\
90
	    -e 's,\$$\(ARCH\),${OCAML_ARCH},g'	\
144
		-e 's,^(${PATTERN}+.*INSTALLDIR),\1\$${BSD_INSTALL_DATA} \4,' \
91
	    -e 's,^(${PATTERN}+.*INSTALLDIR),\1\$${BSD_INSTALL_DATA} \4,' \
145
		-e 's,^(${PATTERN}+.*BINDIR),\1\$${BSD_INSTALL_PROGRAM} \4,' \
92
	    -e 's,^(${PATTERN}+.*BINDIR),\1\$${BSD_INSTALL_PROGRAM} \4,' \
146
		-e 's,^(${PATTERN}+.*LIBDIR),\1\$${BSD_INSTALL_DATA} \4,' \
93
	    -e 's,^(${PATTERN}+.*LIBDIR),\1\$${BSD_INSTALL_DATA} \4,' \
147
		-e 's,(${PATTERN}+.*(MANDIR|MANODIR|MANEXT)),\1\$${BSD_INSTALL_MAN} \4,'
94
	    -e 's,(${PATTERN}+.*(MANDIR|MANODIR|MANEXT)),\1\$${BSD_INSTALL_MAN} \4,'
148
95
149
check-test: do-install
96
check-test: do-install
150
	@cd ${WRKSRC}/testsuite; ${RM} _log; for d in tests/* ; do \
97
	cd ${WRKSRC}/testsuite; ${RM} _log; for d in tests/* ; do \
151
	${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} one DIR=$${d} \
98
	    ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} one DIR=$${d} \
152
	2>&1 | tee -a _log || ${TRUE} ; done ; \
99
	    2>&1 | tee -a _log || ${TRUE} ; done ; \
153
	${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} report
100
	    ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} report
154
101
155
post-install:
102
post-install-DOCS-on:
156
.if ${PORT_OPTIONS:MDOCS}
103
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
157
	${MKDIR} ${STAGEDIR}${DOCSDIR}
104
	cd ${WRKDIR} && ${COPYTREE_SHARE} htmlman ${STAGEDIR}${DOCSDIR}
158
	(cd ${WRKDIR} && ${COPYTREE_SHARE} htmlman ${STAGEDIR}${DOCSDIR})
105
	${INSTALL_DATA} ${_DISTDIR}${DOCSDISTNAME}-refman.ps.gz \
159
	${INSTALL_DATA} ${_DISTDIR}${DOCSDISTNAME}-refman.ps.gz ${STAGEDIR}${DOCSDIR}
106
	    ${_DISTDIR}${DOCSDISTNAME}-refman.pdf \
160
	${INSTALL_DATA} ${_DISTDIR}${DOCSDISTNAME}-refman.pdf ${STAGEDIR}${DOCSDIR}
107
	    ${STAGEDIR}${DOCSDIR}
161
.endif
162
108
163
# Fix permissions for ld.conf
164
	@${CHMOD} 644 ${STAGEDIR}${PREFIX}/lib/ocaml/ld.conf
165
166
.include <bsd.port.post.mk>
109
.include <bsd.port.post.mk>
(-)lang/ocaml/distinfo (-8 / +9 lines)
Lines 1-8 Link Here
1
SHA256 (ocaml-4.02.3.tar.xz) = 83c6697e135b599a196fd7936eaf8a53dd6b8f3155a796d18407b56f91df9ce3
1
TIMESTAMP = 1491253090
2
SIZE (ocaml-4.02.3.tar.xz) = 2058552
2
SHA256 (ocaml-4.04.0.tar.xz) = 64ed6dad2316d5dff7440cea89f0f0abe07ce508b9104d1bfadf3782e79856b4
3
SHA256 (ocaml-4.02-refman-html.tar.gz) = 1d3b7e5494c075d86c760f6320acba086d686e7409cb75f8267bccfb6ad5f3a8
3
SIZE (ocaml-4.04.0.tar.xz) = 2376096
4
SIZE (ocaml-4.02-refman-html.tar.gz) = 612839
4
SHA256 (ocaml-4.04-refman-html.tar.gz) = 1cb4afcdb64359eea2501c63085f62eda4bbac51fd89b7d5dbf56670ec1b88ba
5
SHA256 (ocaml-4.02-refman.ps.gz) = b14b5aec1e4e1aded2d36e78ceeedfc3c19c3369b257ab507f6a0755651e8f4a
5
SIZE (ocaml-4.04-refman-html.tar.gz) = 833166
6
SIZE (ocaml-4.02-refman.ps.gz) = 1111960
6
SHA256 (ocaml-4.04-refman.ps.gz) = 2c395ea161bd7d1a7fbbbee66095605d55e47f46945068a5dd7e3d9718d553c3
7
SHA256 (ocaml-4.02-refman.pdf) = 5575824bf0c94b07d3c618c378e02ea0d5341b9e319b4e8c5b331d0ff51898d8
7
SIZE (ocaml-4.04-refman.ps.gz) = 1171679
8
SIZE (ocaml-4.02-refman.pdf) = 1519190
8
SHA256 (ocaml-4.04-refman.pdf) = 1ebdb863860274378459ffb78ff3d9c3d7bd1792912a69bc8641ffceda8f72d4
9
SIZE (ocaml-4.04-refman.pdf) = 1625902
(-)lang/ocaml/files/manfiles (-101 lines)
Lines 1-101 Link Here
1
MAN1=	ocaml.1 \
2
	ocamlbuild.1 \
3
	ocamlc.1 \
4
	ocamlcp.1 \
5
	ocamldebug.1 \
6
	ocamldep.1 \
7
	ocamldoc.1 \
8
	ocamllex.1 \
9
	ocamlmktop.1 \
10
	ocamlopt.1 \
11
	ocamloptp.1 \
12
	ocamlprof.1 \
13
	ocamlrun.1 \
14
	ocamlyacc.1
15
16
MANN=	Arg.3o \
17
	Array.3o \
18
	ArrayLabels.3o \
19
	Bigarray.3o \
20
	Bigarray.Array1.3o \
21
	Bigarray.Array2.3o \
22
	Bigarray.Array3.3o \
23
	Bigarray.Genarray.3o \
24
	Buffer.3o \
25
	Callback.3o \
26
	CamlinternalLazy.3o \
27
	CamlinternalMod.3o \
28
	CamlinternalOO.3o \
29
	Complex.3o \
30
	Digest.3o \
31
	Filename.3o \
32
	Format.3o \
33
	Gc.3o \
34
	Genlex.3o \
35
	Hashtbl.3o \
36
	Hashtbl.HashedType.3o \
37
	Hashtbl.Make.3o \
38
	Hashtbl.MakeSeeded.3o \
39
	Hashtbl.S.3o \
40
	Hashtbl.SeededHashedType.3o \
41
	Hashtbl.SeededS.3o \
42
	Int32.3o \
43
	Int64.3o \
44
	Lexing.3o \
45
	List.3o \
46
	ListLabels.3o \
47
	Map.3o \
48
	Map.Make.3o \
49
	Map.OrderedType.3o \
50
	Map.S.3o \
51
	Marshal.3o \
52
	MoreLabels.3o \
53
	MoreLabels.Hashtbl.3o \
54
	MoreLabels.Hashtbl.HashedType.3o \
55
	MoreLabels.Hashtbl.Make.3o \
56
	MoreLabels.Hashtbl.MakeSeeded.3o \
57
	MoreLabels.Hashtbl.S.3o \
58
	MoreLabels.Hashtbl.SeededHashedType.3o \
59
	MoreLabels.Hashtbl.SeededS.3o \
60
	MoreLabels.Map.3o \
61
	MoreLabels.Map.Make.3o \
62
	MoreLabels.Map.OrderedType.3o \
63
	MoreLabels.Map.S.3o \
64
	MoreLabels.Set.3o \
65
	MoreLabels.Set.Make.3o \
66
	MoreLabels.Set.OrderedType.3o \
67
	MoreLabels.Set.S.3o \
68
	Nativeint.3o \
69
	Num.3o \
70
	Obj.3o \
71
	Oo.3o \
72
	Parsing.3o \
73
	Pervasives.3o \
74
	Pervasives.LargeFile.3o \
75
	Printexc.3o \
76
	Printf.3o \
77
	Queue.3o \
78
	Random.3o \
79
	Random.State.3o \
80
	Scanf.3o \
81
	Scanf.Scanning.3o \
82
	Set.Make.3o \
83
	Set.OrderedType.3o \
84
	Set.S.3o \
85
	Sort.3o \
86
	Stack.3o \
87
	StdLabels.3o \
88
	StdLabels.Array.3o \
89
	StdLabels.List.3o \
90
	StdLabels.String.3o \
91
	Str.3o \
92
	Stream.3o \
93
	StringLabels.3o \
94
	Sys.3o \
95
	Unix.3o \
96
	Unix.LargeFile.3o \
97
	Weak.3o \
98
	Weak.Make.3o \
99
	Weak.S.3o
100
101
MLINKS=	ocamlc.1 ocamlc.opt.1 ocamlopt.1 ocamlopt.opt.1
(-)lang/ocaml/files/patch-Changes (+17 lines)
Line 0 Link Here
1
--- Changes.orig	2016-11-04 16:08:24 UTC
2
+++ Changes
3
@@ -2567,6 +2567,14 @@ Tools:
4
   (Guillaume Melquiond, Alain Frisch)
5
 
6
 
7
+Next version (4.04.1):
8
+----------------------
9
+
10
+### Standard library:
11
+
12
+- PR#7403, GPR#894: fix a bug in Set.map as introduced in 4.04.0
13
+  (Gabriel Scherer, report by Thomas Leonard)
14
+
15
 OCaml 4.00.1 (5 Oct 2012):
16
 --------------------------
17
 
(-)lang/ocaml/files/patch-configure (-106 / +115 lines)
Lines 1-158 Link Here
1
--- configure.orig	2015-05-12 14:46:37 UTC
1
--- configure.orig	2016-11-05 01:08:24.000000000 +0900
2
+++ configure
2
+++ configure	2017-01-15 01:54:50.124245000 +0900
3
@@ -446,7 +446,7 @@ esac
3
@@ -346,7 +346,7 @@
4
 
4
 
5
 # Configure compiler to use in further tests
5
 case "$ccfamily" in
6
   clang-*)
7
-    bytecccompopts="-O2 -fno-strict-aliasing -fwrapv $gcc_warnings";;
8
+    bytecccompopts="-fno-strict-aliasing -fwrapv $gcc_warnings";;
9
   gcc-[012]-*)
10
     # Some versions known to miscompile OCaml, e,g, 2.7.2.1, some 2.96.
11
     # Plus: C99 support unknown.
12
@@ -356,12 +356,13 @@
13
     # Known problems with -fwrapv fixed in 4.2 only.
14
     wrn "This version of GCC is rather old.  Reducing optimization level."
15
     wrn "Consider using GCC version 4.2 or above."
16
-    bytecccompopts="-std=gnu99 -O $gcc_warnings";;
17
+    bytecccompopts="-std=gnu99 $gcc_warnings";;
18
   gcc-*)
19
-    bytecccompopts="-std=gnu99 -O2 -fno-strict-aliasing -fwrapv $gcc_warnings";;
20
+    bytecccompopts="-std=gnu99 -fno-strict-aliasing -fwrapv $gcc_warnings";;
21
   *)
22
     bytecccompopts="-O";;
23
 esac
24
+bytecccompopts="$bytecccompopts ${CFLAGS}"
6
 
25
 
7
-cc="$bytecc -O $bytecclinkopts"
26
 # Adjust according to target
8
+cc="$bytecc $bytecclinkopts"
9
 export cc cclibs verbose
10
 
27
 
11
 # Check C compiler
28
@@ -700,7 +701,7 @@
12
@@ -688,9 +688,9 @@ if test $with_sharedlibs = "yes"; then
29
     *-*-linux-gnu|*-*-linux|*-*-freebsd[3-9]*|*-*-freebsd[1-9][0-9]*\
13
       mksharedlib="$flexlink"
30
     |*-*-openbsd*|*-*-netbsd*|*-*-dragonfly*|*-*-gnu*|*-*-haiku*)
14
       mkmaindll="$flexlink -maindll"
15
       shared_libraries_supported=true;;
16
-    *-*-linux-gnu|*-*-linux|*-*-freebsd[3-9]*|*-*-freebsd[1-9][0-9]*|*-*-openbsd*|*-*-netbsd*|*-*-gnu*|*-*-haiku*)
17
+    *-*-linux-gnu|*-*-linux|*-*-dragonfly*|*-*-freebsd[3-9]*|*-*-freebsd[1-9][0-9]*|*-*-openbsd*|*-*-netbsd*|*-*-gnu*|*-*-haiku*)
18
       sharedcccompopts="-fPIC"
31
       sharedcccompopts="-fPIC"
19
-      mksharedlib="$bytecc -shared"
32
-      mksharedlib="$bytecc -shared"
20
+      mksharedlib="$bytecc $bytecclinkopts $bytecclinkopts $bytecclinkopts -shared"
33
+      mksharedlib="$bytecc -shared ${LDFLAGS}"
21
       bytecclinkopts="$bytecclinkopts -Wl,-E"
34
       bytecclinkopts="$bytecclinkopts -Wl,-E"
22
       byteccrpath="-Wl,-rpath,"
35
       byteccrpath="-Wl,-rpath,"
23
       mksharedlibrpath="-Wl,-rpath,"
36
       mksharedlibrpath="-Wl,-rpath,"
24
@@ -700,7 +700,7 @@ if test $with_sharedlibs = "yes"; then
37
@@ -710,7 +711,7 @@
25
       case "$bytecc" in
38
       case "$bytecc" in
26
         *gcc*)
39
         *gcc*)
27
           sharedcccompopts="-fPIC"
40
           sharedcccompopts="-fPIC"
28
-          mksharedlib="$bytecc -shared"
41
-          mksharedlib="$bytecc -shared"
29
+          mksharedlib="$bytecc $bytecclinkopts $bytecclinkopts $bytecclinkopts -shared"
42
+          mksharedlib="$bytecc $bytecclinkopts -shared"
30
           byteccrpath="-Wl,-rpath,"
43
           byteccrpath="-Wl,-rpath,"
31
           mksharedlibrpath="-Wl,-rpath,"
44
           mksharedlibrpath="-Wl,-rpath,"
32
           shared_libraries_supported=true;;
45
           shared_libraries_supported=true;;
33
@@ -716,11 +716,11 @@ if test $with_sharedlibs = "yes"; then
46
@@ -730,7 +731,7 @@
34
         *gcc*)
35
           sharedcccompopts="-fPIC"
36
           if sh ./solaris-ld; then
37
-            mksharedlib="$bytecc -shared"
38
+            mksharedlib="$bytecc $bytecclinkopts $bytecclinkopts $bytecclinkopts -shared"
39
             byteccrpath="-R"
47
             byteccrpath="-R"
40
             mksharedlibrpath="-R"
48
             mksharedlibrpath="-R"
41
           else
49
           else
42
-            mksharedlib="$bytecc -shared"
50
-            mksharedlib="$bytecc -shared"
43
+            mksharedlib="$bytecc $bytecclinkopts $bytecclinkopts $bytecclinkopts -shared"
51
+            mksharedlib="$bytecc $bytecclinkopts -shared"
44
             bytecclinkopts="$bytecclinkopts -Wl,-E"
52
             bytecclinkopts="$bytecclinkopts -Wl,-E"
45
             natdynlinkopts="-Wl,-E"
53
             natdynlinkopts="-Wl,-E"
46
             byteccrpath="-Wl,-rpath,"
54
             byteccrpath="-Wl,-rpath,"
47
@@ -744,12 +744,12 @@ if test $with_sharedlibs = "yes"; then
55
@@ -754,13 +755,13 @@
48
       mksharedlibrpath="-rpath "
56
       mksharedlibrpath="-rpath "
49
       shared_libraries_supported=true;;
57
       shared_libraries_supported=true;;
50
     i[3456]86-*-darwin[89].*)
58
     i[3456]86-*-darwin[89].*)
51
-      mksharedlib="$bytecc -bundle -flat_namespace -undefined suppress -read_only_relocs suppress"
59
-      mksharedlib="$bytecc -bundle -flat_namespace -undefined suppress \
52
+      mksharedlib="$bytecc $bytecclinkopts $bytecclinkopts $bytecclinkopts -bundle -flat_namespace -undefined suppress -read_only_relocs suppress"
60
+      mksharedlib="$bytecc $bytecclinkopts -bundle -flat_namespace -undefined suppress \
61
                    -read_only_relocs suppress"
53
       bytecccompopts="$dl_defs $bytecccompopts"
62
       bytecccompopts="$dl_defs $bytecccompopts"
54
       dl_needs_underscore=false
63
       dl_needs_underscore=false
55
       shared_libraries_supported=true;;
64
       shared_libraries_supported=true;;
56
     *-apple-darwin*)
65
     *-apple-darwin*)
57
-      mksharedlib="$bytecc -bundle -flat_namespace -undefined suppress -Wl,-no_compact_unwind"
66
-      mksharedlib="$bytecc -bundle -flat_namespace -undefined suppress \
58
+      mksharedlib="$bytecc $bytecclinkopts $bytecclinkopts $bytecclinkopts -bundle -flat_namespace -undefined suppress -Wl,-no_compact_unwind"
67
+      mksharedlib="$bytecc $bytecclinkopts -bundle -flat_namespace -undefined suppress \
68
                    -Wl,-no_compact_unwind"
59
       bytecccompopts="$dl_defs $bytecccompopts"
69
       bytecccompopts="$dl_defs $bytecccompopts"
60
       dl_needs_underscore=false
70
       dl_needs_underscore=false
61
       shared_libraries_supported=true;;
71
@@ -771,7 +772,7 @@
62
@@ -759,7 +759,7 @@ if test $with_sharedlibs = "yes"; then
63
       shared_libraries_supported=false;;
72
       shared_libraries_supported=false;;
64
     *-*-openbsd*)
73
     *-*-openbsd*)
65
       sharedcccompopts="-fPIC"
74
       sharedcccompopts="-fPIC"
66
-      mksharedlib="$bytecc -shared"
75
-      mksharedlib="$bytecc -shared"
67
+      mksharedlib="$bytecc $bytecclinkopts $bytecclinkopts $bytecclinkopts -shared"
76
+      mksharedlib="$bytecc $bytecclinkopts -shared"
68
       bytecclinkopts="$bytecclinkopts -Wl,-E"
77
       bytecclinkopts="$bytecclinkopts -Wl,-E"
69
       natdynlinkopts="-Wl,-E"
78
       natdynlinkopts="-Wl,-E"
70
       byteccrpath="-Wl,-rpath,"
79
       byteccrpath="-Wl,-rpath,"
71
@@ -790,9 +790,11 @@ if test $with_sharedlibs = "yes"; then
80
@@ -803,6 +804,7 @@
72
       fi;;
73
     x86_64-*-darwin*)             natdynlink=true;;
81
     x86_64-*-darwin*)             natdynlink=true;;
82
     s390x*-*-linux*)              natdynlink=true;;
74
     powerpc*-*-linux*)            natdynlink=true;;
83
     powerpc*-*-linux*)            natdynlink=true;;
75
+    powerpc*-*-freebsd*)          natdynlink=true;;
84
+    powerpc*-*-freebsd*)          natdynlink=true;;
76
     sparc*-*-linux*)              natdynlink=true;;
85
     sparc*-*-linux*)              natdynlink=true;;
77
     i686-*-kfreebsd*)             natdynlink=true;;
86
     i686-*-kfreebsd*)             natdynlink=true;;
78
     x86_64-*-kfreebsd*)           natdynlink=true;;
87
     x86_64-*-kfreebsd*)           natdynlink=true;;
79
+    x86_64-*-dragonfly*)          natdynlink=true;;
88
@@ -819,6 +821,7 @@
80
     i[3456]86-*-freebsd*)         natdynlink=true;;
89
     arm*-*-freebsd*)              natdynlink=true;;
81
     x86_64-*-freebsd*)            natdynlink=true;;
90
     earm*-*-netbsd*)              natdynlink=true;;
82
     i[3456]86-*-openbsd*)         natdynlink=true;;
91
     aarch64-*-linux*)             natdynlink=true;;
83
@@ -844,6 +846,7 @@ case "$target" in
92
+    aarch64-*-freebsd*)           natdynlink=true;;
84
   i[3456]86-*-gnu*)             arch=i386; system=gnu;;
93
   esac
85
   i[3456]86-*-mingw*)           arch=i386; system=mingw;;
94
 fi
86
   powerpc*-*-linux*)            arch=power; model=ppc; system=elf;;
95
 
87
+  powerpc-*-freebsd*)           arch=power; model=ppc; system=bsd_elf;;
96
@@ -862,6 +865,9 @@
97
   powerpc*-*-linux*)            arch=power;
98
                                 if $arch64; then model=ppc64; else model=ppc; fi
99
                                 system=elf;;
100
+  powerpc*-*-freebsd*)          arch=power;
101
+                                if $arch64; then model=ppc64; else model=ppc; fi
102
+                                system=elf;;
88
   powerpc-*-netbsd*)            arch=power; model=ppc; system=elf;;
103
   powerpc-*-netbsd*)            arch=power; model=ppc; system=elf;;
89
   powerpc-*-openbsd*)           arch=power; model=ppc; system=bsd_elf;;
104
   powerpc-*-openbsd*)           arch=power; model=ppc; system=bsd_elf;;
90
   powerpc-*-rhapsody*)          arch=power; model=ppc; system=rhapsody;;
105
   s390x*-*-linux*)              arch=s390x; model=z10; system=elf;;
91
@@ -862,6 +865,7 @@ case "$target" in
106
@@ -914,7 +920,7 @@
92
   zaurus*-*-openbsd*)           arch=arm; system=bsd;;
93
   x86_64-*-linux*)              arch=amd64; system=linux;;
94
   x86_64-*-gnu*)                arch=amd64; system=gnu;;
95
+  x86_64-*-dragonfly*)          arch=amd64; system=dragonfly;;
96
   x86_64-*-freebsd*)            arch=amd64; system=freebsd;;
97
   x86_64-*-netbsd*)             arch=amd64; system=netbsd;;
98
   x86_64-*-openbsd*)            arch=amd64; system=openbsd;;
99
@@ -889,7 +893,7 @@ else
100
 fi
101
 
107
 
102
 nativecccompopts=''
108
 nativecccompopts="$bytecccompopts"
109
 nativeccprofopts=''
103
-nativecclinkopts=''
110
-nativecclinkopts=''
104
+nativecclinkopts=""
111
+nativecclinkopts=""
105
 # FIXME the naming of nativecclinkopts is broken: these are options for
112
 # FIXME the naming of nativecclinkopts is broken: these are options for
106
 # ld (for shared libs), not for cc
113
 # ld (for shared libs), not for cc
107
 nativeccrpath="$byteccrpath"
114
 nativeccrpath="$byteccrpath"
108
@@ -932,6 +936,8 @@ case "$arch,$system" in
115
@@ -985,10 +991,12 @@
109
                   esac;;
110
   arm,freebsd)    as="${TOOLPREF}cc -c"
111
                   aspp="${TOOLPREF}cc -c";;
112
+  *,dragonfly)    as="${TOOLPREF}as"
113
+                  aspp="${TOOLPREF}cc -c";;
114
   *,freebsd)      as="${TOOLPREF}as"
115
                   aspp="${TOOLPREF}cc -c";;
116
   amd64,*|arm,*|arm64,*|i386,*|power,bsd*|sparc,*)
117
@@ -955,9 +961,11 @@ case "$arch,$system" in
118
     case "$nativecc" in gcc*) ;; *) cc_profile='-xpg';; esac;;
119
   amd64,linux) profiling='prof';;
116
   amd64,linux) profiling='prof';;
120
   amd64,openbsd) profiling='prof';;
117
   amd64,openbsd) profiling='prof';;
118
   amd64,freebsd) profiling='prof';;
121
+  amd64,dragonfly) profiling='prof';;
119
+  amd64,dragonfly) profiling='prof';;
122
   amd64,freebsd) profiling='prof';;
123
   amd64,netbsd) profiling='prof';;
120
   amd64,netbsd) profiling='prof';;
121
   arm,netbsd) profiling='prof';;
124
   amd64,gnu) profiling='prof';;
122
   amd64,gnu) profiling='prof';;
123
   arm,linux*) profiling='prof';;
125
+  arm,freebsd) profiling='prof';;
124
+  arm,freebsd) profiling='prof';;
126
   arm,linux*) profiling='prof';;
127
   power,elf) profiling='prof';;
125
   power,elf) profiling='prof';;
128
   power,bsd*) profiling='prof';;
126
   power,bsd*) profiling='prof';;
129
@@ -1415,6 +1423,8 @@ if test "$pthread_wanted" = "yes"; then
127
   *) profiling='noprof';;
130
   case "$target" in
128
@@ -996,15 +1004,8 @@
131
     *-*-solaris*)  pthread_link="-lpthread -lposix4"
129
 
130
 # Where is ranlib?
131
 
132
-if sh ./searchpath ${TOOLPREF}ranlib; then
133
-  inf "ranlib found"
134
-  echo "RANLIB=${TOOLPREF}ranlib" >> Makefile
135
-  echo "RANLIBCMD=${TOOLPREF}ranlib" >> Makefile
136
-else
137
-  inf "ranlib not used"
138
-  echo "RANLIB=${TOOLPREF}ar rs" >> Makefile
139
-  echo "RANLIBCMD=" >> Makefile
140
-fi
141
+echo RANLIB=/usr/bin/ranlib >> Makefile
142
+echo RANLIBCMD=/usr/bin/ranlib >> Makefile
143
 
144
 echo "ARCMD=${TOOLPREF}ar" >> Makefile
145
 
146
@@ -1494,8 +1495,8 @@
132
                    pthread_caml_link="-cclib -lpthread -cclib -lposix4";;
147
                    pthread_caml_link="-cclib -lpthread -cclib -lposix4";;
133
+    *-*-dragon*)   pthread_link="-pthread"
148
     *-*-dragon*)   pthread_link="-pthread"
134
+                   pthread_caml_link="-cclib -pthread";;
135
     *-*-freebsd*)  pthread_link="-pthread"
136
                    pthread_caml_link="-cclib -pthread";;
149
                    pthread_caml_link="-cclib -pthread";;
150
-    *-*-freebsd*)  pthread_link="-pthread"
151
-                   pthread_caml_link="-cclib -pthread";;
152
+    *-*-freebsd*)  pthread_link="-lpthread"
153
+                   pthread_caml_link="-cclib -lpthread";;
137
     *-*-openbsd*)  pthread_link="-pthread"
154
     *-*-openbsd*)  pthread_link="-pthread"
138
@@ -1431,7 +1441,7 @@ if test "$pthread_wanted" = "yes"; then
155
                    pthread_caml_link="-cclib -pthread";;
139
     bytecccompopts="$bytecccompopts -D_REENTRANT"
156
     *-*-haiku*)    pthread_link=""
140
     nativecccompopts="$nativecccompopts -D_REENTRANT"
157
@@ -1724,19 +1725,19 @@
141
     case "$target" in
142
-      *-*-freebsd*)
143
+      *-*-freebsd*|*-*-dragonfly*)
144
           bytecccompopts="$bytecccompopts -D_THREAD_SAFE"
145
           nativecccompopts="$nativecccompopts -D_THREAD_SAFE";;
146
       *-*-openbsd*)
147
@@ -1601,6 +1611,7 @@ if test "$x11_include" = "not found"; th
148
       else
149
         x11_libs="-L$dir"
150
         case "$target" in
151
+          *-*-freebsd*|*-*-dragonfly*) x11_link="-L$dir -lX11";;
152
           *-kfreebsd*-gnu) x11_link="-L$dir -lX11";;
153
           *-*-*bsd*) x11_link="-R$dir -L$dir -lX11";;
154
           *) x11_link="-L$dir -lX11";;
155
@@ -1644,10 +1655,10 @@ echo "X11_LINK=$x11_link" >> Makefile
156
 # Look for BFD library
158
 # Look for BFD library
157
 
159
 
158
 if sh ./hasgot -DPACKAGE=ocaml -i bfd.h && \
160
 if sh ./hasgot -DPACKAGE=ocaml -i bfd.h && \
Lines 162-180 Link Here
162
   echo "#define HAS_LIBBFD" >> s.h
164
   echo "#define HAS_LIBBFD" >> s.h
163
-  echo "LIBBFD_LINK=-lbfd -ldl -liberty -lz" >> Makefile
165
-  echo "LIBBFD_LINK=-lbfd -ldl -liberty -lz" >> Makefile
164
+  echo "LIBBFD_LINK=-lbfd $dllib -liberty -lz" >> Makefile
166
+  echo "LIBBFD_LINK=-lbfd $dllib -liberty -lz" >> Makefile
167
   echo LIBBFD_INCLUDE= >>Makefile
168
 elif sh ./hasgot -DPACKAGE=ocaml -I/opt/local/include -i bfd.h && \
169
-     sh ./hasgot -DPACKAGE=ocaml -L/opt/local/lib -lbfd -ldl \
170
+     sh ./hasgot -DPACKAGE=ocaml -L/opt/local/lib -lbfd $dllib \
171
                  -liberty -lz -lintl bfd_openr
172
 then
173
   # MacOSX with binutils from MacPorts
174
   inf "BFD library found."
175
   echo "#define HAS_LIBBFD" >> s.h
176
-  echo "LIBBFD_LINK=-L/opt/local/lib -lbfd -ldl -liberty -lz -lintl" >> Makefile
177
+  echo "LIBBFD_LINK=-L/opt/local/lib -lbfd $dllib -liberty -lz -lintl" >> Makefile
178
   echo LIBBFD_INCLUDE=-I/opt/local/include >>Makefile
165
 else
179
 else
166
   wrn "BFD library not found, 'objinfo' will be unable to display info on .cmxs files."
180
   wrn "BFD library not found, 'objinfo' will be unable to display info" \
167
   echo "LIBBFD_LINK=" >> Makefile
181
@@ -1921,7 +1922,7 @@
168
@@ -1686,12 +1697,6 @@ if $no_naked_pointers; then
182
 #ml let syslib x = "-l"^x;;
169
   echo "#define NO_NAKED_POINTERS" >> m.h
170
 fi
171
 
183
 
172
-# Add Unix-style optimization flag
184
 ### How to build a static library
173
-bytecccompopts="-O $bytecccompopts"
185
-MKLIB=${TOOLPREF}ar rc \$(1) \$(2); ${TOOLPREF}ranlib \$(1)
174
-dllcccompopts="-O $dllcccompopts"
186
+MKLIB=${AR} rc \$(1) \$(2); ranlib \$(1)
175
-nativecccompopts="-O $nativecccompopts"
187
 #ml let mklib out files opts =      (* "" *)
176
-sharedcccompopts="-O $sharedcccompopts"
188
 #ml   Printf.sprintf "${TOOLPREF}ar rc %s %s %s; ${TOOLPREF}ranlib %s"
177
-
189
 #ml                  out opts files out;;
178
 # Final twiddling of compiler options to work around known bugs
179
 
180
 nativeccprofopts="$nativecccompopts"
(-)lang/ocaml/files/patch-stdlib_set.ml (+32 lines)
Line 0 Link Here
1
--- stdlib/set.ml.orig	2016-11-04 16:08:24 UTC
2
+++ stdlib/set.ml
3
@@ -375,6 +375,15 @@ module Make(Ord: OrderedType) =
4
           if c = 0 then v
5
           else find x (if c < 0 then l else r)
6
 
7
+    let try_join l v r =
8
+      (* [join l v r] can only be called when (elements of l < v <
9
+         elements of r); use [try_join l v r] when this property may
10
+         not hold, but you hope it does hold in the common case *)
11
+      if (l = Empty || Ord.compare (max_elt l) v < 0)
12
+      && (r = Empty || Ord.compare v (min_elt r) < 0)
13
+      then join l v r
14
+      else union l (add v r)
15
+
16
     let rec map f = function
17
       | Empty -> Empty
18
       | Node (l, v, r, _) as t ->
19
@@ -383,12 +392,7 @@ module Make(Ord: OrderedType) =
20
          let v' = f v in
21
          let r' = map f r in
22
          if l == l' && v == v' && r == r' then t
23
-         else begin
24
-             if (l' = Empty || Ord.compare (max_elt l') v < 0)
25
-                && (r' = Empty || Ord.compare v (min_elt r') < 0)
26
-             then join l' v' r'
27
-             else union l' (add v' r')
28
-         end
29
+         else try_join l' v' r'
30
 
31
     let of_sorted_list l =
32
       let rec sub n l =
(-)lang/ocaml/files/patch-testsuite_tests_lib-set_testset.ml (+24 lines)
Line 0 Link Here
1
--- testsuite/tests/lib-set/testset.ml.orig	2016-11-04 16:08:24 UTC
2
+++ testsuite/tests/lib-set/testset.ml
3
@@ -167,3 +167,21 @@ let () =
4
   for i = 1 to 10 do s1 := S.add i !s1 done;
5
   let s2 = S.filter (fun e -> e >= 0) !s1 in
6
   assert (s2 == !s1)
7
+
8
+let valid_structure s =
9
+  (* this test should return 'true' for all set,
10
+     but it can detect sets that are ill-structured,
11
+     for example incorrectly ordered, as the S.mem
12
+     function will make assumptions about the set ordering.
13
+
14
+     (This trick was used to exhibit the bug in PR#7403)
15
+  *)
16
+  List.for_all (fun n -> S.mem n s) (S.elements s)
17
+
18
+let () =
19
+  (* PR#7403: map buggily orders elements according to the input
20
+     set order, not the output set order. Mapping functions that
21
+     change the value ordering thus break the set structure. *)
22
+  let test = S.of_list [1; 3; 5] in
23
+  let f = function 3 -> 8 | n -> n in
24
+  assert (valid_structure (S.map f test))
(-)lang/ocaml/pkg-descr (-1 / +1 lines)
Lines 16-19 Link Here
16
the generated programs deliver excellent performance, while retaining
16
the generated programs deliver excellent performance, while retaining
17
the moderate memory requirements of the bytecode compiler.
17
the moderate memory requirements of the bytecode compiler.
18
18
19
WWW: http://caml.inria.fr/ocaml/
19
WWW: http://ocaml.org
(-)lang/ocaml/pkg-plist (-180 / +720 lines)
Lines 1-111 Link Here
1
%%PROF%%lib/ocaml/arg.p.cmx
2
%%PROF%%lib/ocaml/arrayLabels.p.cmx
3
%%PROF%%lib/ocaml/array.p.cmx
4
%%PROF%%lib/ocaml/buffer.p.cmx
5
%%PROF%%lib/ocaml/bytesLabels.p.cmx
6
%%PROF%%lib/ocaml/bytes.p.cmx
7
%%PROF%%lib/ocaml/callback.p.cmx
8
%%PROF%%lib/ocaml/camlinternalFormatBasics.p.cmx
9
%%PROF%%lib/ocaml/camlinternalFormat.p.cmx
10
%%PROF%%lib/ocaml/camlinternalLazy.p.cmx
11
%%PROF%%lib/ocaml/camlinternalMod.p.cmx
12
%%PROF%%lib/ocaml/camlinternalOO.p.cmx
13
%%PROF%%lib/ocaml/char.p.cmx
14
%%PROF%%lib/ocaml/complex.p.cmx
15
%%PROF%%lib/ocaml/digest.p.cmx
16
%%PROF%%lib/ocaml/filename.p.cmx
17
%%PROF%%lib/ocaml/format.p.cmx
18
%%PROF%%lib/ocaml/gc.p.cmx
19
%%PROF%%lib/ocaml/genlex.p.cmx
20
%%PROF%%lib/ocaml/hashtbl.p.cmx
21
%%PROF%%lib/ocaml/int32.p.cmx
22
%%PROF%%lib/ocaml/int64.p.cmx
23
%%PROF%%lib/ocaml/lazy.p.cmx
24
%%PROF%%lib/ocaml/lexing.p.cmx
25
%%PROF%%lib/ocaml/listLabels.p.cmx
26
%%PROF%%lib/ocaml/list.p.cmx
27
%%PROF%%lib/ocaml/map.p.cmx
28
%%PROF%%lib/ocaml/marshal.p.cmx
29
%%PROF%%lib/ocaml/moreLabels.p.cmx
30
%%PROF%%lib/ocaml/nativeint.p.cmx
31
%%PROF%%lib/ocaml/obj.p.cmx
32
%%PROF%%lib/ocaml/oo.p.cmx
33
%%PROF%%lib/ocaml/parsing.p.cmx
34
%%PROF%%lib/ocaml/pervasives.p.cmx
35
%%PROF%%lib/ocaml/printexc.p.cmx
36
%%PROF%%lib/ocaml/printf.p.cmx
37
%%PROF%%lib/ocaml/queue.p.cmx
38
%%PROF%%lib/ocaml/random.p.cmx
39
%%PROF%%lib/ocaml/scanf.p.cmx
40
%%PROF%%lib/ocaml/set.p.cmx
41
%%PROF%%lib/ocaml/sort.p.cmx
42
%%PROF%%lib/ocaml/stack.p.cmx
43
%%PROF%%lib/ocaml/stdLabels.p.cmx
44
%%PROF%%lib/ocaml/std_exit.p.cmx
45
%%PROF%%lib/ocaml/std_exit.p.o
46
%%PROF%%lib/ocaml/stdlib.p.a
47
%%PROF%%lib/ocaml/stdlib.p.cmxa
48
%%PROF%%lib/ocaml/stream.p.cmx
49
%%PROF%%lib/ocaml/stringLabels.p.cmx
50
%%PROF%%lib/ocaml/string.p.cmx
51
%%PROF%%lib/ocaml/sys.p.cmx
52
%%PROF%%lib/ocaml/weak.p.cmx
53
%%THREADS%%@dir lib/ocaml/threads
54
%%THREADS%%lib/ocaml/caml/threads.h
55
%%THREADS%%lib/ocaml/condition.mli
56
%%THREADS%%lib/ocaml/event.mli
57
%%THREADS%%lib/ocaml/libthreads.a
58
%%THREADS%%lib/ocaml/libthreadsnat.a
59
%%THREADS%%lib/ocaml/mutex.mli
60
%%THREADS%%lib/ocaml/stublibs/dllthreads.so
61
%%THREADS%%lib/ocaml/threadUnix.mli
62
%%THREADS%%lib/ocaml/thread.mli
63
%%THREADS%%lib/ocaml/threads/condition.cmi
64
%%THREADS%%lib/ocaml/threads/condition.cmx
65
%%THREADS%%lib/ocaml/threads/event.cmi
66
%%THREADS%%lib/ocaml/threads/event.cmx
67
%%THREADS%%lib/ocaml/threads/mutex.cmi
68
%%THREADS%%lib/ocaml/threads/mutex.cmx
69
%%THREADS%%lib/ocaml/threads/threadUnix.cmi
70
%%THREADS%%lib/ocaml/threads/threadUnix.cmx
71
%%THREADS%%lib/ocaml/threads/thread.cmi
72
%%THREADS%%lib/ocaml/threads/thread.cmx
73
%%THREADS%%lib/ocaml/threads/threads.a
74
%%THREADS%%lib/ocaml/threads/threads.cma
75
%%THREADS%%lib/ocaml/threads/threads.cmxa
76
%%X11%%lib/ocaml/graphicsX11.cmi
77
%%X11%%lib/ocaml/graphicsX11.cmx
78
%%X11%%lib/ocaml/graphicsX11.mli
79
%%X11%%lib/ocaml/graphics.a
80
%%X11%%lib/ocaml/graphics.cma
81
%%X11%%lib/ocaml/graphics.cmi
82
%%X11%%lib/ocaml/graphics.cmx
83
%%X11%%lib/ocaml/graphics.cmxa
84
%%X11%%lib/ocaml/graphics.cmxs
85
%%X11%%lib/ocaml/graphics.mli
86
%%X11%%lib/ocaml/libgraphics.a
87
%%X11%%lib/ocaml/stublibs/dllgraphics.so
88
bin/ocaml
1
bin/ocaml
89
bin/ocamlbuild
90
bin/ocamlbuild.byte
91
bin/ocamlbuild.native
92
bin/ocamlc
2
bin/ocamlc
3
bin/ocamlc.byte
93
bin/ocamlc.opt
4
bin/ocamlc.opt
94
bin/ocamlcp
5
bin/ocamlcp
6
bin/ocamlcp.byte
7
bin/ocamlcp.opt
95
bin/ocamldebug
8
bin/ocamldebug
96
bin/ocamldep
9
bin/ocamldep
10
bin/ocamldep.byte
97
bin/ocamldep.opt
11
bin/ocamldep.opt
98
bin/ocamldoc
12
bin/ocamldoc
99
bin/ocamldoc.opt
13
bin/ocamldoc.opt
100
bin/ocamllex
14
bin/ocamllex
15
bin/ocamllex.byte
101
bin/ocamllex.opt
16
bin/ocamllex.opt
102
bin/ocamlmklib
17
bin/ocamlmklib
18
bin/ocamlmklib.byte
19
bin/ocamlmklib.opt
103
bin/ocamlmktop
20
bin/ocamlmktop
21
bin/ocamlmktop.byte
22
bin/ocamlmktop.opt
104
bin/ocamlobjinfo
23
bin/ocamlobjinfo
24
bin/ocamlobjinfo.byte
25
bin/ocamlobjinfo.opt
105
bin/ocamlopt
26
bin/ocamlopt
27
bin/ocamlopt.byte
106
bin/ocamlopt.opt
28
bin/ocamlopt.opt
107
bin/ocamloptp
29
bin/ocamloptp
30
bin/ocamloptp.byte
31
bin/ocamloptp.opt
108
bin/ocamlprof
32
bin/ocamlprof
33
bin/ocamlprof.byte
34
bin/ocamlprof.opt
109
bin/ocamlrun
35
bin/ocamlrun
110
bin/ocamlyacc
36
bin/ocamlyacc
111
lib/ocaml/Makefile.config
37
lib/ocaml/Makefile.config
Lines 117-126 Link Here
117
lib/ocaml/arg.ml
43
lib/ocaml/arg.ml
118
lib/ocaml/arg.mli
44
lib/ocaml/arg.mli
119
lib/ocaml/arg.p.cmt
45
lib/ocaml/arg.p.cmt
46
lib/ocaml/arg.p.cmx
120
lib/ocaml/arith_flags.cmx
47
lib/ocaml/arith_flags.cmx
121
lib/ocaml/arith_status.cmi
48
lib/ocaml/arith_status.cmi
122
lib/ocaml/arith_status.cmx
49
lib/ocaml/arith_status.cmx
123
lib/ocaml/arith_status.mli
50
lib/ocaml/arith_status.mli
51
lib/ocaml/array.cmi
52
lib/ocaml/array.cmt
53
lib/ocaml/array.cmti
54
lib/ocaml/array.cmx
55
lib/ocaml/array.ml
56
lib/ocaml/array.mli
57
lib/ocaml/array.p.cmt
58
lib/ocaml/array.p.cmx
124
lib/ocaml/arrayLabels.cmi
59
lib/ocaml/arrayLabels.cmi
125
lib/ocaml/arrayLabels.cmt
60
lib/ocaml/arrayLabels.cmt
126
lib/ocaml/arrayLabels.cmti
61
lib/ocaml/arrayLabels.cmti
Lines 128-140 Link Here
128
lib/ocaml/arrayLabels.ml
63
lib/ocaml/arrayLabels.ml
129
lib/ocaml/arrayLabels.mli
64
lib/ocaml/arrayLabels.mli
130
lib/ocaml/arrayLabels.p.cmt
65
lib/ocaml/arrayLabels.p.cmt
131
lib/ocaml/array.cmi
66
lib/ocaml/arrayLabels.p.cmx
132
lib/ocaml/array.cmt
67
lib/ocaml/big_int.cmi
133
lib/ocaml/array.cmti
68
lib/ocaml/big_int.cmx
134
lib/ocaml/array.cmx
69
lib/ocaml/big_int.mli
135
lib/ocaml/array.ml
136
lib/ocaml/array.mli
137
lib/ocaml/array.p.cmt
138
lib/ocaml/bigarray.a
70
lib/ocaml/bigarray.a
139
lib/ocaml/bigarray.cma
71
lib/ocaml/bigarray.cma
140
lib/ocaml/bigarray.cmi
72
lib/ocaml/bigarray.cmi
Lines 142-150 Link Here
142
lib/ocaml/bigarray.cmxa
74
lib/ocaml/bigarray.cmxa
143
lib/ocaml/bigarray.cmxs
75
lib/ocaml/bigarray.cmxs
144
lib/ocaml/bigarray.mli
76
lib/ocaml/bigarray.mli
145
lib/ocaml/big_int.cmi
146
lib/ocaml/big_int.cmx
147
lib/ocaml/big_int.mli
148
lib/ocaml/buffer.cmi
77
lib/ocaml/buffer.cmi
149
lib/ocaml/buffer.cmt
78
lib/ocaml/buffer.cmt
150
lib/ocaml/buffer.cmti
79
lib/ocaml/buffer.cmti
Lines 152-157 Link Here
152
lib/ocaml/buffer.ml
81
lib/ocaml/buffer.ml
153
lib/ocaml/buffer.mli
82
lib/ocaml/buffer.mli
154
lib/ocaml/buffer.p.cmt
83
lib/ocaml/buffer.p.cmt
84
lib/ocaml/buffer.p.cmx
85
lib/ocaml/bytes.cmi
86
lib/ocaml/bytes.cmt
87
lib/ocaml/bytes.cmti
88
lib/ocaml/bytes.cmx
89
lib/ocaml/bytes.ml
90
lib/ocaml/bytes.mli
91
lib/ocaml/bytes.p.cmt
92
lib/ocaml/bytes.p.cmx
155
lib/ocaml/bytesLabels.cmi
93
lib/ocaml/bytesLabels.cmi
156
lib/ocaml/bytesLabels.cmt
94
lib/ocaml/bytesLabels.cmt
157
lib/ocaml/bytesLabels.cmti
95
lib/ocaml/bytesLabels.cmti
Lines 159-171 Link Here
159
lib/ocaml/bytesLabels.ml
97
lib/ocaml/bytesLabels.ml
160
lib/ocaml/bytesLabels.mli
98
lib/ocaml/bytesLabels.mli
161
lib/ocaml/bytesLabels.p.cmt
99
lib/ocaml/bytesLabels.p.cmt
162
lib/ocaml/bytes.cmi
100
lib/ocaml/bytesLabels.p.cmx
163
lib/ocaml/bytes.cmt
164
lib/ocaml/bytes.cmti
165
lib/ocaml/bytes.cmx
166
lib/ocaml/bytes.ml
167
lib/ocaml/bytes.mli
168
lib/ocaml/bytes.p.cmt
169
lib/ocaml/callback.cmi
101
lib/ocaml/callback.cmi
170
lib/ocaml/callback.cmt
102
lib/ocaml/callback.cmt
171
lib/ocaml/callback.cmti
103
lib/ocaml/callback.cmti
Lines 173-190 Link Here
173
lib/ocaml/callback.ml
105
lib/ocaml/callback.ml
174
lib/ocaml/callback.mli
106
lib/ocaml/callback.mli
175
lib/ocaml/callback.p.cmt
107
lib/ocaml/callback.p.cmt
108
lib/ocaml/callback.p.cmx
176
lib/ocaml/caml/address_class.h
109
lib/ocaml/caml/address_class.h
177
lib/ocaml/caml/alloc.h
110
lib/ocaml/caml/alloc.h
111
lib/ocaml/caml/backtrace.h
112
lib/ocaml/caml/backtrace_prim.h
178
lib/ocaml/caml/bigarray.h
113
lib/ocaml/caml/bigarray.h
179
lib/ocaml/caml/callback.h
114
lib/ocaml/caml/callback.h
115
lib/ocaml/caml/compact.h
116
lib/ocaml/caml/compare.h
180
lib/ocaml/caml/compatibility.h
117
lib/ocaml/caml/compatibility.h
181
lib/ocaml/caml/config.h
118
lib/ocaml/caml/config.h
182
lib/ocaml/caml/custom.h
119
lib/ocaml/caml/custom.h
120
lib/ocaml/caml/debugger.h
121
lib/ocaml/caml/dynlink.h
122
lib/ocaml/caml/exec.h
183
lib/ocaml/caml/fail.h
123
lib/ocaml/caml/fail.h
124
lib/ocaml/caml/finalise.h
125
lib/ocaml/caml/fix_code.h
126
lib/ocaml/caml/freelist.h
184
lib/ocaml/caml/gc.h
127
lib/ocaml/caml/gc.h
128
lib/ocaml/caml/gc_ctrl.h
129
lib/ocaml/caml/globroots.h
185
lib/ocaml/caml/hash.h
130
lib/ocaml/caml/hash.h
131
lib/ocaml/caml/hooks.h
132
lib/ocaml/caml/instrtrace.h
133
lib/ocaml/caml/instruct.h
134
lib/ocaml/caml/int64_emul.h
135
lib/ocaml/caml/int64_format.h
136
lib/ocaml/caml/int64_native.h
137
lib/ocaml/caml/interp.h
138
lib/ocaml/caml/intext.h
139
lib/ocaml/caml/io.h
140
lib/ocaml/caml/jumptbl.h
141
lib/ocaml/caml/major_gc.h
142
lib/ocaml/caml/md5.h
143
lib/ocaml/caml/memory.h
144
lib/ocaml/caml/minor_gc.h
145
lib/ocaml/caml/misc.h
146
lib/ocaml/caml/mlvalues.h
147
lib/ocaml/caml/osdeps.h
148
lib/ocaml/caml/prims.h
149
lib/ocaml/caml/printexc.h
150
lib/ocaml/caml/reverse.h
151
lib/ocaml/caml/roots.h
152
lib/ocaml/caml/signals.h
153
lib/ocaml/caml/signals_machdep.h
154
lib/ocaml/caml/socketaddr.h
155
lib/ocaml/caml/stack.h
156
lib/ocaml/caml/stacks.h
157
lib/ocaml/caml/startup.h
158
lib/ocaml/caml/startup_aux.h
159
lib/ocaml/caml/sys.h
160
%%THREADS%%lib/ocaml/caml/threads.h
161
lib/ocaml/caml/ui.h
162
lib/ocaml/caml/unixsupport.h
163
lib/ocaml/caml/version.h
164
lib/ocaml/caml/weak.h
186
lib/ocaml/camlheader
165
lib/ocaml/camlheader
187
lib/ocaml/camlheader_ur
166
lib/ocaml/camlheader_ur
167
lib/ocaml/camlinternalFormat.cmi
168
lib/ocaml/camlinternalFormat.cmt
169
lib/ocaml/camlinternalFormat.cmti
170
lib/ocaml/camlinternalFormat.cmx
171
lib/ocaml/camlinternalFormat.ml
172
lib/ocaml/camlinternalFormat.mli
173
lib/ocaml/camlinternalFormat.p.cmt
174
lib/ocaml/camlinternalFormat.p.cmx
188
lib/ocaml/camlinternalFormatBasics.cmi
175
lib/ocaml/camlinternalFormatBasics.cmi
189
lib/ocaml/camlinternalFormatBasics.cmt
176
lib/ocaml/camlinternalFormatBasics.cmt
190
lib/ocaml/camlinternalFormatBasics.cmti
177
lib/ocaml/camlinternalFormatBasics.cmti
Lines 192-204 Link Here
192
lib/ocaml/camlinternalFormatBasics.ml
179
lib/ocaml/camlinternalFormatBasics.ml
193
lib/ocaml/camlinternalFormatBasics.mli
180
lib/ocaml/camlinternalFormatBasics.mli
194
lib/ocaml/camlinternalFormatBasics.p.cmt
181
lib/ocaml/camlinternalFormatBasics.p.cmt
195
lib/ocaml/camlinternalFormat.cmi
182
lib/ocaml/camlinternalFormatBasics.p.cmx
196
lib/ocaml/camlinternalFormat.cmt
197
lib/ocaml/camlinternalFormat.cmti
198
lib/ocaml/camlinternalFormat.cmx
199
lib/ocaml/camlinternalFormat.ml
200
lib/ocaml/camlinternalFormat.mli
201
lib/ocaml/camlinternalFormat.p.cmt
202
lib/ocaml/camlinternalLazy.cmi
183
lib/ocaml/camlinternalLazy.cmi
203
lib/ocaml/camlinternalLazy.cmt
184
lib/ocaml/camlinternalLazy.cmt
204
lib/ocaml/camlinternalLazy.cmti
185
lib/ocaml/camlinternalLazy.cmti
Lines 206-211 Link Here
206
lib/ocaml/camlinternalLazy.ml
187
lib/ocaml/camlinternalLazy.ml
207
lib/ocaml/camlinternalLazy.mli
188
lib/ocaml/camlinternalLazy.mli
208
lib/ocaml/camlinternalLazy.p.cmt
189
lib/ocaml/camlinternalLazy.p.cmt
190
lib/ocaml/camlinternalLazy.p.cmx
209
lib/ocaml/camlinternalMod.cmi
191
lib/ocaml/camlinternalMod.cmi
210
lib/ocaml/camlinternalMod.cmt
192
lib/ocaml/camlinternalMod.cmt
211
lib/ocaml/camlinternalMod.cmti
193
lib/ocaml/camlinternalMod.cmti
Lines 213-218 Link Here
213
lib/ocaml/camlinternalMod.ml
195
lib/ocaml/camlinternalMod.ml
214
lib/ocaml/camlinternalMod.mli
196
lib/ocaml/camlinternalMod.mli
215
lib/ocaml/camlinternalMod.p.cmt
197
lib/ocaml/camlinternalMod.p.cmt
198
lib/ocaml/camlinternalMod.p.cmx
216
lib/ocaml/camlinternalOO.cmi
199
lib/ocaml/camlinternalOO.cmi
217
lib/ocaml/camlinternalOO.cmt
200
lib/ocaml/camlinternalOO.cmt
218
lib/ocaml/camlinternalOO.cmti
201
lib/ocaml/camlinternalOO.cmti
Lines 220-234 Link Here
220
lib/ocaml/camlinternalOO.ml
203
lib/ocaml/camlinternalOO.ml
221
lib/ocaml/camlinternalOO.mli
204
lib/ocaml/camlinternalOO.mli
222
lib/ocaml/camlinternalOO.p.cmt
205
lib/ocaml/camlinternalOO.p.cmt
223
lib/ocaml/caml/intext.h
206
lib/ocaml/camlinternalOO.p.cmx
224
lib/ocaml/caml/memory.h
225
lib/ocaml/caml/misc.h
226
lib/ocaml/caml/mlvalues.h
227
lib/ocaml/caml/printexc.h
228
lib/ocaml/caml/signals.h
229
lib/ocaml/caml/socketaddr.h
230
lib/ocaml/caml/unixsupport.h
231
lib/ocaml/caml/version.h
232
lib/ocaml/char.cmi
207
lib/ocaml/char.cmi
233
lib/ocaml/char.cmt
208
lib/ocaml/char.cmt
234
lib/ocaml/char.cmti
209
lib/ocaml/char.cmti
Lines 236-428 Link Here
236
lib/ocaml/char.ml
211
lib/ocaml/char.ml
237
lib/ocaml/char.mli
212
lib/ocaml/char.mli
238
lib/ocaml/char.p.cmt
213
lib/ocaml/char.p.cmt
214
lib/ocaml/char.p.cmx
239
lib/ocaml/compiler-libs/CSE.cmi
215
lib/ocaml/compiler-libs/CSE.cmi
240
lib/ocaml/compiler-libs/CSE.cmt
216
lib/ocaml/compiler-libs/CSE.cmt
217
lib/ocaml/compiler-libs/CSE.cmx
241
lib/ocaml/compiler-libs/CSEgen.cmi
218
lib/ocaml/compiler-libs/CSEgen.cmi
242
lib/ocaml/compiler-libs/CSEgen.cmt
219
lib/ocaml/compiler-libs/CSEgen.cmt
243
lib/ocaml/compiler-libs/CSEgen.cmti
220
lib/ocaml/compiler-libs/CSEgen.cmti
221
lib/ocaml/compiler-libs/CSEgen.cmx
222
lib/ocaml/compiler-libs/alias_analysis.cmi
223
lib/ocaml/compiler-libs/alias_analysis.cmt
224
lib/ocaml/compiler-libs/alias_analysis.cmti
225
lib/ocaml/compiler-libs/allocated_const.cmi
226
lib/ocaml/compiler-libs/allocated_const.cmt
227
lib/ocaml/compiler-libs/allocated_const.cmti
244
lib/ocaml/compiler-libs/annot.cmi
228
lib/ocaml/compiler-libs/annot.cmi
245
lib/ocaml/compiler-libs/annot.cmti
229
lib/ocaml/compiler-libs/annot.cmti
246
lib/ocaml/compiler-libs/arch.cmi
230
lib/ocaml/compiler-libs/arch.cmi
247
lib/ocaml/compiler-libs/arch.cmt
231
lib/ocaml/compiler-libs/arch.cmt
232
lib/ocaml/compiler-libs/arch.cmx
233
lib/ocaml/compiler-libs/arg_helper.cmi
234
lib/ocaml/compiler-libs/arg_helper.cmt
235
lib/ocaml/compiler-libs/arg_helper.cmti
236
lib/ocaml/compiler-libs/arg_helper.cmx
248
lib/ocaml/compiler-libs/asmgen.cmi
237
lib/ocaml/compiler-libs/asmgen.cmi
249
lib/ocaml/compiler-libs/asmgen.cmt
238
lib/ocaml/compiler-libs/asmgen.cmt
250
lib/ocaml/compiler-libs/asmgen.cmti
239
lib/ocaml/compiler-libs/asmgen.cmti
240
lib/ocaml/compiler-libs/asmgen.cmx
251
lib/ocaml/compiler-libs/asmlibrarian.cmi
241
lib/ocaml/compiler-libs/asmlibrarian.cmi
252
lib/ocaml/compiler-libs/asmlibrarian.cmt
242
lib/ocaml/compiler-libs/asmlibrarian.cmt
253
lib/ocaml/compiler-libs/asmlibrarian.cmti
243
lib/ocaml/compiler-libs/asmlibrarian.cmti
244
lib/ocaml/compiler-libs/asmlibrarian.cmx
254
lib/ocaml/compiler-libs/asmlink.cmi
245
lib/ocaml/compiler-libs/asmlink.cmi
255
lib/ocaml/compiler-libs/asmlink.cmt
246
lib/ocaml/compiler-libs/asmlink.cmt
256
lib/ocaml/compiler-libs/asmlink.cmti
247
lib/ocaml/compiler-libs/asmlink.cmti
248
lib/ocaml/compiler-libs/asmlink.cmx
257
lib/ocaml/compiler-libs/asmpackager.cmi
249
lib/ocaml/compiler-libs/asmpackager.cmi
258
lib/ocaml/compiler-libs/asmpackager.cmt
250
lib/ocaml/compiler-libs/asmpackager.cmt
259
lib/ocaml/compiler-libs/asmpackager.cmti
251
lib/ocaml/compiler-libs/asmpackager.cmti
252
lib/ocaml/compiler-libs/asmpackager.cmx
260
lib/ocaml/compiler-libs/ast_helper.cmi
253
lib/ocaml/compiler-libs/ast_helper.cmi
261
lib/ocaml/compiler-libs/ast_helper.cmt
254
lib/ocaml/compiler-libs/ast_helper.cmt
262
lib/ocaml/compiler-libs/ast_helper.cmti
255
lib/ocaml/compiler-libs/ast_helper.cmti
256
lib/ocaml/compiler-libs/ast_helper.cmx
257
lib/ocaml/compiler-libs/ast_invariants.cmi
258
lib/ocaml/compiler-libs/ast_invariants.cmt
259
lib/ocaml/compiler-libs/ast_invariants.cmti
260
lib/ocaml/compiler-libs/ast_invariants.cmx
261
lib/ocaml/compiler-libs/ast_iterator.cmi
262
lib/ocaml/compiler-libs/ast_iterator.cmt
263
lib/ocaml/compiler-libs/ast_iterator.cmti
264
lib/ocaml/compiler-libs/ast_iterator.cmx
263
lib/ocaml/compiler-libs/ast_mapper.cmi
265
lib/ocaml/compiler-libs/ast_mapper.cmi
264
lib/ocaml/compiler-libs/ast_mapper.cmt
266
lib/ocaml/compiler-libs/ast_mapper.cmt
265
lib/ocaml/compiler-libs/ast_mapper.cmti
267
lib/ocaml/compiler-libs/ast_mapper.cmti
268
lib/ocaml/compiler-libs/ast_mapper.cmx
266
lib/ocaml/compiler-libs/asttypes.cmi
269
lib/ocaml/compiler-libs/asttypes.cmi
267
lib/ocaml/compiler-libs/asttypes.cmti
270
lib/ocaml/compiler-libs/asttypes.cmti
271
lib/ocaml/compiler-libs/attr_helper.cmi
272
lib/ocaml/compiler-libs/attr_helper.cmt
273
lib/ocaml/compiler-libs/attr_helper.cmti
274
lib/ocaml/compiler-libs/attr_helper.cmx
275
lib/ocaml/compiler-libs/augment_specialised_args.cmi
276
lib/ocaml/compiler-libs/augment_specialised_args.cmt
277
lib/ocaml/compiler-libs/augment_specialised_args.cmti
278
lib/ocaml/compiler-libs/backend_intf.cmi
279
lib/ocaml/compiler-libs/backend_intf.cmti
268
lib/ocaml/compiler-libs/branch_relaxation.cmi
280
lib/ocaml/compiler-libs/branch_relaxation.cmi
269
lib/ocaml/compiler-libs/branch_relaxation.cmt
281
lib/ocaml/compiler-libs/branch_relaxation.cmt
270
lib/ocaml/compiler-libs/branch_relaxation.cmti
282
lib/ocaml/compiler-libs/branch_relaxation.cmti
283
lib/ocaml/compiler-libs/branch_relaxation.cmx
271
lib/ocaml/compiler-libs/branch_relaxation_intf.cmi
284
lib/ocaml/compiler-libs/branch_relaxation_intf.cmi
272
lib/ocaml/compiler-libs/branch_relaxation_intf.cmt
285
lib/ocaml/compiler-libs/branch_relaxation_intf.cmt
286
lib/ocaml/compiler-libs/branch_relaxation_intf.cmx
273
lib/ocaml/compiler-libs/btype.cmi
287
lib/ocaml/compiler-libs/btype.cmi
274
lib/ocaml/compiler-libs/btype.cmt
288
lib/ocaml/compiler-libs/btype.cmt
275
lib/ocaml/compiler-libs/btype.cmti
289
lib/ocaml/compiler-libs/btype.cmti
290
lib/ocaml/compiler-libs/btype.cmx
291
lib/ocaml/compiler-libs/build_export_info.cmi
292
lib/ocaml/compiler-libs/build_export_info.cmt
293
lib/ocaml/compiler-libs/build_export_info.cmti
294
lib/ocaml/compiler-libs/build_export_info.cmx
295
lib/ocaml/compiler-libs/builtin_attributes.cmi
296
lib/ocaml/compiler-libs/builtin_attributes.cmt
297
lib/ocaml/compiler-libs/builtin_attributes.cmti
298
lib/ocaml/compiler-libs/builtin_attributes.cmx
276
lib/ocaml/compiler-libs/bytegen.cmi
299
lib/ocaml/compiler-libs/bytegen.cmi
277
lib/ocaml/compiler-libs/bytegen.cmt
300
lib/ocaml/compiler-libs/bytegen.cmt
278
lib/ocaml/compiler-libs/bytegen.cmti
301
lib/ocaml/compiler-libs/bytegen.cmti
302
lib/ocaml/compiler-libs/bytegen.cmx
279
lib/ocaml/compiler-libs/bytelibrarian.cmi
303
lib/ocaml/compiler-libs/bytelibrarian.cmi
280
lib/ocaml/compiler-libs/bytelibrarian.cmt
304
lib/ocaml/compiler-libs/bytelibrarian.cmt
281
lib/ocaml/compiler-libs/bytelibrarian.cmti
305
lib/ocaml/compiler-libs/bytelibrarian.cmti
306
lib/ocaml/compiler-libs/bytelibrarian.cmx
282
lib/ocaml/compiler-libs/bytelink.cmi
307
lib/ocaml/compiler-libs/bytelink.cmi
283
lib/ocaml/compiler-libs/bytelink.cmt
308
lib/ocaml/compiler-libs/bytelink.cmt
284
lib/ocaml/compiler-libs/bytelink.cmti
309
lib/ocaml/compiler-libs/bytelink.cmti
310
lib/ocaml/compiler-libs/bytelink.cmx
285
lib/ocaml/compiler-libs/bytepackager.cmi
311
lib/ocaml/compiler-libs/bytepackager.cmi
286
lib/ocaml/compiler-libs/bytepackager.cmt
312
lib/ocaml/compiler-libs/bytepackager.cmt
287
lib/ocaml/compiler-libs/bytepackager.cmti
313
lib/ocaml/compiler-libs/bytepackager.cmti
314
lib/ocaml/compiler-libs/bytepackager.cmx
288
lib/ocaml/compiler-libs/bytesections.cmi
315
lib/ocaml/compiler-libs/bytesections.cmi
289
lib/ocaml/compiler-libs/bytesections.cmt
316
lib/ocaml/compiler-libs/bytesections.cmt
290
lib/ocaml/compiler-libs/bytesections.cmti
317
lib/ocaml/compiler-libs/bytesections.cmti
318
lib/ocaml/compiler-libs/bytesections.cmx
291
lib/ocaml/compiler-libs/ccomp.cmi
319
lib/ocaml/compiler-libs/ccomp.cmi
292
lib/ocaml/compiler-libs/ccomp.cmt
320
lib/ocaml/compiler-libs/ccomp.cmt
293
lib/ocaml/compiler-libs/ccomp.cmti
321
lib/ocaml/compiler-libs/ccomp.cmti
322
lib/ocaml/compiler-libs/ccomp.cmx
294
lib/ocaml/compiler-libs/clambda.cmi
323
lib/ocaml/compiler-libs/clambda.cmi
295
lib/ocaml/compiler-libs/clambda.cmt
324
lib/ocaml/compiler-libs/clambda.cmt
296
lib/ocaml/compiler-libs/clambda.cmti
325
lib/ocaml/compiler-libs/clambda.cmti
326
lib/ocaml/compiler-libs/clambda.cmx
297
lib/ocaml/compiler-libs/clflags.cmi
327
lib/ocaml/compiler-libs/clflags.cmi
298
lib/ocaml/compiler-libs/clflags.cmt
328
lib/ocaml/compiler-libs/clflags.cmt
299
lib/ocaml/compiler-libs/clflags.cmti
329
lib/ocaml/compiler-libs/clflags.cmti
330
lib/ocaml/compiler-libs/clflags.cmx
300
lib/ocaml/compiler-libs/closure.cmi
331
lib/ocaml/compiler-libs/closure.cmi
301
lib/ocaml/compiler-libs/closure.cmt
332
lib/ocaml/compiler-libs/closure.cmt
302
lib/ocaml/compiler-libs/closure.cmti
333
lib/ocaml/compiler-libs/closure.cmti
334
lib/ocaml/compiler-libs/closure.cmx
335
lib/ocaml/compiler-libs/closure_conversion.cmi
336
lib/ocaml/compiler-libs/closure_conversion.cmt
337
lib/ocaml/compiler-libs/closure_conversion.cmti
338
lib/ocaml/compiler-libs/closure_conversion_aux.cmi
339
lib/ocaml/compiler-libs/closure_conversion_aux.cmt
340
lib/ocaml/compiler-libs/closure_conversion_aux.cmti
341
lib/ocaml/compiler-libs/closure_element.cmi
342
lib/ocaml/compiler-libs/closure_element.cmt
343
lib/ocaml/compiler-libs/closure_element.cmti
344
lib/ocaml/compiler-libs/closure_id.cmi
345
lib/ocaml/compiler-libs/closure_id.cmt
346
lib/ocaml/compiler-libs/closure_id.cmti
347
lib/ocaml/compiler-libs/closure_offsets.cmi
348
lib/ocaml/compiler-libs/closure_offsets.cmt
349
lib/ocaml/compiler-libs/closure_offsets.cmti
350
lib/ocaml/compiler-libs/closure_offsets.cmx
303
lib/ocaml/compiler-libs/cmi_format.cmi
351
lib/ocaml/compiler-libs/cmi_format.cmi
304
lib/ocaml/compiler-libs/cmi_format.cmt
352
lib/ocaml/compiler-libs/cmi_format.cmt
305
lib/ocaml/compiler-libs/cmi_format.cmti
353
lib/ocaml/compiler-libs/cmi_format.cmti
354
lib/ocaml/compiler-libs/cmi_format.cmx
306
lib/ocaml/compiler-libs/cmm.cmi
355
lib/ocaml/compiler-libs/cmm.cmi
307
lib/ocaml/compiler-libs/cmm.cmt
356
lib/ocaml/compiler-libs/cmm.cmt
308
lib/ocaml/compiler-libs/cmm.cmti
357
lib/ocaml/compiler-libs/cmm.cmti
358
lib/ocaml/compiler-libs/cmm.cmx
309
lib/ocaml/compiler-libs/cmmgen.cmi
359
lib/ocaml/compiler-libs/cmmgen.cmi
310
lib/ocaml/compiler-libs/cmmgen.cmt
360
lib/ocaml/compiler-libs/cmmgen.cmt
311
lib/ocaml/compiler-libs/cmmgen.cmti
361
lib/ocaml/compiler-libs/cmmgen.cmti
362
lib/ocaml/compiler-libs/cmmgen.cmx
312
lib/ocaml/compiler-libs/cmo_format.cmi
363
lib/ocaml/compiler-libs/cmo_format.cmi
313
lib/ocaml/compiler-libs/cmo_format.cmti
364
lib/ocaml/compiler-libs/cmo_format.cmti
314
lib/ocaml/compiler-libs/cmt_format.cmi
365
lib/ocaml/compiler-libs/cmt_format.cmi
315
lib/ocaml/compiler-libs/cmt_format.cmt
366
lib/ocaml/compiler-libs/cmt_format.cmt
316
lib/ocaml/compiler-libs/cmt_format.cmti
367
lib/ocaml/compiler-libs/cmt_format.cmti
368
lib/ocaml/compiler-libs/cmt_format.cmx
317
lib/ocaml/compiler-libs/cmx_format.cmi
369
lib/ocaml/compiler-libs/cmx_format.cmi
318
lib/ocaml/compiler-libs/cmx_format.cmti
370
lib/ocaml/compiler-libs/cmx_format.cmti
319
lib/ocaml/compiler-libs/coloring.cmi
371
lib/ocaml/compiler-libs/coloring.cmi
320
lib/ocaml/compiler-libs/coloring.cmt
372
lib/ocaml/compiler-libs/coloring.cmt
321
lib/ocaml/compiler-libs/coloring.cmti
373
lib/ocaml/compiler-libs/coloring.cmti
374
lib/ocaml/compiler-libs/coloring.cmx
322
lib/ocaml/compiler-libs/comballoc.cmi
375
lib/ocaml/compiler-libs/comballoc.cmi
323
lib/ocaml/compiler-libs/comballoc.cmt
376
lib/ocaml/compiler-libs/comballoc.cmt
324
lib/ocaml/compiler-libs/comballoc.cmti
377
lib/ocaml/compiler-libs/comballoc.cmti
378
lib/ocaml/compiler-libs/comballoc.cmx
379
lib/ocaml/compiler-libs/compdynlink.cmi
380
lib/ocaml/compiler-libs/compdynlink.cmt
381
lib/ocaml/compiler-libs/compdynlink.cmti
382
lib/ocaml/compiler-libs/compdynlink.cmx
325
lib/ocaml/compiler-libs/compenv.cmi
383
lib/ocaml/compiler-libs/compenv.cmi
326
lib/ocaml/compiler-libs/compenv.cmt
384
lib/ocaml/compiler-libs/compenv.cmt
327
lib/ocaml/compiler-libs/compenv.cmti
385
lib/ocaml/compiler-libs/compenv.cmti
386
lib/ocaml/compiler-libs/compenv.cmx
387
lib/ocaml/compiler-libs/compilation_unit.cmi
388
lib/ocaml/compiler-libs/compilation_unit.cmt
389
lib/ocaml/compiler-libs/compilation_unit.cmti
328
lib/ocaml/compiler-libs/compile.cmi
390
lib/ocaml/compiler-libs/compile.cmi
329
lib/ocaml/compiler-libs/compile.cmt
391
lib/ocaml/compiler-libs/compile.cmt
330
lib/ocaml/compiler-libs/compile.cmti
392
lib/ocaml/compiler-libs/compile.cmti
393
lib/ocaml/compiler-libs/compile.cmx
331
lib/ocaml/compiler-libs/compilenv.cmi
394
lib/ocaml/compiler-libs/compilenv.cmi
332
lib/ocaml/compiler-libs/compilenv.cmt
395
lib/ocaml/compiler-libs/compilenv.cmt
333
lib/ocaml/compiler-libs/compilenv.cmti
396
lib/ocaml/compiler-libs/compilenv.cmti
397
lib/ocaml/compiler-libs/compilenv.cmx
334
lib/ocaml/compiler-libs/compmisc.cmi
398
lib/ocaml/compiler-libs/compmisc.cmi
335
lib/ocaml/compiler-libs/compmisc.cmt
399
lib/ocaml/compiler-libs/compmisc.cmt
336
lib/ocaml/compiler-libs/compmisc.cmti
400
lib/ocaml/compiler-libs/compmisc.cmti
401
lib/ocaml/compiler-libs/compmisc.cmx
402
lib/ocaml/compiler-libs/compplugin.cmi
403
lib/ocaml/compiler-libs/compplugin.cmt
404
lib/ocaml/compiler-libs/compplugin.cmti
405
lib/ocaml/compiler-libs/compplugin.cmx
337
lib/ocaml/compiler-libs/config.cmi
406
lib/ocaml/compiler-libs/config.cmi
338
lib/ocaml/compiler-libs/config.cmt
407
lib/ocaml/compiler-libs/config.cmt
339
lib/ocaml/compiler-libs/config.cmti
408
lib/ocaml/compiler-libs/config.cmti
409
lib/ocaml/compiler-libs/config.cmx
340
lib/ocaml/compiler-libs/consistbl.cmi
410
lib/ocaml/compiler-libs/consistbl.cmi
341
lib/ocaml/compiler-libs/consistbl.cmt
411
lib/ocaml/compiler-libs/consistbl.cmt
342
lib/ocaml/compiler-libs/consistbl.cmti
412
lib/ocaml/compiler-libs/consistbl.cmti
413
lib/ocaml/compiler-libs/consistbl.cmx
343
lib/ocaml/compiler-libs/ctype.cmi
414
lib/ocaml/compiler-libs/ctype.cmi
344
lib/ocaml/compiler-libs/ctype.cmt
415
lib/ocaml/compiler-libs/ctype.cmt
345
lib/ocaml/compiler-libs/ctype.cmti
416
lib/ocaml/compiler-libs/ctype.cmti
417
lib/ocaml/compiler-libs/ctype.cmx
346
lib/ocaml/compiler-libs/datarepr.cmi
418
lib/ocaml/compiler-libs/datarepr.cmi
347
lib/ocaml/compiler-libs/datarepr.cmt
419
lib/ocaml/compiler-libs/datarepr.cmt
348
lib/ocaml/compiler-libs/datarepr.cmti
420
lib/ocaml/compiler-libs/datarepr.cmti
421
lib/ocaml/compiler-libs/datarepr.cmx
349
lib/ocaml/compiler-libs/deadcode.cmi
422
lib/ocaml/compiler-libs/deadcode.cmi
350
lib/ocaml/compiler-libs/deadcode.cmt
423
lib/ocaml/compiler-libs/deadcode.cmt
351
lib/ocaml/compiler-libs/deadcode.cmti
424
lib/ocaml/compiler-libs/deadcode.cmti
425
lib/ocaml/compiler-libs/deadcode.cmx
352
lib/ocaml/compiler-libs/debuginfo.cmi
426
lib/ocaml/compiler-libs/debuginfo.cmi
353
lib/ocaml/compiler-libs/debuginfo.cmt
427
lib/ocaml/compiler-libs/debuginfo.cmt
354
lib/ocaml/compiler-libs/debuginfo.cmti
428
lib/ocaml/compiler-libs/debuginfo.cmti
429
lib/ocaml/compiler-libs/depend.cmi
430
lib/ocaml/compiler-libs/depend.cmt
431
lib/ocaml/compiler-libs/depend.cmti
432
lib/ocaml/compiler-libs/depend.cmx
355
lib/ocaml/compiler-libs/dll.cmi
433
lib/ocaml/compiler-libs/dll.cmi
356
lib/ocaml/compiler-libs/dll.cmt
434
lib/ocaml/compiler-libs/dll.cmt
357
lib/ocaml/compiler-libs/dll.cmti
435
lib/ocaml/compiler-libs/dll.cmti
436
lib/ocaml/compiler-libs/dll.cmx
358
lib/ocaml/compiler-libs/docstrings.cmi
437
lib/ocaml/compiler-libs/docstrings.cmi
359
lib/ocaml/compiler-libs/docstrings.cmt
438
lib/ocaml/compiler-libs/docstrings.cmt
360
lib/ocaml/compiler-libs/docstrings.cmti
439
lib/ocaml/compiler-libs/docstrings.cmti
440
lib/ocaml/compiler-libs/docstrings.cmx
441
lib/ocaml/compiler-libs/effect_analysis.cmi
442
lib/ocaml/compiler-libs/effect_analysis.cmt
443
lib/ocaml/compiler-libs/effect_analysis.cmti
444
lib/ocaml/compiler-libs/emit.cmi
445
lib/ocaml/compiler-libs/emit.cmt
446
lib/ocaml/compiler-libs/emit.cmti
447
lib/ocaml/compiler-libs/emit.cmx
361
lib/ocaml/compiler-libs/emitaux.cmi
448
lib/ocaml/compiler-libs/emitaux.cmi
362
lib/ocaml/compiler-libs/emitaux.cmt
449
lib/ocaml/compiler-libs/emitaux.cmt
363
lib/ocaml/compiler-libs/emitaux.cmti
450
lib/ocaml/compiler-libs/emitaux.cmti
364
lib/ocaml/compiler-libs/emit.cmi
451
lib/ocaml/compiler-libs/emitaux.cmx
365
lib/ocaml/compiler-libs/emit.cmt
366
lib/ocaml/compiler-libs/emit.cmti
367
lib/ocaml/compiler-libs/emitcode.cmi
452
lib/ocaml/compiler-libs/emitcode.cmi
368
lib/ocaml/compiler-libs/emitcode.cmt
453
lib/ocaml/compiler-libs/emitcode.cmt
369
lib/ocaml/compiler-libs/emitcode.cmti
454
lib/ocaml/compiler-libs/emitcode.cmti
455
lib/ocaml/compiler-libs/emitcode.cmx
456
lib/ocaml/compiler-libs/env.cmi
457
lib/ocaml/compiler-libs/env.cmt
458
lib/ocaml/compiler-libs/env.cmti
459
lib/ocaml/compiler-libs/env.cmx
370
lib/ocaml/compiler-libs/envaux.cmi
460
lib/ocaml/compiler-libs/envaux.cmi
371
lib/ocaml/compiler-libs/envaux.cmt
461
lib/ocaml/compiler-libs/envaux.cmt
372
lib/ocaml/compiler-libs/envaux.cmti
462
lib/ocaml/compiler-libs/envaux.cmti
373
lib/ocaml/compiler-libs/env.cmi
463
lib/ocaml/compiler-libs/envaux.cmx
374
lib/ocaml/compiler-libs/env.cmt
375
lib/ocaml/compiler-libs/env.cmti
376
lib/ocaml/compiler-libs/errors.cmi
464
lib/ocaml/compiler-libs/errors.cmi
377
lib/ocaml/compiler-libs/errors.cmt
465
lib/ocaml/compiler-libs/errors.cmt
378
lib/ocaml/compiler-libs/errors.cmti
466
lib/ocaml/compiler-libs/errors.cmti
467
lib/ocaml/compiler-libs/errors.cmx
468
lib/ocaml/compiler-libs/export_id.cmi
469
lib/ocaml/compiler-libs/export_id.cmt
470
lib/ocaml/compiler-libs/export_id.cmti
471
lib/ocaml/compiler-libs/export_info.cmi
472
lib/ocaml/compiler-libs/export_info.cmt
473
lib/ocaml/compiler-libs/export_info.cmti
474
lib/ocaml/compiler-libs/export_info.cmx
475
lib/ocaml/compiler-libs/export_info_for_pack.cmi
476
lib/ocaml/compiler-libs/export_info_for_pack.cmt
477
lib/ocaml/compiler-libs/export_info_for_pack.cmti
478
lib/ocaml/compiler-libs/export_info_for_pack.cmx
379
lib/ocaml/compiler-libs/expunge.cmi
479
lib/ocaml/compiler-libs/expunge.cmi
380
lib/ocaml/compiler-libs/expunge.cmt
480
lib/ocaml/compiler-libs/expunge.cmt
481
lib/ocaml/compiler-libs/extract_projections.cmi
482
lib/ocaml/compiler-libs/extract_projections.cmt
483
lib/ocaml/compiler-libs/extract_projections.cmti
484
lib/ocaml/compiler-libs/find_recursive_functions.cmi
485
lib/ocaml/compiler-libs/find_recursive_functions.cmt
486
lib/ocaml/compiler-libs/find_recursive_functions.cmti
487
lib/ocaml/compiler-libs/flambda.cmi
488
lib/ocaml/compiler-libs/flambda.cmt
489
lib/ocaml/compiler-libs/flambda.cmti
490
lib/ocaml/compiler-libs/flambda_invariants.cmi
491
lib/ocaml/compiler-libs/flambda_invariants.cmt
492
lib/ocaml/compiler-libs/flambda_invariants.cmti
493
lib/ocaml/compiler-libs/flambda_iterators.cmi
494
lib/ocaml/compiler-libs/flambda_iterators.cmt
495
lib/ocaml/compiler-libs/flambda_iterators.cmti
496
lib/ocaml/compiler-libs/flambda_to_clambda.cmi
497
lib/ocaml/compiler-libs/flambda_to_clambda.cmt
498
lib/ocaml/compiler-libs/flambda_to_clambda.cmti
499
lib/ocaml/compiler-libs/flambda_to_clambda.cmx
500
lib/ocaml/compiler-libs/flambda_utils.cmi
501
lib/ocaml/compiler-libs/flambda_utils.cmt
502
lib/ocaml/compiler-libs/flambda_utils.cmti
503
lib/ocaml/compiler-libs/freshening.cmi
504
lib/ocaml/compiler-libs/freshening.cmt
505
lib/ocaml/compiler-libs/freshening.cmti
381
lib/ocaml/compiler-libs/genprintval.cmi
506
lib/ocaml/compiler-libs/genprintval.cmi
382
lib/ocaml/compiler-libs/genprintval.cmt
507
lib/ocaml/compiler-libs/genprintval.cmt
383
lib/ocaml/compiler-libs/genprintval.cmti
508
lib/ocaml/compiler-libs/genprintval.cmti
509
lib/ocaml/compiler-libs/id_types.cmi
510
lib/ocaml/compiler-libs/id_types.cmt
511
lib/ocaml/compiler-libs/id_types.cmti
384
lib/ocaml/compiler-libs/ident.cmi
512
lib/ocaml/compiler-libs/ident.cmi
385
lib/ocaml/compiler-libs/ident.cmt
513
lib/ocaml/compiler-libs/ident.cmt
386
lib/ocaml/compiler-libs/ident.cmti
514
lib/ocaml/compiler-libs/ident.cmti
515
lib/ocaml/compiler-libs/ident.cmx
516
lib/ocaml/compiler-libs/identifiable.cmi
517
lib/ocaml/compiler-libs/identifiable.cmt
518
lib/ocaml/compiler-libs/identifiable.cmti
519
lib/ocaml/compiler-libs/identifiable.cmx
520
lib/ocaml/compiler-libs/import_approx.cmi
521
lib/ocaml/compiler-libs/import_approx.cmt
522
lib/ocaml/compiler-libs/import_approx.cmti
523
lib/ocaml/compiler-libs/import_approx.cmx
387
lib/ocaml/compiler-libs/includeclass.cmi
524
lib/ocaml/compiler-libs/includeclass.cmi
388
lib/ocaml/compiler-libs/includeclass.cmt
525
lib/ocaml/compiler-libs/includeclass.cmt
389
lib/ocaml/compiler-libs/includeclass.cmti
526
lib/ocaml/compiler-libs/includeclass.cmti
527
lib/ocaml/compiler-libs/includeclass.cmx
390
lib/ocaml/compiler-libs/includecore.cmi
528
lib/ocaml/compiler-libs/includecore.cmi
391
lib/ocaml/compiler-libs/includecore.cmt
529
lib/ocaml/compiler-libs/includecore.cmt
392
lib/ocaml/compiler-libs/includecore.cmti
530
lib/ocaml/compiler-libs/includecore.cmti
531
lib/ocaml/compiler-libs/includecore.cmx
393
lib/ocaml/compiler-libs/includemod.cmi
532
lib/ocaml/compiler-libs/includemod.cmi
394
lib/ocaml/compiler-libs/includemod.cmt
533
lib/ocaml/compiler-libs/includemod.cmt
395
lib/ocaml/compiler-libs/includemod.cmti
534
lib/ocaml/compiler-libs/includemod.cmti
535
lib/ocaml/compiler-libs/includemod.cmx
536
lib/ocaml/compiler-libs/inconstant_idents.cmi
537
lib/ocaml/compiler-libs/inconstant_idents.cmt
538
lib/ocaml/compiler-libs/inconstant_idents.cmti
539
lib/ocaml/compiler-libs/initialize_symbol_to_let_symbol.cmi
540
lib/ocaml/compiler-libs/initialize_symbol_to_let_symbol.cmt
541
lib/ocaml/compiler-libs/initialize_symbol_to_let_symbol.cmti
542
lib/ocaml/compiler-libs/inline_and_simplify.cmi
543
lib/ocaml/compiler-libs/inline_and_simplify.cmt
544
lib/ocaml/compiler-libs/inline_and_simplify.cmti
545
lib/ocaml/compiler-libs/inline_and_simplify_aux.cmi
546
lib/ocaml/compiler-libs/inline_and_simplify_aux.cmt
547
lib/ocaml/compiler-libs/inline_and_simplify_aux.cmti
548
lib/ocaml/compiler-libs/inlining_cost.cmi
549
lib/ocaml/compiler-libs/inlining_cost.cmt
550
lib/ocaml/compiler-libs/inlining_cost.cmti
551
lib/ocaml/compiler-libs/inlining_decision.cmi
552
lib/ocaml/compiler-libs/inlining_decision.cmt
553
lib/ocaml/compiler-libs/inlining_decision.cmti
554
lib/ocaml/compiler-libs/inlining_decision_intf.cmi
555
lib/ocaml/compiler-libs/inlining_decision_intf.cmti
556
lib/ocaml/compiler-libs/inlining_stats.cmi
557
lib/ocaml/compiler-libs/inlining_stats.cmt
558
lib/ocaml/compiler-libs/inlining_stats.cmti
559
lib/ocaml/compiler-libs/inlining_stats_types.cmi
560
lib/ocaml/compiler-libs/inlining_stats_types.cmt
561
lib/ocaml/compiler-libs/inlining_stats_types.cmti
562
lib/ocaml/compiler-libs/inlining_transforms.cmi
563
lib/ocaml/compiler-libs/inlining_transforms.cmt
564
lib/ocaml/compiler-libs/inlining_transforms.cmti
396
lib/ocaml/compiler-libs/instruct.cmi
565
lib/ocaml/compiler-libs/instruct.cmi
397
lib/ocaml/compiler-libs/instruct.cmt
566
lib/ocaml/compiler-libs/instruct.cmt
398
lib/ocaml/compiler-libs/instruct.cmti
567
lib/ocaml/compiler-libs/instruct.cmti
568
lib/ocaml/compiler-libs/instruct.cmx
399
lib/ocaml/compiler-libs/interf.cmi
569
lib/ocaml/compiler-libs/interf.cmi
400
lib/ocaml/compiler-libs/interf.cmt
570
lib/ocaml/compiler-libs/interf.cmt
401
lib/ocaml/compiler-libs/interf.cmti
571
lib/ocaml/compiler-libs/interf.cmti
572
lib/ocaml/compiler-libs/interf.cmx
573
lib/ocaml/compiler-libs/invariant_params.cmi
574
lib/ocaml/compiler-libs/invariant_params.cmt
575
lib/ocaml/compiler-libs/invariant_params.cmti
402
lib/ocaml/compiler-libs/lambda.cmi
576
lib/ocaml/compiler-libs/lambda.cmi
403
lib/ocaml/compiler-libs/lambda.cmt
577
lib/ocaml/compiler-libs/lambda.cmt
404
lib/ocaml/compiler-libs/lambda.cmti
578
lib/ocaml/compiler-libs/lambda.cmti
579
lib/ocaml/compiler-libs/lambda.cmx
405
lib/ocaml/compiler-libs/lexer.cmi
580
lib/ocaml/compiler-libs/lexer.cmi
406
lib/ocaml/compiler-libs/lexer.cmt
581
lib/ocaml/compiler-libs/lexer.cmt
407
lib/ocaml/compiler-libs/lexer.cmti
582
lib/ocaml/compiler-libs/lexer.cmti
583
lib/ocaml/compiler-libs/lexer.cmx
584
lib/ocaml/compiler-libs/lift_code.cmi
585
lib/ocaml/compiler-libs/lift_code.cmt
586
lib/ocaml/compiler-libs/lift_code.cmti
587
lib/ocaml/compiler-libs/lift_constants.cmi
588
lib/ocaml/compiler-libs/lift_constants.cmt
589
lib/ocaml/compiler-libs/lift_constants.cmti
590
lib/ocaml/compiler-libs/lift_let_to_initialize_symbol.cmi
591
lib/ocaml/compiler-libs/lift_let_to_initialize_symbol.cmt
592
lib/ocaml/compiler-libs/lift_let_to_initialize_symbol.cmti
408
lib/ocaml/compiler-libs/linearize.cmi
593
lib/ocaml/compiler-libs/linearize.cmi
409
lib/ocaml/compiler-libs/linearize.cmt
594
lib/ocaml/compiler-libs/linearize.cmt
410
lib/ocaml/compiler-libs/linearize.cmti
595
lib/ocaml/compiler-libs/linearize.cmti
596
lib/ocaml/compiler-libs/linearize.cmx
597
lib/ocaml/compiler-libs/linkage_name.cmi
598
lib/ocaml/compiler-libs/linkage_name.cmt
599
lib/ocaml/compiler-libs/linkage_name.cmti
411
lib/ocaml/compiler-libs/liveness.cmi
600
lib/ocaml/compiler-libs/liveness.cmi
412
lib/ocaml/compiler-libs/liveness.cmt
601
lib/ocaml/compiler-libs/liveness.cmt
413
lib/ocaml/compiler-libs/liveness.cmti
602
lib/ocaml/compiler-libs/liveness.cmti
603
lib/ocaml/compiler-libs/liveness.cmx
414
lib/ocaml/compiler-libs/location.cmi
604
lib/ocaml/compiler-libs/location.cmi
415
lib/ocaml/compiler-libs/location.cmt
605
lib/ocaml/compiler-libs/location.cmt
416
lib/ocaml/compiler-libs/location.cmti
606
lib/ocaml/compiler-libs/location.cmti
607
lib/ocaml/compiler-libs/location.cmx
417
lib/ocaml/compiler-libs/longident.cmi
608
lib/ocaml/compiler-libs/longident.cmi
418
lib/ocaml/compiler-libs/longident.cmt
609
lib/ocaml/compiler-libs/longident.cmt
419
lib/ocaml/compiler-libs/longident.cmti
610
lib/ocaml/compiler-libs/longident.cmti
611
lib/ocaml/compiler-libs/longident.cmx
420
lib/ocaml/compiler-libs/mach.cmi
612
lib/ocaml/compiler-libs/mach.cmi
421
lib/ocaml/compiler-libs/mach.cmt
613
lib/ocaml/compiler-libs/mach.cmt
422
lib/ocaml/compiler-libs/mach.cmti
614
lib/ocaml/compiler-libs/mach.cmti
423
lib/ocaml/compiler-libs/main_args.cmi
615
lib/ocaml/compiler-libs/mach.cmx
424
lib/ocaml/compiler-libs/main_args.cmt
425
lib/ocaml/compiler-libs/main_args.cmti
426
lib/ocaml/compiler-libs/main.cmi
616
lib/ocaml/compiler-libs/main.cmi
427
lib/ocaml/compiler-libs/main.cmo
617
lib/ocaml/compiler-libs/main.cmo
428
lib/ocaml/compiler-libs/main.cmt
618
lib/ocaml/compiler-libs/main.cmt
Lines 429-446 Link Here
429
lib/ocaml/compiler-libs/main.cmti
619
lib/ocaml/compiler-libs/main.cmti
430
lib/ocaml/compiler-libs/main.cmx
620
lib/ocaml/compiler-libs/main.cmx
431
lib/ocaml/compiler-libs/main.o
621
lib/ocaml/compiler-libs/main.o
622
lib/ocaml/compiler-libs/main_args.cmi
623
lib/ocaml/compiler-libs/main_args.cmt
624
lib/ocaml/compiler-libs/main_args.cmti
625
lib/ocaml/compiler-libs/main_args.cmx
432
lib/ocaml/compiler-libs/matching.cmi
626
lib/ocaml/compiler-libs/matching.cmi
433
lib/ocaml/compiler-libs/matching.cmt
627
lib/ocaml/compiler-libs/matching.cmt
434
lib/ocaml/compiler-libs/matching.cmti
628
lib/ocaml/compiler-libs/matching.cmti
629
lib/ocaml/compiler-libs/matching.cmx
435
lib/ocaml/compiler-libs/meta.cmi
630
lib/ocaml/compiler-libs/meta.cmi
436
lib/ocaml/compiler-libs/meta.cmt
631
lib/ocaml/compiler-libs/meta.cmt
437
lib/ocaml/compiler-libs/meta.cmti
632
lib/ocaml/compiler-libs/meta.cmti
633
lib/ocaml/compiler-libs/meta.cmx
634
lib/ocaml/compiler-libs/middle_end.cmi
635
lib/ocaml/compiler-libs/middle_end.cmt
636
lib/ocaml/compiler-libs/middle_end.cmti
438
lib/ocaml/compiler-libs/misc.cmi
637
lib/ocaml/compiler-libs/misc.cmi
439
lib/ocaml/compiler-libs/misc.cmt
638
lib/ocaml/compiler-libs/misc.cmt
440
lib/ocaml/compiler-libs/misc.cmti
639
lib/ocaml/compiler-libs/misc.cmti
640
lib/ocaml/compiler-libs/misc.cmx
441
lib/ocaml/compiler-libs/mtype.cmi
641
lib/ocaml/compiler-libs/mtype.cmi
442
lib/ocaml/compiler-libs/mtype.cmt
642
lib/ocaml/compiler-libs/mtype.cmt
443
lib/ocaml/compiler-libs/mtype.cmti
643
lib/ocaml/compiler-libs/mtype.cmti
644
lib/ocaml/compiler-libs/mtype.cmx
645
lib/ocaml/compiler-libs/mutable_variable.cmi
646
lib/ocaml/compiler-libs/mutable_variable.cmt
647
lib/ocaml/compiler-libs/mutable_variable.cmti
648
lib/ocaml/compiler-libs/numbers.cmi
649
lib/ocaml/compiler-libs/numbers.cmt
650
lib/ocaml/compiler-libs/numbers.cmti
651
lib/ocaml/compiler-libs/numbers.cmx
444
lib/ocaml/compiler-libs/ocamlbytecomp.a
652
lib/ocaml/compiler-libs/ocamlbytecomp.a
445
lib/ocaml/compiler-libs/ocamlbytecomp.cma
653
lib/ocaml/compiler-libs/ocamlbytecomp.cma
446
lib/ocaml/compiler-libs/ocamlbytecomp.cmxa
654
lib/ocaml/compiler-libs/ocamlbytecomp.cmxa
Lines 453-467 Link Here
453
lib/ocaml/compiler-libs/ocamltoplevel.cma
661
lib/ocaml/compiler-libs/ocamltoplevel.cma
454
lib/ocaml/compiler-libs/opcodes.cmi
662
lib/ocaml/compiler-libs/opcodes.cmi
455
lib/ocaml/compiler-libs/opcodes.cmt
663
lib/ocaml/compiler-libs/opcodes.cmt
664
lib/ocaml/compiler-libs/opcodes.cmx
456
lib/ocaml/compiler-libs/oprint.cmi
665
lib/ocaml/compiler-libs/oprint.cmi
457
lib/ocaml/compiler-libs/oprint.cmt
666
lib/ocaml/compiler-libs/oprint.cmt
458
lib/ocaml/compiler-libs/oprint.cmti
667
lib/ocaml/compiler-libs/oprint.cmti
668
lib/ocaml/compiler-libs/oprint.cmx
459
lib/ocaml/compiler-libs/optcompile.cmi
669
lib/ocaml/compiler-libs/optcompile.cmi
460
lib/ocaml/compiler-libs/optcompile.cmt
670
lib/ocaml/compiler-libs/optcompile.cmt
461
lib/ocaml/compiler-libs/optcompile.cmti
671
lib/ocaml/compiler-libs/optcompile.cmti
672
lib/ocaml/compiler-libs/optcompile.cmx
462
lib/ocaml/compiler-libs/opterrors.cmi
673
lib/ocaml/compiler-libs/opterrors.cmi
463
lib/ocaml/compiler-libs/opterrors.cmt
674
lib/ocaml/compiler-libs/opterrors.cmt
464
lib/ocaml/compiler-libs/opterrors.cmti
675
lib/ocaml/compiler-libs/opterrors.cmti
676
lib/ocaml/compiler-libs/opterrors.cmx
465
lib/ocaml/compiler-libs/optmain.cmi
677
lib/ocaml/compiler-libs/optmain.cmi
466
lib/ocaml/compiler-libs/optmain.cmo
678
lib/ocaml/compiler-libs/optmain.cmo
467
lib/ocaml/compiler-libs/optmain.cmt
679
lib/ocaml/compiler-libs/optmain.cmt
Lines 473-588 Link Here
473
lib/ocaml/compiler-libs/parmatch.cmi
685
lib/ocaml/compiler-libs/parmatch.cmi
474
lib/ocaml/compiler-libs/parmatch.cmt
686
lib/ocaml/compiler-libs/parmatch.cmt
475
lib/ocaml/compiler-libs/parmatch.cmti
687
lib/ocaml/compiler-libs/parmatch.cmti
688
lib/ocaml/compiler-libs/parmatch.cmx
476
lib/ocaml/compiler-libs/parse.cmi
689
lib/ocaml/compiler-libs/parse.cmi
477
lib/ocaml/compiler-libs/parse.cmt
690
lib/ocaml/compiler-libs/parse.cmt
478
lib/ocaml/compiler-libs/parse.cmti
691
lib/ocaml/compiler-libs/parse.cmti
692
lib/ocaml/compiler-libs/parse.cmx
479
lib/ocaml/compiler-libs/parser.cmi
693
lib/ocaml/compiler-libs/parser.cmi
480
lib/ocaml/compiler-libs/parser.cmt
694
lib/ocaml/compiler-libs/parser.cmt
481
lib/ocaml/compiler-libs/parser.cmti
695
lib/ocaml/compiler-libs/parser.cmti
696
lib/ocaml/compiler-libs/parser.cmx
482
lib/ocaml/compiler-libs/parsetree.cmi
697
lib/ocaml/compiler-libs/parsetree.cmi
483
lib/ocaml/compiler-libs/parsetree.cmti
698
lib/ocaml/compiler-libs/parsetree.cmti
699
lib/ocaml/compiler-libs/pass_wrapper.cmi
700
lib/ocaml/compiler-libs/pass_wrapper.cmt
701
lib/ocaml/compiler-libs/pass_wrapper.cmti
484
lib/ocaml/compiler-libs/path.cmi
702
lib/ocaml/compiler-libs/path.cmi
485
lib/ocaml/compiler-libs/path.cmt
703
lib/ocaml/compiler-libs/path.cmt
486
lib/ocaml/compiler-libs/path.cmti
704
lib/ocaml/compiler-libs/path.cmti
705
lib/ocaml/compiler-libs/path.cmx
487
lib/ocaml/compiler-libs/pparse.cmi
706
lib/ocaml/compiler-libs/pparse.cmi
488
lib/ocaml/compiler-libs/pparse.cmt
707
lib/ocaml/compiler-libs/pparse.cmt
489
lib/ocaml/compiler-libs/pparse.cmti
708
lib/ocaml/compiler-libs/pparse.cmti
709
lib/ocaml/compiler-libs/pparse.cmx
490
lib/ocaml/compiler-libs/pprintast.cmi
710
lib/ocaml/compiler-libs/pprintast.cmi
491
lib/ocaml/compiler-libs/pprintast.cmt
711
lib/ocaml/compiler-libs/pprintast.cmt
492
lib/ocaml/compiler-libs/pprintast.cmti
712
lib/ocaml/compiler-libs/pprintast.cmti
713
lib/ocaml/compiler-libs/pprintast.cmx
493
lib/ocaml/compiler-libs/predef.cmi
714
lib/ocaml/compiler-libs/predef.cmi
494
lib/ocaml/compiler-libs/predef.cmt
715
lib/ocaml/compiler-libs/predef.cmt
495
lib/ocaml/compiler-libs/predef.cmti
716
lib/ocaml/compiler-libs/predef.cmti
717
lib/ocaml/compiler-libs/predef.cmx
496
lib/ocaml/compiler-libs/primitive.cmi
718
lib/ocaml/compiler-libs/primitive.cmi
497
lib/ocaml/compiler-libs/primitive.cmt
719
lib/ocaml/compiler-libs/primitive.cmt
498
lib/ocaml/compiler-libs/primitive.cmti
720
lib/ocaml/compiler-libs/primitive.cmti
721
lib/ocaml/compiler-libs/primitive.cmx
499
lib/ocaml/compiler-libs/printast.cmi
722
lib/ocaml/compiler-libs/printast.cmi
500
lib/ocaml/compiler-libs/printast.cmt
723
lib/ocaml/compiler-libs/printast.cmt
501
lib/ocaml/compiler-libs/printast.cmti
724
lib/ocaml/compiler-libs/printast.cmti
725
lib/ocaml/compiler-libs/printast.cmx
502
lib/ocaml/compiler-libs/printclambda.cmi
726
lib/ocaml/compiler-libs/printclambda.cmi
503
lib/ocaml/compiler-libs/printclambda.cmt
727
lib/ocaml/compiler-libs/printclambda.cmt
504
lib/ocaml/compiler-libs/printclambda.cmti
728
lib/ocaml/compiler-libs/printclambda.cmti
729
lib/ocaml/compiler-libs/printclambda.cmx
505
lib/ocaml/compiler-libs/printcmm.cmi
730
lib/ocaml/compiler-libs/printcmm.cmi
506
lib/ocaml/compiler-libs/printcmm.cmt
731
lib/ocaml/compiler-libs/printcmm.cmt
507
lib/ocaml/compiler-libs/printcmm.cmti
732
lib/ocaml/compiler-libs/printcmm.cmti
733
lib/ocaml/compiler-libs/printcmm.cmx
508
lib/ocaml/compiler-libs/printinstr.cmi
734
lib/ocaml/compiler-libs/printinstr.cmi
509
lib/ocaml/compiler-libs/printinstr.cmt
735
lib/ocaml/compiler-libs/printinstr.cmt
510
lib/ocaml/compiler-libs/printinstr.cmti
736
lib/ocaml/compiler-libs/printinstr.cmti
737
lib/ocaml/compiler-libs/printinstr.cmx
511
lib/ocaml/compiler-libs/printlambda.cmi
738
lib/ocaml/compiler-libs/printlambda.cmi
512
lib/ocaml/compiler-libs/printlambda.cmt
739
lib/ocaml/compiler-libs/printlambda.cmt
513
lib/ocaml/compiler-libs/printlambda.cmti
740
lib/ocaml/compiler-libs/printlambda.cmti
741
lib/ocaml/compiler-libs/printlambda.cmx
514
lib/ocaml/compiler-libs/printlinear.cmi
742
lib/ocaml/compiler-libs/printlinear.cmi
515
lib/ocaml/compiler-libs/printlinear.cmt
743
lib/ocaml/compiler-libs/printlinear.cmt
516
lib/ocaml/compiler-libs/printlinear.cmti
744
lib/ocaml/compiler-libs/printlinear.cmti
745
lib/ocaml/compiler-libs/printlinear.cmx
517
lib/ocaml/compiler-libs/printmach.cmi
746
lib/ocaml/compiler-libs/printmach.cmi
518
lib/ocaml/compiler-libs/printmach.cmt
747
lib/ocaml/compiler-libs/printmach.cmt
519
lib/ocaml/compiler-libs/printmach.cmti
748
lib/ocaml/compiler-libs/printmach.cmti
749
lib/ocaml/compiler-libs/printmach.cmx
520
lib/ocaml/compiler-libs/printtyp.cmi
750
lib/ocaml/compiler-libs/printtyp.cmi
521
lib/ocaml/compiler-libs/printtyp.cmt
751
lib/ocaml/compiler-libs/printtyp.cmt
522
lib/ocaml/compiler-libs/printtyp.cmti
752
lib/ocaml/compiler-libs/printtyp.cmti
753
lib/ocaml/compiler-libs/printtyp.cmx
523
lib/ocaml/compiler-libs/printtyped.cmi
754
lib/ocaml/compiler-libs/printtyped.cmi
524
lib/ocaml/compiler-libs/printtyped.cmt
755
lib/ocaml/compiler-libs/printtyped.cmt
525
lib/ocaml/compiler-libs/printtyped.cmti
756
lib/ocaml/compiler-libs/printtyped.cmti
757
lib/ocaml/compiler-libs/printtyped.cmx
526
lib/ocaml/compiler-libs/proc.cmi
758
lib/ocaml/compiler-libs/proc.cmi
527
lib/ocaml/compiler-libs/proc.cmt
759
lib/ocaml/compiler-libs/proc.cmt
528
lib/ocaml/compiler-libs/proc.cmti
760
lib/ocaml/compiler-libs/proc.cmti
761
lib/ocaml/compiler-libs/proc.cmx
762
lib/ocaml/compiler-libs/projection.cmi
763
lib/ocaml/compiler-libs/projection.cmt
764
lib/ocaml/compiler-libs/projection.cmti
765
lib/ocaml/compiler-libs/ref_to_variables.cmi
766
lib/ocaml/compiler-libs/ref_to_variables.cmt
767
lib/ocaml/compiler-libs/ref_to_variables.cmti
529
lib/ocaml/compiler-libs/reg.cmi
768
lib/ocaml/compiler-libs/reg.cmi
530
lib/ocaml/compiler-libs/reg.cmt
769
lib/ocaml/compiler-libs/reg.cmt
531
lib/ocaml/compiler-libs/reg.cmti
770
lib/ocaml/compiler-libs/reg.cmti
771
lib/ocaml/compiler-libs/reg.cmx
532
lib/ocaml/compiler-libs/reload.cmi
772
lib/ocaml/compiler-libs/reload.cmi
533
lib/ocaml/compiler-libs/reload.cmt
773
lib/ocaml/compiler-libs/reload.cmt
534
lib/ocaml/compiler-libs/reload.cmti
774
lib/ocaml/compiler-libs/reload.cmti
775
lib/ocaml/compiler-libs/reload.cmx
535
lib/ocaml/compiler-libs/reloadgen.cmi
776
lib/ocaml/compiler-libs/reloadgen.cmi
536
lib/ocaml/compiler-libs/reloadgen.cmt
777
lib/ocaml/compiler-libs/reloadgen.cmt
537
lib/ocaml/compiler-libs/reloadgen.cmti
778
lib/ocaml/compiler-libs/reloadgen.cmti
779
lib/ocaml/compiler-libs/reloadgen.cmx
780
lib/ocaml/compiler-libs/remove_free_vars_equal_to_args.cmi
781
lib/ocaml/compiler-libs/remove_free_vars_equal_to_args.cmt
782
lib/ocaml/compiler-libs/remove_free_vars_equal_to_args.cmti
783
lib/ocaml/compiler-libs/remove_unused_arguments.cmi
784
lib/ocaml/compiler-libs/remove_unused_arguments.cmt
785
lib/ocaml/compiler-libs/remove_unused_arguments.cmti
786
lib/ocaml/compiler-libs/remove_unused_closure_vars.cmi
787
lib/ocaml/compiler-libs/remove_unused_closure_vars.cmt
788
lib/ocaml/compiler-libs/remove_unused_closure_vars.cmti
789
lib/ocaml/compiler-libs/remove_unused_program_constructs.cmi
790
lib/ocaml/compiler-libs/remove_unused_program_constructs.cmt
791
lib/ocaml/compiler-libs/remove_unused_program_constructs.cmti
538
lib/ocaml/compiler-libs/runtimedef.cmi
792
lib/ocaml/compiler-libs/runtimedef.cmi
539
lib/ocaml/compiler-libs/runtimedef.cmt
793
lib/ocaml/compiler-libs/runtimedef.cmt
540
lib/ocaml/compiler-libs/runtimedef.cmti
794
lib/ocaml/compiler-libs/runtimedef.cmti
795
lib/ocaml/compiler-libs/runtimedef.cmx
541
lib/ocaml/compiler-libs/schedgen.cmi
796
lib/ocaml/compiler-libs/schedgen.cmi
542
lib/ocaml/compiler-libs/schedgen.cmt
797
lib/ocaml/compiler-libs/schedgen.cmt
543
lib/ocaml/compiler-libs/schedgen.cmti
798
lib/ocaml/compiler-libs/schedgen.cmti
799
lib/ocaml/compiler-libs/schedgen.cmx
544
lib/ocaml/compiler-libs/scheduling.cmi
800
lib/ocaml/compiler-libs/scheduling.cmi
545
lib/ocaml/compiler-libs/scheduling.cmt
801
lib/ocaml/compiler-libs/scheduling.cmt
546
lib/ocaml/compiler-libs/scheduling.cmti
802
lib/ocaml/compiler-libs/scheduling.cmti
803
lib/ocaml/compiler-libs/scheduling.cmx
547
lib/ocaml/compiler-libs/selectgen.cmi
804
lib/ocaml/compiler-libs/selectgen.cmi
548
lib/ocaml/compiler-libs/selectgen.cmt
805
lib/ocaml/compiler-libs/selectgen.cmt
549
lib/ocaml/compiler-libs/selectgen.cmti
806
lib/ocaml/compiler-libs/selectgen.cmti
807
lib/ocaml/compiler-libs/selectgen.cmx
550
lib/ocaml/compiler-libs/selection.cmi
808
lib/ocaml/compiler-libs/selection.cmi
551
lib/ocaml/compiler-libs/selection.cmt
809
lib/ocaml/compiler-libs/selection.cmt
552
lib/ocaml/compiler-libs/selection.cmti
810
lib/ocaml/compiler-libs/selection.cmti
811
lib/ocaml/compiler-libs/selection.cmx
812
lib/ocaml/compiler-libs/semantics_of_primitives.cmi
813
lib/ocaml/compiler-libs/semantics_of_primitives.cmt
814
lib/ocaml/compiler-libs/semantics_of_primitives.cmti
815
lib/ocaml/compiler-libs/set_of_closures_id.cmi
816
lib/ocaml/compiler-libs/set_of_closures_id.cmt
817
lib/ocaml/compiler-libs/set_of_closures_id.cmti
818
lib/ocaml/compiler-libs/set_of_closures_origin.cmi
819
lib/ocaml/compiler-libs/set_of_closures_origin.cmt
820
lib/ocaml/compiler-libs/set_of_closures_origin.cmti
821
lib/ocaml/compiler-libs/share_constants.cmi
822
lib/ocaml/compiler-libs/share_constants.cmt
823
lib/ocaml/compiler-libs/share_constants.cmti
824
lib/ocaml/compiler-libs/simple_value_approx.cmi
825
lib/ocaml/compiler-libs/simple_value_approx.cmt
826
lib/ocaml/compiler-libs/simple_value_approx.cmti
553
lib/ocaml/compiler-libs/simplif.cmi
827
lib/ocaml/compiler-libs/simplif.cmi
554
lib/ocaml/compiler-libs/simplif.cmt
828
lib/ocaml/compiler-libs/simplif.cmt
555
lib/ocaml/compiler-libs/simplif.cmti
829
lib/ocaml/compiler-libs/simplif.cmti
830
lib/ocaml/compiler-libs/simplif.cmx
831
lib/ocaml/compiler-libs/simplify_boxed_integer_ops.cmi
832
lib/ocaml/compiler-libs/simplify_boxed_integer_ops.cmt
833
lib/ocaml/compiler-libs/simplify_boxed_integer_ops.cmti
834
lib/ocaml/compiler-libs/simplify_boxed_integer_ops_intf.cmi
835
lib/ocaml/compiler-libs/simplify_boxed_integer_ops_intf.cmti
836
lib/ocaml/compiler-libs/simplify_common.cmi
837
lib/ocaml/compiler-libs/simplify_common.cmt
838
lib/ocaml/compiler-libs/simplify_common.cmti
839
lib/ocaml/compiler-libs/simplify_primitives.cmi
840
lib/ocaml/compiler-libs/simplify_primitives.cmt
841
lib/ocaml/compiler-libs/simplify_primitives.cmti
842
lib/ocaml/compiler-libs/spacetime_profiling.cmi
843
lib/ocaml/compiler-libs/spacetime_profiling.cmt
844
lib/ocaml/compiler-libs/spacetime_profiling.cmti
845
lib/ocaml/compiler-libs/spacetime_profiling.cmx
556
lib/ocaml/compiler-libs/spill.cmi
846
lib/ocaml/compiler-libs/spill.cmi
557
lib/ocaml/compiler-libs/spill.cmt
847
lib/ocaml/compiler-libs/spill.cmt
558
lib/ocaml/compiler-libs/spill.cmti
848
lib/ocaml/compiler-libs/spill.cmti
849
lib/ocaml/compiler-libs/spill.cmx
559
lib/ocaml/compiler-libs/split.cmi
850
lib/ocaml/compiler-libs/split.cmi
560
lib/ocaml/compiler-libs/split.cmt
851
lib/ocaml/compiler-libs/split.cmt
561
lib/ocaml/compiler-libs/split.cmti
852
lib/ocaml/compiler-libs/split.cmti
853
lib/ocaml/compiler-libs/split.cmx
854
lib/ocaml/compiler-libs/static_exception.cmi
855
lib/ocaml/compiler-libs/static_exception.cmt
856
lib/ocaml/compiler-libs/static_exception.cmti
562
lib/ocaml/compiler-libs/strmatch.cmi
857
lib/ocaml/compiler-libs/strmatch.cmi
563
lib/ocaml/compiler-libs/strmatch.cmt
858
lib/ocaml/compiler-libs/strmatch.cmt
564
lib/ocaml/compiler-libs/strmatch.cmti
859
lib/ocaml/compiler-libs/strmatch.cmti
860
lib/ocaml/compiler-libs/strmatch.cmx
861
lib/ocaml/compiler-libs/strongly_connected_components.cmi
862
lib/ocaml/compiler-libs/strongly_connected_components.cmt
863
lib/ocaml/compiler-libs/strongly_connected_components.cmti
864
lib/ocaml/compiler-libs/strongly_connected_components.cmx
565
lib/ocaml/compiler-libs/stypes.cmi
865
lib/ocaml/compiler-libs/stypes.cmi
566
lib/ocaml/compiler-libs/stypes.cmt
866
lib/ocaml/compiler-libs/stypes.cmt
567
lib/ocaml/compiler-libs/stypes.cmti
867
lib/ocaml/compiler-libs/stypes.cmti
868
lib/ocaml/compiler-libs/stypes.cmx
568
lib/ocaml/compiler-libs/subst.cmi
869
lib/ocaml/compiler-libs/subst.cmi
569
lib/ocaml/compiler-libs/subst.cmt
870
lib/ocaml/compiler-libs/subst.cmt
570
lib/ocaml/compiler-libs/subst.cmti
871
lib/ocaml/compiler-libs/subst.cmti
872
lib/ocaml/compiler-libs/subst.cmx
571
lib/ocaml/compiler-libs/switch.cmi
873
lib/ocaml/compiler-libs/switch.cmi
572
lib/ocaml/compiler-libs/switch.cmt
874
lib/ocaml/compiler-libs/switch.cmt
573
lib/ocaml/compiler-libs/switch.cmti
875
lib/ocaml/compiler-libs/switch.cmti
876
lib/ocaml/compiler-libs/switch.cmx
877
lib/ocaml/compiler-libs/symbol.cmi
878
lib/ocaml/compiler-libs/symbol.cmt
879
lib/ocaml/compiler-libs/symbol.cmti
574
lib/ocaml/compiler-libs/symtable.cmi
880
lib/ocaml/compiler-libs/symtable.cmi
575
lib/ocaml/compiler-libs/symtable.cmt
881
lib/ocaml/compiler-libs/symtable.cmt
576
lib/ocaml/compiler-libs/symtable.cmti
882
lib/ocaml/compiler-libs/symtable.cmti
883
lib/ocaml/compiler-libs/symtable.cmx
577
lib/ocaml/compiler-libs/syntaxerr.cmi
884
lib/ocaml/compiler-libs/syntaxerr.cmi
578
lib/ocaml/compiler-libs/syntaxerr.cmt
885
lib/ocaml/compiler-libs/syntaxerr.cmt
579
lib/ocaml/compiler-libs/syntaxerr.cmti
886
lib/ocaml/compiler-libs/syntaxerr.cmti
887
lib/ocaml/compiler-libs/syntaxerr.cmx
888
lib/ocaml/compiler-libs/tag.cmi
889
lib/ocaml/compiler-libs/tag.cmt
890
lib/ocaml/compiler-libs/tag.cmti
891
lib/ocaml/compiler-libs/tast_mapper.cmi
892
lib/ocaml/compiler-libs/tast_mapper.cmt
893
lib/ocaml/compiler-libs/tast_mapper.cmti
894
lib/ocaml/compiler-libs/tast_mapper.cmx
580
lib/ocaml/compiler-libs/tbl.cmi
895
lib/ocaml/compiler-libs/tbl.cmi
581
lib/ocaml/compiler-libs/tbl.cmt
896
lib/ocaml/compiler-libs/tbl.cmt
582
lib/ocaml/compiler-libs/tbl.cmti
897
lib/ocaml/compiler-libs/tbl.cmti
898
lib/ocaml/compiler-libs/tbl.cmx
583
lib/ocaml/compiler-libs/terminfo.cmi
899
lib/ocaml/compiler-libs/terminfo.cmi
584
lib/ocaml/compiler-libs/terminfo.cmt
900
lib/ocaml/compiler-libs/terminfo.cmt
585
lib/ocaml/compiler-libs/terminfo.cmti
901
lib/ocaml/compiler-libs/terminfo.cmti
902
lib/ocaml/compiler-libs/terminfo.cmx
903
lib/ocaml/compiler-libs/timings.cmi
904
lib/ocaml/compiler-libs/timings.cmt
905
lib/ocaml/compiler-libs/timings.cmti
906
lib/ocaml/compiler-libs/timings.cmx
586
lib/ocaml/compiler-libs/topdirs.cmi
907
lib/ocaml/compiler-libs/topdirs.cmi
587
lib/ocaml/compiler-libs/topdirs.cmt
908
lib/ocaml/compiler-libs/topdirs.cmt
588
lib/ocaml/compiler-libs/topdirs.cmti
909
lib/ocaml/compiler-libs/topdirs.cmti
Lines 598-648 Link Here
598
lib/ocaml/compiler-libs/trace.cmi
919
lib/ocaml/compiler-libs/trace.cmi
599
lib/ocaml/compiler-libs/trace.cmt
920
lib/ocaml/compiler-libs/trace.cmt
600
lib/ocaml/compiler-libs/trace.cmti
921
lib/ocaml/compiler-libs/trace.cmti
922
lib/ocaml/compiler-libs/translattribute.cmi
923
lib/ocaml/compiler-libs/translattribute.cmt
924
lib/ocaml/compiler-libs/translattribute.cmti
925
lib/ocaml/compiler-libs/translattribute.cmx
601
lib/ocaml/compiler-libs/translclass.cmi
926
lib/ocaml/compiler-libs/translclass.cmi
602
lib/ocaml/compiler-libs/translclass.cmt
927
lib/ocaml/compiler-libs/translclass.cmt
603
lib/ocaml/compiler-libs/translclass.cmti
928
lib/ocaml/compiler-libs/translclass.cmti
929
lib/ocaml/compiler-libs/translclass.cmx
604
lib/ocaml/compiler-libs/translcore.cmi
930
lib/ocaml/compiler-libs/translcore.cmi
605
lib/ocaml/compiler-libs/translcore.cmt
931
lib/ocaml/compiler-libs/translcore.cmt
606
lib/ocaml/compiler-libs/translcore.cmti
932
lib/ocaml/compiler-libs/translcore.cmti
933
lib/ocaml/compiler-libs/translcore.cmx
607
lib/ocaml/compiler-libs/translmod.cmi
934
lib/ocaml/compiler-libs/translmod.cmi
608
lib/ocaml/compiler-libs/translmod.cmt
935
lib/ocaml/compiler-libs/translmod.cmt
609
lib/ocaml/compiler-libs/translmod.cmti
936
lib/ocaml/compiler-libs/translmod.cmti
937
lib/ocaml/compiler-libs/translmod.cmx
610
lib/ocaml/compiler-libs/translobj.cmi
938
lib/ocaml/compiler-libs/translobj.cmi
611
lib/ocaml/compiler-libs/translobj.cmt
939
lib/ocaml/compiler-libs/translobj.cmt
612
lib/ocaml/compiler-libs/translobj.cmti
940
lib/ocaml/compiler-libs/translobj.cmti
941
lib/ocaml/compiler-libs/translobj.cmx
613
lib/ocaml/compiler-libs/typeclass.cmi
942
lib/ocaml/compiler-libs/typeclass.cmi
614
lib/ocaml/compiler-libs/typeclass.cmt
943
lib/ocaml/compiler-libs/typeclass.cmt
615
lib/ocaml/compiler-libs/typeclass.cmti
944
lib/ocaml/compiler-libs/typeclass.cmti
945
lib/ocaml/compiler-libs/typeclass.cmx
616
lib/ocaml/compiler-libs/typecore.cmi
946
lib/ocaml/compiler-libs/typecore.cmi
617
lib/ocaml/compiler-libs/typecore.cmt
947
lib/ocaml/compiler-libs/typecore.cmt
618
lib/ocaml/compiler-libs/typecore.cmti
948
lib/ocaml/compiler-libs/typecore.cmti
949
lib/ocaml/compiler-libs/typecore.cmx
619
lib/ocaml/compiler-libs/typedecl.cmi
950
lib/ocaml/compiler-libs/typedecl.cmi
620
lib/ocaml/compiler-libs/typedecl.cmt
951
lib/ocaml/compiler-libs/typedecl.cmt
621
lib/ocaml/compiler-libs/typedecl.cmti
952
lib/ocaml/compiler-libs/typedecl.cmti
953
lib/ocaml/compiler-libs/typedecl.cmx
954
lib/ocaml/compiler-libs/typedtree.cmi
955
lib/ocaml/compiler-libs/typedtree.cmt
956
lib/ocaml/compiler-libs/typedtree.cmti
957
lib/ocaml/compiler-libs/typedtree.cmx
622
lib/ocaml/compiler-libs/typedtreeIter.cmi
958
lib/ocaml/compiler-libs/typedtreeIter.cmi
623
lib/ocaml/compiler-libs/typedtreeIter.cmt
959
lib/ocaml/compiler-libs/typedtreeIter.cmt
624
lib/ocaml/compiler-libs/typedtreeIter.cmti
960
lib/ocaml/compiler-libs/typedtreeIter.cmti
961
lib/ocaml/compiler-libs/typedtreeIter.cmx
625
lib/ocaml/compiler-libs/typedtreeMap.cmi
962
lib/ocaml/compiler-libs/typedtreeMap.cmi
626
lib/ocaml/compiler-libs/typedtreeMap.cmt
963
lib/ocaml/compiler-libs/typedtreeMap.cmt
627
lib/ocaml/compiler-libs/typedtreeMap.cmti
964
lib/ocaml/compiler-libs/typedtreeMap.cmti
628
lib/ocaml/compiler-libs/typedtree.cmi
965
lib/ocaml/compiler-libs/typedtreeMap.cmx
629
lib/ocaml/compiler-libs/typedtree.cmt
630
lib/ocaml/compiler-libs/typedtree.cmti
631
lib/ocaml/compiler-libs/typemod.cmi
966
lib/ocaml/compiler-libs/typemod.cmi
632
lib/ocaml/compiler-libs/typemod.cmt
967
lib/ocaml/compiler-libs/typemod.cmt
633
lib/ocaml/compiler-libs/typemod.cmti
968
lib/ocaml/compiler-libs/typemod.cmti
969
lib/ocaml/compiler-libs/typemod.cmx
634
lib/ocaml/compiler-libs/typeopt.cmi
970
lib/ocaml/compiler-libs/typeopt.cmi
635
lib/ocaml/compiler-libs/typeopt.cmt
971
lib/ocaml/compiler-libs/typeopt.cmt
636
lib/ocaml/compiler-libs/typeopt.cmti
972
lib/ocaml/compiler-libs/typeopt.cmti
973
lib/ocaml/compiler-libs/typeopt.cmx
637
lib/ocaml/compiler-libs/types.cmi
974
lib/ocaml/compiler-libs/types.cmi
638
lib/ocaml/compiler-libs/types.cmt
975
lib/ocaml/compiler-libs/types.cmt
639
lib/ocaml/compiler-libs/types.cmti
976
lib/ocaml/compiler-libs/types.cmti
977
lib/ocaml/compiler-libs/types.cmx
640
lib/ocaml/compiler-libs/typetexp.cmi
978
lib/ocaml/compiler-libs/typetexp.cmi
641
lib/ocaml/compiler-libs/typetexp.cmt
979
lib/ocaml/compiler-libs/typetexp.cmt
642
lib/ocaml/compiler-libs/typetexp.cmti
980
lib/ocaml/compiler-libs/typetexp.cmti
981
lib/ocaml/compiler-libs/typetexp.cmx
982
lib/ocaml/compiler-libs/un_anf.cmi
983
lib/ocaml/compiler-libs/un_anf.cmt
984
lib/ocaml/compiler-libs/un_anf.cmti
985
lib/ocaml/compiler-libs/un_anf.cmx
986
lib/ocaml/compiler-libs/unbox_closures.cmi
987
lib/ocaml/compiler-libs/unbox_closures.cmt
988
lib/ocaml/compiler-libs/unbox_closures.cmti
989
lib/ocaml/compiler-libs/unbox_free_vars_of_closures.cmi
990
lib/ocaml/compiler-libs/unbox_free_vars_of_closures.cmt
991
lib/ocaml/compiler-libs/unbox_free_vars_of_closures.cmti
992
lib/ocaml/compiler-libs/unbox_specialised_args.cmi
993
lib/ocaml/compiler-libs/unbox_specialised_args.cmt
994
lib/ocaml/compiler-libs/unbox_specialised_args.cmti
995
lib/ocaml/compiler-libs/untypeast.cmi
996
lib/ocaml/compiler-libs/untypeast.cmt
997
lib/ocaml/compiler-libs/untypeast.cmti
998
lib/ocaml/compiler-libs/untypeast.cmx
999
lib/ocaml/compiler-libs/var_within_closure.cmi
1000
lib/ocaml/compiler-libs/var_within_closure.cmt
1001
lib/ocaml/compiler-libs/var_within_closure.cmti
1002
lib/ocaml/compiler-libs/variable.cmi
1003
lib/ocaml/compiler-libs/variable.cmt
1004
lib/ocaml/compiler-libs/variable.cmti
643
lib/ocaml/compiler-libs/warnings.cmi
1005
lib/ocaml/compiler-libs/warnings.cmi
644
lib/ocaml/compiler-libs/warnings.cmt
1006
lib/ocaml/compiler-libs/warnings.cmt
645
lib/ocaml/compiler-libs/warnings.cmti
1007
lib/ocaml/compiler-libs/warnings.cmti
1008
lib/ocaml/compiler-libs/warnings.cmx
1009
lib/ocaml/compiler-libs/x86_ast.cmi
1010
lib/ocaml/compiler-libs/x86_ast.cmti
1011
lib/ocaml/compiler-libs/x86_dsl.cmi
1012
lib/ocaml/compiler-libs/x86_dsl.cmt
1013
lib/ocaml/compiler-libs/x86_dsl.cmti
1014
lib/ocaml/compiler-libs/x86_dsl.cmx
1015
lib/ocaml/compiler-libs/x86_gas.cmi
1016
lib/ocaml/compiler-libs/x86_gas.cmt
1017
lib/ocaml/compiler-libs/x86_gas.cmti
1018
lib/ocaml/compiler-libs/x86_gas.cmx
1019
lib/ocaml/compiler-libs/x86_masm.cmi
1020
lib/ocaml/compiler-libs/x86_masm.cmt
1021
lib/ocaml/compiler-libs/x86_masm.cmti
1022
lib/ocaml/compiler-libs/x86_masm.cmx
1023
lib/ocaml/compiler-libs/x86_proc.cmi
1024
lib/ocaml/compiler-libs/x86_proc.cmt
1025
lib/ocaml/compiler-libs/x86_proc.cmti
1026
lib/ocaml/compiler-libs/x86_proc.cmx
646
lib/ocaml/complex.cmi
1027
lib/ocaml/complex.cmi
647
lib/ocaml/complex.cmt
1028
lib/ocaml/complex.cmt
648
lib/ocaml/complex.cmti
1029
lib/ocaml/complex.cmti
Lines 650-655 Link Here
650
lib/ocaml/complex.ml
1031
lib/ocaml/complex.ml
651
lib/ocaml/complex.mli
1032
lib/ocaml/complex.mli
652
lib/ocaml/complex.p.cmt
1033
lib/ocaml/complex.p.cmt
1034
lib/ocaml/complex.p.cmx
1035
%%THREADS%%lib/ocaml/condition.mli
653
lib/ocaml/digest.cmi
1036
lib/ocaml/digest.cmi
654
lib/ocaml/digest.cmt
1037
lib/ocaml/digest.cmt
655
lib/ocaml/digest.cmti
1038
lib/ocaml/digest.cmti
Lines 657-662 Link Here
657
lib/ocaml/digest.ml
1040
lib/ocaml/digest.ml
658
lib/ocaml/digest.mli
1041
lib/ocaml/digest.mli
659
lib/ocaml/digest.p.cmt
1042
lib/ocaml/digest.p.cmt
1043
lib/ocaml/digest.p.cmx
660
lib/ocaml/dynlink.a
1044
lib/ocaml/dynlink.a
661
lib/ocaml/dynlink.cma
1045
lib/ocaml/dynlink.cma
662
lib/ocaml/dynlink.cmi
1046
lib/ocaml/dynlink.cmi
Lines 663-668 Link Here
663
lib/ocaml/dynlink.cmx
1047
lib/ocaml/dynlink.cmx
664
lib/ocaml/dynlink.cmxa
1048
lib/ocaml/dynlink.cmxa
665
lib/ocaml/dynlink.mli
1049
lib/ocaml/dynlink.mli
1050
lib/ocaml/ephemeron.cmi
1051
lib/ocaml/ephemeron.cmt
1052
lib/ocaml/ephemeron.cmti
1053
lib/ocaml/ephemeron.cmx
1054
lib/ocaml/ephemeron.ml
1055
lib/ocaml/ephemeron.mli
1056
lib/ocaml/ephemeron.p.cmt
1057
lib/ocaml/ephemeron.p.cmx
1058
%%THREADS%%lib/ocaml/event.mli
1059
@(,,0555) lib/ocaml/expunge
1060
@(,,0555) lib/ocaml/extract_crc
666
lib/ocaml/filename.cmi
1061
lib/ocaml/filename.cmi
667
lib/ocaml/filename.cmt
1062
lib/ocaml/filename.cmt
668
lib/ocaml/filename.cmti
1063
lib/ocaml/filename.cmti
Lines 670-675 Link Here
670
lib/ocaml/filename.ml
1065
lib/ocaml/filename.ml
671
lib/ocaml/filename.mli
1066
lib/ocaml/filename.mli
672
lib/ocaml/filename.p.cmt
1067
lib/ocaml/filename.p.cmt
1068
lib/ocaml/filename.p.cmx
673
lib/ocaml/format.cmi
1069
lib/ocaml/format.cmi
674
lib/ocaml/format.cmt
1070
lib/ocaml/format.cmt
675
lib/ocaml/format.cmti
1071
lib/ocaml/format.cmti
Lines 677-682 Link Here
677
lib/ocaml/format.ml
1073
lib/ocaml/format.ml
678
lib/ocaml/format.mli
1074
lib/ocaml/format.mli
679
lib/ocaml/format.p.cmt
1075
lib/ocaml/format.p.cmt
1076
lib/ocaml/format.p.cmx
680
lib/ocaml/gc.cmi
1077
lib/ocaml/gc.cmi
681
lib/ocaml/gc.cmt
1078
lib/ocaml/gc.cmt
682
lib/ocaml/gc.cmti
1079
lib/ocaml/gc.cmti
Lines 684-689 Link Here
684
lib/ocaml/gc.ml
1081
lib/ocaml/gc.ml
685
lib/ocaml/gc.mli
1082
lib/ocaml/gc.mli
686
lib/ocaml/gc.p.cmt
1083
lib/ocaml/gc.p.cmt
1084
lib/ocaml/gc.p.cmx
687
lib/ocaml/genlex.cmi
1085
lib/ocaml/genlex.cmi
688
lib/ocaml/genlex.cmt
1086
lib/ocaml/genlex.cmt
689
lib/ocaml/genlex.cmti
1087
lib/ocaml/genlex.cmti
Lines 691-696 Link Here
691
lib/ocaml/genlex.ml
1089
lib/ocaml/genlex.ml
692
lib/ocaml/genlex.mli
1090
lib/ocaml/genlex.mli
693
lib/ocaml/genlex.p.cmt
1091
lib/ocaml/genlex.p.cmt
1092
lib/ocaml/genlex.p.cmx
1093
%%X11%%lib/ocaml/graphics.a
1094
%%X11%%lib/ocaml/graphics.cma
1095
%%X11%%lib/ocaml/graphics.cmi
1096
%%X11%%lib/ocaml/graphics.cmx
1097
%%X11%%lib/ocaml/graphics.cmxa
1098
%%X11%%lib/ocaml/graphics.cmxs
1099
%%X11%%lib/ocaml/graphics.mli
1100
%%X11%%lib/ocaml/graphicsX11.cmi
1101
%%X11%%lib/ocaml/graphicsX11.cmx
1102
%%X11%%lib/ocaml/graphicsX11.mli
694
lib/ocaml/hashtbl.cmi
1103
lib/ocaml/hashtbl.cmi
695
lib/ocaml/hashtbl.cmt
1104
lib/ocaml/hashtbl.cmt
696
lib/ocaml/hashtbl.cmti
1105
lib/ocaml/hashtbl.cmti
Lines 698-703 Link Here
698
lib/ocaml/hashtbl.ml
1107
lib/ocaml/hashtbl.ml
699
lib/ocaml/hashtbl.mli
1108
lib/ocaml/hashtbl.mli
700
lib/ocaml/hashtbl.p.cmt
1109
lib/ocaml/hashtbl.p.cmt
1110
lib/ocaml/hashtbl.p.cmx
701
lib/ocaml/int32.cmi
1111
lib/ocaml/int32.cmi
702
lib/ocaml/int32.cmt
1112
lib/ocaml/int32.cmt
703
lib/ocaml/int32.cmti
1113
lib/ocaml/int32.cmti
Lines 705-710 Link Here
705
lib/ocaml/int32.ml
1115
lib/ocaml/int32.ml
706
lib/ocaml/int32.mli
1116
lib/ocaml/int32.mli
707
lib/ocaml/int32.p.cmt
1117
lib/ocaml/int32.p.cmt
1118
lib/ocaml/int32.p.cmx
708
lib/ocaml/int64.cmi
1119
lib/ocaml/int64.cmi
709
lib/ocaml/int64.cmt
1120
lib/ocaml/int64.cmt
710
lib/ocaml/int64.cmti
1121
lib/ocaml/int64.cmti
Lines 712-717 Link Here
712
lib/ocaml/int64.ml
1123
lib/ocaml/int64.ml
713
lib/ocaml/int64.mli
1124
lib/ocaml/int64.mli
714
lib/ocaml/int64.p.cmt
1125
lib/ocaml/int64.p.cmt
1126
lib/ocaml/int64.p.cmx
715
lib/ocaml/int_misc.cmx
1127
lib/ocaml/int_misc.cmx
716
lib/ocaml/lazy.cmi
1128
lib/ocaml/lazy.cmi
717
lib/ocaml/lazy.cmt
1129
lib/ocaml/lazy.cmt
Lines 720-725 Link Here
720
lib/ocaml/lazy.ml
1132
lib/ocaml/lazy.ml
721
lib/ocaml/lazy.mli
1133
lib/ocaml/lazy.mli
722
lib/ocaml/lazy.p.cmt
1134
lib/ocaml/lazy.p.cmt
1135
lib/ocaml/lazy.p.cmx
723
lib/ocaml/ld.conf
1136
lib/ocaml/ld.conf
724
lib/ocaml/lexing.cmi
1137
lib/ocaml/lexing.cmi
725
lib/ocaml/lexing.cmt
1138
lib/ocaml/lexing.cmt
Lines 728-744 Link Here
728
lib/ocaml/lexing.ml
1141
lib/ocaml/lexing.ml
729
lib/ocaml/lexing.mli
1142
lib/ocaml/lexing.mli
730
lib/ocaml/lexing.p.cmt
1143
lib/ocaml/lexing.p.cmt
1144
lib/ocaml/lexing.p.cmx
731
lib/ocaml/libasmrun.a
1145
lib/ocaml/libasmrun.a
732
lib/ocaml/libasmrunp.a
733
lib/ocaml/libasmrun_pic.a
1146
lib/ocaml/libasmrun_pic.a
734
lib/ocaml/libasmrun_shared.so
1147
lib/ocaml/libasmrun_shared.so
1148
lib/ocaml/libasmrunp.a
735
lib/ocaml/libbigarray.a
1149
lib/ocaml/libbigarray.a
736
lib/ocaml/libcamlrun.a
1150
lib/ocaml/libcamlrun.a
737
lib/ocaml/libcamlrun_pic.a
1151
lib/ocaml/libcamlrun_pic.a
738
lib/ocaml/libcamlrun_shared.so
1152
lib/ocaml/libcamlrun_shared.so
739
lib/ocaml/libcamlstr.a
1153
lib/ocaml/libcamlstr.a
1154
%%X11%%lib/ocaml/libgraphics.a
740
lib/ocaml/libnums.a
1155
lib/ocaml/libnums.a
1156
%%THREADS%%lib/ocaml/libthreads.a
1157
%%THREADS%%lib/ocaml/libthreadsnat.a
741
lib/ocaml/libunix.a
1158
lib/ocaml/libunix.a
1159
lib/ocaml/list.cmi
1160
lib/ocaml/list.cmt
1161
lib/ocaml/list.cmti
1162
lib/ocaml/list.cmx
1163
lib/ocaml/list.ml
1164
lib/ocaml/list.mli
1165
lib/ocaml/list.p.cmt
1166
lib/ocaml/list.p.cmx
742
lib/ocaml/listLabels.cmi
1167
lib/ocaml/listLabels.cmi
743
lib/ocaml/listLabels.cmt
1168
lib/ocaml/listLabels.cmt
744
lib/ocaml/listLabels.cmti
1169
lib/ocaml/listLabels.cmti
Lines 746-758 Link Here
746
lib/ocaml/listLabels.ml
1171
lib/ocaml/listLabels.ml
747
lib/ocaml/listLabels.mli
1172
lib/ocaml/listLabels.mli
748
lib/ocaml/listLabels.p.cmt
1173
lib/ocaml/listLabels.p.cmt
749
lib/ocaml/list.cmi
1174
lib/ocaml/listLabels.p.cmx
750
lib/ocaml/list.cmt
751
lib/ocaml/list.cmti
752
lib/ocaml/list.cmx
753
lib/ocaml/list.ml
754
lib/ocaml/list.mli
755
lib/ocaml/list.p.cmt
756
lib/ocaml/map.cmi
1175
lib/ocaml/map.cmi
757
lib/ocaml/map.cmt
1176
lib/ocaml/map.cmt
758
lib/ocaml/map.cmti
1177
lib/ocaml/map.cmti
Lines 760-765 Link Here
760
lib/ocaml/map.ml
1179
lib/ocaml/map.ml
761
lib/ocaml/map.mli
1180
lib/ocaml/map.mli
762
lib/ocaml/map.p.cmt
1181
lib/ocaml/map.p.cmt
1182
lib/ocaml/map.p.cmx
763
lib/ocaml/marshal.cmi
1183
lib/ocaml/marshal.cmi
764
lib/ocaml/marshal.cmt
1184
lib/ocaml/marshal.cmt
765
lib/ocaml/marshal.cmti
1185
lib/ocaml/marshal.cmti
Lines 767-772 Link Here
767
lib/ocaml/marshal.ml
1187
lib/ocaml/marshal.ml
768
lib/ocaml/marshal.mli
1188
lib/ocaml/marshal.mli
769
lib/ocaml/marshal.p.cmt
1189
lib/ocaml/marshal.p.cmt
1190
lib/ocaml/marshal.p.cmx
770
lib/ocaml/moreLabels.cmi
1191
lib/ocaml/moreLabels.cmi
771
lib/ocaml/moreLabels.cmt
1192
lib/ocaml/moreLabels.cmt
772
lib/ocaml/moreLabels.cmti
1193
lib/ocaml/moreLabels.cmti
Lines 774-781 Link Here
774
lib/ocaml/moreLabels.ml
1195
lib/ocaml/moreLabels.ml
775
lib/ocaml/moreLabels.mli
1196
lib/ocaml/moreLabels.mli
776
lib/ocaml/moreLabels.p.cmt
1197
lib/ocaml/moreLabels.p.cmt
1198
lib/ocaml/moreLabels.p.cmx
1199
%%THREADS%%lib/ocaml/mutex.mli
777
lib/ocaml/nat.cmi
1200
lib/ocaml/nat.cmi
778
lib/ocaml/nat.cmx
1201
lib/ocaml/nat.cmx
1202
lib/ocaml/nat.mli
779
lib/ocaml/nativeint.cmi
1203
lib/ocaml/nativeint.cmi
780
lib/ocaml/nativeint.cmt
1204
lib/ocaml/nativeint.cmt
781
lib/ocaml/nativeint.cmti
1205
lib/ocaml/nativeint.cmti
Lines 783-789 Link Here
783
lib/ocaml/nativeint.ml
1207
lib/ocaml/nativeint.ml
784
lib/ocaml/nativeint.mli
1208
lib/ocaml/nativeint.mli
785
lib/ocaml/nativeint.p.cmt
1209
lib/ocaml/nativeint.p.cmt
786
lib/ocaml/nat.mli
1210
lib/ocaml/nativeint.p.cmx
787
lib/ocaml/num.cmi
1211
lib/ocaml/num.cmi
788
lib/ocaml/num.cmx
1212
lib/ocaml/num.cmx
789
lib/ocaml/num.mli
1213
lib/ocaml/num.mli
Lines 795-874 Link Here
795
lib/ocaml/obj.cmt
1219
lib/ocaml/obj.cmt
796
lib/ocaml/obj.cmti
1220
lib/ocaml/obj.cmti
797
lib/ocaml/obj.cmx
1221
lib/ocaml/obj.cmx
798
lib/ocaml/objinfo_helper
799
lib/ocaml/obj.ml
1222
lib/ocaml/obj.ml
800
lib/ocaml/obj.mli
1223
lib/ocaml/obj.mli
801
lib/ocaml/obj.p.cmt
1224
lib/ocaml/obj.p.cmt
802
lib/ocaml/ocamlbuild/ocamlbuild.cmo
1225
lib/ocaml/obj.p.cmx
803
lib/ocaml/ocamlbuild/ocamlbuild.cmx
1226
lib/ocaml/objinfo_helper
804
lib/ocaml/ocamlbuild/ocamlbuild_executor.cmi
1227
@dir lib/ocaml/ocamldoc/custom
805
lib/ocaml/ocamlbuild/ocamlbuild_executor.cmx
806
lib/ocaml/ocamlbuild/ocamlbuild_executor.o
807
lib/ocaml/ocamlbuild/ocamlbuildlib.a
808
lib/ocaml/ocamlbuild/ocamlbuildlib.cma
809
lib/ocaml/ocamlbuild/ocamlbuildlib.cmxa
810
lib/ocaml/ocamlbuild/ocamlbuild.o
811
lib/ocaml/ocamlbuild/ocamlbuild_pack.cmi
812
lib/ocaml/ocamlbuild/ocamlbuild_pack.cmx
813
lib/ocaml/ocamlbuild/ocamlbuild_plugin.cmi
814
lib/ocaml/ocamlbuild/ocamlbuild_plugin.cmx
815
lib/ocaml/ocamlbuild/ocamlbuild_plugin.o
816
lib/ocaml/ocamlbuild/ocamlbuild_unix_plugin.cmi
817
lib/ocaml/ocamlbuild/ocamlbuild_unix_plugin.cmx
818
lib/ocaml/ocamlbuild/ocamlbuild_unix_plugin.o
819
lib/ocaml/ocamldoc/ocamldoc.hva
1228
lib/ocaml/ocamldoc/ocamldoc.hva
1229
lib/ocaml/ocamldoc/odoc.cmi
1230
lib/ocaml/ocamldoc/odoc.cmx
820
lib/ocaml/ocamldoc/odoc_analyse.cmi
1231
lib/ocaml/ocamldoc/odoc_analyse.cmi
1232
lib/ocaml/ocamldoc/odoc_analyse.cmx
821
lib/ocaml/ocamldoc/odoc_args.cmi
1233
lib/ocaml/ocamldoc/odoc_args.cmi
1234
lib/ocaml/ocamldoc/odoc_args.cmx
822
lib/ocaml/ocamldoc/odoc_ast.cmi
1235
lib/ocaml/ocamldoc/odoc_ast.cmi
1236
lib/ocaml/ocamldoc/odoc_ast.cmx
823
lib/ocaml/ocamldoc/odoc_class.cmi
1237
lib/ocaml/ocamldoc/odoc_class.cmi
824
lib/ocaml/ocamldoc/odoc.cmi
1238
lib/ocaml/ocamldoc/odoc_class.cmx
825
lib/ocaml/ocamldoc/odoc_comments.cmi
1239
lib/ocaml/ocamldoc/odoc_comments.cmi
1240
lib/ocaml/ocamldoc/odoc_comments.cmx
826
lib/ocaml/ocamldoc/odoc_comments_global.cmi
1241
lib/ocaml/ocamldoc/odoc_comments_global.cmi
1242
lib/ocaml/ocamldoc/odoc_comments_global.cmx
827
lib/ocaml/ocamldoc/odoc_config.cmi
1243
lib/ocaml/ocamldoc/odoc_config.cmi
1244
lib/ocaml/ocamldoc/odoc_config.cmx
828
lib/ocaml/ocamldoc/odoc_control.cmi
1245
lib/ocaml/ocamldoc/odoc_control.cmi
1246
lib/ocaml/ocamldoc/odoc_control.cmx
829
lib/ocaml/ocamldoc/odoc_cross.cmi
1247
lib/ocaml/ocamldoc/odoc_cross.cmi
1248
lib/ocaml/ocamldoc/odoc_cross.cmx
830
lib/ocaml/ocamldoc/odoc_dag2html.cmi
1249
lib/ocaml/ocamldoc/odoc_dag2html.cmi
1250
lib/ocaml/ocamldoc/odoc_dag2html.cmx
831
lib/ocaml/ocamldoc/odoc_dep.cmi
1251
lib/ocaml/ocamldoc/odoc_dep.cmi
1252
lib/ocaml/ocamldoc/odoc_dep.cmx
832
lib/ocaml/ocamldoc/odoc_dot.cmi
1253
lib/ocaml/ocamldoc/odoc_dot.cmi
1254
lib/ocaml/ocamldoc/odoc_dot.cmx
833
lib/ocaml/ocamldoc/odoc_env.cmi
1255
lib/ocaml/ocamldoc/odoc_env.cmi
1256
lib/ocaml/ocamldoc/odoc_env.cmx
834
lib/ocaml/ocamldoc/odoc_exception.cmi
1257
lib/ocaml/ocamldoc/odoc_exception.cmi
1258
lib/ocaml/ocamldoc/odoc_exception.cmx
835
lib/ocaml/ocamldoc/odoc_extension.cmi
1259
lib/ocaml/ocamldoc/odoc_extension.cmi
1260
lib/ocaml/ocamldoc/odoc_extension.cmx
836
lib/ocaml/ocamldoc/odoc_gen.cmi
1261
lib/ocaml/ocamldoc/odoc_gen.cmi
1262
lib/ocaml/ocamldoc/odoc_gen.cmx
837
lib/ocaml/ocamldoc/odoc_global.cmi
1263
lib/ocaml/ocamldoc/odoc_global.cmi
1264
lib/ocaml/ocamldoc/odoc_global.cmx
838
lib/ocaml/ocamldoc/odoc_html.cmi
1265
lib/ocaml/ocamldoc/odoc_html.cmi
1266
lib/ocaml/ocamldoc/odoc_html.cmx
839
lib/ocaml/ocamldoc/odoc_info.a
1267
lib/ocaml/ocamldoc/odoc_info.a
840
lib/ocaml/ocamldoc/odoc_info.cma
1268
lib/ocaml/ocamldoc/odoc_info.cma
841
lib/ocaml/ocamldoc/odoc_info.cmi
1269
lib/ocaml/ocamldoc/odoc_info.cmi
1270
lib/ocaml/ocamldoc/odoc_info.cmx
842
lib/ocaml/ocamldoc/odoc_info.cmxa
1271
lib/ocaml/ocamldoc/odoc_info.cmxa
843
lib/ocaml/ocamldoc/odoc_info.mli
1272
lib/ocaml/ocamldoc/odoc_info.mli
844
lib/ocaml/ocamldoc/odoc_inherit.cmi
1273
lib/ocaml/ocamldoc/odoc_inherit.cmi
1274
lib/ocaml/ocamldoc/odoc_inherit.cmx
845
lib/ocaml/ocamldoc/odoc_latex.cmi
1275
lib/ocaml/ocamldoc/odoc_latex.cmi
1276
lib/ocaml/ocamldoc/odoc_latex.cmx
846
lib/ocaml/ocamldoc/odoc_latex_style.cmi
1277
lib/ocaml/ocamldoc/odoc_latex_style.cmi
1278
lib/ocaml/ocamldoc/odoc_latex_style.cmx
847
lib/ocaml/ocamldoc/odoc_lexer.cmi
1279
lib/ocaml/ocamldoc/odoc_lexer.cmi
1280
lib/ocaml/ocamldoc/odoc_lexer.cmx
848
lib/ocaml/ocamldoc/odoc_man.cmi
1281
lib/ocaml/ocamldoc/odoc_man.cmi
1282
lib/ocaml/ocamldoc/odoc_man.cmx
849
lib/ocaml/ocamldoc/odoc_merge.cmi
1283
lib/ocaml/ocamldoc/odoc_merge.cmi
1284
lib/ocaml/ocamldoc/odoc_merge.cmx
850
lib/ocaml/ocamldoc/odoc_messages.cmi
1285
lib/ocaml/ocamldoc/odoc_messages.cmi
1286
lib/ocaml/ocamldoc/odoc_messages.cmx
851
lib/ocaml/ocamldoc/odoc_misc.cmi
1287
lib/ocaml/ocamldoc/odoc_misc.cmi
1288
lib/ocaml/ocamldoc/odoc_misc.cmx
852
lib/ocaml/ocamldoc/odoc_module.cmi
1289
lib/ocaml/ocamldoc/odoc_module.cmi
1290
lib/ocaml/ocamldoc/odoc_module.cmx
853
lib/ocaml/ocamldoc/odoc_name.cmi
1291
lib/ocaml/ocamldoc/odoc_name.cmi
1292
lib/ocaml/ocamldoc/odoc_name.cmx
854
lib/ocaml/ocamldoc/odoc_ocamlhtml.cmi
1293
lib/ocaml/ocamldoc/odoc_ocamlhtml.cmi
1294
lib/ocaml/ocamldoc/odoc_ocamlhtml.cmx
855
lib/ocaml/ocamldoc/odoc_parameter.cmi
1295
lib/ocaml/ocamldoc/odoc_parameter.cmi
1296
lib/ocaml/ocamldoc/odoc_parameter.cmx
856
lib/ocaml/ocamldoc/odoc_parser.cmi
1297
lib/ocaml/ocamldoc/odoc_parser.cmi
1298
lib/ocaml/ocamldoc/odoc_parser.cmx
857
lib/ocaml/ocamldoc/odoc_print.cmi
1299
lib/ocaml/ocamldoc/odoc_print.cmi
1300
lib/ocaml/ocamldoc/odoc_print.cmx
858
lib/ocaml/ocamldoc/odoc_scan.cmi
1301
lib/ocaml/ocamldoc/odoc_scan.cmi
1302
lib/ocaml/ocamldoc/odoc_scan.cmx
859
lib/ocaml/ocamldoc/odoc_search.cmi
1303
lib/ocaml/ocamldoc/odoc_search.cmi
1304
lib/ocaml/ocamldoc/odoc_search.cmx
860
lib/ocaml/ocamldoc/odoc_see_lexer.cmi
1305
lib/ocaml/ocamldoc/odoc_see_lexer.cmi
1306
lib/ocaml/ocamldoc/odoc_see_lexer.cmx
861
lib/ocaml/ocamldoc/odoc_sig.cmi
1307
lib/ocaml/ocamldoc/odoc_sig.cmi
1308
lib/ocaml/ocamldoc/odoc_sig.cmx
862
lib/ocaml/ocamldoc/odoc_str.cmi
1309
lib/ocaml/ocamldoc/odoc_str.cmi
1310
lib/ocaml/ocamldoc/odoc_str.cmx
863
lib/ocaml/ocamldoc/odoc_test.cmi
1311
lib/ocaml/ocamldoc/odoc_test.cmi
864
lib/ocaml/ocamldoc/odoc_texi.cmi
1312
lib/ocaml/ocamldoc/odoc_texi.cmi
1313
lib/ocaml/ocamldoc/odoc_texi.cmx
865
lib/ocaml/ocamldoc/odoc_text.cmi
1314
lib/ocaml/ocamldoc/odoc_text.cmi
1315
lib/ocaml/ocamldoc/odoc_text.cmx
866
lib/ocaml/ocamldoc/odoc_text_lexer.cmi
1316
lib/ocaml/ocamldoc/odoc_text_lexer.cmi
1317
lib/ocaml/ocamldoc/odoc_text_lexer.cmx
867
lib/ocaml/ocamldoc/odoc_text_parser.cmi
1318
lib/ocaml/ocamldoc/odoc_text_parser.cmi
1319
lib/ocaml/ocamldoc/odoc_text_parser.cmx
868
lib/ocaml/ocamldoc/odoc_to_text.cmi
1320
lib/ocaml/ocamldoc/odoc_to_text.cmi
1321
lib/ocaml/ocamldoc/odoc_to_text.cmx
869
lib/ocaml/ocamldoc/odoc_type.cmi
1322
lib/ocaml/ocamldoc/odoc_type.cmi
1323
lib/ocaml/ocamldoc/odoc_type.cmx
870
lib/ocaml/ocamldoc/odoc_types.cmi
1324
lib/ocaml/ocamldoc/odoc_types.cmi
1325
lib/ocaml/ocamldoc/odoc_types.cmx
871
lib/ocaml/ocamldoc/odoc_value.cmi
1326
lib/ocaml/ocamldoc/odoc_value.cmi
1327
lib/ocaml/ocamldoc/odoc_value.cmx
872
lib/ocaml/oo.cmi
1328
lib/ocaml/oo.cmi
873
lib/ocaml/oo.cmt
1329
lib/ocaml/oo.cmt
874
lib/ocaml/oo.cmti
1330
lib/ocaml/oo.cmti
Lines 876-881 Link Here
876
lib/ocaml/oo.ml
1332
lib/ocaml/oo.ml
877
lib/ocaml/oo.mli
1333
lib/ocaml/oo.mli
878
lib/ocaml/oo.p.cmt
1334
lib/ocaml/oo.p.cmt
1335
lib/ocaml/oo.p.cmx
879
lib/ocaml/parsing.cmi
1336
lib/ocaml/parsing.cmi
880
lib/ocaml/parsing.cmt
1337
lib/ocaml/parsing.cmt
881
lib/ocaml/parsing.cmti
1338
lib/ocaml/parsing.cmti
Lines 883-888 Link Here
883
lib/ocaml/parsing.ml
1340
lib/ocaml/parsing.ml
884
lib/ocaml/parsing.mli
1341
lib/ocaml/parsing.mli
885
lib/ocaml/parsing.p.cmt
1342
lib/ocaml/parsing.p.cmt
1343
lib/ocaml/parsing.p.cmx
886
lib/ocaml/pervasives.cmi
1344
lib/ocaml/pervasives.cmi
887
lib/ocaml/pervasives.cmt
1345
lib/ocaml/pervasives.cmt
888
lib/ocaml/pervasives.cmti
1346
lib/ocaml/pervasives.cmti
Lines 890-895 Link Here
890
lib/ocaml/pervasives.ml
1348
lib/ocaml/pervasives.ml
891
lib/ocaml/pervasives.mli
1349
lib/ocaml/pervasives.mli
892
lib/ocaml/pervasives.p.cmt
1350
lib/ocaml/pervasives.p.cmt
1351
lib/ocaml/pervasives.p.cmx
893
lib/ocaml/printexc.cmi
1352
lib/ocaml/printexc.cmi
894
lib/ocaml/printexc.cmt
1353
lib/ocaml/printexc.cmt
895
lib/ocaml/printexc.cmti
1354
lib/ocaml/printexc.cmti
Lines 897-902 Link Here
897
lib/ocaml/printexc.ml
1356
lib/ocaml/printexc.ml
898
lib/ocaml/printexc.mli
1357
lib/ocaml/printexc.mli
899
lib/ocaml/printexc.p.cmt
1358
lib/ocaml/printexc.p.cmt
1359
lib/ocaml/printexc.p.cmx
900
lib/ocaml/printf.cmi
1360
lib/ocaml/printf.cmi
901
lib/ocaml/printf.cmt
1361
lib/ocaml/printf.cmt
902
lib/ocaml/printf.cmti
1362
lib/ocaml/printf.cmti
Lines 904-909 Link Here
904
lib/ocaml/printf.ml
1364
lib/ocaml/printf.ml
905
lib/ocaml/printf.mli
1365
lib/ocaml/printf.mli
906
lib/ocaml/printf.p.cmt
1366
lib/ocaml/printf.p.cmt
1367
lib/ocaml/printf.p.cmx
907
lib/ocaml/profiling.cmi
1368
lib/ocaml/profiling.cmi
908
lib/ocaml/profiling.cmo
1369
lib/ocaml/profiling.cmo
909
lib/ocaml/profiling.cmx
1370
lib/ocaml/profiling.cmx
Lines 915-920 Link Here
915
lib/ocaml/queue.ml
1376
lib/ocaml/queue.ml
916
lib/ocaml/queue.mli
1377
lib/ocaml/queue.mli
917
lib/ocaml/queue.p.cmt
1378
lib/ocaml/queue.p.cmt
1379
lib/ocaml/queue.p.cmx
918
lib/ocaml/random.cmi
1380
lib/ocaml/random.cmi
919
lib/ocaml/random.cmt
1381
lib/ocaml/random.cmt
920
lib/ocaml/random.cmti
1382
lib/ocaml/random.cmti
Lines 922-930 Link Here
922
lib/ocaml/random.ml
1384
lib/ocaml/random.ml
923
lib/ocaml/random.mli
1385
lib/ocaml/random.mli
924
lib/ocaml/random.p.cmt
1386
lib/ocaml/random.p.cmt
1387
lib/ocaml/random.p.cmx
925
lib/ocaml/ratio.cmi
1388
lib/ocaml/ratio.cmi
926
lib/ocaml/ratio.cmx
1389
lib/ocaml/ratio.cmx
927
lib/ocaml/ratio.mli
1390
lib/ocaml/ratio.mli
1391
%%N64%%lib/ocaml/raw_spacetime_lib.a
1392
%%N64%%lib/ocaml/raw_spacetime_lib.cma
1393
%%N64%%lib/ocaml/raw_spacetime_lib.cmi
1394
%%N64%%lib/ocaml/raw_spacetime_lib.cmx
1395
%%N64%%lib/ocaml/raw_spacetime_lib.cmxa
1396
%%N64%%lib/ocaml/raw_spacetime_lib.cmxs
1397
%%N64%%lib/ocaml/raw_spacetime_lib.mli
928
lib/ocaml/scanf.cmi
1398
lib/ocaml/scanf.cmi
929
lib/ocaml/scanf.cmt
1399
lib/ocaml/scanf.cmt
930
lib/ocaml/scanf.cmti
1400
lib/ocaml/scanf.cmti
Lines 932-937 Link Here
932
lib/ocaml/scanf.ml
1402
lib/ocaml/scanf.ml
933
lib/ocaml/scanf.mli
1403
lib/ocaml/scanf.mli
934
lib/ocaml/scanf.p.cmt
1404
lib/ocaml/scanf.p.cmt
1405
lib/ocaml/scanf.p.cmx
935
lib/ocaml/set.cmi
1406
lib/ocaml/set.cmi
936
lib/ocaml/set.cmt
1407
lib/ocaml/set.cmt
937
lib/ocaml/set.cmti
1408
lib/ocaml/set.cmti
Lines 939-944 Link Here
939
lib/ocaml/set.ml
1410
lib/ocaml/set.ml
940
lib/ocaml/set.mli
1411
lib/ocaml/set.mli
941
lib/ocaml/set.p.cmt
1412
lib/ocaml/set.p.cmt
1413
lib/ocaml/set.p.cmx
942
lib/ocaml/sort.cmi
1414
lib/ocaml/sort.cmi
943
lib/ocaml/sort.cmt
1415
lib/ocaml/sort.cmt
944
lib/ocaml/sort.cmti
1416
lib/ocaml/sort.cmti
Lines 946-951 Link Here
946
lib/ocaml/sort.ml
1418
lib/ocaml/sort.ml
947
lib/ocaml/sort.mli
1419
lib/ocaml/sort.mli
948
lib/ocaml/sort.p.cmt
1420
lib/ocaml/sort.p.cmt
1421
lib/ocaml/sort.p.cmx
1422
lib/ocaml/spacetime.cmi
1423
lib/ocaml/spacetime.cmt
1424
lib/ocaml/spacetime.cmti
1425
lib/ocaml/spacetime.cmx
1426
lib/ocaml/spacetime.ml
1427
lib/ocaml/spacetime.mli
1428
lib/ocaml/spacetime.p.cmt
1429
lib/ocaml/spacetime.p.cmx
949
lib/ocaml/stack.cmi
1430
lib/ocaml/stack.cmi
950
lib/ocaml/stack.cmt
1431
lib/ocaml/stack.cmt
951
lib/ocaml/stack.cmti
1432
lib/ocaml/stack.cmti
Lines 953-958 Link Here
953
lib/ocaml/stack.ml
1434
lib/ocaml/stack.ml
954
lib/ocaml/stack.mli
1435
lib/ocaml/stack.mli
955
lib/ocaml/stack.p.cmt
1436
lib/ocaml/stack.p.cmt
1437
lib/ocaml/stack.p.cmx
956
lib/ocaml/stdLabels.cmi
1438
lib/ocaml/stdLabels.cmi
957
lib/ocaml/stdLabels.cmt
1439
lib/ocaml/stdLabels.cmt
958
lib/ocaml/stdLabels.cmti
1440
lib/ocaml/stdLabels.cmti
Lines 960-965 Link Here
960
lib/ocaml/stdLabels.ml
1442
lib/ocaml/stdLabels.ml
961
lib/ocaml/stdLabels.mli
1443
lib/ocaml/stdLabels.mli
962
lib/ocaml/stdLabels.p.cmt
1444
lib/ocaml/stdLabels.p.cmt
1445
lib/ocaml/stdLabels.p.cmx
963
lib/ocaml/std_exit.cmi
1446
lib/ocaml/std_exit.cmi
964
lib/ocaml/std_exit.cmo
1447
lib/ocaml/std_exit.cmo
965
lib/ocaml/std_exit.cmt
1448
lib/ocaml/std_exit.cmt
Lines 967-975 Link Here
967
lib/ocaml/std_exit.ml
1450
lib/ocaml/std_exit.ml
968
lib/ocaml/std_exit.o
1451
lib/ocaml/std_exit.o
969
lib/ocaml/std_exit.p.cmt
1452
lib/ocaml/std_exit.p.cmt
1453
lib/ocaml/std_exit.p.cmx
1454
lib/ocaml/std_exit.p.o
970
lib/ocaml/stdlib.a
1455
lib/ocaml/stdlib.a
971
lib/ocaml/stdlib.cma
1456
lib/ocaml/stdlib.cma
972
lib/ocaml/stdlib.cmxa
1457
lib/ocaml/stdlib.cmxa
1458
lib/ocaml/stdlib.p.a
1459
lib/ocaml/stdlib.p.cmxa
973
lib/ocaml/str.a
1460
lib/ocaml/str.a
974
lib/ocaml/str.cma
1461
lib/ocaml/str.cma
975
lib/ocaml/str.cmi
1462
lib/ocaml/str.cmi
Lines 976-981 Link Here
976
lib/ocaml/str.cmx
1463
lib/ocaml/str.cmx
977
lib/ocaml/str.cmxa
1464
lib/ocaml/str.cmxa
978
lib/ocaml/str.cmxs
1465
lib/ocaml/str.cmxs
1466
lib/ocaml/str.mli
979
lib/ocaml/stream.cmi
1467
lib/ocaml/stream.cmi
980
lib/ocaml/stream.cmt
1468
lib/ocaml/stream.cmt
981
lib/ocaml/stream.cmti
1469
lib/ocaml/stream.cmti
Lines 983-988 Link Here
983
lib/ocaml/stream.ml
1471
lib/ocaml/stream.ml
984
lib/ocaml/stream.mli
1472
lib/ocaml/stream.mli
985
lib/ocaml/stream.p.cmt
1473
lib/ocaml/stream.p.cmt
1474
lib/ocaml/stream.p.cmx
1475
lib/ocaml/string.cmi
1476
lib/ocaml/string.cmt
1477
lib/ocaml/string.cmti
1478
lib/ocaml/string.cmx
1479
lib/ocaml/string.ml
1480
lib/ocaml/string.mli
1481
lib/ocaml/string.p.cmt
1482
lib/ocaml/string.p.cmx
986
lib/ocaml/stringLabels.cmi
1483
lib/ocaml/stringLabels.cmi
987
lib/ocaml/stringLabels.cmt
1484
lib/ocaml/stringLabels.cmt
988
lib/ocaml/stringLabels.cmti
1485
lib/ocaml/stringLabels.cmti
Lines 990-1006 Link Here
990
lib/ocaml/stringLabels.ml
1487
lib/ocaml/stringLabels.ml
991
lib/ocaml/stringLabels.mli
1488
lib/ocaml/stringLabels.mli
992
lib/ocaml/stringLabels.p.cmt
1489
lib/ocaml/stringLabels.p.cmt
993
lib/ocaml/string.cmi
1490
lib/ocaml/stringLabels.p.cmx
994
lib/ocaml/string.cmt
995
lib/ocaml/string.cmti
996
lib/ocaml/string.cmx
997
lib/ocaml/string.ml
998
lib/ocaml/string.mli
999
lib/ocaml/string.p.cmt
1000
lib/ocaml/str.mli
1001
lib/ocaml/stublibs/dllbigarray.so
1491
lib/ocaml/stublibs/dllbigarray.so
1002
lib/ocaml/stublibs/dllcamlstr.so
1492
lib/ocaml/stublibs/dllcamlstr.so
1493
%%X11%%lib/ocaml/stublibs/dllgraphics.so
1003
lib/ocaml/stublibs/dllnums.so
1494
lib/ocaml/stublibs/dllnums.so
1495
%%THREADS%%lib/ocaml/stublibs/dllthreads.so
1004
lib/ocaml/stublibs/dllunix.so
1496
lib/ocaml/stublibs/dllunix.so
1005
lib/ocaml/stublibs/dllvmthreads.so
1497
lib/ocaml/stublibs/dllvmthreads.so
1006
lib/ocaml/sys.cmi
1498
lib/ocaml/sys.cmi
Lines 1010-1019 Link Here
1010
lib/ocaml/sys.ml
1502
lib/ocaml/sys.ml
1011
lib/ocaml/sys.mli
1503
lib/ocaml/sys.mli
1012
lib/ocaml/sys.p.cmt
1504
lib/ocaml/sys.p.cmt
1505
lib/ocaml/sys.p.cmx
1506
%%THREADS%%lib/ocaml/thread.mli
1507
%%THREADS%%lib/ocaml/threadUnix.mli
1508
%%THREADS%%lib/ocaml/threads/condition.cmi
1509
%%THREADS%%lib/ocaml/threads/condition.cmx
1510
%%THREADS%%lib/ocaml/threads/event.cmi
1511
%%THREADS%%lib/ocaml/threads/event.cmx
1512
%%THREADS%%lib/ocaml/threads/mutex.cmi
1513
%%THREADS%%lib/ocaml/threads/mutex.cmx
1514
%%THREADS%%lib/ocaml/threads/thread.cmi
1515
%%THREADS%%lib/ocaml/threads/thread.cmx
1516
%%THREADS%%lib/ocaml/threads/threadUnix.cmi
1517
%%THREADS%%lib/ocaml/threads/threadUnix.cmx
1518
%%THREADS%%lib/ocaml/threads/threads.a
1519
%%THREADS%%lib/ocaml/threads/threads.cma
1520
%%THREADS%%lib/ocaml/threads/threads.cmxa
1013
lib/ocaml/topdirs.cmi
1521
lib/ocaml/topdirs.cmi
1014
lib/ocaml/unixLabels.cmi
1522
lib/ocaml/uchar.cmi
1015
lib/ocaml/unixLabels.cmx
1523
lib/ocaml/uchar.cmt
1016
lib/ocaml/unixLabels.mli
1524
lib/ocaml/uchar.cmti
1525
lib/ocaml/uchar.cmx
1526
lib/ocaml/uchar.ml
1527
lib/ocaml/uchar.mli
1528
lib/ocaml/uchar.p.cmt
1529
lib/ocaml/uchar.p.cmx
1017
lib/ocaml/unix.a
1530
lib/ocaml/unix.a
1018
lib/ocaml/unix.cma
1531
lib/ocaml/unix.cma
1019
lib/ocaml/unix.cmi
1532
lib/ocaml/unix.cmi
Lines 1021-1026 Link Here
1021
lib/ocaml/unix.cmxa
1534
lib/ocaml/unix.cmxa
1022
lib/ocaml/unix.cmxs
1535
lib/ocaml/unix.cmxs
1023
lib/ocaml/unix.mli
1536
lib/ocaml/unix.mli
1537
lib/ocaml/unixLabels.cmi
1538
lib/ocaml/unixLabels.cmx
1539
lib/ocaml/unixLabels.mli
1024
lib/ocaml/vmthreads/condition.cmi
1540
lib/ocaml/vmthreads/condition.cmi
1025
lib/ocaml/vmthreads/condition.mli
1541
lib/ocaml/vmthreads/condition.mli
1026
lib/ocaml/vmthreads/event.cmi
1542
lib/ocaml/vmthreads/event.cmi
Lines 1029-1038 Link Here
1029
lib/ocaml/vmthreads/mutex.cmi
1545
lib/ocaml/vmthreads/mutex.cmi
1030
lib/ocaml/vmthreads/mutex.mli
1546
lib/ocaml/vmthreads/mutex.mli
1031
lib/ocaml/vmthreads/stdlib.cma
1547
lib/ocaml/vmthreads/stdlib.cma
1548
lib/ocaml/vmthreads/thread.cmi
1549
lib/ocaml/vmthreads/thread.mli
1032
lib/ocaml/vmthreads/threadUnix.cmi
1550
lib/ocaml/vmthreads/threadUnix.cmi
1033
lib/ocaml/vmthreads/threadUnix.mli
1551
lib/ocaml/vmthreads/threadUnix.mli
1034
lib/ocaml/vmthreads/thread.cmi
1035
lib/ocaml/vmthreads/thread.mli
1036
lib/ocaml/vmthreads/threads.cma
1552
lib/ocaml/vmthreads/threads.cma
1037
lib/ocaml/vmthreads/unix.cma
1553
lib/ocaml/vmthreads/unix.cma
1038
lib/ocaml/weak.cmi
1554
lib/ocaml/weak.cmi
Lines 1042-1050 Link Here
1042
lib/ocaml/weak.ml
1558
lib/ocaml/weak.ml
1043
lib/ocaml/weak.mli
1559
lib/ocaml/weak.mli
1044
lib/ocaml/weak.p.cmt
1560
lib/ocaml/weak.p.cmt
1045
@(,,0555) lib/ocaml/expunge
1561
lib/ocaml/weak.p.cmx
1046
@(,,0555) lib/ocaml/extract_crc
1047
@dir lib/ocaml/ocamldoc/custom
1048
man/man1/ocaml.1.gz
1562
man/man1/ocaml.1.gz
1049
man/man1/ocamlc.1.gz
1563
man/man1/ocamlc.1.gz
1050
man/man1/ocamlc.opt.1.gz
1564
man/man1/ocamlc.opt.1.gz
Lines 1067-1072 Link Here
1067
man/man3/Ast_helper.Cf.3o.gz
1581
man/man3/Ast_helper.Cf.3o.gz
1068
man/man3/Ast_helper.Ci.3o.gz
1582
man/man3/Ast_helper.Ci.3o.gz
1069
man/man3/Ast_helper.Cl.3o.gz
1583
man/man3/Ast_helper.Cl.3o.gz
1584
man/man3/Ast_helper.Const.3o.gz
1070
man/man3/Ast_helper.Csig.3o.gz
1585
man/man3/Ast_helper.Csig.3o.gz
1071
man/man3/Ast_helper.Cstr.3o.gz
1586
man/man3/Ast_helper.Cstr.3o.gz
1072
man/man3/Ast_helper.Ctf.3o.gz
1587
man/man3/Ast_helper.Ctf.3o.gz
Lines 1087-1094 Link Here
1087
man/man3/Ast_helper.Type.3o.gz
1602
man/man3/Ast_helper.Type.3o.gz
1088
man/man3/Ast_helper.Val.3o.gz
1603
man/man3/Ast_helper.Val.3o.gz
1089
man/man3/Ast_helper.Vb.3o.gz
1604
man/man3/Ast_helper.Vb.3o.gz
1605
man/man3/Ast_invariants.3o.gz
1606
man/man3/Ast_iterator.3o.gz
1090
man/man3/Ast_mapper.3o.gz
1607
man/man3/Ast_mapper.3o.gz
1091
man/man3/Asttypes.3o.gz
1608
man/man3/Asttypes.3o.gz
1609
man/man3/Attr_helper.3o.gz
1092
man/man3/Bigarray.3o.gz
1610
man/man3/Bigarray.3o.gz
1093
man/man3/Bigarray.Array1.3o.gz
1611
man/man3/Bigarray.Array1.3o.gz
1094
man/man3/Bigarray.Array2.3o.gz
1612
man/man3/Bigarray.Array2.3o.gz
Lines 1095-1100 Link Here
1095
man/man3/Bigarray.Array3.3o.gz
1613
man/man3/Bigarray.Array3.3o.gz
1096
man/man3/Bigarray.Genarray.3o.gz
1614
man/man3/Bigarray.Genarray.3o.gz
1097
man/man3/Buffer.3o.gz
1615
man/man3/Buffer.3o.gz
1616
man/man3/Builtin_attributes.3o.gz
1098
man/man3/Bytes.3o.gz
1617
man/man3/Bytes.3o.gz
1099
man/man3/BytesLabels.3o.gz
1618
man/man3/BytesLabels.3o.gz
1100
man/man3/Callback.3o.gz
1619
man/man3/Callback.3o.gz
Lines 1105-1112 Link Here
1105
man/man3/CamlinternalOO.3o.gz
1624
man/man3/CamlinternalOO.3o.gz
1106
man/man3/Char.3o.gz
1625
man/man3/Char.3o.gz
1107
man/man3/Complex.3o.gz
1626
man/man3/Complex.3o.gz
1627
man/man3/Depend.3o.gz
1628
man/man3/Depend.StringMap.3o.gz
1629
man/man3/Depend.StringSet.3o.gz
1108
man/man3/Digest.3o.gz
1630
man/man3/Digest.3o.gz
1109
man/man3/Docstrings.3o.gz
1631
man/man3/Docstrings.3o.gz
1632
man/man3/Ephemeron.3o.gz
1633
man/man3/Ephemeron.GenHashTable.3o.gz
1634
man/man3/Ephemeron.GenHashTable.MakeSeeded.3o.gz
1635
man/man3/Ephemeron.K1.3o.gz
1636
man/man3/Ephemeron.K1.Make.3o.gz
1637
man/man3/Ephemeron.K1.MakeSeeded.3o.gz
1638
man/man3/Ephemeron.K2.3o.gz
1639
man/man3/Ephemeron.K2.Make.3o.gz
1640
man/man3/Ephemeron.K2.MakeSeeded.3o.gz
1641
man/man3/Ephemeron.Kn.3o.gz
1642
man/man3/Ephemeron.Kn.Make.3o.gz
1643
man/man3/Ephemeron.Kn.MakeSeeded.3o.gz
1644
man/man3/Ephemeron.S.3o.gz
1645
man/man3/Ephemeron.SeededS.3o.gz
1110
man/man3/Filename.3o.gz
1646
man/man3/Filename.3o.gz
1111
man/man3/Format.3o.gz
1647
man/man3/Format.3o.gz
1112
man/man3/Gc.3o.gz
1648
man/man3/Gc.3o.gz
Lines 1151-1156 Link Here
1151
man/man3/Nativeint.3o.gz
1687
man/man3/Nativeint.3o.gz
1152
man/man3/Num.3o.gz
1688
man/man3/Num.3o.gz
1153
man/man3/Obj.3o.gz
1689
man/man3/Obj.3o.gz
1690
man/man3/Obj.Ephemeron.3o.gz
1154
man/man3/Oo.3o.gz
1691
man/man3/Oo.3o.gz
1155
man/man3/Parse.3o.gz
1692
man/man3/Parse.3o.gz
1156
man/man3/Parser.3o.gz
1693
man/man3/Parser.3o.gz
Lines 1159-1165 Link Here
1159
man/man3/Pervasives.3o.gz
1696
man/man3/Pervasives.3o.gz
1160
man/man3/Pervasives.LargeFile.3o.gz
1697
man/man3/Pervasives.LargeFile.3o.gz
1161
man/man3/Pprintast.3o.gz
1698
man/man3/Pprintast.3o.gz
1162
man/man3/Pprintast.printer.3o.gz
1163
man/man3/Printast.3o.gz
1699
man/man3/Printast.3o.gz
1164
man/man3/Printexc.3o.gz
1700
man/man3/Printexc.3o.gz
1165
man/man3/Printexc.Slot.3o.gz
1701
man/man3/Printexc.Slot.3o.gz
Lines 1174-1179 Link Here
1174
man/man3/Set.OrderedType.3o.gz
1710
man/man3/Set.OrderedType.3o.gz
1175
man/man3/Set.S.3o.gz
1711
man/man3/Set.S.3o.gz
1176
man/man3/Sort.3o.gz
1712
man/man3/Sort.3o.gz
1713
man/man3/Spacetime.3o.gz
1714
man/man3/Spacetime.Series.3o.gz
1715
man/man3/Spacetime.Snapshot.3o.gz
1177
man/man3/Stack.3o.gz
1716
man/man3/Stack.3o.gz
1178
man/man3/StdLabels.3o.gz
1717
man/man3/StdLabels.3o.gz
1179
man/man3/StdLabels.Array.3o.gz
1718
man/man3/StdLabels.Array.3o.gz
Lines 1186-1191 Link Here
1186
man/man3/StringLabels.3o.gz
1725
man/man3/StringLabels.3o.gz
1187
man/man3/Syntaxerr.3o.gz
1726
man/man3/Syntaxerr.3o.gz
1188
man/man3/Sys.3o.gz
1727
man/man3/Sys.3o.gz
1728
man/man3/Uchar.3o.gz
1189
man/man3/Unix.3o.gz
1729
man/man3/Unix.3o.gz
1190
man/man3/Unix.LargeFile.3o.gz
1730
man/man3/Unix.LargeFile.3o.gz
1191
man/man3/Weak.3o.gz
1731
man/man3/Weak.3o.gz
(-)devel/ocaml-ocamlbuild/Makefile (+30 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	ocamlbuild
4
PORTVERSION=	4.03
5
CATEGORIES=	devel
6
PKGNAMEPREFIX=	ocaml-
7
DIST_SUBDIR=	${PKGBASE}
8
9
MAINTAINER=	hrs@FreeBSD.org
10
COMMENT=	Build tool for OCaml library and programs
11
12
LICENSE=	LGPL20
13
14
USES=		gmake tar:tgz ocaml
15
USE_GITHUB=	yes
16
GH_ACCOUNT=	ocaml
17
GH_TAGNAME=	0eb62b7
18
HAS_CONFIGURE=	yes
19
MAKE_ENV=	CHECK_IF_PREINSTALLED=false
20
21
CONFLICT_INSTALL=	ocaml-4.02.[0-9]*
22
23
do-configure:
24
	cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} configure
25
26
post-install:
27
	cd ${STAGEDIR}${PREFIX} && ${STRIP_CMD} \
28
	    bin/ocamlbuild bin/ocamlbuild.native
29
30
.include <bsd.port.mk>
(-)devel/ocaml-ocamlbuild/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1484419649
2
SHA256 (ocaml-ocamlbuild/ocaml-ocamlbuild-4.03-0eb62b7_GH0.tar.gz) = 9111269325932b33912f9a96c99e7ded3f8a0f65acbe082ba8eb73f176976a53
3
SIZE (ocaml-ocamlbuild/ocaml-ocamlbuild-4.03-0eb62b7_GH0.tar.gz) = 193459
(-)devel/ocaml-ocamlbuild/pkg-descr (+4 lines)
Line 0 Link Here
1
OCamlbuild is a generic build tool, that has built-in rules for
2
building OCaml library and programs.
3
4
WWW: https://github.com/ocaml/ocamlbuild
(-)devel/ocaml-ocamlbuild/pkg-plist (+23 lines)
Line 0 Link Here
1
bin/ocamlbuild
2
bin/ocamlbuild.byte
3
bin/ocamlbuild.native
4
%%OCAML_SITELIBDIR%%/ocamlbuild/META
5
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuild.cmo
6
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuild.cmx
7
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuild.o
8
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuild_executor.cmi
9
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuild_executor.cmx
10
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuild_executor.o
11
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuild_pack.cmi
12
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuild_pack.cmx
13
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuild_plugin.cmi
14
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuild_plugin.cmx
15
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuild_plugin.o
16
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuild_unix_plugin.cmi
17
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuild_unix_plugin.cmx
18
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuild_unix_plugin.o
19
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuildlib.a
20
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuildlib.cma
21
%%OCAML_SITELIBDIR%%/ocamlbuild/ocamlbuildlib.cmxa
22
%%OCAML_SITELIBDIR%%/ocamlbuild/signatures.mli
23
man/man1/ocamlbuild.1.gz
(-)devel/ocaml-findlib/Makefile (-6 / +3 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	findlib
4
PORTNAME=	findlib
5
PORTVERSION=	1.7.1
5
PORTVERSION=	1.7.1
6
PORTREVISION=	2
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://download.camlcity.org/download/
8
MASTER_SITES=	http://download.camlcity.org/download/
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
Lines 13-22 Link Here
13
LICENSE=	MIT
14
LICENSE=	MIT
14
LICENSE_FILE=	${WRKSRC}/LICENSE
15
LICENSE_FILE=	${WRKSRC}/LICENSE
15
16
16
USES=		gmake
17
USES=		gmake ocaml
17
USE_OCAML=	yes
18
USE_OCAML=	camlp4 findlib ocamlbuild
18
USE_OCAML_CAMLP4=yes
19
USE_OCAML_FINDLIB=yes
20
OCAMLFIND_DEPEND=	# Avoid dependency loop
19
OCAMLFIND_DEPEND=	# Avoid dependency loop
21
HAS_CONFIGURE=	yes
20
HAS_CONFIGURE=	yes
22
CONFIGURE_ARGS=	-bindir "${PREFIX}/bin" -mandir "${PREFIX}/man" \
21
CONFIGURE_ARGS=	-bindir "${PREFIX}/bin" -mandir "${PREFIX}/man" \
Lines 37-44 Link Here
37
TOOLBOX_BUILD_DEPENDS=	${TOOLBOX_RUN_DEPENDS}
36
TOOLBOX_BUILD_DEPENDS=	${TOOLBOX_RUN_DEPENDS}
38
37
39
post-install:
38
post-install:
40
	${CHMOD} 755 ${STAGEDIR}${PREFIX}/bin/ocamlfind \
41
	    ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/findlib/make_wizard
42
	cd ${STAGEDIR}${PREFIX} && \
39
	cd ${STAGEDIR}${PREFIX} && \
43
	    ${STRIP_CMD} bin/ocamlfind \
40
	    ${STRIP_CMD} bin/ocamlfind \
44
	    ${OCAML_SITELIBDIR}/findlib/findlib.cmxs \
41
	    ${OCAML_SITELIBDIR}/findlib/findlib.cmxs \
(-)devel/ocaml-findlib/files/patch-Makefile (-9 lines)
Lines 18-32 Link Here
18
 	fi
18
 	fi
19
 	$(MAKE) install-doc
19
 	$(MAKE) install-doc
20
 
20
 
21
@@ -55,7 +55,7 @@ findlib.conf: findlib.conf.in
22
 	USE_CYGPATH="$(USE_CYGPATH)"; \
23
 	export USE_CYGPATH; \
24
 	cat findlib.conf.in | \
25
-		tools/patch '@SITELIB@' '$(OCAML_SITELIB)' >findlib.conf
26
+		tools/patch '@SITELIB@' '$(OCAML_SITELIB):$(OCAML_LIBDIR)' >findlib.conf
27
 	if ./tools/cmd_from_same_dir ocamlc; then \
28
 		echo 'ocamlc="ocamlc.opt"' >>findlib.conf; \
29
 	fi
30
@@ -71,9 +71,9 @@ findlib.conf: findlib.conf.in
21
@@ -71,9 +71,9 @@ findlib.conf: findlib.conf.in
31
 
22
 
32
 .PHONY: install-doc
23
 .PHONY: install-doc
(-)devel/ocaml-findlib/files/patch-configure (+28 lines)
Line 0 Link Here
1
--- configure.orig	2016-11-18 13:04:45 UTC
2
+++ configure
3
@@ -447,16 +447,6 @@ else
4
     with_toolbox=0
5
 fi
6
 
7
-# Check whether ocamlbuild is present
8
-
9
-if [ -f "${ocaml_core_stdlib}/ocamlbuild/ocamlbuildlib.cma" ]; then
10
-    lobuild=ocamlbuild
11
-    echo "ocamlbuild: found"
12
-else
13
-    lobuild=""
14
-    echo "ocamlbuild: not present"
15
-fi
16
-
17
 # Check on camlp4:
18
 
19
 if [ $with_camlp4 -eq 0 ]; then
20
@@ -539,7 +529,7 @@ fi
21
 
22
 # Generate the META files now.
23
 
24
-l="$ldbm dynlink graphics num num-top str threads unix stdlib bigarray ocamldoc $llabltk $lcamlp4 $lobuild $lcomplibs $lbytes $lspacetime"
25
+l="$ldbm dynlink graphics num num-top str threads unix stdlib bigarray ocamldoc $llabltk $lcamlp4 $lcomplibs $lbytes $lspacetime"
26
 
27
 for dir in site-lib-src/*; do
28
     # We do not really know if $dir is a directory.
(-)devel/ocaml-findlib/pkg-plist (-1 / +1 lines)
Lines 40-47 Link Here
40
%%OCAML_SITELIBDIR%%/num-top/num_top.cmi
40
%%OCAML_SITELIBDIR%%/num-top/num_top.cmi
41
%%OCAML_SITELIBDIR%%/num-top/num_top_printers.cmi
41
%%OCAML_SITELIBDIR%%/num-top/num_top_printers.cmi
42
%%OCAML_SITELIBDIR%%/num/META
42
%%OCAML_SITELIBDIR%%/num/META
43
%%OCAML_SITELIBDIR%%/ocamlbuild/META
44
%%OCAML_SITELIBDIR%%/ocamldoc/META
43
%%OCAML_SITELIBDIR%%/ocamldoc/META
44
%%OCAML_SITELIBDIR%%/raw_spacetime/META
45
%%OCAML_SITELIBDIR%%/stdlib/META
45
%%OCAML_SITELIBDIR%%/stdlib/META
46
%%OCAML_SITELIBDIR%%/str/META
46
%%OCAML_SITELIBDIR%%/str/META
47
%%OCAML_SITELIBDIR%%/threads/META
47
%%OCAML_SITELIBDIR%%/threads/META
(-)devel/ocaml-react/Makefile (-19 / +17 lines)
Lines 3-41 Link Here
3
3
4
PORTNAME=	react
4
PORTNAME=	react
5
PORTVERSION=	1.2.1
5
PORTVERSION=	1.2.1
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://erratique.ch/software/react/releases/
8
MASTER_SITES=	http://erratique.ch/software/react/releases/
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
10
10
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	OCaml module for functional reactive programming
12
COMMENT=	OCaml module for functional reactive programming
12
13
13
LICENSE=	BSD3CLAUSE
14
LICENSE=	BSD3CLAUSE
14
15
15
USES=		tar:tbz
16
USES=		ocaml tar:tbz
16
USE_OCAML=		yes
17
USE_OCAML=	findlib:plist ldconfig ocamlbuild
18
17
OPTIONS_DEFINE=	X11
19
OPTIONS_DEFINE=	X11
18
OPTIONS_DEFAULT=	X11
20
OPTIONS_DEFAULT=X11
21
X11_USE=	OCAML=x11
19
22
20
.include <bsd.port.options.mk>
21
22
.if empty(PORT_OPTIONS:MX11)
23
OCAMLC_DEPEND=		ocaml-notk>=3.11:${OCAMLC_PORT}
24
.else
25
OCAMLC_DEPEND=		ocaml>=3.11:${OCAMLC_PORT}
26
.endif
27
28
USE_OCAML_FINDLIB=	yes
29
USE_OCAMLFIND_PLIST=	yes
30
USE_OCAML_LDCONFIG=	yes
31
32
do-build:
23
do-build:
33
	cd ${WRKSRC} && ocamlbuild react.cmxs react.cma react.a
24
	cd ${WRKSRC} && ${OCAMLBUILD} react.cmxs react.cma react.a
34
25
35
do-install:
26
do-install:
36
	${MKDIR} ${STAGEDIR}${OCAMLFIND_DESTDIR}/react
27
	${MKDIR} ${STAGEDIR}${OCAMLFIND_DESTDIR}/react
37
	cd ${WRKSRC} && ocamlfind install -destdir ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib react pkg/META _build/src/react.a _build/src/react.cma _build/src/react.cmi _build/src/react.cmx _build/src/react.cmxa _build/src/react.cmxs _build/src/react.mli
28
	cd ${WRKSRC} && \
29
	    ${OCAMLFIND} install \
30
	    -destdir ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib \
31
	    react pkg/META \
32
	    _build/src/react.a _build/src/react.cma \
33
	    _build/src/react.cmi _build/src/react.cmx \
34
	    _build/src/react.cmxa _build/src/react.cmxs \
35
	    _build/src/react.mli
38
	${INSTALL_LIB} ${WRKSRC}/_build/src/react.cmxs \
36
	${INSTALL_LIB} ${WRKSRC}/_build/src/react.cmxs \
39
		${STAGEDIR}${OCAMLFIND_DESTDIR}/react
37
	    ${STAGEDIR}${OCAMLFIND_DESTDIR}/react
40
38
41
.include <bsd.port.mk>
39
.include <bsd.port.mk>
(-)security/ocaml-ssl/Makefile (-8 / +4 lines)
Lines 3-32 Link Here
3
3
4
PORTNAME=	ssl
4
PORTNAME=	ssl
5
PORTVERSION=	0.5.3
5
PORTVERSION=	0.5.3
6
PORTREVISION=	1
6
CATEGORIES=	security devel
7
CATEGORIES=	security devel
7
PKGNAMEPREFIX=	ocaml-
8
PKGNAMEPREFIX=	ocaml-
8
9
9
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	hrs@FreeBSD.org
10
COMMENT=	OpenSSL bindings for OCaml
11
COMMENT=	OpenSSL bindings for OCaml
11
12
12
LICENSE=	LGPL21+
13
LICENSE=	LGPL21+
13
LICENSE_FILE=	${WRKSRC}/COPYING
14
LICENSE_FILE=	${WRKSRC}/COPYING
14
15
16
USES=		autoreconf gmake ssl ocaml
15
USE_GITHUB=	yes
17
USE_GITHUB=	yes
16
GH_ACCOUNT=	savonet
18
GH_ACCOUNT=	savonet
17
GH_PROJECT=	ocaml-ssl
19
GH_PROJECT=	ocaml-ssl
18
20
USE_OCAML=	findlib:plist ldconfig
19
USES=		autoreconf gmake ssl
20
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
21
CONFIGURE_ARGS=	--docdir=${DOCSDIR}
22
CONFIGURE_ARGS=	--docdir=${DOCSDIR}
22
MAKE_ENV=	OCAMLFIND_INSTFLAGS="-ldconf ignore"
23
MAKE_ENV=	OCAMLFIND_INSTFLAGS="-ldconf ignore"
23
MAKE_JOBS_UNSAFE=	yes
24
MAKE_JOBS_UNSAFE=	yes
24
25
25
USE_OCAML=		yes
26
USE_OCAML_FINDLIB=	yes
27
USE_OCAML_LDCONFIG=	yes
28
USE_OCAMLFIND_PLIST=	yes
29
30
ALL_TARGET=	all doc
26
ALL_TARGET=	all doc
31
27
32
CPPFLAGS+=	-I${OPENSSLINC}
28
CPPFLAGS+=	-I${OPENSSLINC}
(-)devel/ocaml-pcre/Makefile (-4 / +3 lines)
Lines 4-10 Link Here
4
PORTNAME=	pcre
4
PORTNAME=	pcre
5
PORTVERSION=	7.2.3
5
PORTVERSION=	7.2.3
6
DISTVERSIONPREFIX=	v
6
DISTVERSIONPREFIX=	v
7
PORTREVISION=	1
7
PORTREVISION=	2
8
CATEGORIES=	devel
8
CATEGORIES=	devel
9
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
10
10
Lines 15-26 Link Here
15
15
16
LIB_DEPENDS=	libpcre.so:devel/pcre
16
LIB_DEPENDS=	libpcre.so:devel/pcre
17
17
18
USES=		ocaml
19
USE_OCAML=	findlib ldconfig ocamlbuild
18
USE_GITHUB=	yes
20
USE_GITHUB=	yes
19
GH_ACCOUNT=	mmottl
21
GH_ACCOUNT=	mmottl
20
GH_PROJECT=	${PORTNAME}-ocaml
22
GH_PROJECT=	${PORTNAME}-ocaml
21
USE_OCAML=	yes
22
USE_OCAML_FINDLIB=	yes
23
USE_OCAML_LDCONFIG=	yes
24
EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
23
EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
25
PORTEXAMPLES=	cloc count_hash pcregrep subst
24
PORTEXAMPLES=	cloc count_hash pcregrep subst
26
DOCSDIR=	${PREFIX}/share/doc/pcre-ocaml
25
DOCSDIR=	${PREFIX}/share/doc/pcre-ocaml
(-)devel/ocaml-camlp4/Makefile (-10 / +8 lines)
Lines 2-31 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	camlp4
4
PORTNAME=	camlp4
5
PORTVERSION=	4.02.1+1
5
PORTVERSION=	4.04
6
PORTREVISION=	1
6
DISTVERSIONSUFFIX=	+1
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
PKGNAMEPREFIX=	ocaml-
8
PKGNAMEPREFIX=	ocaml-
9
9
10
MAINTAINER=	michipili@gmail.com
10
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	Camlp4 is a system for writing extensible parsers for OCaml
11
COMMENT=	Camlp4 is a system for writing extensible parsers for OCaml
12
12
13
LICENSE=	LGPL20
13
LICENSE=	LGPL20
14
14
15
USES=		gmake ocaml
16
USE_OCAML=	ocamlbuild
15
USE_GITHUB=	yes
17
USE_GITHUB=	yes
16
GH_ACCOUNT=	ocaml
18
GH_ACCOUNT=	ocaml
17
18
USES=		gmake
19
USE_OCAML=	yes
20
HAS_CONFIGURE=	yes
19
HAS_CONFIGURE=	yes
21
MAKE_ENV+=	DESTDIR="${STAGEDIR}"
20
MAKE_ENV=	DESTDIR="${STAGEDIR}"
22
MAKE_JOBS_UNSAFE=yes
21
MAKE_JOBS_UNSAFE=yes
23
ALL_TARGET=	all camlp4/META
22
ALL_TARGET=	all camlp4/META
24
INSTALL_TARGET=	install install-META
23
INSTALL_TARGET=	install install-META
24
PROGS=		camlp4o camlp4of camlp4oof camlp4orf camlp4r camlp4rf
25
25
26
post-install:
26
post-install:
27
.for f in camlp4o camlp4of camlp4oof camlp4orf camlp4r camlp4rf
27
	cd ${STAGEDIR}${PREFIX}/bin && ${STRIP_CMD} ${PROGS:S/$/.opt/}
28
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${f}.opt
29
.endfor
30
28
31
.include <bsd.port.mk>
29
.include <bsd.port.mk>
(-)devel/ocaml-camlp4/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1464772487
1
TIMESTAMP = 1484416148
2
SHA256 (ocaml-camlp4-4.02.1+1_GH0.tar.gz) = 06ec2c075a3960a757ba133bba468f06622624f9a44e18e3de7d609fa06f62d2
2
SHA256 (ocaml-camlp4-4.04+1_GH0.tar.gz) = 6044f24a44053684d1260f19387e59359f59b0605cdbf7295e1de42783e48ff1
3
SIZE (ocaml-camlp4-4.02.1+1_GH0.tar.gz) = 645754
3
SIZE (ocaml-camlp4-4.04+1_GH0.tar.gz) = 648320
(-)devel/ocaml-camlp4/files/patch-Makefile (-12 / +5 lines)
Lines 1-18 Link Here
1
--- Makefile.orig	2014-10-21 11:41:15 UTC
1
--- Makefile.orig	2016-11-07 21:56:48.000000000 +0900
2
+++ Makefile
2
+++ Makefile	2017-01-15 02:50:08.583346000 +0900
3
@@ -19,12 +19,12 @@ all: byte native
3
@@ -21,7 +21,7 @@
4
 
4
 
5
 .PHONY: install
5
 .PHONY: install
6
 install:
6
 install:
7
-	./build/install.sh
7
-	env DESTDIR=$(DESTDIR) ./build/install.sh
8
+	env LIBDIR=$(LIBDIR) BINDIR=$(BINDIR) DESTDIR=$(DESTDIR) ./build/install.sh
8
+	env DESTDIR=$(DESTDIR) LIBDIR=$(LIBDIR) BINDIR=$(BINDIR) ./build/install.sh
9
 
9
 
10
 .PHONY: install-META
10
 .PHONY: install-META
11
 install-META: camlp4/META
11
 install-META: camlp4/META
12
-	mkdir -p ${PKGDIR}/camlp4/
13
-	cp -f camlp4/META ${PKGDIR}/camlp4/
14
+	mkdir -p ${DESTDIR}${PKGDIR}/camlp4/
15
+	cp -f camlp4/META ${DESTDIR}${PKGDIR}/camlp4/
16
 
17
 camlp4/META: camlp4/META.in
18
 	sed -e s/@@VERSION@@/${version}/g $? > $@
(-)devel/ocaml-camlp4/files/patch-build_install.sh (-13 lines)
Lines 1-13 Link Here
1
--- build/install.sh.orig	2014-10-21 11:41:15 UTC
2
+++ build/install.sh
3
@@ -26,8 +26,8 @@ SAVED_LIBDIR="${LIBDIR}"
4
 
5
 . ./config.sh
6
 
7
-BINDIR="${SAVED_BINDIR:-${BINDIR}}"
8
-LIBDIR="${SAVED_LIBDIR:-${LIBDIR}}"
9
+BINDIR="${DESTDIR}${SAVED_BINDIR:-${BINDIR}}"
10
+LIBDIR="${DESTDIR}${SAVED_LIBDIR:-${LIBDIR}}"
11
 
12
 not_installed=$PWD/_build/not_installed
13
 
(-)textproc/ocaml-text/Makefile (-12 / +9 lines)
Lines 3-29 Link Here
3
3
4
PORTNAME=	text
4
PORTNAME=	text
5
PORTVERSION=	0.8
5
PORTVERSION=	0.8
6
PORTREVISION=	1
6
CATEGORIES=	textproc
7
CATEGORIES=	textproc
7
PKGNAMEPREFIX=	ocaml-
8
PKGNAMEPREFIX=	ocaml-
8
9
9
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	hrs@FreeBSD.org
10
COMMENT=	OCaml library for dealing with text
11
COMMENT=	OCaml library for dealing with text
11
12
13
LICENSE=	BSD3CLAUSE
14
15
USES=		gmake ocaml
12
USE_GITHUB=	yes
16
USE_GITHUB=	yes
13
GH_ACCOUNT=	vbmithr
17
GH_ACCOUNT=	vbmithr
14
GH_PROJECT=	${PKGNAMEPREFIX}${PORTNAME}
18
GH_PROJECT=	${PKGNAMEPREFIX}${PORTNAME}
15
19
USE_OCAML=	findlib:plist ldconfig camlp4
16
USES=		gmake
17
HAS_CONFIGURE=	yes
20
HAS_CONFIGURE=	yes
18
CONFIGURE_ARGS=	--prefix ${PREFIX} \
21
CONFIGURE_ARGS=	--prefix ${PREFIX} \
19
		--destdir ${STAGEDIR}
22
		--destdir ${STAGEDIR}
20
23
21
USE_OCAML=		yes
22
USE_OCAML_FINDLIB=	yes
23
USE_OCAML_CAMLP4=	yes
24
USE_OCAML_LDCONFIG=	yes
25
USE_OCAMLFIND_PLIST=	yes
26
27
SA_DIR=		${LOCALBASE}/${OCAML_SITELIBDIR}
24
SA_DIR=		${LOCALBASE}/${OCAML_SITELIBDIR}
28
DOCSDIR=	${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
25
DOCSDIR=	${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
29
26
Lines 39-51 Link Here
39
		${WRKSRC}/setup.ml
36
		${WRKSRC}/setup.ml
40
37
41
do-configure:
38
do-configure:
42
	cd ${WRKSRC}; ocaml setup.ml -configure ${CONFIGURE_ARGS}
39
	cd ${WRKSRC} && ${OCAML_CMD} setup.ml -configure ${CONFIGURE_ARGS}
43
40
44
do-build:
41
do-build:
45
	cd ${WRKSRC}; ocaml setup.ml -build
42
	cd ${WRKSRC} && ${OCAML_CMD} setup.ml -build
46
43
47
do-install:
44
do-install:
48
	${MKDIR} ${STAGEDIR}${OCAMLFIND_DESTDIR}
45
	${MKDIR} ${STAGEDIR}${OCAMLFIND_DESTDIR}
49
	cd ${WRKSRC}; ocaml setup.ml -install
46
	cd ${WRKSRC} && ${OCAML_CMD} setup.ml -install
50
47
51
.include <bsd.port.mk>
48
.include <bsd.port.mk>
(-)devel/ocaml-lwt/Makefile (-23 / +17 lines)
Lines 3-12 Link Here
3
3
4
PORTNAME=	lwt
4
PORTNAME=	lwt
5
PORTVERSION=	2.5.2
5
PORTVERSION=	2.5.2
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
PKGNAMEPREFIX=	ocaml-
8
PKGNAMEPREFIX=	ocaml-
8
9
9
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	hrs@FreeBSD.org
10
COMMENT=	Cooperative threading library for OCaml
11
COMMENT=	Cooperative threading library for OCaml
11
12
12
LICENSE=	LGPL21
13
LICENSE=	LGPL21
Lines 16-47 Link Here
16
RUN_DEPENDS=	${SA_DIR}/react/react.a:devel/ocaml-react \
17
RUN_DEPENDS=	${SA_DIR}/react/react.a:devel/ocaml-react \
17
		${SA_DIR}/ssl/ssl.a:security/ocaml-ssl
18
		${SA_DIR}/ssl/ssl.a:security/ocaml-ssl
18
19
20
USES=		gmake ocaml
19
USE_GITHUB=	yes
21
USE_GITHUB=	yes
20
GH_ACCOUNT=	ocsigen
22
GH_ACCOUNT=	ocsigen
21
23
USE_OCAML=	findlib:plist camlp4 ldconfig
24
HAS_CONFIGURE=	yes
25
CONFIGURE_ARGS=	--destdir "${STAGEDIR}" \
26
		--prefix "${PREFIX}" \
27
		--enable-camlp4 \
28
		--enable-ssl \
29
		--enable-react \
30
		--disable-libev \
31
		--disable-glib
22
MAKE_JOBS_UNSAFE=	yes
32
MAKE_JOBS_UNSAFE=	yes
23
33
24
USES=			gmake
34
DOCSDIR=	${PREFIX}/share/doc/ocaml/${PORTNAME}
25
USE_OCAML=		yes
35
SA_DIR=		${LOCALBASE}/${OCAML_SITELIBDIR}
26
OCAMLC_DEPEND=		ocaml>=3.11:${OCAMLC_PORT}
27
USE_OCAML_FINDLIB=	yes
28
USE_OCAML_CAMLP4=	yes
29
USE_OCAMLFIND_PLIST=	yes
30
USE_OCAML_LDCONFIG=	yes
31
HAS_CONFIGURE=		yes
32
CONFIGURE_ARGS=		--destdir "${STAGEDIR}" \
33
			--prefix "${PREFIX}" \
34
			--enable-camlp4 \
35
			--enable-ssl \
36
			--enable-react \
37
			--disable-libev \
38
			--disable-glib
39
36
40
DOCSDIR=		${PREFIX}/share/doc/ocaml/${PORTNAME}
37
OPTIONS_DEFINE=	DOCS
41
SA_DIR=			${LOCALBASE}/${OCAML_SITELIBDIR}
42
38
43
OPTIONS_DEFINE=		DOCS
44
45
DOCS_CONFIGURE_ENABLE=	docs
39
DOCS_CONFIGURE_ENABLE=	docs
46
DOCS_CONFIGURE_ON=	--docdir ${STAGEDIR}${DOCSDIR}
40
DOCS_CONFIGURE_ON=	--docdir ${STAGEDIR}${DOCSDIR}
47
# For some reason, ocaml-text is needed when building documentation
41
# For some reason, ocaml-text is needed when building documentation
Lines 58-67 Link Here
58
		${WRKSRC}/setup.data
52
		${WRKSRC}/setup.data
59
53
60
do-build:
54
do-build:
61
	cd ${WRKSRC}; ocaml setup.ml -build
55
	cd ${WRKSRC} && ${OCAML_CMD} setup.ml -build
62
56
63
do-install:
57
do-install:
64
	${MKDIR} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}
58
	${MKDIR} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}
65
	cd ${WRKSRC}; ocaml setup.ml -install
59
	cd ${WRKSRC} && ${OCAML_CMD} setup.ml -install
66
60
67
.include <bsd.port.mk>
61
.include <bsd.port.mk>
(-)devel/ocaml-xstr/Makefile (-9 / +5 lines)
Lines 3-25 Link Here
3
3
4
PORTNAME=	xstr
4
PORTNAME=	xstr
5
PORTVERSION=	0.2.1
5
PORTVERSION=	0.2.1
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://download.camlcity.org/download/
8
MASTER_SITES=	http://download.camlcity.org/download/
9
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
10
10
11
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
12
COMMENT=	Thread-safe implementation of string searching/matching
12
COMMENT=	Thread-safe implementation of string searching/matching
13
13
14
LICENSE=	MIT
14
LICENSE=	MIT
15
15
16
USES=		gmake ocaml
17
USE_OCAML=	findlib:plist
18
ALL_TARGET=	all opt
16
WRKSRC=		${WRKDIR}/${PORTNAME}
19
WRKSRC=		${WRKDIR}/${PORTNAME}
17
20
18
USE_OCAML=	yes
19
USE_OCAML_FINDLIB=yes
20
USE_OCAMLFIND_PLIST=yes
21
22
USES=		gmake
23
ALL_TARGET=	all opt
24
25
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/ocaml-calendar/Makefile (-5 / +6 lines)
Lines 3-19 Link Here
3
3
4
PORTNAME=	calendar
4
PORTNAME=	calendar
5
PORTVERSION=	2.03.2
5
PORTVERSION=	2.03.2
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://forge.ocamlcore.org/frs/download.php/915/
8
MASTER_SITES=	http://forge.ocamlcore.org/frs/download.php/915/
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
10
10
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	Date and time library for OCaml
12
COMMENT=	Date and time library for OCaml
12
13
14
LICENSE=	LGPL21
15
16
USES=		gmake ocaml
13
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
14
USES=		gmake
18
USE_OCAML=	findlib:plist
15
USE_OCAML=	yes
16
USE_OCAML_FINDLIB=	yes
17
USE_OCAMLFIND_PLIST=	yes
18
19
19
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/ocaml-uutf/Makefile (-8 / +5 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	uutf
4
PORTNAME=	uutf
5
PORTVERSION=	0.9.4
5
PORTVERSION=	0.9.4
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://erratique.ch/software/uutf/releases/
8
MASTER_SITES=	http://erratique.ch/software/uutf/releases/
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
Lines 12-30 Link Here
12
13
13
LICENSE=	BSD3CLAUSE
14
LICENSE=	BSD3CLAUSE
14
15
15
USES=	tar:tbz
16
USES=	tar:tbz ocaml
16
USE_OCAML=		yes
17
USE_OCAML=	findlib:plist ldconfig
17
18
18
USE_OCAML_FINDLIB=	yes
19
USE_OCAMLFIND_PLIST=	yes
20
USE_OCAML_LDCONFIG=	yes
21
22
do-build:
19
do-build:
23
	cd ${WRKSRC} && ocamlbuild uutf.cmxs uutf.cma uutf.a
20
	cd ${WRKSRC} && ${OCAMLBUILD} uutf.cmxs uutf.cma uutf.a
24
21
25
do-install:
22
do-install:
26
	${MKDIR} ${STAGEDIR}${OCAMLFIND_DESTDIR}/uutf
23
	${MKDIR} ${STAGEDIR}${OCAMLFIND_DESTDIR}/uutf
27
	cd ${WRKSRC} && ocamlfind install -destdir ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib uutf pkg/META _build/src/uutf.a _build/src/uutf.cma _build/src/uutf.cmi _build/src/uutf.cmx _build/src/uutf.cmxa _build/src/uutf.cmxs _build/src/uutf.mli
24
	cd ${WRKSRC} && ${OCAMLFIND} install -destdir ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib uutf pkg/META _build/src/uutf.a _build/src/uutf.cma _build/src/uutf.cmi _build/src/uutf.cmx _build/src/uutf.cmxa _build/src/uutf.cmxs _build/src/uutf.mli
28
	${INSTALL_LIB} ${WRKSRC}/_build/src/uutf.cmxs \
25
	${INSTALL_LIB} ${WRKSRC}/_build/src/uutf.cmxs \
29
		${STAGEDIR}${OCAMLFIND_DESTDIR}/uutf
26
		${STAGEDIR}${OCAMLFIND_DESTDIR}/uutf
30
27
(-)devel/ocaml-cmdliner/Makefile (-9 / +13 lines)
Lines 2-29 Link Here
2
2
3
PORTNAME=	cmdliner
3
PORTNAME=	cmdliner
4
PORTVERSION=	0.9.8
4
PORTVERSION=	0.9.8
5
PORTREVISION=	1
5
CATEGORIES=	devel
6
CATEGORIES=	devel
6
MASTER_SITES=	http://erratique.ch/software/cmdliner/releases/
7
MASTER_SITES=	http://erratique.ch/software/cmdliner/releases/
7
PKGNAMEPREFIX=	ocaml-
8
PKGNAMEPREFIX=	ocaml-
8
9
9
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	hrs@FreeBSD.org
10
COMMENT=	OCaml module for handling of command line interfaces
11
COMMENT=	OCaml module for handling of command line interfaces
11
12
12
LICENSE=	BSD3CLAUSE
13
LICENSE=	BSD3CLAUSE
13
14
14
USES=			tar:tbz
15
USES=		tar:tbz ocaml
15
USE_OCAML=		yes
16
USE_OCAML=	findlib:plist ldconfig
16
USE_OCAML_FINDLIB=	yes
17
USE_OCAMLFIND_PLIST=	yes
18
USE_OCAML_LDCONFIG=	yes
19
17
20
do-build:
18
do-build:
21
	cd ${WRKSRC} && ocamlbuild cmdliner.cmxs cmdliner.cma cmdliner.a
19
	cd ${WRKSRC} && ${OCAMLBUILD} cmdliner.cmxs cmdliner.cma cmdliner.a
22
20
23
do-install:
21
do-install:
24
	${MKDIR} ${STAGEDIR}${OCAMLFIND_DESTDIR}/cmdliner
22
	${MKDIR} ${STAGEDIR}${OCAMLFIND_DESTDIR}/cmdliner
25
	cd ${WRKSRC} && ocamlfind install -destdir ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib cmdliner pkg/META _build/src/cmdliner.a _build/src/cmdliner.cma _build/src/cmdliner.cmi _build/src/cmdliner.cmx _build/src/cmdliner.cmxa _build/src/cmdliner.cmxs _build/src/cmdliner.mli
23
	cd ${WRKSRC} && \
24
	    ${OCAMLFIND} install \
25
	    -destdir ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib \
26
	    cmdliner pkg/META _build/src/cmdliner.a \
27
	    _build/src/cmdliner.cma _build/src/cmdliner.cmi \
28
	    _build/src/cmdliner.cmx _build/src/cmdliner.cmxa \
29
	    _build/src/cmdliner.cmxs _build/src/cmdliner.mli
26
	${INSTALL_LIB} ${WRKSRC}/_build/src/cmdliner.cmxs \
30
	${INSTALL_LIB} ${WRKSRC}/_build/src/cmdliner.cmxs \
27
		${STAGEDIR}${OCAMLFIND_DESTDIR}/cmdliner
31
	    ${STAGEDIR}${OCAMLFIND_DESTDIR}/cmdliner
28
32
29
.include <bsd.port.mk>
33
.include <bsd.port.mk>
(-)devel/ocaml-pomap/Makefile (-13 / +9 lines)
Lines 4-26 Link Here
4
PORTNAME=	pomap
4
PORTNAME=	pomap
5
PORTVERSION=	3.0.7
5
PORTVERSION=	3.0.7
6
DISTVERSIONPREFIX=	v
6
DISTVERSIONPREFIX=	v
7
PORTREVISION=	1
7
CATEGORIES=	devel
8
CATEGORIES=	devel
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
10
10
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	OCaml library to maintain a list of partially ordered elements
12
COMMENT=	OCaml library to maintain a list of partially ordered elements
12
13
13
LICENSE=	LGPL20+ # source says LGPL20+, COPYING says LGPL21
14
LICENSE=	LGPL20+ # source says LGPL20+, COPYING says LGPL21
14
LICENSE_FILE=	${WRKSRC}/COPYING.txt
15
LICENSE_FILE=	${WRKSRC}/COPYING.txt
15
16
17
USES=		ocaml
16
USE_GITHUB=	yes
18
USE_GITHUB=	yes
17
GH_ACCOUNT=	mmottl
19
GH_ACCOUNT=	mmottl
18
20
USE_OCAML=	findlib:plist wash
19
USE_OCAML=	yes
20
USE_OCAML_FINDLIB=yes
21
USE_OCAMLFIND_PLIST=yes
22
USE_OCAML_WASH=	yes
23
24
HAS_CONFIGURE=	yes
21
HAS_CONFIGURE=	yes
25
CONFIGURE_ARGS=	--prefix ${PREFIX} --disable-docs --disable-examples
22
CONFIGURE_ARGS=	--prefix ${PREFIX} --disable-docs --disable-examples
26
MAKE_JOBS_UNSAFE=yes
23
MAKE_JOBS_UNSAFE=yes
Lines 27-33 Link Here
27
24
28
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
25
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
29
EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
26
EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
30
31
PORTDOCS=	*
27
PORTDOCS=	*
32
PORTEXAMPLES=	*
28
PORTEXAMPLES=	*
33
29
Lines 38-50 Link Here
38
34
39
post-install-DOCS-on:
35
post-install-DOCS-on:
40
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
36
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
41
.for i in AUTHORS.txt CHANGES.txt README.md
37
	cd ${WRKSRC} && ${INSTALL_DATA} \
42
	${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
38
	    AUTHORS.txt CHANGES.txt README.md \
43
.endfor
39
	    ${STAGEDIR}${DOCSDIR}
44
40
45
post-install-EXAMPLES-on:
41
post-install-EXAMPLES-on:
46
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
42
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
47
	@(cd ${WRKSRC}/examples && \
43
	cd ${WRKSRC}/examples && \
48
		${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
44
	    ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
49
45
50
.include <bsd.port.mk>
46
.include <bsd.port.mk>
(-)devel/ocaml-ulex/Makefile (-10 / +7 lines)
Lines 3-23 Link Here
3
3
4
PORTNAME=	ulex
4
PORTNAME=	ulex
5
PORTVERSION=	1.1
5
PORTVERSION=	1.1
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://www.cduce.org/download/
8
MASTER_SITES=	http://www.cduce.org/download/
9
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
10
10
11
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
12
COMMENT=	Lexer generator for Unicode and OCaml
12
COMMENT=	Lexer generator for Unicode and OCaml
13
13
14
USES=		gmake
14
LICENSE=	MIT
15
USE_OCAML=	true
16
USE_OCAML_FINDLIB=	true
17
USE_OCAML_CAMLP4=	true
18
USE_OCAML_LDCONFIG=	true
19
USE_OCAMLFIND_PLIST=	yes
20
15
16
USES=		gmake ocaml
17
USE_OCAML=	findlib:plist camlp4 ldconfig
21
ALL_TARGET=	all all.opt
18
ALL_TARGET=	all all.opt
22
MAKE_JOBS_UNSAFE=	yes
19
MAKE_JOBS_UNSAFE=	yes
23
20
Lines 26-35 Link Here
26
23
27
OPTIONS_DEFINE=	DOCS
24
OPTIONS_DEFINE=	DOCS
28
25
29
DOCS_ALL_TARGET=	doc
26
DOCS_ALL_TARGET=doc
30
27
31
post-install-DOCS-on:
28
post-install-DOCS-on:
32
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
29
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
33
	${INSTALL_DATA} ${WRKSRC}/*.html ${WRKSRC}/*.css ${STAGEDIR}${DOCSDIR}
30
	cd ${WRKSRC} && ${INSTALL_DATA} *.html *.css ${STAGEDIR}${DOCSDIR}
34
31
35
.include <bsd.port.mk>
32
.include <bsd.port.mk>
(-)ftp/ocaml-ocurl/Makefile (-16 / +10 lines)
Lines 3-31 Link Here
3
3
4
PORTNAME=	ocurl
4
PORTNAME=	ocurl
5
PORTVERSION=	0.7.9
5
PORTVERSION=	0.7.9
6
PORTREVISION=	1
6
CATEGORIES=	ftp
7
CATEGORIES=	ftp
7
MASTER_SITES=	http://ygrek.org.ua/p/release/ocurl/
8
MASTER_SITES=	http://ygrek.org.ua/p/release/ocurl/
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
10
10
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	Interface for OCaml to the curl lib
12
COMMENT=	Interface for OCaml to the curl lib
12
13
13
BUILD_DEPENDS=	ocamlc:lang/ocaml \
14
LICENSE=	MIT
14
		ocamlfind:devel/ocaml-findlib
15
15
RUN_DEPENDS:=	${BUILD_DEPENDS}
16
RUN_DEPENDS:=	${BUILD_DEPENDS}
16
LIB_DEPENDS=	libcurl.so:ftp/curl
17
LIB_DEPENDS=	libcurl.so:ftp/curl
17
18
18
USES=		gmake
19
USES=		gmake ocaml
20
USE_OCAML=	findlib camlp4 ldconfig
21
OCAML_PKGDIRS=	curl
22
OCAML_LDLIBS=	${OCAML_SITELIBDIR}/curl
19
GNU_CONFIGURE=	yes
23
GNU_CONFIGURE=	yes
20
CONFIGURE_ARGS+="--with-findlib"
24
CONFIGURE_ARGS=	--with-findlib
21
MAKE_JOBS_UNSAFE=	yes
25
MAKE_JOBS_UNSAFE=	yes
22
26
23
USE_OCAML=		yes
24
USE_OCAML_CAMLP4=	yes
25
USE_OCAML_FINDLIB=	yes
26
USE_OCAML_LDCONFIG=	yes
27
OCAML_PKGDIRS=		curl
28
29
OPTIONS_DEFINE=	LWT
27
OPTIONS_DEFINE=	LWT
30
OPTIONS_DEFAULT=LWT
28
OPTIONS_DEFAULT=LWT
31
OPTIONS_SUB=	yes
29
OPTIONS_SUB=	yes
Lines 36-48 Link Here
36
post-install:
34
post-install:
37
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/curl/dllcurl-helper.so
35
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/curl/dllcurl-helper.so
38
36
39
.include <bsd.port.options.mk>
40
41
.if ! ${PORT_OPTIONS:MLWT}
42
# Override auto-detection
37
# Override auto-detection
43
post-configure:
38
post-configure-LWT-off:
44
	${REINPLACE_CMD} 's/(lwt,no)/(no,no)/' ${WRKSRC}/Makefile \
39
	${REINPLACE_CMD} 's/(lwt,no)/(no,no)/' ${WRKSRC}/Makefile \
45
		${WRKSRC}/examples/Makefile
40
		${WRKSRC}/examples/Makefile
46
.endif
47
41
48
.include <bsd.port.mk>
42
.include <bsd.port.mk>
(-)devel/ocaml-ounit/Makefile (-6 / +4 lines)
Lines 3-23 Link Here
3
3
4
PORTNAME=	ounit
4
PORTNAME=	ounit
5
PORTVERSION=	1.0.3
5
PORTVERSION=	1.0.3
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://www.xs4all.nl/~mmzeeman/ocaml/
8
MASTER_SITES=	http://www.xs4all.nl/~mmzeeman/ocaml/
9
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
10
10
11
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
12
COMMENT=	OCaml unit test framework
12
COMMENT=	OCaml unit test framework
13
13
14
LICENSE=	MIT
14
LICENSE=	MIT
15
LICENSE_FILE=	${WRKSRC}/LICENCE
15
LICENSE_FILE=	${WRKSRC}/LICENCE
16
16
17
USES=		gmake
17
USES=		gmake ocaml
18
USE_OCAML=	yes
18
USE_OCAML=	findlib:plist
19
USE_OCAML_FINDLIB=	yes
20
USE_OCAMLFIND_PLIST=	yes
21
OCAML_PKGDIRS=	oUnit
19
OCAML_PKGDIRS=	oUnit
22
ALL_TARGET=	all allopt testall doc
20
ALL_TARGET=	all allopt testall doc
23
MAKE_ENV=	OCAMLFIND_DESTDIR=${PREFIX}/lib/ocaml/site-lib
21
MAKE_ENV=	OCAMLFIND_DESTDIR=${PREFIX}/lib/ocaml/site-lib
(-)devel/ocaml-re/Makefile (-6 / +4 lines)
Lines 4-9 Link Here
4
PORTNAME=	re
4
PORTNAME=	re
5
PORTVERSION=	1.4.1
5
PORTVERSION=	1.4.1
6
DISTVERSIONPREFIX=	${PKGNAMEPREFIX}${PORTNAME}-
6
DISTVERSIONPREFIX=	${PKGNAMEPREFIX}${PORTNAME}-
7
PORTREVISION=	1
7
CATEGORIES=	devel
8
CATEGORIES=	devel
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
10
Lines 12-18 Link Here
12
13
13
LICENSE=	LGPL21
14
LICENSE=	LGPL21
14
15
15
USES=	gmake
16
USES=		gmake ocaml
17
USE_OCAML=	findlib:plist
16
HAS_CONFIGURE=	yes
18
HAS_CONFIGURE=	yes
17
MAKE_JOBS_UNSAFE=	yes
19
MAKE_JOBS_UNSAFE=	yes
18
20
Lines 20-32 Link Here
20
GH_ACCOUNT=	ocaml
22
GH_ACCOUNT=	ocaml
21
GH_PROJECT=	${PKGNAMEPREFIX}${PORTNAME}
23
GH_PROJECT=	${PKGNAMEPREFIX}${PORTNAME}
22
24
23
USE_OCAML=		yes
24
USE_OCAML_FINDLIB=	yes
25
USE_OCAMLFIND_PLIST=	yes
26
27
CONFIGURE_ARGS=		--destdir "${DESTDIRNAME}"
25
CONFIGURE_ARGS=		--destdir "${DESTDIRNAME}"
28
26
29
do-configure:
27
do-configure:
30
	cd ${WRKSRC} && ocaml setup.ml -configure ${CONFIGURE_ARGS}
28
	cd ${WRKSRC} && ${OCAML_CMD} setup.ml -configure ${CONFIGURE_ARGS}
31
29
32
.include <bsd.port.mk>
30
.include <bsd.port.mk>
(-)security/ocaml-cryptokit/Makefile (-9 / +9 lines)
Lines 3-33 Link Here
3
3
4
PORTNAME=	cryptokit
4
PORTNAME=	cryptokit
5
PORTVERSION=	1.6
5
PORTVERSION=	1.6
6
PORTREVISION=	1
6
CATEGORIES=	security
7
CATEGORIES=	security
7
MASTER_SITES=	http://forge.ocamlcore.org/frs/download.php/891/
8
MASTER_SITES=	http://forge.ocamlcore.org/frs/download.php/891/
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
10
10
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	Variety of cryptographic primitives for Objective Caml
12
COMMENT=	Variety of cryptographic primitives for Objective Caml
12
13
13
DESTDIRNAME=	destdir
14
LICENSE=	LGPL20
15
16
USES=		ocaml
17
USE_OCAML=	findlib:plist ldconfig
14
HAS_CONFIGURE=	yes
18
HAS_CONFIGURE=	yes
15
CONFIGURE_ARGS=	--docdir ${OCAML_DOCSDIR}
19
CONFIGURE_ARGS=	--docdir ${OCAML_DOCSDIR}
16
20
17
USE_OCAML=	yes
18
USE_OCAML_LDCONFIG=	yes
19
USE_OCAML_FINDLIB=	yes
20
USE_OCAMLFIND_PLIST=	yes
21
22
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
21
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
23
PORTDOCS=	*
22
PORTDOCS=	*
24
23
25
OPTIONS_DEFINE=	DOCS
24
OPTIONS_DEFINE=	DOCS
26
27
DOCS_ALL_TARGET=	doc
25
DOCS_ALL_TARGET=	doc
28
26
27
DESTDIRNAME=	destdir
28
29
post-patch:
29
post-patch:
30
	${REINPLACE_CMD} 's,"install","install" :: "-ldconf ignore",' \
30
	${REINPLACE_CMD} 's,"install","install" :: "-ldconf ignore",' \
31
		${WRKSRC}/setup.ml
31
	    ${WRKSRC}/setup.ml
32
32
33
.include <bsd.port.mk>
33
.include <bsd.port.mk>
(-)security/ocaml-cryptokit/distinfo (+1 lines)
Lines 1-2 Link Here
1
TIMESTAMP = 1488653480
1
SHA256 (cryptokit-1.6.tar.gz) = c58cb6ee1efa996bb227d64b378e80824637f875e914ad38833d610b7f992422
2
SHA256 (cryptokit-1.6.tar.gz) = c58cb6ee1efa996bb227d64b378e80824637f875e914ad38833d610b7f992422
2
SIZE (cryptokit-1.6.tar.gz) = 133031
3
SIZE (cryptokit-1.6.tar.gz) = 133031
(-)security/ocaml-cryptokit/files/patch-src-stubs-md5.c (+13 lines)
Line 0 Link Here
1
--- src/stubs-md5.c.orig	2017-03-05 03:52:13.584003000 +0900
2
+++ src/stubs-md5.c	2017-03-05 03:52:29.351781000 +0900
3
@@ -18,8 +18,8 @@
4
 #include <caml/alloc.h>
5
 
6
 struct MD5Context {
7
-        uint32 buf[4];
8
-        uint32 bits[2];
9
+        uint32_t buf[4];
10
+        uint32_t bits[2];
11
         unsigned char in[64];
12
 };
13
 
(-)devel/ocaml-ppx-tools/Makefile (-8 / +5 lines)
Lines 2-24 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	ppx-tools
4
PORTNAME=	ppx-tools
5
PORTVERSION=	0.99.2
5
PORTVERSION=	5.0
6
DISTVERSIONPREFIX=	${GH_PROJECT}_
7
CATEGORIES=	devel
6
CATEGORIES=	devel
8
PKGNAMEPREFIX=	ocaml-
7
PKGNAMEPREFIX=	ocaml-
9
8
10
MAINTAINER=	michipili@gmail.com
9
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	Tools for authors of ppx rewriters
10
COMMENT=	Tools for authors of ppx rewriters
12
11
13
LICENSE=	MIT
12
LICENSE=	MIT
14
13
15
USES=		gmake
14
USES=		gmake ocaml
16
USE_OCAML=	yes
15
USE_OCAML=	findlib
17
USE_OCAML_FINDLIB=yes
18
MAKE_JOBS_UNSAFE=yes
16
MAKE_JOBS_UNSAFE=yes
19
USE_GITHUB=	yes
17
USE_GITHUB=	yes
20
GH_ACCOUNT=	alainfrisch
18
GH_TUPLE=	alainfrisch:${PORTNAME:C,-,_,}:49c08e2
21
GH_PROJECT=	${PORTNAME:C/-/_/}
22
19
23
post-install:
20
post-install:
24
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib/ppx_tools/ppx_tools.cmxs
21
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib/ppx_tools/ppx_tools.cmxs
(-)devel/ocaml-ppx-tools/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (alainfrisch-ppx_tools-ppx_tools_0.99.2_GH0.tar.gz) = 98128022ea0574d769a263eb9b73be06200eec4bac9adb8dc44df289a77c4dec
1
TIMESTAMP = 1488666602
2
SIZE (alainfrisch-ppx_tools-ppx_tools_0.99.2_GH0.tar.gz) = 15877
2
SHA256 (alainfrisch-ppx_tools-5.0-49c08e2_GH0.tar.gz) = d07bf279b5e40f484716da966c7d3206bb64d88983cf702d3aa4fed1c5d781fc
3
SIZE (alainfrisch-ppx_tools-5.0-49c08e2_GH0.tar.gz) = 17758
(-)devel/ocaml-ppx-tools/files/patch-Makefile (+12 lines)
Line 0 Link Here
1
--- Makefile.orig	2016-11-14 22:41:35 UTC
2
+++ Makefile
3
@@ -86,7 +86,8 @@ INSTALL = META \
4
 
5
 .PHONY: install
6
 install:
7
-	ocamlfind install $(PACKAGE) $(INSTALL)
8
+	ocamlfind install -destdir $(DESTDIR)$(PREFIX)/lib/ocaml/site-lib \
9
+	    -ldconf /dev/null $(PACKAGE) $(INSTALL)
10
 
11
 .PHONY: uninstall
12
 uninstall:
(-)devel/ocaml-ppx-tools/pkg-plist (+6 lines)
Lines 1-8 Link Here
1
%%OCAML_SITELIBDIR%%/ppx_tools/META
1
%%OCAML_SITELIBDIR%%/ppx_tools/META
2
%%OCAML_SITELIBDIR%%/ppx_tools/ast_convenience.cmi
2
%%OCAML_SITELIBDIR%%/ppx_tools/ast_convenience.cmi
3
%%OCAML_SITELIBDIR%%/ppx_tools/ast_convenience.cmt
4
%%OCAML_SITELIBDIR%%/ppx_tools/ast_convenience.cmti
3
%%OCAML_SITELIBDIR%%/ppx_tools/ast_convenience.cmx
5
%%OCAML_SITELIBDIR%%/ppx_tools/ast_convenience.cmx
6
%%OCAML_SITELIBDIR%%/ppx_tools/ast_convenience.mli
4
%%OCAML_SITELIBDIR%%/ppx_tools/ast_mapper_class.cmi
7
%%OCAML_SITELIBDIR%%/ppx_tools/ast_mapper_class.cmi
8
%%OCAML_SITELIBDIR%%/ppx_tools/ast_mapper_class.cmt
9
%%OCAML_SITELIBDIR%%/ppx_tools/ast_mapper_class.cmti
5
%%OCAML_SITELIBDIR%%/ppx_tools/ast_mapper_class.cmx
10
%%OCAML_SITELIBDIR%%/ppx_tools/ast_mapper_class.cmx
11
%%OCAML_SITELIBDIR%%/ppx_tools/ast_mapper_class.mli
6
%%OCAML_SITELIBDIR%%/ppx_tools/dumpast
12
%%OCAML_SITELIBDIR%%/ppx_tools/dumpast
7
%%OCAML_SITELIBDIR%%/ppx_tools/genlifter
13
%%OCAML_SITELIBDIR%%/ppx_tools/genlifter
8
%%OCAML_SITELIBDIR%%/ppx_tools/ppx_metaquot
14
%%OCAML_SITELIBDIR%%/ppx_tools/ppx_metaquot
(-)archivers/ocaml-bz2/Makefile (-12 / +9 lines)
Lines 3-35 Link Here
3
3
4
PORTNAME=	bz2
4
PORTNAME=	bz2
5
PORTVERSION=	0.6.0
5
PORTVERSION=	0.6.0
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	archivers
7
CATEGORIES=	archivers
8
MASTER_SITES=	http://forge.ocamlcore.org/frs/download.php/72/
8
MASTER_SITES=	http://forge.ocamlcore.org/frs/download.php/72/
9
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
10
DISTNAME=	caml${PORTNAME}-${PORTVERSION}
10
DISTNAME=	caml${PORTNAME}-${PORTVERSION}
11
11
12
MAINTAINER=	ports@FreeBSD.org
12
MAINTAINER=	hrs@FreeBSD.org
13
COMMENT=	OCaml library to manipulate bz2 files
13
COMMENT=	OCaml library to manipulate bz2 files
14
14
15
LICENSE=	LGPL21 LGPL3
15
LICENSE=	LGPL21 LGPL3
16
LICENSE_COMB=	dual
16
LICENSE_COMB=	dual
17
17
18
OPTIONS_DEFINE=	DOCS
18
USES=		gmake ocaml
19
19
USE_OCAML=	findlib:plist ldconfig wash
20
DESTDIRNAME=	DONTUSEIT
21
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
22
MAKE_JOBS_UNSAFE=	yes
21
MAKE_JOBS_UNSAFE=	yes
23
USE_OCAML=		yes
24
USE_OCAML_FINDLIB=	yes
25
USE_OCAML_LDCONFIG=	yes
26
USE_OCAML_WASH=		yes
27
USE_OCAMLFIND_PLIST=	yes
28
USES=		gmake
29
22
30
PORTDOCS=	*
23
PORTDOCS=	*
31
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
24
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
32
25
26
OPTIONS_DEFINE=	DOCS
27
28
DESTDIRNAME=	DONTUSEIT
29
33
post-install:
30
post-install:
34
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/bz2/dllcamlbz2.so
31
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/bz2/dllcamlbz2.so
35
32
Lines 36-41 Link Here
36
post-install-DOCS-on:
33
post-install-DOCS-on:
37
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
34
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
38
	${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
35
	${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
39
	(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
36
	cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
40
37
41
.include <bsd.port.mk>
38
.include <bsd.port.mk>
(-)archivers/ocaml-zip/Makefile (-15 / +14 lines)
Lines 2-23 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	zip
4
PORTNAME=	zip
5
PORTVERSION=	1.05
5
PORTVERSION=	1.07
6
CATEGORIES=	archivers
6
CATEGORIES=	archivers
7
MASTER_SITES=	http://forge.ocamlcore.org/frs/download.php/1037/
8
PKGNAMEPREFIX=	ocaml-
7
PKGNAMEPREFIX=	ocaml-
9
DISTNAME=	caml${PORTNAME}-${PORTVERSION}
10
8
11
MAINTAINER=	ports@FreeBSD.org
9
MAINTAINER=	hrs@FreeBSD.org
12
COMMENT=	OCaml library to manipulate ZIP/GZIP/JAR archives
10
COMMENT=	OCaml library to manipulate ZIP/GZIP/JAR archives
13
11
14
LICENSE=	LGPL21
12
LICENSE=	LGPL21
15
LICENSE_FILE=	${WRKSRC}/LICENSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE
16
14
17
USE_OCAML=	yes
15
USES=		gmake ocaml
18
USE_OCAML_LDCONFIG=yes
16
USE_OCAML=	ldconfig wash
19
USE_OCAML_WASH=	yes
17
USE_GITHUB=	yes
20
18
GH_TUPLE=	xavierleroy:camlzip:rel107
21
ALL_TARGET=	all allopt
19
ALL_TARGET=	all allopt
22
INSTALL_TARGET=	install installopt
20
INSTALL_TARGET=	install installopt
23
PATTERN=	([[:space:]]*)cp([[:space:]]+.*)
21
PATTERN=	([[:space:]]*)cp([[:space:]]+.*)
Lines 25-39 Link Here
25
post-extract:
23
post-extract:
26
# PREFIX, CFLAGS and permissions safeness
24
# PREFIX, CFLAGS and permissions safeness
27
	@${REINPLACE_CMD} -E \
25
	@${REINPLACE_CMD} -E \
28
		-e "s,${PATTERN},\1\$${BSD_INSTALL_DATA}\2," \
26
	    -e "s,${PATTERN},\1\$${BSD_INSTALL_DATA}\2," \
29
		-e "s,(-ccopt[[:space:]])-g,\1\"${CFLAGS}\"," \
27
	    -e "s,(-ccopt[[:space:]])-g,\1\"${CFLAGS}\"," \
30
		-e "s,^(INSTALLDIR=).*,\1${STAGEDIR}${OCAMLFIND_DESTDIR}/zip," \
28
	    -e "s,^(INSTALLDIR=).*,\1${STAGEDIR}${OCAMLFIND_DESTDIR}/zip," \
31
		-e "/ldconf/d" ${WRKSRC}/Makefile
29
	    -e "/ldconf/d" ${WRKSRC}/Makefile
32
30
33
post-install:
31
post-install:
34
	${INSTALL_DATA} ${FILESDIR}/META ${STAGEDIR}${OCAMLFIND_DESTDIR}/${PORTNAME}
32
	${INSTALL_DATA} ${WRKSRC}/META-zip \
33
	    ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/zip/META
35
	@${FIND} ${STAGEDIR}${OCAMLFIND_DESTDIR}/${PORTNAME} -type f | \
34
	@${FIND} ${STAGEDIR}${OCAMLFIND_DESTDIR}/${PORTNAME} -type f | \
36
		${SED} "s,^${STAGEDIR}${PREFIX}/,," >> ${TMPPLIST}
35
	    ${SED} "s,^${STAGEDIR}${PREFIX}/,," >> ${TMPPLIST}
37
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib/zip/dllcamlzip.so
36
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/zip/dllcamlzip.so
38
37
39
.include <bsd.port.mk>
38
.include <bsd.port.mk>
(-)archivers/ocaml-zip/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (camlzip-1.05.tar.gz) = 930b70c736ab5a7ed1b05220102310a0a2241564786657abe418e834a538d06b
1
TIMESTAMP = 1488692454
2
SIZE (camlzip-1.05.tar.gz) = 25817
2
SHA256 (xavierleroy-camlzip-1.07-rel107_GH0.tar.gz) = 2f4df4df258b8bca89176a5c4200a6920eccb3134f3df70d61a67e16fd1fbfdd
3
SIZE (xavierleroy-camlzip-1.07-rel107_GH0.tar.gz) = 26652
(-)archivers/ocaml-zip/files/META (-7 lines)
Lines 1-7 Link Here
1
name="zip"
2
version="1.04"
3
description="reading and writing ZIP, JAR and GZIP files"
4
requires="unix"
5
archive(byte)="zip.cma"
6
archive(native)="zip.cmxa"
7
linkopts = ""
(-)archivers/ocaml-zip/files/patch-Makefile (-11 lines)
Lines 1-11 Link Here
1
--- Makefile.orig	2015-10-01 02:48:15 UTC
2
+++ Makefile
3
@@ -56,7 +56,7 @@ clean:
4
 
5
 install:
6
 	mkdir -p $(INSTALLDIR)
7
-	${BSD_INSTALL_DATA} zip.cma zip.cmi gzip.cmi zip.mli gzip.mli libcamlzip.a $(INSTALLDIR)
8
+	${BSD_INSTALL_DATA} zip.cma zip.cmi gzip.cmi zip.mli gzip.mli zlib.cmi zlib.mli libcamlzip.a $(INSTALLDIR)
9
 	if test -f dllcamlzip.so; then \
10
 	  ${BSD_INSTALL_DATA} dllcamlzip.so $(INSTALLDIR); \
11
           installdir=$(INSTALLDIR); \
(-)converters/ocaml-base64/Makefile (-7 / +7 lines)
Lines 4-9 Link Here
4
PORTNAME=	base64
4
PORTNAME=	base64
5
PORTVERSION=	2.0.0
5
PORTVERSION=	2.0.0
6
DISTVERSIONPREFIX=	v
6
DISTVERSIONPREFIX=	v
7
PORTREVISION=	1
7
CATEGORIES=	converters
8
CATEGORIES=	converters
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
10
Lines 10-27 Link Here
10
MAINTAINER=	vg@FreeBSD.org
11
MAINTAINER=	vg@FreeBSD.org
11
COMMENT=	Base64 encoding and decoding in OCaml
12
COMMENT=	Base64 encoding and decoding in OCaml
12
13
14
LICENSE=	MIT
15
13
USE_GITHUB=	yes
16
USE_GITHUB=	yes
14
GH_ACCOUNT=	mirage
17
GH_ACCOUNT=	mirage
15
GH_PROJECT=	ocaml-base64
18
GH_PROJECT=	ocaml-base64
16
19
17
USES=			gmake
20
USES=		gmake ocaml
18
HAS_CONFIGURE=		yes
21
USE_OCAML=	findlib:plist ldconfig
19
MAKE_JOBS_UNSAFE=	yes
22
HAS_CONFIGURE=	yes
23
MAKE_JOBS_UNSAFE=yes
20
24
21
USE_OCAML=		yes
22
USE_OCAML_FINDLIB=	yes
23
USE_OCAMLFIND_PLIST=	yes
24
USE_OCAML_LDCONFIG=	yes
25
DOCSDIR=	${PREFIX}/share/doc/pcre-ocaml
25
DOCSDIR=	${PREFIX}/share/doc/pcre-ocaml
26
26
27
CONFIGURE_ARGS=		--destdir="${DESTDIRNAME}"
27
CONFIGURE_ARGS=		--destdir="${DESTDIRNAME}"
(-)converters/ocaml-jsonm/Makefile (-6 / +3 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	jsonm
4
PORTNAME=	jsonm
5
PORTVERSION=	0.9.1
5
PORTVERSION=	0.9.1
6
PORTREVISION=	1
6
CATEGORIES=	converters
7
CATEGORIES=	converters
7
MASTER_SITES=	http://erratique.ch/software/jsonm/releases/
8
MASTER_SITES=	http://erratique.ch/software/jsonm/releases/
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
Lines 15-28 Link Here
15
BUILD_DEPENDS=	${SA_DIR}/uutf/uutf.a:devel/ocaml-uutf
16
BUILD_DEPENDS=	${SA_DIR}/uutf/uutf.a:devel/ocaml-uutf
16
RUN_DEPENDS=	${SA_DIR}/uutf/uutf.a:devel/ocaml-uutf
17
RUN_DEPENDS=	${SA_DIR}/uutf/uutf.a:devel/ocaml-uutf
17
18
18
USES=	tar:tbz
19
USES=	tar:tbz ocaml
19
USE_OCAML=		yes
20
USE_OCAML=	findlib:plist ldconfig
20
SA_DIR=		${LOCALBASE}/${OCAML_SITELIBDIR}
21
SA_DIR=		${LOCALBASE}/${OCAML_SITELIBDIR}
21
22
22
USE_OCAML_FINDLIB=	yes
23
USE_OCAMLFIND_PLIST=	yes
24
USE_OCAML_LDCONFIG=	yes
25
26
do-build:
23
do-build:
27
	cd ${WRKSRC} && ocamlbuild src/jsonm.cmxs src/jsonm.cma src/jsonm.a
24
	cd ${WRKSRC} && ocamlbuild src/jsonm.cmxs src/jsonm.cma src/jsonm.a
28
25
(-)databases/ocaml-dbm/Makefile (-7 / +7 lines)
Lines 3-14 Link Here
3
3
4
PORTNAME=	dbm
4
PORTNAME=	dbm
5
PORTVERSION=	1.0
5
PORTVERSION=	1.0
6
PORTREVISION=	1
6
CATEGORIES=	databases
7
CATEGORIES=	databases
7
MASTER_SITES=	https://forge.ocamlcore.org/frs/download.php/728/
8
MASTER_SITES=	https://forge.ocamlcore.org/frs/download.php/728/
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
DISTNAME=	caml${PORTNAME}-${PORTVERSION}
10
DISTNAME=	caml${PORTNAME}-${PORTVERSION}
10
11
11
MAINTAINER=	ports@FreeBSD.org
12
MAINTAINER=	hrs@FreeBSD.org
12
COMMENT=	OCaml binding to the NDBM and GDBM database library
13
COMMENT=	OCaml binding to the NDBM and GDBM database library
13
14
14
LICENSE=	LGPL20
15
LICENSE=	LGPL20
Lines 15-32 Link Here
15
16
16
CONFLICTS=	ocaml-[0-3]* ocaml-nox11-[0-3]*
17
CONFLICTS=	ocaml-[0-3]* ocaml-nox11-[0-3]*
17
18
18
USES=		tar:tgz
19
USES=		tar:tgz ocaml
19
HAS_CONFIGURE=	yes
20
HAS_CONFIGURE=	yes
20
USE_OCAML=	yes
21
MAKE_ENV=	DESTDIR="${STAGEDIR}"
21
DOCSDIR=	${PREFIX}/share/doc/ocaml/${PORTNAME}
22
DOCSDIR=	${PREFIX}/share/doc/ocaml/${PORTNAME}
22
MAKE_ENV+=	DESTDIR="${STAGEDIR}"
23
23
24
pre-install:
24
pre-install:
25
	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib/dbm \
25
	@${MKDIR} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dbm \
26
		${STAGEDIR}${PREFIX}/lib/ocaml/stublibs
26
	    ${STAGEDIR}${PREFIX}/lib/ocaml/stublibs
27
27
28
post-install:
28
post-install:
29
	${INSTALL_DATA} ${WRKSRC}/META \
29
	${INSTALL_DATA} ${WRKSRC}/META \
30
		${STAGEDIR}${PREFIX}/lib/ocaml/site-lib/dbm
30
	    ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/dbm
31
31
32
.include <bsd.port.mk>
32
.include <bsd.port.mk>
(-)databases/ocaml-sqlite3/Makefile (-8 / +6 lines)
Lines 4-9 Link Here
4
PORTNAME=	sqlite3
4
PORTNAME=	sqlite3
5
PORTVERSION=	4.0.5
5
PORTVERSION=	4.0.5
6
DISTVERSIONPREFIX=	v
6
DISTVERSIONPREFIX=	v
7
PORTREVISION=	1
7
CATEGORIES=	databases
8
CATEGORIES=	databases
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
10
Lines 15-25 Link Here
15
LICENSE_FILE=	${WRKSRC}/COPYING.txt
16
LICENSE_FILE=	${WRKSRC}/COPYING.txt
16
LICENSE_PERMS=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
17
LICENSE_PERMS=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
17
18
18
USES=			compiler:features gmake pkgconfig sqlite
19
USES=			compiler:features gmake pkgconfig sqlite ocaml
19
USE_OCAML=		yes
20
USE_OCAML=		findlib:plist ldconfig
20
USE_OCAML_FINDLIB=	yes
21
USE_OCAML_LDCONFIG=	yes
22
USE_OCAMLFIND_PLIST=	yes
23
HAS_CONFIGURE=		yes
21
HAS_CONFIGURE=		yes
24
MAKE_JOBS_UNSAFE=	yes
22
MAKE_JOBS_UNSAFE=	yes
25
CONFIGURE_ARGS=		--destdir "${STAGEDIR}" \
23
CONFIGURE_ARGS=		--destdir "${STAGEDIR}" \
Lines 40-51 Link Here
40
.endif
38
.endif
41
39
42
do-configure:
40
do-configure:
43
	(cd ${WRKSRC} && ocaml setup.ml -configure ${CONFIGURE_ARGS})
41
	(cd ${WRKSRC} && ${OCAML_CMD} setup.ml -configure ${CONFIGURE_ARGS})
44
42
45
do-build:
43
do-build:
46
	(cd ${WRKSRC} && ocaml setup.ml -build)
44
	(cd ${WRKSRC} && ${OCAML_CMD} setup.ml -build)
47
45
48
do-install:
46
do-install:
49
	(cd ${WRKSRC} && ocaml setup.ml -install)
47
	(cd ${WRKSRC} && ${OCAML_CMD} setup.ml -install)
50
48
51
.include <bsd.port.post.mk>
49
.include <bsd.port.post.mk>
(-)devel/ocaml-annexlib/Makefile (-6 / +3 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	annexlib
4
PORTNAME=	annexlib
5
PORTVERSION=	0.13.2
5
PORTVERSION=	0.13.2
6
PORTREVISION=	3
6
PORTREVISION=	4
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://raevnos.pennmush.org/code/extlib/
8
MASTER_SITES=	http://raevnos.pennmush.org/code/extlib/
9
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
Lines 16-26 Link Here
16
BUILD_DEPENDS=	${SA_DIR}/pcre/pcre.a:devel/ocaml-pcre
16
BUILD_DEPENDS=	${SA_DIR}/pcre/pcre.a:devel/ocaml-pcre
17
RUN_DEPENDS=	${SA_DIR}/pcre/pcre.a:devel/ocaml-pcre
17
RUN_DEPENDS=	${SA_DIR}/pcre/pcre.a:devel/ocaml-pcre
18
18
19
USES=		gmake
19
USES=		gmake ocaml
20
USE_OCAML=	yes
20
USE_OCAML=	findlib:plist ldconfig
21
USE_OCAML_FINDLIB=	yes
22
USE_OCAML_LDCONFIG=	yes
23
USE_OCAMLFIND_PLIST=	yes
24
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
25
ALL_TARGET=	all opt
22
ALL_TARGET=	all opt
26
SA_DIR=		${LOCALBASE}/${OCAML_SITELIBDIR}
23
SA_DIR=		${LOCALBASE}/${OCAML_SITELIBDIR}
(-)devel/ocaml-camlp5/Makefile (-6 / +4 lines)
Lines 2-12 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	camlp5
4
PORTNAME=	camlp5
5
PORTVERSION=	6.16
5
PORTVERSION=	6.17
6
CATEGORIES=	devel
6
CATEGORIES=	devel
7
MASTER_SITES=	http://camlp5.gforge.inria.fr/distrib/src/ \
8
		http://cristal.inria.fr/~ddr/camlp5/distrib/src/ \
9
		http://pauillac.inria.fr/~ddr/camlp5/distrib/src/
10
PKGNAMEPREFIX=	ocaml-
7
PKGNAMEPREFIX=	ocaml-
11
DIST_SUBDIR=	${PKGBASE}
8
DIST_SUBDIR=	${PKGBASE}
12
9
Lines 18-25 Link Here
18
LICENSE_FILE=	${WRKSRC}/LICENSE
15
LICENSE_FILE=	${WRKSRC}/LICENSE
19
LICENSE_PERMS=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
16
LICENSE_PERMS=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
20
17
21
USES=		tar:tgz
18
USES=		tar:tgz ocaml
22
USE_OCAML=	yes
19
USE_GITHUB=	yes
20
GH_TAGNAME=	rel617
23
HAS_CONFIGURE=	yes
21
HAS_CONFIGURE=	yes
24
CONFIGURE_ARGS=	--prefix ${PREFIX}
22
CONFIGURE_ARGS=	--prefix ${PREFIX}
25
ALL_TARGET=	world.opt
23
ALL_TARGET=	world.opt
(-)devel/ocaml-camlp5/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (ocaml-camlp5/camlp5-6.16.tgz) = fd446cff6421f5144a521c7cecfdc7217b1424908186cddd3d5be543b35058b1
1
TIMESTAMP = 1484413746
2
SIZE (ocaml-camlp5/camlp5-6.16.tgz) = 759877
2
SHA256 (ocaml-camlp5/camlp5-camlp5-6.17-rel617_GH0.tar.gz) = 8fa2a46a7030b1194862650cbb71ab52a10a0174890560a8b6edf236f8937414
3
SIZE (ocaml-camlp5/camlp5-camlp5-6.17-rel617_GH0.tar.gz) = 718935
(-)devel/ocaml-camomile/Makefile (-9 / +6 lines)
Lines 3-23 Link Here
3
3
4
PORTNAME=	camomile
4
PORTNAME=	camomile
5
PORTVERSION=	0.8.3
5
PORTVERSION=	0.8.3
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	SF
8
MASTER_SITES=	SF
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
10
10
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	Comprehensive Unicode library for Objective Caml
12
COMMENT=	Comprehensive Unicode library for Objective Caml
12
13
13
LICENSE=	LGPL21
14
LICENSE=	LGPL21
14
15
15
USES=		gmake tar:bzip2
16
USES=		gmake tar:bzip2 ocaml
16
USE_OCAML=	yes
17
USE_OCAML=	findlib camlp4 ldconfig wash
17
USE_OCAML_FINDLIB=yes
18
USE_OCAML_CAMLP4=yes
19
USE_OCAML_LDCONFIG=yes
20
USE_OCAML_WASH=	yes
21
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
22
MAKE_JOBS_UNSAFE=	yes
19
MAKE_JOBS_UNSAFE=	yes
23
20
Lines 26-33 Link Here
26
23
27
post-install:
24
post-install:
28
	@${FIND} ${STAGEDIR}${DATADIR} ! -type d | \
25
	@${FIND} ${STAGEDIR}${DATADIR} ! -type d | \
29
		${SED} 's,^${STAGEDIR}${PREFIX}/,,' >> ${TMPPLIST}
26
	    ${SED} 's,^${STAGEDIR}${PREFIX}/,,' >> ${TMPPLIST}
30
	@${FIND} ${STAGEDIR}${OCAMLFIND_DESTDIR}/${PORTNAME} ! -type d | \
27
	@${FIND} ${STAGEDIR}${OCAMLFIND_DESTDIR}/${PORTNAME} ! -type d | \
31
		${SED} 's,^${STAGEDIR}${PREFIX}/,,' >> ${TMPPLIST}
28
	    ${SED} 's,^${STAGEDIR}${PREFIX}/,,' >> ${TMPPLIST}
32
29
33
.include <bsd.port.mk>
30
.include <bsd.port.mk>
(-)databases/ocaml-mysql/Makefile (-11 / +6 lines)
Lines 3-26 Link Here
3
3
4
PORTNAME=	mysql
4
PORTNAME=	mysql
5
PORTVERSION=	1.1.1
5
PORTVERSION=	1.1.1
6
PORTREVISION=	1
6
CATEGORIES=	databases
7
CATEGORIES=	databases
7
MASTER_SITES=	http://forge.ocamlcore.org/frs/download.php/870/
8
MASTER_SITES=	http://forge.ocamlcore.org/frs/download.php/870/
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
DISTNAME=	${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}
10
DISTNAME=	${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}
10
11
11
MAINTAINER=	ports@FreeBSD.org
12
MAINTAINER=	hrs@FreeBSD.org
12
COMMENT=	OCaml bindings to libmysqlclient
13
COMMENT=	OCaml bindings to libmysqlclient
13
14
14
USES=			gmake
15
LICENSE=	LGPL21
15
USE_MYSQL=		yes
16
USE_OCAML=		yes
17
USE_OCAML_FINDLIB=	yes
18
USE_OCAML_CAMLP4=	yes
19
USE_OCAMLFIND_PLIST=	yes
20
USE_OCAML_LDCONFIG=	yes
21
16
17
USES=		gmake mysql ocaml
18
USE_OCAML=	findlib:plist camlp4 ldconfig
22
GNU_CONFIGURE=		yes
19
GNU_CONFIGURE=		yes
23
24
ALL_TARGET=		all opt
20
ALL_TARGET=		all opt
25
MAKE_JOBS_UNSAFE=	yes
21
MAKE_JOBS_UNSAFE=	yes
26
22
Lines 28-39 Link Here
28
PORTDOCS=	*
24
PORTDOCS=	*
29
25
30
OPTIONS_DEFINE=	DOCS
26
OPTIONS_DEFINE=	DOCS
31
32
DOCS_ALL_TARGET=	htdoc
27
DOCS_ALL_TARGET=	htdoc
33
28
34
post-patch:
29
post-patch:
35
	${REINPLACE_CMD} 's,OCAMLFIND_INSTFLAGS=,OCAMLFIND_INSTFLAGS=-ldconf ignore ,' \
30
	${REINPLACE_CMD} 's,OCAMLFIND_INSTFLAGS=,OCAMLFIND_INSTFLAGS=-ldconf ignore ,' \
36
		${WRKSRC}/Makefile.in
31
	    ${WRKSRC}/Makefile.in
37
32
38
post-install-DOCS-on:
33
post-install-DOCS-on:
39
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
34
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
(-)databases/ocaml-mysql/files/patch-mysql_stub.c (+35 lines)
Line 0 Link Here
1
--- mysql_stubs.c.orig	2017-03-05 14:58:57.707208000 +0900
2
+++ mysql_stubs.c	2017-03-05 14:59:19.532484000 +0900
3
@@ -501,14 +501,14 @@
4
 
5
 EXTERNAL value
6
 db_to_row(value result, value offset) {
7
-  int64 off = Int64_val(offset);
8
+  int64_t off = Int64_val(offset);
9
   MYSQL_RES *res;
10
 
11
   res = RESval(result);
12
   if (!res) 
13
     mysqlfailwith("Mysql.to_row: result did not return fetchable data");
14
 
15
-  if (off < 0 || off > (int64)mysql_num_rows(res)-1)
16
+  if (off < 0 || off > (int64_t)mysql_num_rows(res)-1)
17
     invalid_argument("Mysql.to_row: offset out of range");
18
 
19
   mysql_data_seek(res, off);
20
@@ -633,13 +633,13 @@
21
 {
22
   CAMLparam1(result);
23
   MYSQL_RES *res;
24
-  int64 size;
25
+  int64_t size;
26
 
27
   res = RESval(result);
28
   if (!res)
29
     size = 0;
30
   else
31
-    size = (int64)(mysql_num_rows(res));
32
+    size = (int64_t)(mysql_num_rows(res));
33
   
34
   CAMLreturn(copy_int64(size));
35
 }
(-)devel/ocaml-camomile-examples/Makefile (-2 / +2 lines)
Lines 9-20 Link Here
9
PKGNAMESUFFIX=	-examples
9
PKGNAMESUFFIX=	-examples
10
DISTNAME=	examples-${PORTVERSION}
10
DISTNAME=	examples-${PORTVERSION}
11
11
12
MAINTAINER=	ports@FreeBSD.org
12
MAINTAINER=	hrs@FreeBSD.org
13
COMMENT=	Example programs for Camomile library
13
COMMENT=	Example programs for Camomile library
14
14
15
USES=		tar:bzip2
15
WRKSRC=		${WRKDIR}/examples
16
WRKSRC=		${WRKDIR}/examples
16
NO_BUILD=	yes
17
NO_BUILD=	yes
17
USES=	tar:bzip2
18
EXAMPLESDIR=	${PREFIX}/share/examples/ocaml/${PORTNAME}
18
EXAMPLESDIR=	${PREFIX}/share/examples/ocaml/${PORTNAME}
19
19
20
do-install:
20
do-install:
(-)devel/ocaml-cfg/Makefile (-10 / +8 lines)
Lines 4-13 Link Here
4
PORTNAME=	cfg
4
PORTNAME=	cfg
5
PORTVERSION=	2.0.4
5
PORTVERSION=	2.0.4
6
DISTVERSIONPREFIX=	v
6
DISTVERSIONPREFIX=	v
7
PORTREVISION=	1
7
CATEGORIES=	devel
8
CATEGORIES=	devel
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
10
10
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	Library for manipulation of context-free grammars
12
COMMENT=	Library for manipulation of context-free grammars
12
13
13
LICENSE=	LGPL21+
14
LICENSE=	LGPL21+
Lines 15-28 Link Here
15
16
16
BUILD_DEPENDS=	menhir:devel/menhir
17
BUILD_DEPENDS=	menhir:devel/menhir
17
18
19
USES=		ocaml
20
USE_OCAML=	findlib:plist wash
18
USE_GITHUB=	yes
21
USE_GITHUB=	yes
19
GH_ACCOUNT=	mmottl
22
GH_ACCOUNT=	mmottl
20
21
USE_OCAML=	yes
22
USE_OCAML_FINDLIB=yes
23
USE_OCAMLFIND_PLIST=yes
24
USE_OCAML_WASH=	yes
25
26
HAS_CONFIGURE=	yes
23
HAS_CONFIGURE=	yes
27
CONFIGURE_ARGS=	--prefix ${PREFIX} --disable-docs --disable-examples
24
CONFIGURE_ARGS=	--prefix ${PREFIX} --disable-docs --disable-examples
28
MAKE_JOBS_UNSAFE=yes
25
MAKE_JOBS_UNSAFE=yes
Lines 29-35 Link Here
29
26
30
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
27
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
31
EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
28
EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
32
33
PORTDOCS=	*
29
PORTDOCS=	*
34
PORTEXAMPLES=	*
30
PORTEXAMPLES=	*
35
31
Lines 37-45 Link Here
37
33
38
post-install-DOCS-on:
34
post-install-DOCS-on:
39
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
35
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
40
	cd ${WRKSRC} && ${INSTALL_DATA} AUTHORS.txt CHANGES.txt README.md ${STAGEDIR}${DOCSDIR}
36
	cd ${WRKSRC} && ${INSTALL_DATA} AUTHORS.txt \
37
	    CHANGES.txt README.md ${STAGEDIR}${DOCSDIR}
41
38
42
post-install-EXAMPLES-on:
39
post-install-EXAMPLES-on:
43
	@(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
40
	cd ${WRKSRC}/examples && \
41
	    ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
44
42
45
.include <bsd.port.mk>
43
.include <bsd.port.mk>
(-)devel/ocaml-classes/Makefile (-5 / +5 lines)
Lines 1-21 Link Here
1
# Created by: Michaël Grünewald
1
# Created by: Michaëì Grüîewald
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	classes
4
PORTNAME=	classes
5
PORTVERSION=	4.00
5
PORTVERSION=	4.00
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/dist/
8
MASTER_SITES=	http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/dist/
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
DISTNAME=	ocaml-${PORTNAME}-${PORTVERSION}
10
DISTNAME=	ocaml-${PORTNAME}-${PORTVERSION}
10
11
11
MAINTAINER=	ports@FreeBSD.org
12
MAINTAINER=	hrs@FreeBSD.org
12
COMMENT=	Ocaml Object interface for ocaml's standard library modules
13
COMMENT=	Ocaml Object interface for ocaml's standard library modules
13
14
14
LICENSE=	LGPL21
15
LICENSE=	LGPL21
15
16
16
USE_OCAML=	yes
17
USES=		ocaml
17
USE_OCAML_FINDLIB=	yes
18
USE_OCAML=	findlib:plist
18
USE_OCAMLFIND_PLIST=	yes
19
MAKE_ENV=	INSTALL="${INSTALL_DATA}"
19
MAKE_ENV=	INSTALL="${INSTALL_DATA}"
20
20
21
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/ocaml-cppo/Makefile (-5 / +17 lines)
Lines 2-17 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	cppo
4
PORTNAME=	cppo
5
PORTVERSION=	0.9.2
5
PORTVERSION=	1.4.1
6
DISTVERSIONPREFIX=	v
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://martin.jambon.free.fr/
8
PKGNAMEPREFIX=	ocaml-
8
PKGNAMEPREFIX=	ocaml-
9
9
10
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	Simple preprocessor for OCaml
11
COMMENT=	Simple preprocessor for OCaml
12
12
13
USES=		gmake
13
LICENSE=	BSD3CLAUSE
14
USE_OCAML=	yes
14
15
USES=		gmake ocaml
16
USE_OCAML=	findlib:plist ocamlbuild
17
OCAML_PKGDIRS=	cppo_ocamlbuild
18
USE_GITHUB=	yes
19
GH_ACCOUNT=	mjambon
20
MAKE_ARGS=	PREFIX=${STAGEDIR}${PREFIX}
15
MAKE_JOBS_UNSAFE=	yes
21
MAKE_JOBS_UNSAFE=	yes
22
ALL_TARGET=	default
23
PLIST_FILES=	bin/cppo
16
24
25
post-install:
26
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/cppo \
27
	    ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/cppo_ocamlbuild/ocamlbuild_cppo.cmxs
28
17
.include <bsd.port.mk>
29
.include <bsd.port.mk>
(-)devel/ocaml-cppo/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (cppo-0.9.2.tar.gz) = ee4693b16e82e0d7f9b955dc6d935c518958fdd87b8e9402cc54a52e6e03897f
1
TIMESTAMP = 1489431909
2
SIZE (cppo-0.9.2.tar.gz) = 20234
2
SHA256 (mjambon-cppo-v1.4.1_GH0.tar.gz) = 5b7efc30256e1568a0f39ddeadc54ff57c4ec1b183ae034db36e27c0ad51f509
3
SIZE (mjambon-cppo-v1.4.1_GH0.tar.gz) = 26547
(-)devel/ocaml-cppo/files/patch-Makefile (-13 lines)
Lines 1-13 Link Here
1
--- Makefile.orig	2014-07-10 23:43:16.837117715 +0800
2
+++ Makefile	2014-07-10 23:43:35.518127751 +0800
3
@@ -33,8 +33,8 @@ opt: $(ML)
4
 	ocamlopt -o cppo -dtypes unix.cmxa $(ML)
5
 
6
 install:
7
-	install -m 0755 cppo $(BINDIR) || \
8
-		install -m 0755 cppo.exe $(BINDIR)
9
+	install -m 0755 cppo $(DESTDIR)$(BINDIR) || \
10
+		install -m 0755 cppo.exe $(DESTDOR)$(BINDIR)
11
 
12
 cppo_version.ml: Makefile
13
 	echo 'let cppo_version = "$(VERSION)"' > cppo_version.ml
(-)devel/ocaml-cppo/pkg-plist (-1 lines)
Line 1 Link Here
1
bin/cppo
(-)devel/ocaml-extlib/Makefile (-12 / +6 lines)
Lines 3-12 Link Here
3
3
4
PORTNAME=	extlib
4
PORTNAME=	extlib
5
PORTVERSION=	1.7.1
5
PORTVERSION=	1.7.1
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
PKGNAMEPREFIX=	ocaml-
8
PKGNAMEPREFIX=	ocaml-
8
9
9
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	hrs@FreeBSD.org
10
COMMENT=	Complete - yet small - standard library for OCaml
11
COMMENT=	Complete - yet small - standard library for OCaml
11
12
12
LICENSE=	LGPL21
13
LICENSE=	LGPL21
Lines 13-36 Link Here
13
14
14
BUILD_DEPENDS=	cppo:devel/ocaml-cppo
15
BUILD_DEPENDS=	cppo:devel/ocaml-cppo
15
16
16
WRKSRC_SUBDIR=	src
17
USES=		gmake ocaml
17
18
USE_OCAML=	findlib:plist camlp4
18
USE_GITHUB=	yes
19
USE_GITHUB=	yes
19
GH_ACCOUNT=	ygrek
20
GH_ACCOUNT=	ygrek
20
GH_PROJECT=	ocaml-extlib
21
GH_PROJECT=	ocaml-extlib
21
22
WRKSRC_SUBDIR=	src
22
USE_OCAML=	yes
23
USE_OCAML_CAMLP4=yes
24
USE_OCAML_FINDLIB=yes
25
USE_OCAMLFIND_PLIST=yes
26
27
USES=		gmake
28
MAKE_ARGS=	VERSION="${PORTVERSION}"
23
MAKE_ARGS=	VERSION="${PORTVERSION}"
29
ALL_TARGET=	all opt doc
24
ALL_TARGET=	all opt doc
30
MAKE_JOBS_UNSAFE=	yes
25
MAKE_JOBS_UNSAFE=	yes
31
26
32
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
27
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
33
34
PORTDOCS=	*
28
PORTDOCS=	*
35
29
36
OPTIONS_DEFINE=	DOCS
30
OPTIONS_DEFINE=	DOCS
Lines 37-42 Link Here
37
31
38
post-install-DOCS-on:
32
post-install-DOCS-on:
39
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
33
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
40
	(cd ${WRKSRC}/doc && ${INSTALL_DATA} * ${STAGEDIR}${DOCSDIR})
34
	cd ${WRKSRC}/doc && ${INSTALL_DATA} * ${STAGEDIR}${DOCSDIR}
41
35
42
.include <bsd.port.mk>
36
.include <bsd.port.mk>
(-)devel/ocaml-lacaml/Makefile (-22 / +14 lines)
Lines 3-39 Link Here
3
3
4
PORTNAME=	lacaml
4
PORTNAME=	lacaml
5
PORTVERSION=	8.0.7
5
PORTVERSION=	8.0.7
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	https://github.com/mmottl/lacaml/releases/download/v${PORTVERSION}/
8
MASTER_SITES=	https://github.com/mmottl/lacaml/releases/download/v${PORTVERSION}/
9
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
10
10
11
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
12
COMMENT=	OCaml interface to BLAS and LAPACK libraries
12
COMMENT=	OCaml interface to BLAS and LAPACK libraries
13
13
14
LICENSE=	LGPL21
14
LICENSE=	LGPL21
15
LICENSE_FILE=	${WRKSRC}/COPYING.txt
15
LICENSE_FILE=	${WRKSRC}/COPYING.txt
16
16
17
USE_OCAML=	yes
17
USES=		blaslapack fortran ocaml
18
USE_OCAML_FINDLIB=yes
18
USE_OCAML=	findlib:plist ldconfig wash
19
USE_OCAMLFIND_PLIST=yes
20
USE_OCAML_LDCONFIG=yes
21
USE_OCAML_WASH=	yes
22
OCAMLFIND_LDCONF=ignore
19
OCAMLFIND_LDCONF=ignore
23
24
USES=		blaslapack fortran
25
HAS_CONFIGURE=	yes
20
HAS_CONFIGURE=	yes
26
CONFIGURE_ARGS=	--prefix ${PREFIX} --disable-docs --disable-examples \
21
CONFIGURE_ARGS=	--prefix ${PREFIX} --disable-docs --disable-examples \
27
		--override conf_ccopt "${CFLAGS}" \
22
		--override conf_ccopt "${CFLAGS}" \
28
		--override conf_cclib "${LDFLAGS}"
23
		--override conf_cclib "${LDFLAGS}"
29
MAKE_JOBS_UNSAFE=yes
24
MAKE_JOBS_UNSAFE=yes
30
31
CFLAGS+=	-fPIC -DEXTERNAL_EXP10
25
CFLAGS+=	-fPIC -DEXTERNAL_EXP10
32
LDFLAGS+=	-L${LOCALBASE}/lib
26
LDFLAGS+=	-L${LOCALBASE}/lib
33
27
34
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
28
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
35
EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
29
EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
36
37
PORTDOCS=	*
30
PORTDOCS=	*
38
PORTEXAMPLES=	*
31
PORTEXAMPLES=	*
39
32
Lines 41-63 Link Here
41
34
42
post-patch:
35
post-patch:
43
	@${REINPLACE_CMD} -e \
36
	@${REINPLACE_CMD} -e \
44
		's|%%BLASLIB%%|${BLASLIB}| ; \
37
	    's|%%BLASLIB%%|${BLASLIB}| ; \
45
		 s|%%LAPACKLIB%%|${LAPACKLIB}| ; \
38
	     s|%%LAPACKLIB%%|${LAPACKLIB}| ; \
46
		 s|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/myocamlbuild.ml
39
	     s|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/myocamlbuild.ml
47
40
48
post-install:
41
post-install:
49
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/lacaml/*.cmxs
42
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/lacaml/*.cmxs \
50
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/lacaml/*.so
43
	    ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/lacaml/*.so
51
44
52
post-install-DOCS-on:
45
post-install-DOCS-on:
53
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
46
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
54
.for i in AUTHORS.txt CHANGES.txt README.md TODO.md
47
	cd ${WRKSRC} && ${INSTALL_DATA} \
55
	(cd ${WRKSRC} && ${INSTALL_DATA} ${i} \
48
	    AUTHORS.txt CHANGES.txt README.md TODO.md \
56
		${STAGEDIR}${DOCSDIR})
49
	    ${STAGEDIR}${DOCSDIR}
57
.endfor
58
50
59
post-install-EXAMPLES-on:
51
post-install-EXAMPLES-on:
60
	@(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . \
52
	cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . \
61
		${STAGEDIR}${EXAMPLESDIR})
53
	    ${STAGEDIR}${EXAMPLESDIR}
62
54
63
.include <bsd.port.mk>
55
.include <bsd.port.mk>
(-)math/coq/Makefile (-13 / +5 lines)
Lines 2-7 Link Here
2
2
3
PORTNAME=	coq
3
PORTNAME=	coq
4
PORTVERSION=	8.6
4
PORTVERSION=	8.6
5
PORTREVISION=	1
5
PORTEPOCH=	3
6
PORTEPOCH=	3
6
CATEGORIES=	math
7
CATEGORIES=	math
7
MASTER_SITES=	http://coq.inria.fr/distrib/V${PORTVERSION}/files/ \
8
MASTER_SITES=	http://coq.inria.fr/distrib/V${PORTVERSION}/files/ \
Lines 13-34 Link Here
13
LICENSE=	LGPL21
14
LICENSE=	LGPL21
14
LICENSE_FILE=	${WRKSRC}/LICENSE
15
LICENSE_FILE=	${WRKSRC}/LICENSE
15
16
16
BUILD_DEPENDS=	camlp5:devel/ocaml-camlp5 \
17
		ocamlfind:devel/ocaml-findlib
18
LIB_DEPENDS=	libfontconfig.so:x11-fonts/fontconfig \
17
LIB_DEPENDS=	libfontconfig.so:x11-fonts/fontconfig \
19
		libfreetype.so:print/freetype2
18
		libfreetype.so:print/freetype2
20
19
21
USES=		gmake gettext-runtime
20
USES=		gmake gettext-runtime ocaml
22
USE_EMACS=	yes
21
USE_EMACS=	yes
23
USE_GNOME=	atk cairo gdkpixbuf2 glib20 gtk20 gtksourceview2 pango
22
USE_GNOME=	atk cairo gdkpixbuf2 glib20 gtk20 gtksourceview2 pango
24
USE_LDCONFIG=	${PREFIX}/lib/coq
23
USE_LDCONFIG=	${PREFIX}/lib/coq
25
USE_OCAML=	yes
24
USE_OCAML=	camlp5 findlib
26
HAS_CONFIGURE=	yes
25
HAS_CONFIGURE=	yes
27
CONFIGURE_ARGS=	-prefix ${PREFIX} \
26
CONFIGURE_ARGS=	-prefix ${PREFIX} \
28
		-mandir ${PREFIX}/man \
27
		-mandir ${PREFIX}/man \
29
		-emacslib ${PREFIX}/share/emacs/site-lisp/coq \
28
		-emacslib ${PREFIX}/share/emacs/site-lisp/coq \
30
		-usecamlp5 \
29
		-ocamlfind ${LOCALBASE}/bin/ocamlfind \
31
		-byteonly
30
		-usecamlp5
32
MAKE_ENV=	VERBOSE=1
31
MAKE_ENV=	VERBOSE=1
33
ALL_TARGET=	world
32
ALL_TARGET=	world
34
33
Lines 51-61 Link Here
51
add-plist-post:
50
add-plist-post:
52
	@${DO_NADA}
51
	@${DO_NADA}
53
52
54
post-patch:
55
	${REINPLACE_CMD} -e '/show_latex_mes/s/)$$/; true)/' \
56
	    ${WRKSRC}/Makefile.doc
57
58
post-install:
59
	cd ${STAGEDIR}${PREFIX} && ${STRIP_CMD} ${STRIP_FILES}
60
61
.include <bsd.port.mk>
53
.include <bsd.port.mk>
(-)math/coq/files/patch-Makefile.common (+14 lines)
Line 0 Link Here
1
--- Makefile.common.orig	2016-12-08 15:13:52 UTC
2
+++ Makefile.common
3
@@ -47,8 +47,9 @@ else
4
   DEPNATDYN:=-natdynlink no
5
 endif
6
 
7
-INSTALLBIN:=install
8
-INSTALLLIB:=install -m 644 
9
+INSTALLBIN:=${BSD_INSTALL_PROGRAM}
10
+INSTALLLIB:=${BSD_INSTALL_LIB}
11
+INSTALLDATA:=${BSD_INSTALL_DATA}
12
 INSTALLSH:=./install.sh
13
 MKDIR:=install -d
14
 
(-)math/coq/files/patch-Makefile.ide (+31 lines)
Line 0 Link Here
1
--- Makefile.ide.orig	2016-12-08 15:13:52 UTC
2
+++ Makefile.ide
3
@@ -130,9 +130,9 @@ install-ide-bin:
4
 
5
 install-ide-toploop:
6
 	$(MKDIR) $(FULLCOQLIB)/toploop
7
-	$(INSTALLBIN) $(IDETOPLOOPCMA) $(FULLCOQLIB)/toploop/
8
+	$(INSTALLDATA) $(IDETOPLOOPCMA) $(FULLCOQLIB)/toploop/
9
 ifeq ($(BEST),opt)
10
-	$(INSTALLBIN) $(IDETOPLOOPCMA:.cma=.cmxs) $(FULLCOQLIB)/toploop/
11
+	$(INSTALLLIB) $(IDETOPLOOPCMA:.cma=.cmxs) $(FULLCOQLIB)/toploop/
12
 endif
13
 
14
 install-ide-devfiles:
15
@@ -145,13 +145,13 @@ endif
16
 
17
 install-ide-files: #Please update $(COQIDEAPP)/Contents/Resources/ at the same time
18
 	$(MKDIR) $(FULLDATADIR)
19
-	$(INSTALLLIB) ide/coq.png ide/*.lang ide/coq_style.xml $(FULLDATADIR)
20
+	$(INSTALLDATA) ide/coq.png ide/*.lang ide/coq_style.xml $(FULLDATADIR)
21
 	$(MKDIR) $(FULLCONFIGDIR)
22
-	if [ $(IDEINT) = QUARTZ ] ; then $(INSTALLLIB) ide/mac_default_accel_map $(FULLCONFIGDIR)/coqide.keys ; fi
23
+	if [ $(IDEINT) = QUARTZ ] ; then $(INSTALLDATA) ide/mac_default_accel_map $(FULLCONFIGDIR)/coqide.keys ; fi
24
 
25
 install-ide-info:
26
 	$(MKDIR) $(FULLDOCDIR)
27
-	$(INSTALLLIB) ide/FAQ $(FULLDOCDIR)/FAQ-CoqIde
28
+	$(INSTALLDATA) ide/FAQ $(FULLDOCDIR)/FAQ-CoqIde
29
 
30
 ###########################################################################
31
 # CoqIde MacOS special targets
(-)math/coq/files/patch-Makefile.install (+52 lines)
Lines 9-11 Link Here
9
 #OLDROOT=
9
 #OLDROOT=
10
 
10
 
11
   # Can be changed for a local installation (to make packages).
11
   # Can be changed for a local installation (to make packages).
12
@@ -64,11 +64,12 @@ install-coq: install-binaries install-li
13
 
14
 install-binaries: install-tools
15
 	$(MKDIR) $(FULLBINDIR)
16
-	$(INSTALLBIN) $(COQC) $(COQTOPBYTE) $(COQTOPEXE) $(CHICKEN) $(FULLBINDIR)
17
+	$(INSTALLBIN) $(COQC) $(COQTOPEXE) $(CHICKEN) $(FULLBINDIR)
18
+	$(INSTALLDATA) $(COQTOPBYTE) $(FULLBINDIR)
19
 	$(MKDIR) $(FULLCOQLIB)/toploop
20
-	$(INSTALLBIN) $(TOPLOOPCMA) $(FULLCOQLIB)/toploop/
21
+	$(INSTALLDATA) $(TOPLOOPCMA) $(FULLCOQLIB)/toploop/
22
 ifeq ($(BEST),opt)
23
-	$(INSTALLBIN) $(TOPLOOPCMA:.cma=.cmxs) $(FULLCOQLIB)/toploop/
24
+	$(INSTALLLIB) $(TOPLOOPCMA:.cma=.cmxs) $(FULLCOQLIB)/toploop/
25
 endif
26
 
27
 
28
@@ -77,7 +78,7 @@ install-tools:
29
 	# recopie des fichiers de style pour coqide
30
 	$(MKDIR) $(FULLCOQLIB)/tools/coqdoc
31
 	touch $(FULLCOQLIB)/tools/coqdoc/coqdoc.sty $(FULLCOQLIB)/tools/coqdoc/coqdoc.css # to have the mode according to umask (bug #1715)
32
-	$(INSTALLLIB) tools/coqdoc/coqdoc.css tools/coqdoc/coqdoc.sty $(FULLCOQLIB)/tools/coqdoc
33
+	$(INSTALLDATA) tools/coqdoc/coqdoc.css tools/coqdoc/coqdoc.sty $(FULLCOQLIB)/tools/coqdoc
34
 	$(INSTALLBIN) $(TOOLS) $(FULLBINDIR)
35
 
36
 # The list of .cmi to install, including in particular
37
@@ -127,22 +128,22 @@ MANPAGES:=man/coq-tex.1 man/coqdep.1 man
38
 
39
 install-coq-manpages:
40
 	$(MKDIR) $(FULLMANDIR)/man1
41
-	$(INSTALLLIB) $(MANPAGES) $(FULLMANDIR)/man1
42
+	$(INSTALLDATA) $(MANPAGES) $(FULLMANDIR)/man1
43
 
44
 install-emacs:
45
 	$(MKDIR) $(FULLEMACSLIB)
46
-	$(INSTALLLIB) tools/gallina-db.el tools/coq-font-lock.el tools/gallina-syntax.el tools/gallina.el tools/coq-inferior.el $(FULLEMACSLIB)
47
+	$(INSTALLDATA) tools/gallina-db.el tools/coq-font-lock.el tools/gallina-syntax.el tools/gallina.el tools/coq-inferior.el $(FULLEMACSLIB)
48
 
49
 # command to update TeX' kpathsea database
50
 #UPDATETEX = $(MKTEXLSR) /usr/share/texmf /var/spool/texmf $(BASETEXDIR) > /dev/null
51
 
52
 install-latex:
53
 	$(MKDIR) $(FULLCOQDOCDIR)
54
-	$(INSTALLLIB) tools/coqdoc/coqdoc.sty $(FULLCOQDOCDIR)
55
+	$(INSTALLDATA) tools/coqdoc/coqdoc.sty $(FULLCOQDOCDIR)
56
 #	-$(UPDATETEX)
57
 
58
 install-meta: META.coq
59
-	$(INSTALLLIB) META.coq $(FULLCOQLIB)/META
60
+	$(INSTALLDATA) META.coq $(FULLCOQLIB)/META
61
 
62
 # For emacs:
63
 # Local Variables:
(-)math/coq/files/patch-install.sh (+11 lines)
Line 0 Link Here
1
--- install.sh.orig	2016-12-08 15:13:52 UTC
2
+++ install.sh
3
@@ -8,7 +8,7 @@ for f; do
4
   dn=`dirname $f`
5
   install -d "$dest/$dn"
6
   case $bn in
7
-      *.cmxs) install -m 755 $f "$dest/$dn/$bn"
8
+      *.cmxs) install -s -m 755 $f "$dest/$dn/$bn"
9
 	      ;;
10
       *) install -m 644 $f "$dest/$dn/$bn"
11
 	 ;;
(-)math/coq/pkg-plist (-499 / +1547 lines)
Lines 14-20 Link Here
14
lib/coq/META
14
lib/coq/META
15
lib/coq/config/coq_config.cmi
15
lib/coq/config/coq_config.cmi
16
lib/coq/dllcoqrun.so
16
lib/coq/dllcoqrun.so
17
lib/coq/engine/engine.a
17
lib/coq/engine/engine.cma
18
lib/coq/engine/engine.cma
19
lib/coq/engine/engine.cmxa
18
lib/coq/engine/evarutil.cmi
20
lib/coq/engine/evarutil.cmi
19
lib/coq/engine/evd.cmi
21
lib/coq/engine/evd.cmi
20
lib/coq/engine/ftactic.cmi
22
lib/coq/engine/ftactic.cmi
Lines 39-45 Link Here
39
%%IDE%%lib/coq/ide/document.cmi
41
%%IDE%%lib/coq/ide/document.cmi
40
%%IDE%%lib/coq/ide/fileOps.cmi
42
%%IDE%%lib/coq/ide/fileOps.cmi
41
%%IDE%%lib/coq/ide/gtk_parsing.cmi
43
%%IDE%%lib/coq/ide/gtk_parsing.cmi
44
%%IDE%%lib/coq/ide/ide.a
42
%%IDE%%lib/coq/ide/ide.cma
45
%%IDE%%lib/coq/ide/ide.cma
46
%%IDE%%lib/coq/ide/ide.cmxa
43
%%IDE%%lib/coq/ide/ideutils.cmi
47
%%IDE%%lib/coq/ide/ideutils.cmi
44
%%IDE%%lib/coq/ide/minilib.cmi
48
%%IDE%%lib/coq/ide/minilib.cmi
45
%%IDE%%lib/coq/ide/nanoPG.cmi
49
%%IDE%%lib/coq/ide/nanoPG.cmi
Lines 80-86 Link Here
80
lib/coq/interp/dumpglob.cmi
84
lib/coq/interp/dumpglob.cmi
81
lib/coq/interp/genintern.cmi
85
lib/coq/interp/genintern.cmi
82
lib/coq/interp/implicit_quantifiers.cmi
86
lib/coq/interp/implicit_quantifiers.cmi
87
lib/coq/interp/interp.a
83
lib/coq/interp/interp.cma
88
lib/coq/interp/interp.cma
89
lib/coq/interp/interp.cmxa
84
lib/coq/interp/modintern.cmi
90
lib/coq/interp/modintern.cmi
85
lib/coq/interp/notation.cmi
91
lib/coq/interp/notation.cmi
86
lib/coq/interp/notation_ops.cmi
92
lib/coq/interp/notation_ops.cmi
Lines 121-127 Link Here
121
lib/coq/kernel/fast_typeops.cmi
127
lib/coq/kernel/fast_typeops.cmi
122
lib/coq/kernel/indtypes.cmi
128
lib/coq/kernel/indtypes.cmi
123
lib/coq/kernel/inductive.cmi
129
lib/coq/kernel/inductive.cmi
130
lib/coq/kernel/kernel.a
124
lib/coq/kernel/kernel.cma
131
lib/coq/kernel/kernel.cma
132
lib/coq/kernel/kernel.cmxa
125
lib/coq/kernel/mod_subst.cmi
133
lib/coq/kernel/mod_subst.cmi
126
lib/coq/kernel/mod_typing.cmi
134
lib/coq/kernel/mod_typing.cmi
127
lib/coq/kernel/modops.cmi
135
lib/coq/kernel/modops.cmi
Lines 168-174 Link Here
168
lib/coq/lib/cUnix.cmi
176
lib/coq/lib/cUnix.cmi
169
lib/coq/lib/cWarnings.cmi
177
lib/coq/lib/cWarnings.cmi
170
lib/coq/lib/canary.cmi
178
lib/coq/lib/canary.cmi
179
lib/coq/lib/clib.a
171
lib/coq/lib/clib.cma
180
lib/coq/lib/clib.cma
181
lib/coq/lib/clib.cmxa
172
lib/coq/lib/control.cmi
182
lib/coq/lib/control.cmi
173
lib/coq/lib/deque.cmi
183
lib/coq/lib/deque.cmi
174
lib/coq/lib/dyn.cmi
184
lib/coq/lib/dyn.cmi
Lines 186-192 Link Here
186
lib/coq/lib/hook.cmi
196
lib/coq/lib/hook.cmi
187
lib/coq/lib/iStream.cmi
197
lib/coq/lib/iStream.cmi
188
lib/coq/lib/int.cmi
198
lib/coq/lib/int.cmi
199
lib/coq/lib/lib.a
189
lib/coq/lib/lib.cma
200
lib/coq/lib/lib.cma
201
lib/coq/lib/lib.cmxa
190
lib/coq/lib/loc.cmi
202
lib/coq/lib/loc.cmi
191
lib/coq/lib/minisys.cmi
203
lib/coq/lib/minisys.cmi
192
lib/coq/lib/monad.cmi
204
lib/coq/lib/monad.cmi
Lines 211-216 Link Here
211
lib/coq/lib/unionfind.cmi
223
lib/coq/lib/unionfind.cmi
212
lib/coq/lib/util.cmi
224
lib/coq/lib/util.cmi
213
lib/coq/lib/xml_datatype.cmi
225
lib/coq/lib/xml_datatype.cmi
226
lib/coq/libcoqrun.a
214
lib/coq/library/declare.cmi
227
lib/coq/library/declare.cmi
215
lib/coq/library/declaremods.cmi
228
lib/coq/library/declaremods.cmi
216
lib/coq/library/decls.cmi
229
lib/coq/library/decls.cmi
Lines 225-232 Link Here
225
lib/coq/library/lib.cmi
238
lib/coq/library/lib.cmi
226
lib/coq/library/libnames.cmi
239
lib/coq/library/libnames.cmi
227
lib/coq/library/libobject.cmi
240
lib/coq/library/libobject.cmi
241
lib/coq/library/library.a
228
lib/coq/library/library.cma
242
lib/coq/library/library.cma
229
lib/coq/library/library.cmi
243
lib/coq/library/library.cmi
244
lib/coq/library/library.cmxa
230
lib/coq/library/loadpath.cmi
245
lib/coq/library/loadpath.cmi
231
lib/coq/library/nameops.cmi
246
lib/coq/library/nameops.cmi
232
lib/coq/library/nametab.cmi
247
lib/coq/library/nametab.cmi
Lines 243-249 Link Here
243
lib/coq/ltac/g_ltac.cmi
258
lib/coq/ltac/g_ltac.cmi
244
lib/coq/ltac/g_obligations.cmi
259
lib/coq/ltac/g_obligations.cmi
245
lib/coq/ltac/g_rewrite.cmi
260
lib/coq/ltac/g_rewrite.cmi
261
lib/coq/ltac/ltac.a
246
lib/coq/ltac/ltac.cma
262
lib/coq/ltac/ltac.cma
263
lib/coq/ltac/ltac.cmxa
247
lib/coq/ltac/profile_ltac.cmi
264
lib/coq/ltac/profile_ltac.cmi
248
lib/coq/ltac/profile_ltac_tactics.cmi
265
lib/coq/ltac/profile_ltac_tactics.cmi
249
lib/coq/ltac/rewrite.cmi
266
lib/coq/ltac/rewrite.cmi
Lines 265-280 Link Here
265
lib/coq/parsing/g_proofs.cmi
282
lib/coq/parsing/g_proofs.cmi
266
lib/coq/parsing/g_tactic.cmi
283
lib/coq/parsing/g_tactic.cmi
267
lib/coq/parsing/g_vernac.cmi
284
lib/coq/parsing/g_vernac.cmi
285
lib/coq/parsing/highparsing.a
268
lib/coq/parsing/highparsing.cma
286
lib/coq/parsing/highparsing.cma
287
lib/coq/parsing/highparsing.cmxa
288
lib/coq/parsing/parsing.a
269
lib/coq/parsing/parsing.cma
289
lib/coq/parsing/parsing.cma
290
lib/coq/parsing/parsing.cmxa
270
lib/coq/parsing/pcoq.cmi
291
lib/coq/parsing/pcoq.cmi
271
lib/coq/parsing/tok.cmi
292
lib/coq/parsing/tok.cmi
272
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Algebra.cmi
293
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Algebra.cmi
273
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Algebra.cmo
294
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Algebra.cmx
295
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Algebra.cmxs
296
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Algebra.o
274
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Btauto.cmi
297
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Btauto.cmi
275
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Btauto.cmo
298
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Btauto.cmx
299
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Btauto.cmxs
300
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Btauto.o
276
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Reflect.cmi
301
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Reflect.cmi
277
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Reflect.cmo
302
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Reflect.cmx
303
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Reflect.cmxs
304
lib/coq/plugins/btauto/.coq-native/NCoq_btauto_Reflect.o
278
lib/coq/plugins/btauto/Algebra.glob
305
lib/coq/plugins/btauto/Algebra.glob
279
lib/coq/plugins/btauto/Algebra.v
306
lib/coq/plugins/btauto/Algebra.v
280
lib/coq/plugins/btauto/Algebra.vo
307
lib/coq/plugins/btauto/Algebra.vo
Lines 286-293 Link Here
286
lib/coq/plugins/btauto/Reflect.vo
313
lib/coq/plugins/btauto/Reflect.vo
287
lib/coq/plugins/btauto/btauto_plugin.cmi
314
lib/coq/plugins/btauto/btauto_plugin.cmi
288
lib/coq/plugins/btauto/btauto_plugin.cmo
315
lib/coq/plugins/btauto/btauto_plugin.cmo
316
lib/coq/plugins/btauto/btauto_plugin.cmxs
289
lib/coq/plugins/cc/cc_plugin.cmi
317
lib/coq/plugins/cc/cc_plugin.cmi
290
lib/coq/plugins/cc/cc_plugin.cmo
318
lib/coq/plugins/cc/cc_plugin.cmo
319
lib/coq/plugins/cc/cc_plugin.cmxs
291
lib/coq/plugins/cc/ccalgo.cmi
320
lib/coq/plugins/cc/ccalgo.cmi
292
lib/coq/plugins/cc/ccproof.cmi
321
lib/coq/plugins/cc/ccproof.cmi
293
lib/coq/plugins/cc/cctac.cmi
322
lib/coq/plugins/cc/cctac.cmi
Lines 296-305 Link Here
296
lib/coq/plugins/decl_mode/decl_mode.cmi
325
lib/coq/plugins/decl_mode/decl_mode.cmi
297
lib/coq/plugins/decl_mode/decl_mode_plugin.cmi
326
lib/coq/plugins/decl_mode/decl_mode_plugin.cmi
298
lib/coq/plugins/decl_mode/decl_mode_plugin.cmo
327
lib/coq/plugins/decl_mode/decl_mode_plugin.cmo
328
lib/coq/plugins/decl_mode/decl_mode_plugin.cmxs
299
lib/coq/plugins/decl_mode/decl_proof_instr.cmi
329
lib/coq/plugins/decl_mode/decl_proof_instr.cmi
300
lib/coq/plugins/decl_mode/ppdecl_proof.cmi
330
lib/coq/plugins/decl_mode/ppdecl_proof.cmi
301
lib/coq/plugins/derive/.coq-native/NCoq_derive_Derive.cmi
331
lib/coq/plugins/derive/.coq-native/NCoq_derive_Derive.cmi
302
lib/coq/plugins/derive/.coq-native/NCoq_derive_Derive.cmo
332
lib/coq/plugins/derive/.coq-native/NCoq_derive_Derive.cmx
333
lib/coq/plugins/derive/.coq-native/NCoq_derive_Derive.cmxs
334
lib/coq/plugins/derive/.coq-native/NCoq_derive_Derive.o
303
lib/coq/plugins/derive/Derive.glob
335
lib/coq/plugins/derive/Derive.glob
304
lib/coq/plugins/derive/Derive.v
336
lib/coq/plugins/derive/Derive.v
305
lib/coq/plugins/derive/Derive.vo
337
lib/coq/plugins/derive/Derive.vo
Lines 306-343 Link Here
306
lib/coq/plugins/derive/derive.cmi
338
lib/coq/plugins/derive/derive.cmi
307
lib/coq/plugins/derive/derive_plugin.cmi
339
lib/coq/plugins/derive/derive_plugin.cmi
308
lib/coq/plugins/derive/derive_plugin.cmo
340
lib/coq/plugins/derive/derive_plugin.cmo
341
lib/coq/plugins/derive/derive_plugin.cmxs
309
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellBasic.cmi
342
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellBasic.cmi
310
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellBasic.cmo
343
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellBasic.cmx
344
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellBasic.cmxs
345
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellBasic.o
311
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInt.cmi
346
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInt.cmi
312
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInt.cmo
347
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInt.cmx
348
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInt.cmxs
349
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInt.o
313
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInteger.cmi
350
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInteger.cmi
314
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInteger.cmo
351
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInteger.cmx
352
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInteger.cmxs
353
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInteger.o
315
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatNum.cmi
354
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatNum.cmi
316
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatNum.cmo
355
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatNum.cmx
356
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatNum.cmxs
357
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatNum.o
317
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellString.cmi
358
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellString.cmi
318
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellString.cmo
359
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellString.cmx
360
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellString.cmxs
361
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellString.o
319
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInt.cmi
362
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInt.cmi
320
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInt.cmo
363
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInt.cmx
364
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInt.cmxs
365
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInt.o
321
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInteger.cmi
366
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInteger.cmi
322
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInteger.cmo
367
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInteger.cmx
368
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInteger.cmxs
369
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInteger.o
323
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZNum.cmi
370
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZNum.cmi
324
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZNum.cmo
371
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZNum.cmx
372
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZNum.cmxs
373
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrHaskellZNum.o
325
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlBasic.cmi
374
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlBasic.cmi
326
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlBasic.cmo
375
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlBasic.cmx
376
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlBasic.cmxs
377
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlBasic.o
327
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlBigIntConv.cmi
378
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlBigIntConv.cmi
328
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlBigIntConv.cmo
379
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlBigIntConv.cmx
380
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlBigIntConv.cmxs
381
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlBigIntConv.o
329
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlIntConv.cmi
382
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlIntConv.cmi
330
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlIntConv.cmo
383
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlIntConv.cmx
384
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlIntConv.cmxs
385
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlIntConv.o
331
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatBigInt.cmi
386
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatBigInt.cmi
332
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatBigInt.cmo
387
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatBigInt.cmx
388
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatBigInt.cmxs
389
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatBigInt.o
333
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatInt.cmi
390
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatInt.cmi
334
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatInt.cmo
391
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatInt.cmx
392
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatInt.cmxs
393
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatInt.o
335
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlString.cmi
394
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlString.cmi
336
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlString.cmo
395
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlString.cmx
396
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlString.cmxs
397
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlString.o
337
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlZBigInt.cmi
398
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlZBigInt.cmi
338
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlZBigInt.cmo
399
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlZBigInt.cmx
400
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlZBigInt.cmxs
401
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlZBigInt.o
339
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlZInt.cmi
402
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlZInt.cmi
340
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlZInt.cmo
403
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlZInt.cmx
404
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlZInt.cmxs
405
lib/coq/plugins/extraction/.coq-native/NCoq_extraction_ExtrOcamlZInt.o
341
lib/coq/plugins/extraction/ExtrHaskellBasic.glob
406
lib/coq/plugins/extraction/ExtrHaskellBasic.glob
342
lib/coq/plugins/extraction/ExtrHaskellBasic.v
407
lib/coq/plugins/extraction/ExtrHaskellBasic.v
343
lib/coq/plugins/extraction/ExtrHaskellBasic.vo
408
lib/coq/plugins/extraction/ExtrHaskellBasic.vo
Lines 391-396 Link Here
391
lib/coq/plugins/extraction/extraction.cmi
456
lib/coq/plugins/extraction/extraction.cmi
392
lib/coq/plugins/extraction/extraction_plugin.cmi
457
lib/coq/plugins/extraction/extraction_plugin.cmi
393
lib/coq/plugins/extraction/extraction_plugin.cmo
458
lib/coq/plugins/extraction/extraction_plugin.cmo
459
lib/coq/plugins/extraction/extraction_plugin.cmxs
394
lib/coq/plugins/extraction/haskell.cmi
460
lib/coq/plugins/extraction/haskell.cmi
395
lib/coq/plugins/extraction/json.cmi
461
lib/coq/plugins/extraction/json.cmi
396
lib/coq/plugins/extraction/miniml.cmi
462
lib/coq/plugins/extraction/miniml.cmi
Lines 403-416 Link Here
403
lib/coq/plugins/firstorder/ground.cmi
469
lib/coq/plugins/firstorder/ground.cmi
404
lib/coq/plugins/firstorder/ground_plugin.cmi
470
lib/coq/plugins/firstorder/ground_plugin.cmi
405
lib/coq/plugins/firstorder/ground_plugin.cmo
471
lib/coq/plugins/firstorder/ground_plugin.cmo
472
lib/coq/plugins/firstorder/ground_plugin.cmxs
406
lib/coq/plugins/firstorder/instances.cmi
473
lib/coq/plugins/firstorder/instances.cmi
407
lib/coq/plugins/firstorder/rules.cmi
474
lib/coq/plugins/firstorder/rules.cmi
408
lib/coq/plugins/firstorder/sequent.cmi
475
lib/coq/plugins/firstorder/sequent.cmi
409
lib/coq/plugins/firstorder/unify.cmi
476
lib/coq/plugins/firstorder/unify.cmi
410
lib/coq/plugins/fourier/.coq-native/NCoq_fourier_Fourier.cmi
477
lib/coq/plugins/fourier/.coq-native/NCoq_fourier_Fourier.cmi
411
lib/coq/plugins/fourier/.coq-native/NCoq_fourier_Fourier.cmo
478
lib/coq/plugins/fourier/.coq-native/NCoq_fourier_Fourier.cmx
479
lib/coq/plugins/fourier/.coq-native/NCoq_fourier_Fourier.cmxs
480
lib/coq/plugins/fourier/.coq-native/NCoq_fourier_Fourier.o
412
lib/coq/plugins/fourier/.coq-native/NCoq_fourier_Fourier_util.cmi
481
lib/coq/plugins/fourier/.coq-native/NCoq_fourier_Fourier_util.cmi
413
lib/coq/plugins/fourier/.coq-native/NCoq_fourier_Fourier_util.cmo
482
lib/coq/plugins/fourier/.coq-native/NCoq_fourier_Fourier_util.cmx
483
lib/coq/plugins/fourier/.coq-native/NCoq_fourier_Fourier_util.cmxs
484
lib/coq/plugins/fourier/.coq-native/NCoq_fourier_Fourier_util.o
414
lib/coq/plugins/fourier/Fourier.glob
485
lib/coq/plugins/fourier/Fourier.glob
415
lib/coq/plugins/fourier/Fourier.v
486
lib/coq/plugins/fourier/Fourier.v
416
lib/coq/plugins/fourier/Fourier.vo
487
lib/coq/plugins/fourier/Fourier.vo
Lines 419-426 Link Here
419
lib/coq/plugins/fourier/Fourier_util.vo
490
lib/coq/plugins/fourier/Fourier_util.vo
420
lib/coq/plugins/fourier/fourier_plugin.cmi
491
lib/coq/plugins/fourier/fourier_plugin.cmi
421
lib/coq/plugins/fourier/fourier_plugin.cmo
492
lib/coq/plugins/fourier/fourier_plugin.cmo
493
lib/coq/plugins/fourier/fourier_plugin.cmxs
422
lib/coq/plugins/funind/.coq-native/NCoq_funind_Recdef.cmi
494
lib/coq/plugins/funind/.coq-native/NCoq_funind_Recdef.cmi
423
lib/coq/plugins/funind/.coq-native/NCoq_funind_Recdef.cmo
495
lib/coq/plugins/funind/.coq-native/NCoq_funind_Recdef.cmx
496
lib/coq/plugins/funind/.coq-native/NCoq_funind_Recdef.cmxs
497
lib/coq/plugins/funind/.coq-native/NCoq_funind_Recdef.o
424
lib/coq/plugins/funind/Recdef.glob
498
lib/coq/plugins/funind/Recdef.glob
425
lib/coq/plugins/funind/Recdef.v
499
lib/coq/plugins/funind/Recdef.v
426
lib/coq/plugins/funind/Recdef.vo
500
lib/coq/plugins/funind/Recdef.vo
Lines 433-468 Link Here
433
lib/coq/plugins/funind/recdef.cmi
507
lib/coq/plugins/funind/recdef.cmi
434
lib/coq/plugins/funind/recdef_plugin.cmi
508
lib/coq/plugins/funind/recdef_plugin.cmi
435
lib/coq/plugins/funind/recdef_plugin.cmo
509
lib/coq/plugins/funind/recdef_plugin.cmo
510
lib/coq/plugins/funind/recdef_plugin.cmxs
436
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Env.cmi
511
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Env.cmi
437
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Env.cmo
512
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Env.cmx
513
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Env.cmxs
514
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Env.o
438
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_EnvRing.cmi
515
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_EnvRing.cmi
439
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_EnvRing.cmo
516
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_EnvRing.cmx
517
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_EnvRing.cmxs
518
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_EnvRing.o
440
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lia.cmi
519
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lia.cmi
441
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lia.cmo
520
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lia.cmx
521
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lia.cmxs
522
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lia.o
442
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lqa.cmi
523
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lqa.cmi
443
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lqa.cmo
524
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lqa.cmx
525
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lqa.cmxs
526
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lqa.o
444
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lra.cmi
527
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lra.cmi
445
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lra.cmo
528
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lra.cmx
529
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lra.cmxs
530
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Lra.o
446
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_OrderedRing.cmi
531
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_OrderedRing.cmi
447
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_OrderedRing.cmo
532
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_OrderedRing.cmx
533
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_OrderedRing.cmxs
534
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_OrderedRing.o
448
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Psatz.cmi
535
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Psatz.cmi
449
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Psatz.cmo
536
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Psatz.cmx
537
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Psatz.cmxs
538
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Psatz.o
450
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_QMicromega.cmi
539
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_QMicromega.cmi
451
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_QMicromega.cmo
540
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_QMicromega.cmx
541
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_QMicromega.cmxs
542
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_QMicromega.o
452
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_RMicromega.cmi
543
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_RMicromega.cmi
453
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_RMicromega.cmo
544
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_RMicromega.cmx
545
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_RMicromega.cmxs
546
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_RMicromega.o
454
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Refl.cmi
547
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Refl.cmi
455
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Refl.cmo
548
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Refl.cmx
549
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Refl.cmxs
550
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Refl.o
456
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_RingMicromega.cmi
551
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_RingMicromega.cmi
457
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_RingMicromega.cmo
552
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_RingMicromega.cmx
553
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_RingMicromega.cmxs
554
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_RingMicromega.o
458
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Tauto.cmi
555
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Tauto.cmi
459
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Tauto.cmo
556
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Tauto.cmx
557
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Tauto.cmxs
558
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_Tauto.o
460
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_VarMap.cmi
559
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_VarMap.cmi
461
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_VarMap.cmo
560
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_VarMap.cmx
561
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_VarMap.cmxs
562
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_VarMap.o
462
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_ZCoeff.cmi
563
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_ZCoeff.cmi
463
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_ZCoeff.cmo
564
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_ZCoeff.cmx
565
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_ZCoeff.cmxs
566
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_ZCoeff.o
464
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_ZMicromega.cmi
567
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_ZMicromega.cmi
465
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_ZMicromega.cmo
568
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_ZMicromega.cmx
569
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_ZMicromega.cmxs
570
lib/coq/plugins/micromega/.coq-native/NCoq_micromega_ZMicromega.o
466
lib/coq/plugins/micromega/Env.glob
571
lib/coq/plugins/micromega/Env.glob
467
lib/coq/plugins/micromega/Env.v
572
lib/coq/plugins/micromega/Env.v
468
lib/coq/plugins/micromega/Env.vo
573
lib/coq/plugins/micromega/Env.vo
Lines 512-520 Link Here
512
lib/coq/plugins/micromega/micromega.cmi
617
lib/coq/plugins/micromega/micromega.cmi
513
lib/coq/plugins/micromega/micromega_plugin.cmi
618
lib/coq/plugins/micromega/micromega_plugin.cmi
514
lib/coq/plugins/micromega/micromega_plugin.cmo
619
lib/coq/plugins/micromega/micromega_plugin.cmo
620
lib/coq/plugins/micromega/micromega_plugin.cmxs
515
lib/coq/plugins/micromega/sos.cmi
621
lib/coq/plugins/micromega/sos.cmi
516
lib/coq/plugins/nsatz/.coq-native/NCoq_nsatz_Nsatz.cmi
622
lib/coq/plugins/nsatz/.coq-native/NCoq_nsatz_Nsatz.cmi
517
lib/coq/plugins/nsatz/.coq-native/NCoq_nsatz_Nsatz.cmo
623
lib/coq/plugins/nsatz/.coq-native/NCoq_nsatz_Nsatz.cmx
624
lib/coq/plugins/nsatz/.coq-native/NCoq_nsatz_Nsatz.cmxs
625
lib/coq/plugins/nsatz/.coq-native/NCoq_nsatz_Nsatz.o
518
lib/coq/plugins/nsatz/Nsatz.glob
626
lib/coq/plugins/nsatz/Nsatz.glob
519
lib/coq/plugins/nsatz/Nsatz.v
627
lib/coq/plugins/nsatz/Nsatz.v
520
lib/coq/plugins/nsatz/Nsatz.vo
628
lib/coq/plugins/nsatz/Nsatz.vo
Lines 522-539 Link Here
522
lib/coq/plugins/nsatz/nsatz.cmi
630
lib/coq/plugins/nsatz/nsatz.cmi
523
lib/coq/plugins/nsatz/nsatz_plugin.cmi
631
lib/coq/plugins/nsatz/nsatz_plugin.cmi
524
lib/coq/plugins/nsatz/nsatz_plugin.cmo
632
lib/coq/plugins/nsatz/nsatz_plugin.cmo
633
lib/coq/plugins/nsatz/nsatz_plugin.cmxs
525
lib/coq/plugins/nsatz/polynom.cmi
634
lib/coq/plugins/nsatz/polynom.cmi
526
lib/coq/plugins/nsatz/utile.cmi
635
lib/coq/plugins/nsatz/utile.cmi
527
lib/coq/plugins/omega/.coq-native/NCoq_omega_Omega.cmi
636
lib/coq/plugins/omega/.coq-native/NCoq_omega_Omega.cmi
528
lib/coq/plugins/omega/.coq-native/NCoq_omega_Omega.cmo
637
lib/coq/plugins/omega/.coq-native/NCoq_omega_Omega.cmx
638
lib/coq/plugins/omega/.coq-native/NCoq_omega_Omega.cmxs
639
lib/coq/plugins/omega/.coq-native/NCoq_omega_Omega.o
529
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaLemmas.cmi
640
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaLemmas.cmi
530
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaLemmas.cmo
641
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaLemmas.cmx
642
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaLemmas.cmxs
643
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaLemmas.o
531
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaPlugin.cmi
644
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaPlugin.cmi
532
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaPlugin.cmo
645
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaPlugin.cmx
646
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaPlugin.cmxs
647
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaPlugin.o
533
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaTactic.cmi
648
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaTactic.cmi
534
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaTactic.cmo
649
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaTactic.cmx
650
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaTactic.cmxs
651
lib/coq/plugins/omega/.coq-native/NCoq_omega_OmegaTactic.o
535
lib/coq/plugins/omega/.coq-native/NCoq_omega_PreOmega.cmi
652
lib/coq/plugins/omega/.coq-native/NCoq_omega_PreOmega.cmi
536
lib/coq/plugins/omega/.coq-native/NCoq_omega_PreOmega.cmo
653
lib/coq/plugins/omega/.coq-native/NCoq_omega_PreOmega.cmx
654
lib/coq/plugins/omega/.coq-native/NCoq_omega_PreOmega.cmxs
655
lib/coq/plugins/omega/.coq-native/NCoq_omega_PreOmega.o
537
lib/coq/plugins/omega/Omega.glob
656
lib/coq/plugins/omega/Omega.glob
538
lib/coq/plugins/omega/Omega.v
657
lib/coq/plugins/omega/Omega.v
539
lib/coq/plugins/omega/Omega.vo
658
lib/coq/plugins/omega/Omega.vo
Lines 551-567 Link Here
551
lib/coq/plugins/omega/PreOmega.vo
670
lib/coq/plugins/omega/PreOmega.vo
552
lib/coq/plugins/omega/omega_plugin.cmi
671
lib/coq/plugins/omega/omega_plugin.cmi
553
lib/coq/plugins/omega/omega_plugin.cmo
672
lib/coq/plugins/omega/omega_plugin.cmo
673
lib/coq/plugins/omega/omega_plugin.cmxs
554
lib/coq/plugins/quote/.coq-native/NCoq_quote_Quote.cmi
674
lib/coq/plugins/quote/.coq-native/NCoq_quote_Quote.cmi
555
lib/coq/plugins/quote/.coq-native/NCoq_quote_Quote.cmo
675
lib/coq/plugins/quote/.coq-native/NCoq_quote_Quote.cmx
676
lib/coq/plugins/quote/.coq-native/NCoq_quote_Quote.cmxs
677
lib/coq/plugins/quote/.coq-native/NCoq_quote_Quote.o
556
lib/coq/plugins/quote/Quote.glob
678
lib/coq/plugins/quote/Quote.glob
557
lib/coq/plugins/quote/Quote.v
679
lib/coq/plugins/quote/Quote.v
558
lib/coq/plugins/quote/Quote.vo
680
lib/coq/plugins/quote/Quote.vo
559
lib/coq/plugins/quote/quote_plugin.cmi
681
lib/coq/plugins/quote/quote_plugin.cmi
560
lib/coq/plugins/quote/quote_plugin.cmo
682
lib/coq/plugins/quote/quote_plugin.cmo
683
lib/coq/plugins/quote/quote_plugin.cmxs
561
lib/coq/plugins/romega/.coq-native/NCoq_romega_ROmega.cmi
684
lib/coq/plugins/romega/.coq-native/NCoq_romega_ROmega.cmi
562
lib/coq/plugins/romega/.coq-native/NCoq_romega_ROmega.cmo
685
lib/coq/plugins/romega/.coq-native/NCoq_romega_ROmega.cmx
686
lib/coq/plugins/romega/.coq-native/NCoq_romega_ROmega.cmxs
687
lib/coq/plugins/romega/.coq-native/NCoq_romega_ROmega.o
563
lib/coq/plugins/romega/.coq-native/NCoq_romega_ReflOmegaCore.cmi
688
lib/coq/plugins/romega/.coq-native/NCoq_romega_ReflOmegaCore.cmi
564
lib/coq/plugins/romega/.coq-native/NCoq_romega_ReflOmegaCore.cmo
689
lib/coq/plugins/romega/.coq-native/NCoq_romega_ReflOmegaCore.cmx
690
lib/coq/plugins/romega/.coq-native/NCoq_romega_ReflOmegaCore.cmxs
691
lib/coq/plugins/romega/.coq-native/NCoq_romega_ReflOmegaCore.o
565
lib/coq/plugins/romega/ROmega.glob
692
lib/coq/plugins/romega/ROmega.glob
566
lib/coq/plugins/romega/ROmega.v
693
lib/coq/plugins/romega/ROmega.v
567
lib/coq/plugins/romega/ROmega.vo
694
lib/coq/plugins/romega/ROmega.vo
Lines 571-580 Link Here
571
lib/coq/plugins/romega/const_omega.cmi
698
lib/coq/plugins/romega/const_omega.cmi
572
lib/coq/plugins/romega/romega_plugin.cmi
699
lib/coq/plugins/romega/romega_plugin.cmi
573
lib/coq/plugins/romega/romega_plugin.cmo
700
lib/coq/plugins/romega/romega_plugin.cmo
701
lib/coq/plugins/romega/romega_plugin.cmxs
574
lib/coq/plugins/rtauto/.coq-native/NCoq_rtauto_Bintree.cmi
702
lib/coq/plugins/rtauto/.coq-native/NCoq_rtauto_Bintree.cmi
575
lib/coq/plugins/rtauto/.coq-native/NCoq_rtauto_Bintree.cmo
703
lib/coq/plugins/rtauto/.coq-native/NCoq_rtauto_Bintree.cmx
704
lib/coq/plugins/rtauto/.coq-native/NCoq_rtauto_Bintree.cmxs
705
lib/coq/plugins/rtauto/.coq-native/NCoq_rtauto_Bintree.o
576
lib/coq/plugins/rtauto/.coq-native/NCoq_rtauto_Rtauto.cmi
706
lib/coq/plugins/rtauto/.coq-native/NCoq_rtauto_Rtauto.cmi
577
lib/coq/plugins/rtauto/.coq-native/NCoq_rtauto_Rtauto.cmo
707
lib/coq/plugins/rtauto/.coq-native/NCoq_rtauto_Rtauto.cmx
708
lib/coq/plugins/rtauto/.coq-native/NCoq_rtauto_Rtauto.cmxs
709
lib/coq/plugins/rtauto/.coq-native/NCoq_rtauto_Rtauto.o
578
lib/coq/plugins/rtauto/Bintree.glob
710
lib/coq/plugins/rtauto/Bintree.glob
579
lib/coq/plugins/rtauto/Bintree.v
711
lib/coq/plugins/rtauto/Bintree.v
580
lib/coq/plugins/rtauto/Bintree.vo
712
lib/coq/plugins/rtauto/Bintree.vo
Lines 585-638 Link Here
585
lib/coq/plugins/rtauto/refl_tauto.cmi
717
lib/coq/plugins/rtauto/refl_tauto.cmi
586
lib/coq/plugins/rtauto/rtauto_plugin.cmi
718
lib/coq/plugins/rtauto/rtauto_plugin.cmi
587
lib/coq/plugins/rtauto/rtauto_plugin.cmo
719
lib/coq/plugins/rtauto/rtauto_plugin.cmo
720
lib/coq/plugins/rtauto/rtauto_plugin.cmxs
588
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Algebra_syntax.cmi
721
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Algebra_syntax.cmi
589
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Algebra_syntax.cmo
722
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Algebra_syntax.cmx
723
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Algebra_syntax.cmxs
724
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Algebra_syntax.o
590
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_ArithRing.cmi
725
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_ArithRing.cmi
591
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_ArithRing.cmo
726
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_ArithRing.cmx
727
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_ArithRing.cmxs
728
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_ArithRing.o
592
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_BinList.cmi
729
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_BinList.cmi
593
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_BinList.cmo
730
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_BinList.cmx
731
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_BinList.cmxs
732
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_BinList.o
594
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Cring.cmi
733
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Cring.cmi
595
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Cring.cmo
734
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Cring.cmx
735
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Cring.cmxs
736
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Cring.o
596
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field.cmi
737
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field.cmi
597
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field.cmo
738
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field.cmx
739
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field.cmxs
740
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field.o
598
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field_tac.cmi
741
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field_tac.cmi
599
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field_tac.cmo
742
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field_tac.cmx
743
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field_tac.cmxs
744
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field_tac.o
600
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field_theory.cmi
745
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field_theory.cmi
601
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field_theory.cmo
746
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field_theory.cmx
747
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field_theory.cmxs
748
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Field_theory.o
602
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_InitialRing.cmi
749
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_InitialRing.cmi
603
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_InitialRing.cmo
750
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_InitialRing.cmx
751
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_InitialRing.cmxs
752
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_InitialRing.o
604
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Integral_domain.cmi
753
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Integral_domain.cmi
605
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Integral_domain.cmo
754
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Integral_domain.cmx
755
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Integral_domain.cmxs
756
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Integral_domain.o
606
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_NArithRing.cmi
757
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_NArithRing.cmi
607
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_NArithRing.cmo
758
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_NArithRing.cmx
759
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_NArithRing.cmxs
760
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_NArithRing.o
608
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring.cmi
761
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring.cmi
609
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring.cmo
762
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring.cmx
763
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring.cmxs
764
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring.o
610
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_initial.cmi
765
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_initial.cmi
611
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_initial.cmo
766
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_initial.cmx
767
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_initial.cmxs
768
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_initial.o
612
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_polynom.cmi
769
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_polynom.cmi
613
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_polynom.cmo
770
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_polynom.cmx
771
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_polynom.cmxs
772
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_polynom.o
614
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_tac.cmi
773
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_tac.cmi
615
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_tac.cmo
774
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_tac.cmx
775
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_tac.cmxs
776
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_tac.o
616
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_RealField.cmi
777
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_RealField.cmi
617
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_RealField.cmo
778
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_RealField.cmx
779
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_RealField.cmxs
780
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_RealField.o
618
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring.cmi
781
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring.cmi
619
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring.cmo
782
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring.cmx
783
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring.cmxs
784
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring.o
620
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_base.cmi
785
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_base.cmi
621
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_base.cmo
786
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_base.cmx
787
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_base.cmxs
788
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_base.o
622
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_polynom.cmi
789
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_polynom.cmi
623
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_polynom.cmo
790
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_polynom.cmx
791
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_polynom.cmxs
792
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_polynom.o
624
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_tac.cmi
793
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_tac.cmi
625
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_tac.cmo
794
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_tac.cmx
795
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_tac.cmxs
796
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_tac.o
626
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_theory.cmi
797
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_theory.cmi
627
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_theory.cmo
798
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_theory.cmx
799
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_theory.cmxs
800
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_theory.o
628
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Q.cmi
801
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Q.cmi
629
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Q.cmo
802
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Q.cmx
803
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Q.cmxs
804
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Q.o
630
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_R.cmi
805
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_R.cmi
631
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_R.cmo
806
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_R.cmx
807
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_R.cmxs
808
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_R.o
632
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Z.cmi
809
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Z.cmi
633
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Z.cmo
810
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Z.cmx
811
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Z.cmxs
812
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Z.o
634
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_ZArithRing.cmi
813
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_ZArithRing.cmi
635
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_ZArithRing.cmo
814
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_ZArithRing.cmx
815
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_ZArithRing.cmxs
816
lib/coq/plugins/setoid_ring/.coq-native/NCoq_setoid_ring_ZArithRing.o
636
lib/coq/plugins/setoid_ring/Algebra_syntax.glob
817
lib/coq/plugins/setoid_ring/Algebra_syntax.glob
637
lib/coq/plugins/setoid_ring/Algebra_syntax.v
818
lib/coq/plugins/setoid_ring/Algebra_syntax.v
638
lib/coq/plugins/setoid_ring/Algebra_syntax.vo
819
lib/coq/plugins/setoid_ring/Algebra_syntax.vo
Lines 709-716 Link Here
709
lib/coq/plugins/setoid_ring/newring_ast.cmi
890
lib/coq/plugins/setoid_ring/newring_ast.cmi
710
lib/coq/plugins/setoid_ring/newring_plugin.cmi
891
lib/coq/plugins/setoid_ring/newring_plugin.cmi
711
lib/coq/plugins/setoid_ring/newring_plugin.cmo
892
lib/coq/plugins/setoid_ring/newring_plugin.cmo
893
lib/coq/plugins/setoid_ring/newring_plugin.cmxs
712
lib/coq/plugins/ssrmatching/.coq-native/NCoq_ssrmatching_ssrmatching.cmi
894
lib/coq/plugins/ssrmatching/.coq-native/NCoq_ssrmatching_ssrmatching.cmi
713
lib/coq/plugins/ssrmatching/.coq-native/NCoq_ssrmatching_ssrmatching.cmo
895
lib/coq/plugins/ssrmatching/.coq-native/NCoq_ssrmatching_ssrmatching.cmx
896
lib/coq/plugins/ssrmatching/.coq-native/NCoq_ssrmatching_ssrmatching.cmxs
897
lib/coq/plugins/ssrmatching/.coq-native/NCoq_ssrmatching_ssrmatching.o
714
lib/coq/plugins/ssrmatching/ssrmatching.cmi
898
lib/coq/plugins/ssrmatching/ssrmatching.cmi
715
lib/coq/plugins/ssrmatching/ssrmatching.glob
899
lib/coq/plugins/ssrmatching/ssrmatching.glob
716
lib/coq/plugins/ssrmatching/ssrmatching.v
900
lib/coq/plugins/ssrmatching/ssrmatching.v
Lines 717-734 Link Here
717
lib/coq/plugins/ssrmatching/ssrmatching.vo
901
lib/coq/plugins/ssrmatching/ssrmatching.vo
718
lib/coq/plugins/ssrmatching/ssrmatching_plugin.cmi
902
lib/coq/plugins/ssrmatching/ssrmatching_plugin.cmi
719
lib/coq/plugins/ssrmatching/ssrmatching_plugin.cmo
903
lib/coq/plugins/ssrmatching/ssrmatching_plugin.cmo
904
lib/coq/plugins/ssrmatching/ssrmatching_plugin.cmxs
720
lib/coq/plugins/syntax/ascii_syntax_plugin.cmi
905
lib/coq/plugins/syntax/ascii_syntax_plugin.cmi
721
lib/coq/plugins/syntax/ascii_syntax_plugin.cmo
906
lib/coq/plugins/syntax/ascii_syntax_plugin.cmo
907
lib/coq/plugins/syntax/ascii_syntax_plugin.cmxs
722
lib/coq/plugins/syntax/nat_syntax_plugin.cmi
908
lib/coq/plugins/syntax/nat_syntax_plugin.cmi
723
lib/coq/plugins/syntax/nat_syntax_plugin.cmo
909
lib/coq/plugins/syntax/nat_syntax_plugin.cmo
910
lib/coq/plugins/syntax/nat_syntax_plugin.cmxs
724
lib/coq/plugins/syntax/numbers_syntax_plugin.cmi
911
lib/coq/plugins/syntax/numbers_syntax_plugin.cmi
725
lib/coq/plugins/syntax/numbers_syntax_plugin.cmo
912
lib/coq/plugins/syntax/numbers_syntax_plugin.cmo
913
lib/coq/plugins/syntax/numbers_syntax_plugin.cmxs
726
lib/coq/plugins/syntax/r_syntax_plugin.cmi
914
lib/coq/plugins/syntax/r_syntax_plugin.cmi
727
lib/coq/plugins/syntax/r_syntax_plugin.cmo
915
lib/coq/plugins/syntax/r_syntax_plugin.cmo
916
lib/coq/plugins/syntax/r_syntax_plugin.cmxs
728
lib/coq/plugins/syntax/string_syntax_plugin.cmi
917
lib/coq/plugins/syntax/string_syntax_plugin.cmi
729
lib/coq/plugins/syntax/string_syntax_plugin.cmo
918
lib/coq/plugins/syntax/string_syntax_plugin.cmo
919
lib/coq/plugins/syntax/string_syntax_plugin.cmxs
730
lib/coq/plugins/syntax/z_syntax_plugin.cmi
920
lib/coq/plugins/syntax/z_syntax_plugin.cmi
731
lib/coq/plugins/syntax/z_syntax_plugin.cmo
921
lib/coq/plugins/syntax/z_syntax_plugin.cmo
922
lib/coq/plugins/syntax/z_syntax_plugin.cmxs
732
lib/coq/pretyping/arguments_renaming.cmi
923
lib/coq/pretyping/arguments_renaming.cmi
733
lib/coq/pretyping/cases.cmi
924
lib/coq/pretyping/cases.cmi
734
lib/coq/pretyping/cbv.cmi
925
lib/coq/pretyping/cbv.cmi
Lines 748-755 Link Here
748
lib/coq/pretyping/nativenorm.cmi
939
lib/coq/pretyping/nativenorm.cmi
749
lib/coq/pretyping/patternops.cmi
940
lib/coq/pretyping/patternops.cmi
750
lib/coq/pretyping/pretype_errors.cmi
941
lib/coq/pretyping/pretype_errors.cmi
942
lib/coq/pretyping/pretyping.a
751
lib/coq/pretyping/pretyping.cma
943
lib/coq/pretyping/pretyping.cma
752
lib/coq/pretyping/pretyping.cmi
944
lib/coq/pretyping/pretyping.cmi
945
lib/coq/pretyping/pretyping.cmxa
753
lib/coq/pretyping/program.cmi
946
lib/coq/pretyping/program.cmi
754
lib/coq/pretyping/recordops.cmi
947
lib/coq/pretyping/recordops.cmi
755
lib/coq/pretyping/redops.cmi
948
lib/coq/pretyping/redops.cmi
Lines 773-779 Link Here
773
lib/coq/printing/ppvernacsig.cmi
966
lib/coq/printing/ppvernacsig.cmi
774
lib/coq/printing/prettyp.cmi
967
lib/coq/printing/prettyp.cmi
775
lib/coq/printing/printer.cmi
968
lib/coq/printing/printer.cmi
969
lib/coq/printing/printing.a
776
lib/coq/printing/printing.cma
970
lib/coq/printing/printing.cma
971
lib/coq/printing/printing.cmxa
777
lib/coq/printing/printmod.cmi
972
lib/coq/printing/printmod.cmi
778
lib/coq/printing/printmodsig.cmi
973
lib/coq/printing/printmodsig.cmi
779
lib/coq/proofs/clenv.cmi
974
lib/coq/proofs/clenv.cmi
Lines 786-792 Link Here
786
lib/coq/proofs/proof_global.cmi
981
lib/coq/proofs/proof_global.cmi
787
lib/coq/proofs/proof_type.cmi
982
lib/coq/proofs/proof_type.cmi
788
lib/coq/proofs/proof_using.cmi
983
lib/coq/proofs/proof_using.cmi
984
lib/coq/proofs/proofs.a
789
lib/coq/proofs/proofs.cma
985
lib/coq/proofs/proofs.cma
986
lib/coq/proofs/proofs.cmxa
790
lib/coq/proofs/redexpr.cmi
987
lib/coq/proofs/redexpr.cmi
791
lib/coq/proofs/refine.cmi
988
lib/coq/proofs/refine.cmi
792
lib/coq/proofs/refiner.cmi
989
lib/coq/proofs/refiner.cmi
Lines 797-804 Link Here
797
lib/coq/stm/lemmas.cmi
994
lib/coq/stm/lemmas.cmi
798
lib/coq/stm/proofBlockDelimiter.cmi
995
lib/coq/stm/proofBlockDelimiter.cmi
799
lib/coq/stm/spawned.cmi
996
lib/coq/stm/spawned.cmi
997
lib/coq/stm/stm.a
800
lib/coq/stm/stm.cma
998
lib/coq/stm/stm.cma
801
lib/coq/stm/stm.cmi
999
lib/coq/stm/stm.cmi
1000
lib/coq/stm/stm.cmxa
802
lib/coq/stm/tQueue.cmi
1001
lib/coq/stm/tQueue.cmi
803
lib/coq/stm/vcs.cmi
1002
lib/coq/stm/vcs.cmi
804
lib/coq/stm/vernac_classifier.cmi
1003
lib/coq/stm/vernac_classifier.cmi
Lines 823-875 Link Here
823
lib/coq/tactics/leminv.cmi
1022
lib/coq/tactics/leminv.cmi
824
lib/coq/tactics/tactic_matching.cmi
1023
lib/coq/tactics/tactic_matching.cmi
825
lib/coq/tactics/tacticals.cmi
1024
lib/coq/tactics/tacticals.cmi
1025
lib/coq/tactics/tactics.a
826
lib/coq/tactics/tactics.cma
1026
lib/coq/tactics/tactics.cma
827
lib/coq/tactics/tactics.cmi
1027
lib/coq/tactics/tactics.cmi
1028
lib/coq/tactics/tactics.cmxa
828
lib/coq/tactics/term_dnet.cmi
1029
lib/coq/tactics/term_dnet.cmi
829
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith.cmi
1030
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith.cmi
830
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith.cmo
1031
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith.cmx
1032
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith.cmxs
1033
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith.o
831
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith_base.cmi
1034
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith_base.cmi
832
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith_base.cmo
1035
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith_base.cmx
1036
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith_base.cmxs
1037
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith_base.o
833
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Between.cmi
1038
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Between.cmi
834
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Between.cmo
1039
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Between.cmx
1040
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Between.cmxs
1041
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Between.o
835
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Bool_nat.cmi
1042
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Bool_nat.cmi
836
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Bool_nat.cmo
1043
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Bool_nat.cmx
1044
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Bool_nat.cmxs
1045
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Bool_nat.o
837
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare.cmi
1046
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare.cmi
838
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare.cmo
1047
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare.cmx
1048
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare.cmxs
1049
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare.o
839
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare_dec.cmi
1050
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare_dec.cmi
840
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare_dec.cmo
1051
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare_dec.cmx
1052
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare_dec.cmxs
1053
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare_dec.o
841
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Div2.cmi
1054
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Div2.cmi
842
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Div2.cmo
1055
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Div2.cmx
1056
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Div2.cmxs
1057
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Div2.o
843
lib/coq/theories/Arith/.coq-native/NCoq_Arith_EqNat.cmi
1058
lib/coq/theories/Arith/.coq-native/NCoq_Arith_EqNat.cmi
844
lib/coq/theories/Arith/.coq-native/NCoq_Arith_EqNat.cmo
1059
lib/coq/theories/Arith/.coq-native/NCoq_Arith_EqNat.cmx
1060
lib/coq/theories/Arith/.coq-native/NCoq_Arith_EqNat.cmxs
1061
lib/coq/theories/Arith/.coq-native/NCoq_Arith_EqNat.o
845
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Euclid.cmi
1062
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Euclid.cmi
846
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Euclid.cmo
1063
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Euclid.cmx
1064
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Euclid.cmxs
1065
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Euclid.o
847
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Even.cmi
1066
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Even.cmi
848
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Even.cmo
1067
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Even.cmx
1068
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Even.cmxs
1069
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Even.o
849
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Factorial.cmi
1070
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Factorial.cmi
850
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Factorial.cmo
1071
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Factorial.cmx
1072
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Factorial.cmxs
1073
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Factorial.o
851
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Gt.cmi
1074
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Gt.cmi
852
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Gt.cmo
1075
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Gt.cmx
1076
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Gt.cmxs
1077
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Gt.o
853
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Le.cmi
1078
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Le.cmi
854
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Le.cmo
1079
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Le.cmx
1080
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Le.cmxs
1081
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Le.o
855
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Lt.cmi
1082
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Lt.cmi
856
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Lt.cmo
1083
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Lt.cmx
1084
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Lt.cmxs
1085
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Lt.o
857
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Max.cmi
1086
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Max.cmi
858
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Max.cmo
1087
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Max.cmx
1088
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Max.cmxs
1089
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Max.o
859
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Min.cmi
1090
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Min.cmi
860
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Min.cmo
1091
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Min.cmx
1092
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Min.cmxs
1093
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Min.o
861
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Minus.cmi
1094
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Minus.cmi
862
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Minus.cmo
1095
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Minus.cmx
1096
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Minus.cmxs
1097
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Minus.o
863
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Mult.cmi
1098
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Mult.cmi
864
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Mult.cmo
1099
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Mult.cmx
1100
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Mult.cmxs
1101
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Mult.o
865
lib/coq/theories/Arith/.coq-native/NCoq_Arith_PeanoNat.cmi
1102
lib/coq/theories/Arith/.coq-native/NCoq_Arith_PeanoNat.cmi
866
lib/coq/theories/Arith/.coq-native/NCoq_Arith_PeanoNat.cmo
1103
lib/coq/theories/Arith/.coq-native/NCoq_Arith_PeanoNat.cmx
1104
lib/coq/theories/Arith/.coq-native/NCoq_Arith_PeanoNat.cmxs
1105
lib/coq/theories/Arith/.coq-native/NCoq_Arith_PeanoNat.o
867
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Peano_dec.cmi
1106
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Peano_dec.cmi
868
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Peano_dec.cmo
1107
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Peano_dec.cmx
1108
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Peano_dec.cmxs
1109
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Peano_dec.o
869
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Plus.cmi
1110
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Plus.cmi
870
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Plus.cmo
1111
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Plus.cmx
1112
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Plus.cmxs
1113
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Plus.o
871
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Wf_nat.cmi
1114
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Wf_nat.cmi
872
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Wf_nat.cmo
1115
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Wf_nat.cmx
1116
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Wf_nat.cmxs
1117
lib/coq/theories/Arith/.coq-native/NCoq_Arith_Wf_nat.o
873
lib/coq/theories/Arith/Arith.glob
1118
lib/coq/theories/Arith/Arith.glob
874
lib/coq/theories/Arith/Arith.v
1119
lib/coq/theories/Arith/Arith.v
875
lib/coq/theories/Arith/Arith.vo
1120
lib/coq/theories/Arith/Arith.vo
Lines 937-955 Link Here
937
lib/coq/theories/Arith/Wf_nat.v
1182
lib/coq/theories/Arith/Wf_nat.v
938
lib/coq/theories/Arith/Wf_nat.vo
1183
lib/coq/theories/Arith/Wf_nat.vo
939
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bool.cmi
1184
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bool.cmi
940
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bool.cmo
1185
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bool.cmx
1186
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bool.cmxs
1187
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bool.o
941
lib/coq/theories/Bool/.coq-native/NCoq_Bool_BoolEq.cmi
1188
lib/coq/theories/Bool/.coq-native/NCoq_Bool_BoolEq.cmi
942
lib/coq/theories/Bool/.coq-native/NCoq_Bool_BoolEq.cmo
1189
lib/coq/theories/Bool/.coq-native/NCoq_Bool_BoolEq.cmx
1190
lib/coq/theories/Bool/.coq-native/NCoq_Bool_BoolEq.cmxs
1191
lib/coq/theories/Bool/.coq-native/NCoq_Bool_BoolEq.o
943
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bvector.cmi
1192
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bvector.cmi
944
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bvector.cmo
1193
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bvector.cmx
1194
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bvector.cmxs
1195
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bvector.o
945
lib/coq/theories/Bool/.coq-native/NCoq_Bool_DecBool.cmi
1196
lib/coq/theories/Bool/.coq-native/NCoq_Bool_DecBool.cmi
946
lib/coq/theories/Bool/.coq-native/NCoq_Bool_DecBool.cmo
1197
lib/coq/theories/Bool/.coq-native/NCoq_Bool_DecBool.cmx
1198
lib/coq/theories/Bool/.coq-native/NCoq_Bool_DecBool.cmxs
1199
lib/coq/theories/Bool/.coq-native/NCoq_Bool_DecBool.o
947
lib/coq/theories/Bool/.coq-native/NCoq_Bool_IfProp.cmi
1200
lib/coq/theories/Bool/.coq-native/NCoq_Bool_IfProp.cmi
948
lib/coq/theories/Bool/.coq-native/NCoq_Bool_IfProp.cmo
1201
lib/coq/theories/Bool/.coq-native/NCoq_Bool_IfProp.cmx
1202
lib/coq/theories/Bool/.coq-native/NCoq_Bool_IfProp.cmxs
1203
lib/coq/theories/Bool/.coq-native/NCoq_Bool_IfProp.o
949
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Sumbool.cmi
1204
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Sumbool.cmi
950
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Sumbool.cmo
1205
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Sumbool.cmx
1206
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Sumbool.cmxs
1207
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Sumbool.o
951
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Zerob.cmi
1208
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Zerob.cmi
952
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Zerob.cmo
1209
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Zerob.cmx
1210
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Zerob.cmxs
1211
lib/coq/theories/Bool/.coq-native/NCoq_Bool_Zerob.o
953
lib/coq/theories/Bool/Bool.glob
1212
lib/coq/theories/Bool/Bool.glob
954
lib/coq/theories/Bool/Bool.v
1213
lib/coq/theories/Bool/Bool.v
955
lib/coq/theories/Bool/Bool.vo
1214
lib/coq/theories/Bool/Bool.vo
Lines 972-1006 Link Here
972
lib/coq/theories/Bool/Zerob.v
1231
lib/coq/theories/Bool/Zerob.v
973
lib/coq/theories/Bool/Zerob.vo
1232
lib/coq/theories/Bool/Zerob.vo
974
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CEquivalence.cmi
1233
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CEquivalence.cmi
975
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CEquivalence.cmo
1234
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CEquivalence.cmx
1235
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CEquivalence.cmxs
1236
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CEquivalence.o
976
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CMorphisms.cmi
1237
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CMorphisms.cmi
977
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CMorphisms.cmo
1238
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CMorphisms.cmx
1239
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CMorphisms.cmxs
1240
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CMorphisms.o
978
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CRelationClasses.cmi
1241
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CRelationClasses.cmi
979
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CRelationClasses.cmo
1242
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CRelationClasses.cmx
1243
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CRelationClasses.cmxs
1244
lib/coq/theories/Classes/.coq-native/NCoq_Classes_CRelationClasses.o
980
lib/coq/theories/Classes/.coq-native/NCoq_Classes_DecidableClass.cmi
1245
lib/coq/theories/Classes/.coq-native/NCoq_Classes_DecidableClass.cmi
981
lib/coq/theories/Classes/.coq-native/NCoq_Classes_DecidableClass.cmo
1246
lib/coq/theories/Classes/.coq-native/NCoq_Classes_DecidableClass.cmx
1247
lib/coq/theories/Classes/.coq-native/NCoq_Classes_DecidableClass.cmxs
1248
lib/coq/theories/Classes/.coq-native/NCoq_Classes_DecidableClass.o
982
lib/coq/theories/Classes/.coq-native/NCoq_Classes_EquivDec.cmi
1249
lib/coq/theories/Classes/.coq-native/NCoq_Classes_EquivDec.cmi
983
lib/coq/theories/Classes/.coq-native/NCoq_Classes_EquivDec.cmo
1250
lib/coq/theories/Classes/.coq-native/NCoq_Classes_EquivDec.cmx
1251
lib/coq/theories/Classes/.coq-native/NCoq_Classes_EquivDec.cmxs
1252
lib/coq/theories/Classes/.coq-native/NCoq_Classes_EquivDec.o
984
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Equivalence.cmi
1253
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Equivalence.cmi
985
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Equivalence.cmo
1254
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Equivalence.cmx
1255
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Equivalence.cmxs
1256
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Equivalence.o
986
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Init.cmi
1257
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Init.cmi
987
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Init.cmo
1258
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Init.cmx
1259
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Init.cmxs
1260
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Init.o
988
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms.cmi
1261
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms.cmi
989
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms.cmo
1262
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms.cmx
1263
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms.cmxs
1264
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms.o
990
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Prop.cmi
1265
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Prop.cmi
991
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Prop.cmo
1266
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Prop.cmx
1267
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Prop.cmxs
1268
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Prop.o
992
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Relations.cmi
1269
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Relations.cmi
993
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Relations.cmo
1270
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Relations.cmx
1271
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Relations.cmxs
1272
lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Relations.o
994
lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationClasses.cmi
1273
lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationClasses.cmi
995
lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationClasses.cmo
1274
lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationClasses.cmx
1275
lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationClasses.cmxs
1276
lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationClasses.o
996
lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationPairs.cmi
1277
lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationPairs.cmi
997
lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationPairs.cmo
1278
lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationPairs.cmx
1279
lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationPairs.cmxs
1280
lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationPairs.o
998
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidClass.cmi
1281
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidClass.cmi
999
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidClass.cmo
1282
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidClass.cmx
1283
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidClass.cmxs
1284
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidClass.o
1000
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidDec.cmi
1285
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidDec.cmi
1001
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidDec.cmo
1286
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidDec.cmx
1287
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidDec.cmxs
1288
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidDec.o
1002
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidTactics.cmi
1289
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidTactics.cmi
1003
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidTactics.cmo
1290
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidTactics.cmx
1291
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidTactics.cmxs
1292
lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidTactics.o
1004
lib/coq/theories/Classes/CEquivalence.glob
1293
lib/coq/theories/Classes/CEquivalence.glob
1005
lib/coq/theories/Classes/CEquivalence.v
1294
lib/coq/theories/Classes/CEquivalence.v
1006
lib/coq/theories/Classes/CEquivalence.vo
1295
lib/coq/theories/Classes/CEquivalence.vo
Lines 1047-1059 Link Here
1047
lib/coq/theories/Classes/SetoidTactics.v
1336
lib/coq/theories/Classes/SetoidTactics.v
1048
lib/coq/theories/Classes/SetoidTactics.vo
1337
lib/coq/theories/Classes/SetoidTactics.vo
1049
lib/coq/theories/Compat/.coq-native/NCoq_Compat_AdmitAxiom.cmi
1338
lib/coq/theories/Compat/.coq-native/NCoq_Compat_AdmitAxiom.cmi
1050
lib/coq/theories/Compat/.coq-native/NCoq_Compat_AdmitAxiom.cmo
1339
lib/coq/theories/Compat/.coq-native/NCoq_Compat_AdmitAxiom.cmx
1340
lib/coq/theories/Compat/.coq-native/NCoq_Compat_AdmitAxiom.cmxs
1341
lib/coq/theories/Compat/.coq-native/NCoq_Compat_AdmitAxiom.o
1051
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq84.cmi
1342
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq84.cmi
1052
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq84.cmo
1343
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq84.cmx
1344
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq84.cmxs
1345
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq84.o
1053
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq85.cmi
1346
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq85.cmi
1054
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq85.cmo
1347
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq85.cmx
1348
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq85.cmxs
1349
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq85.o
1055
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq86.cmi
1350
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq86.cmi
1056
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq86.cmo
1351
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq86.cmx
1352
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq86.cmxs
1353
lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq86.o
1057
lib/coq/theories/Compat/AdmitAxiom.glob
1354
lib/coq/theories/Compat/AdmitAxiom.glob
1058
lib/coq/theories/Compat/AdmitAxiom.v
1355
lib/coq/theories/Compat/AdmitAxiom.v
1059
lib/coq/theories/Compat/AdmitAxiom.vo
1356
lib/coq/theories/Compat/AdmitAxiom.vo
Lines 1067-1113 Link Here
1067
lib/coq/theories/Compat/Coq86.v
1364
lib/coq/theories/Compat/Coq86.v
1068
lib/coq/theories/Compat/Coq86.vo
1365
lib/coq/theories/Compat/Coq86.vo
1069
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapAVL.cmi
1366
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapAVL.cmi
1070
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapAVL.cmo
1367
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapAVL.cmx
1368
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapAVL.cmxs
1369
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapAVL.o
1071
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFacts.cmi
1370
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFacts.cmi
1072
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFacts.cmo
1371
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFacts.cmx
1372
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFacts.cmxs
1373
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFacts.o
1073
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFullAVL.cmi
1374
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFullAVL.cmi
1074
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFullAVL.cmo
1375
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFullAVL.cmx
1376
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFullAVL.cmxs
1377
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFullAVL.o
1075
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapInterface.cmi
1378
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapInterface.cmi
1076
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapInterface.cmo
1379
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapInterface.cmx
1380
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapInterface.cmxs
1381
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapInterface.o
1077
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapList.cmi
1382
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapList.cmi
1078
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapList.cmo
1383
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapList.cmx
1384
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapList.cmxs
1385
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapList.o
1079
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapPositive.cmi
1386
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapPositive.cmi
1080
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapPositive.cmo
1387
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapPositive.cmx
1388
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapPositive.cmxs
1389
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapPositive.o
1081
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapWeakList.cmi
1390
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapWeakList.cmi
1082
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapWeakList.cmo
1391
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapWeakList.cmx
1392
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapWeakList.cmxs
1393
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapWeakList.o
1083
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMaps.cmi
1394
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMaps.cmi
1084
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMaps.cmo
1395
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMaps.cmx
1396
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMaps.cmxs
1397
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMaps.o
1085
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetAVL.cmi
1398
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetAVL.cmi
1086
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetAVL.cmo
1399
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetAVL.cmx
1400
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetAVL.cmxs
1401
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetAVL.o
1087
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetBridge.cmi
1402
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetBridge.cmi
1088
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetBridge.cmo
1403
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetBridge.cmx
1404
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetBridge.cmxs
1405
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetBridge.o
1089
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetCompat.cmi
1406
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetCompat.cmi
1090
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetCompat.cmo
1407
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetCompat.cmx
1408
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetCompat.cmxs
1409
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetCompat.o
1091
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetDecide.cmi
1410
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetDecide.cmi
1092
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetDecide.cmo
1411
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetDecide.cmx
1412
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetDecide.cmxs
1413
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetDecide.o
1093
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetEqProperties.cmi
1414
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetEqProperties.cmi
1094
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetEqProperties.cmo
1415
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetEqProperties.cmx
1416
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetEqProperties.cmxs
1417
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetEqProperties.o
1095
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetFacts.cmi
1418
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetFacts.cmi
1096
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetFacts.cmo
1419
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetFacts.cmx
1420
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetFacts.cmxs
1421
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetFacts.o
1097
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetInterface.cmi
1422
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetInterface.cmi
1098
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetInterface.cmo
1423
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetInterface.cmx
1424
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetInterface.cmxs
1425
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetInterface.o
1099
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetList.cmi
1426
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetList.cmi
1100
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetList.cmo
1427
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetList.cmx
1428
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetList.cmxs
1429
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetList.o
1101
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetPositive.cmi
1430
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetPositive.cmi
1102
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetPositive.cmo
1431
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetPositive.cmx
1432
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetPositive.cmxs
1433
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetPositive.o
1103
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetProperties.cmi
1434
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetProperties.cmi
1104
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetProperties.cmo
1435
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetProperties.cmx
1436
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetProperties.cmxs
1437
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetProperties.o
1105
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetToFiniteSet.cmi
1438
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetToFiniteSet.cmi
1106
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetToFiniteSet.cmo
1439
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetToFiniteSet.cmx
1440
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetToFiniteSet.cmxs
1441
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetToFiniteSet.o
1107
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetWeakList.cmi
1442
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetWeakList.cmi
1108
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetWeakList.cmo
1443
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetWeakList.cmx
1444
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetWeakList.cmxs
1445
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetWeakList.o
1109
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSets.cmi
1446
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSets.cmi
1110
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSets.cmo
1447
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSets.cmx
1448
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSets.cmxs
1449
lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSets.o
1111
lib/coq/theories/FSets/FMapAVL.glob
1450
lib/coq/theories/FSets/FMapAVL.glob
1112
lib/coq/theories/FSets/FMapAVL.v
1451
lib/coq/theories/FSets/FMapAVL.v
1113
lib/coq/theories/FSets/FMapAVL.vo
1452
lib/coq/theories/FSets/FMapAVL.vo
Lines 1172-1198 Link Here
1172
lib/coq/theories/FSets/FSets.v
1511
lib/coq/theories/FSets/FSets.v
1173
lib/coq/theories/FSets/FSets.vo
1512
lib/coq/theories/FSets/FSets.vo
1174
lib/coq/theories/Init/.coq-native/NCoq_Init_Datatypes.cmi
1513
lib/coq/theories/Init/.coq-native/NCoq_Init_Datatypes.cmi
1175
lib/coq/theories/Init/.coq-native/NCoq_Init_Datatypes.cmo
1514
lib/coq/theories/Init/.coq-native/NCoq_Init_Datatypes.cmx
1515
lib/coq/theories/Init/.coq-native/NCoq_Init_Datatypes.cmxs
1516
lib/coq/theories/Init/.coq-native/NCoq_Init_Datatypes.o
1176
lib/coq/theories/Init/.coq-native/NCoq_Init_Logic.cmi
1517
lib/coq/theories/Init/.coq-native/NCoq_Init_Logic.cmi
1177
lib/coq/theories/Init/.coq-native/NCoq_Init_Logic.cmo
1518
lib/coq/theories/Init/.coq-native/NCoq_Init_Logic.cmx
1519
lib/coq/theories/Init/.coq-native/NCoq_Init_Logic.cmxs
1520
lib/coq/theories/Init/.coq-native/NCoq_Init_Logic.o
1178
lib/coq/theories/Init/.coq-native/NCoq_Init_Logic_Type.cmi
1521
lib/coq/theories/Init/.coq-native/NCoq_Init_Logic_Type.cmi
1179
lib/coq/theories/Init/.coq-native/NCoq_Init_Logic_Type.cmo
1522
lib/coq/theories/Init/.coq-native/NCoq_Init_Logic_Type.cmx
1523
lib/coq/theories/Init/.coq-native/NCoq_Init_Logic_Type.cmxs
1524
lib/coq/theories/Init/.coq-native/NCoq_Init_Logic_Type.o
1180
lib/coq/theories/Init/.coq-native/NCoq_Init_Nat.cmi
1525
lib/coq/theories/Init/.coq-native/NCoq_Init_Nat.cmi
1181
lib/coq/theories/Init/.coq-native/NCoq_Init_Nat.cmo
1526
lib/coq/theories/Init/.coq-native/NCoq_Init_Nat.cmx
1527
lib/coq/theories/Init/.coq-native/NCoq_Init_Nat.cmxs
1528
lib/coq/theories/Init/.coq-native/NCoq_Init_Nat.o
1182
lib/coq/theories/Init/.coq-native/NCoq_Init_Notations.cmi
1529
lib/coq/theories/Init/.coq-native/NCoq_Init_Notations.cmi
1183
lib/coq/theories/Init/.coq-native/NCoq_Init_Notations.cmo
1530
lib/coq/theories/Init/.coq-native/NCoq_Init_Notations.cmx
1531
lib/coq/theories/Init/.coq-native/NCoq_Init_Notations.cmxs
1532
lib/coq/theories/Init/.coq-native/NCoq_Init_Notations.o
1184
lib/coq/theories/Init/.coq-native/NCoq_Init_Peano.cmi
1533
lib/coq/theories/Init/.coq-native/NCoq_Init_Peano.cmi
1185
lib/coq/theories/Init/.coq-native/NCoq_Init_Peano.cmo
1534
lib/coq/theories/Init/.coq-native/NCoq_Init_Peano.cmx
1535
lib/coq/theories/Init/.coq-native/NCoq_Init_Peano.cmxs
1536
lib/coq/theories/Init/.coq-native/NCoq_Init_Peano.o
1186
lib/coq/theories/Init/.coq-native/NCoq_Init_Prelude.cmi
1537
lib/coq/theories/Init/.coq-native/NCoq_Init_Prelude.cmi
1187
lib/coq/theories/Init/.coq-native/NCoq_Init_Prelude.cmo
1538
lib/coq/theories/Init/.coq-native/NCoq_Init_Prelude.cmx
1539
lib/coq/theories/Init/.coq-native/NCoq_Init_Prelude.cmxs
1540
lib/coq/theories/Init/.coq-native/NCoq_Init_Prelude.o
1188
lib/coq/theories/Init/.coq-native/NCoq_Init_Specif.cmi
1541
lib/coq/theories/Init/.coq-native/NCoq_Init_Specif.cmi
1189
lib/coq/theories/Init/.coq-native/NCoq_Init_Specif.cmo
1542
lib/coq/theories/Init/.coq-native/NCoq_Init_Specif.cmx
1543
lib/coq/theories/Init/.coq-native/NCoq_Init_Specif.cmxs
1544
lib/coq/theories/Init/.coq-native/NCoq_Init_Specif.o
1190
lib/coq/theories/Init/.coq-native/NCoq_Init_Tactics.cmi
1545
lib/coq/theories/Init/.coq-native/NCoq_Init_Tactics.cmi
1191
lib/coq/theories/Init/.coq-native/NCoq_Init_Tactics.cmo
1546
lib/coq/theories/Init/.coq-native/NCoq_Init_Tactics.cmx
1547
lib/coq/theories/Init/.coq-native/NCoq_Init_Tactics.cmxs
1548
lib/coq/theories/Init/.coq-native/NCoq_Init_Tactics.o
1192
lib/coq/theories/Init/.coq-native/NCoq_Init_Tauto.cmi
1549
lib/coq/theories/Init/.coq-native/NCoq_Init_Tauto.cmi
1193
lib/coq/theories/Init/.coq-native/NCoq_Init_Tauto.cmo
1550
lib/coq/theories/Init/.coq-native/NCoq_Init_Tauto.cmx
1551
lib/coq/theories/Init/.coq-native/NCoq_Init_Tauto.cmxs
1552
lib/coq/theories/Init/.coq-native/NCoq_Init_Tauto.o
1194
lib/coq/theories/Init/.coq-native/NCoq_Init_Wf.cmi
1553
lib/coq/theories/Init/.coq-native/NCoq_Init_Wf.cmi
1195
lib/coq/theories/Init/.coq-native/NCoq_Init_Wf.cmo
1554
lib/coq/theories/Init/.coq-native/NCoq_Init_Wf.cmx
1555
lib/coq/theories/Init/.coq-native/NCoq_Init_Wf.cmxs
1556
lib/coq/theories/Init/.coq-native/NCoq_Init_Wf.o
1196
lib/coq/theories/Init/Datatypes.glob
1557
lib/coq/theories/Init/Datatypes.glob
1197
lib/coq/theories/Init/Datatypes.v
1558
lib/coq/theories/Init/Datatypes.v
1198
lib/coq/theories/Init/Datatypes.vo
1559
lib/coq/theories/Init/Datatypes.vo
Lines 1227-1247 Link Here
1227
lib/coq/theories/Init/Wf.v
1588
lib/coq/theories/Init/Wf.v
1228
lib/coq/theories/Init/Wf.vo
1589
lib/coq/theories/Init/Wf.vo
1229
lib/coq/theories/Lists/.coq-native/NCoq_Lists_List.cmi
1590
lib/coq/theories/Lists/.coq-native/NCoq_Lists_List.cmi
1230
lib/coq/theories/Lists/.coq-native/NCoq_Lists_List.cmo
1591
lib/coq/theories/Lists/.coq-native/NCoq_Lists_List.cmx
1592
lib/coq/theories/Lists/.coq-native/NCoq_Lists_List.cmxs
1593
lib/coq/theories/Lists/.coq-native/NCoq_Lists_List.o
1231
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListDec.cmi
1594
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListDec.cmi
1232
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListDec.cmo
1595
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListDec.cmx
1596
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListDec.cmxs
1597
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListDec.o
1233
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListSet.cmi
1598
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListSet.cmi
1234
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListSet.cmo
1599
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListSet.cmx
1600
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListSet.cmxs
1601
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListSet.o
1235
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListTactics.cmi
1602
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListTactics.cmi
1236
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListTactics.cmo
1603
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListTactics.cmx
1604
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListTactics.cmxs
1605
lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListTactics.o
1237
lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidList.cmi
1606
lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidList.cmi
1238
lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidList.cmo
1607
lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidList.cmx
1608
lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidList.cmxs
1609
lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidList.o
1239
lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidPermutation.cmi
1610
lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidPermutation.cmi
1240
lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidPermutation.cmo
1611
lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidPermutation.cmx
1612
lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidPermutation.cmxs
1613
lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidPermutation.o
1241
lib/coq/theories/Lists/.coq-native/NCoq_Lists_StreamMemo.cmi
1614
lib/coq/theories/Lists/.coq-native/NCoq_Lists_StreamMemo.cmi
1242
lib/coq/theories/Lists/.coq-native/NCoq_Lists_StreamMemo.cmo
1615
lib/coq/theories/Lists/.coq-native/NCoq_Lists_StreamMemo.cmx
1616
lib/coq/theories/Lists/.coq-native/NCoq_Lists_StreamMemo.cmxs
1617
lib/coq/theories/Lists/.coq-native/NCoq_Lists_StreamMemo.o
1243
lib/coq/theories/Lists/.coq-native/NCoq_Lists_Streams.cmi
1618
lib/coq/theories/Lists/.coq-native/NCoq_Lists_Streams.cmi
1244
lib/coq/theories/Lists/.coq-native/NCoq_Lists_Streams.cmo
1619
lib/coq/theories/Lists/.coq-native/NCoq_Lists_Streams.cmx
1620
lib/coq/theories/Lists/.coq-native/NCoq_Lists_Streams.cmxs
1621
lib/coq/theories/Lists/.coq-native/NCoq_Lists_Streams.o
1245
lib/coq/theories/Lists/List.glob
1622
lib/coq/theories/Lists/List.glob
1246
lib/coq/theories/Lists/List.v
1623
lib/coq/theories/Lists/List.v
1247
lib/coq/theories/Lists/List.vo
1624
lib/coq/theories/Lists/List.vo
Lines 1267-1331 Link Here
1267
lib/coq/theories/Lists/Streams.v
1644
lib/coq/theories/Lists/Streams.v
1268
lib/coq/theories/Lists/Streams.vo
1645
lib/coq/theories/Lists/Streams.vo
1269
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Berardi.cmi
1646
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Berardi.cmi
1270
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Berardi.cmo
1647
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Berardi.cmx
1648
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Berardi.cmxs
1649
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Berardi.o
1271
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ChoiceFacts.cmi
1650
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ChoiceFacts.cmi
1272
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ChoiceFacts.cmo
1651
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ChoiceFacts.cmx
1652
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ChoiceFacts.cmxs
1653
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ChoiceFacts.o
1273
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical.cmi
1654
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical.cmi
1274
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical.cmo
1655
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical.cmx
1656
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical.cmxs
1657
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical.o
1275
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalChoice.cmi
1658
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalChoice.cmi
1276
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalChoice.cmo
1659
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalChoice.cmx
1660
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalChoice.cmxs
1661
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalChoice.o
1277
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalDescription.cmi
1662
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalDescription.cmi
1278
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalDescription.cmo
1663
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalDescription.cmx
1664
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalDescription.cmxs
1665
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalDescription.o
1279
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalEpsilon.cmi
1666
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalEpsilon.cmi
1280
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalEpsilon.cmo
1667
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalEpsilon.cmx
1668
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalEpsilon.cmxs
1669
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalEpsilon.o
1281
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalFacts.cmi
1670
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalFacts.cmi
1282
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalFacts.cmo
1671
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalFacts.cmx
1672
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalFacts.cmxs
1673
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalFacts.o
1283
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalUniqueChoice.cmi
1674
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalUniqueChoice.cmi
1284
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalUniqueChoice.cmo
1675
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalUniqueChoice.cmx
1676
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalUniqueChoice.cmxs
1677
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalUniqueChoice.o
1285
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Pred_Type.cmi
1678
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Pred_Type.cmi
1286
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Pred_Type.cmo
1679
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Pred_Type.cmx
1680
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Pred_Type.cmxs
1681
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Pred_Type.o
1287
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Prop.cmi
1682
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Prop.cmi
1288
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Prop.cmo
1683
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Prop.cmx
1684
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Prop.cmxs
1685
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Prop.o
1289
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ConstructiveEpsilon.cmi
1686
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ConstructiveEpsilon.cmi
1290
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ConstructiveEpsilon.cmo
1687
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ConstructiveEpsilon.cmx
1688
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ConstructiveEpsilon.cmxs
1689
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ConstructiveEpsilon.o
1291
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Decidable.cmi
1690
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Decidable.cmi
1292
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Decidable.cmo
1691
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Decidable.cmx
1692
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Decidable.cmxs
1693
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Decidable.o
1293
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Description.cmi
1694
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Description.cmi
1294
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Description.cmo
1695
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Description.cmx
1696
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Description.cmxs
1697
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Description.o
1295
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Diaconescu.cmi
1698
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Diaconescu.cmi
1296
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Diaconescu.cmo
1699
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Diaconescu.cmx
1700
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Diaconescu.cmxs
1701
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Diaconescu.o
1297
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Epsilon.cmi
1702
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Epsilon.cmi
1298
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Epsilon.cmo
1703
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Epsilon.cmx
1704
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Epsilon.cmxs
1705
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Epsilon.o
1299
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep.cmi
1706
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep.cmi
1300
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep.cmo
1707
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep.cmx
1708
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep.cmxs
1709
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep.o
1301
lib/coq/theories/Logic/.coq-native/NCoq_Logic_EqdepFacts.cmi
1710
lib/coq/theories/Logic/.coq-native/NCoq_Logic_EqdepFacts.cmi
1302
lib/coq/theories/Logic/.coq-native/NCoq_Logic_EqdepFacts.cmo
1711
lib/coq/theories/Logic/.coq-native/NCoq_Logic_EqdepFacts.cmx
1712
lib/coq/theories/Logic/.coq-native/NCoq_Logic_EqdepFacts.cmxs
1713
lib/coq/theories/Logic/.coq-native/NCoq_Logic_EqdepFacts.o
1303
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep_dec.cmi
1714
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep_dec.cmi
1304
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep_dec.cmo
1715
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep_dec.cmx
1716
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep_dec.cmxs
1717
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep_dec.o
1305
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalityFacts.cmi
1718
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalityFacts.cmi
1306
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalityFacts.cmo
1719
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalityFacts.cmx
1720
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalityFacts.cmxs
1721
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalityFacts.o
1307
lib/coq/theories/Logic/.coq-native/NCoq_Logic_FinFun.cmi
1722
lib/coq/theories/Logic/.coq-native/NCoq_Logic_FinFun.cmi
1308
lib/coq/theories/Logic/.coq-native/NCoq_Logic_FinFun.cmo
1723
lib/coq/theories/Logic/.coq-native/NCoq_Logic_FinFun.cmx
1724
lib/coq/theories/Logic/.coq-native/NCoq_Logic_FinFun.cmxs
1725
lib/coq/theories/Logic/.coq-native/NCoq_Logic_FinFun.o
1309
lib/coq/theories/Logic/.coq-native/NCoq_Logic_FunctionalExtensionality.cmi
1726
lib/coq/theories/Logic/.coq-native/NCoq_Logic_FunctionalExtensionality.cmi
1310
lib/coq/theories/Logic/.coq-native/NCoq_Logic_FunctionalExtensionality.cmo
1727
lib/coq/theories/Logic/.coq-native/NCoq_Logic_FunctionalExtensionality.cmx
1728
lib/coq/theories/Logic/.coq-native/NCoq_Logic_FunctionalExtensionality.cmxs
1729
lib/coq/theories/Logic/.coq-native/NCoq_Logic_FunctionalExtensionality.o
1311
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Hurkens.cmi
1730
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Hurkens.cmi
1312
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Hurkens.cmo
1731
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Hurkens.cmx
1732
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Hurkens.cmxs
1733
lib/coq/theories/Logic/.coq-native/NCoq_Logic_Hurkens.o
1313
lib/coq/theories/Logic/.coq-native/NCoq_Logic_IndefiniteDescription.cmi
1734
lib/coq/theories/Logic/.coq-native/NCoq_Logic_IndefiniteDescription.cmi
1314
lib/coq/theories/Logic/.coq-native/NCoq_Logic_IndefiniteDescription.cmo
1735
lib/coq/theories/Logic/.coq-native/NCoq_Logic_IndefiniteDescription.cmx
1736
lib/coq/theories/Logic/.coq-native/NCoq_Logic_IndefiniteDescription.cmxs
1737
lib/coq/theories/Logic/.coq-native/NCoq_Logic_IndefiniteDescription.o
1315
lib/coq/theories/Logic/.coq-native/NCoq_Logic_JMeq.cmi
1738
lib/coq/theories/Logic/.coq-native/NCoq_Logic_JMeq.cmi
1316
lib/coq/theories/Logic/.coq-native/NCoq_Logic_JMeq.cmo
1739
lib/coq/theories/Logic/.coq-native/NCoq_Logic_JMeq.cmx
1740
lib/coq/theories/Logic/.coq-native/NCoq_Logic_JMeq.cmxs
1741
lib/coq/theories/Logic/.coq-native/NCoq_Logic_JMeq.o
1317
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevance.cmi
1742
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevance.cmi
1318
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevance.cmo
1743
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevance.cmx
1744
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevance.cmxs
1745
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevance.o
1319
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevanceFacts.cmi
1746
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevanceFacts.cmi
1320
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevanceFacts.cmo
1747
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevanceFacts.cmx
1748
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevanceFacts.cmxs
1749
lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevanceFacts.o
1321
lib/coq/theories/Logic/.coq-native/NCoq_Logic_RelationalChoice.cmi
1750
lib/coq/theories/Logic/.coq-native/NCoq_Logic_RelationalChoice.cmi
1322
lib/coq/theories/Logic/.coq-native/NCoq_Logic_RelationalChoice.cmo
1751
lib/coq/theories/Logic/.coq-native/NCoq_Logic_RelationalChoice.cmx
1752
lib/coq/theories/Logic/.coq-native/NCoq_Logic_RelationalChoice.cmxs
1753
lib/coq/theories/Logic/.coq-native/NCoq_Logic_RelationalChoice.o
1323
lib/coq/theories/Logic/.coq-native/NCoq_Logic_SetIsType.cmi
1754
lib/coq/theories/Logic/.coq-native/NCoq_Logic_SetIsType.cmi
1324
lib/coq/theories/Logic/.coq-native/NCoq_Logic_SetIsType.cmo
1755
lib/coq/theories/Logic/.coq-native/NCoq_Logic_SetIsType.cmx
1756
lib/coq/theories/Logic/.coq-native/NCoq_Logic_SetIsType.cmxs
1757
lib/coq/theories/Logic/.coq-native/NCoq_Logic_SetIsType.o
1325
lib/coq/theories/Logic/.coq-native/NCoq_Logic_WKL.cmi
1758
lib/coq/theories/Logic/.coq-native/NCoq_Logic_WKL.cmi
1326
lib/coq/theories/Logic/.coq-native/NCoq_Logic_WKL.cmo
1759
lib/coq/theories/Logic/.coq-native/NCoq_Logic_WKL.cmx
1760
lib/coq/theories/Logic/.coq-native/NCoq_Logic_WKL.cmxs
1761
lib/coq/theories/Logic/.coq-native/NCoq_Logic_WKL.o
1327
lib/coq/theories/Logic/.coq-native/NCoq_Logic_WeakFan.cmi
1762
lib/coq/theories/Logic/.coq-native/NCoq_Logic_WeakFan.cmi
1328
lib/coq/theories/Logic/.coq-native/NCoq_Logic_WeakFan.cmo
1763
lib/coq/theories/Logic/.coq-native/NCoq_Logic_WeakFan.cmx
1764
lib/coq/theories/Logic/.coq-native/NCoq_Logic_WeakFan.cmxs
1765
lib/coq/theories/Logic/.coq-native/NCoq_Logic_WeakFan.o
1329
lib/coq/theories/Logic/Berardi.glob
1766
lib/coq/theories/Logic/Berardi.glob
1330
lib/coq/theories/Logic/Berardi.v
1767
lib/coq/theories/Logic/Berardi.v
1331
lib/coq/theories/Logic/Berardi.vo
1768
lib/coq/theories/Logic/Berardi.vo
Lines 1417-1447 Link Here
1417
lib/coq/theories/Logic/WeakFan.v
1854
lib/coq/theories/Logic/WeakFan.v
1418
lib/coq/theories/Logic/WeakFan.vo
1855
lib/coq/theories/Logic/WeakFan.vo
1419
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetAVL.cmi
1856
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetAVL.cmi
1420
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetAVL.cmo
1857
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetAVL.cmx
1858
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetAVL.cmxs
1859
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetAVL.o
1421
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetDecide.cmi
1860
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetDecide.cmi
1422
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetDecide.cmo
1861
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetDecide.cmx
1862
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetDecide.cmxs
1863
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetDecide.o
1423
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetEqProperties.cmi
1864
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetEqProperties.cmi
1424
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetEqProperties.cmo
1865
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetEqProperties.cmx
1866
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetEqProperties.cmxs
1867
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetEqProperties.o
1425
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetFacts.cmi
1868
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetFacts.cmi
1426
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetFacts.cmo
1869
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetFacts.cmx
1870
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetFacts.cmxs
1871
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetFacts.o
1427
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetGenTree.cmi
1872
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetGenTree.cmi
1428
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetGenTree.cmo
1873
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetGenTree.cmx
1874
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetGenTree.cmxs
1875
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetGenTree.o
1429
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetInterface.cmi
1876
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetInterface.cmi
1430
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetInterface.cmo
1877
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetInterface.cmx
1878
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetInterface.cmxs
1879
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetInterface.o
1431
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetList.cmi
1880
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetList.cmi
1432
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetList.cmo
1881
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetList.cmx
1882
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetList.cmxs
1883
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetList.o
1433
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetPositive.cmi
1884
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetPositive.cmi
1434
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetPositive.cmo
1885
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetPositive.cmx
1886
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetPositive.cmxs
1887
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetPositive.o
1435
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetProperties.cmi
1888
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetProperties.cmi
1436
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetProperties.cmo
1889
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetProperties.cmx
1890
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetProperties.cmxs
1891
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetProperties.o
1437
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetRBT.cmi
1892
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetRBT.cmi
1438
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetRBT.cmo
1893
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetRBT.cmx
1894
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetRBT.cmxs
1895
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetRBT.o
1439
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetToFiniteSet.cmi
1896
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetToFiniteSet.cmi
1440
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetToFiniteSet.cmo
1897
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetToFiniteSet.cmx
1898
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetToFiniteSet.cmxs
1899
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetToFiniteSet.o
1441
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetWeakList.cmi
1900
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetWeakList.cmi
1442
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetWeakList.cmo
1901
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetWeakList.cmx
1902
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetWeakList.cmxs
1903
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetWeakList.o
1443
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSets.cmi
1904
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSets.cmi
1444
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSets.cmo
1905
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSets.cmx
1906
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSets.cmxs
1907
lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSets.o
1445
lib/coq/theories/MSets/MSetAVL.glob
1908
lib/coq/theories/MSets/MSetAVL.glob
1446
lib/coq/theories/MSets/MSetAVL.v
1909
lib/coq/theories/MSets/MSetAVL.v
1447
lib/coq/theories/MSets/MSetAVL.vo
1910
lib/coq/theories/MSets/MSetAVL.vo
Lines 1482-1506 Link Here
1482
lib/coq/theories/MSets/MSets.v
1945
lib/coq/theories/MSets/MSets.v
1483
lib/coq/theories/MSets/MSets.vo
1946
lib/coq/theories/MSets/MSets.vo
1484
lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNat.cmi
1947
lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNat.cmi
1485
lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNat.cmo
1948
lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNat.cmx
1949
lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNat.cmxs
1950
lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNat.o
1486
lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNatDef.cmi
1951
lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNatDef.cmi
1487
lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNatDef.cmo
1952
lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNatDef.cmx
1953
lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNatDef.cmxs
1954
lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNatDef.o
1488
lib/coq/theories/NArith/.coq-native/NCoq_NArith_NArith.cmi
1955
lib/coq/theories/NArith/.coq-native/NCoq_NArith_NArith.cmi
1489
lib/coq/theories/NArith/.coq-native/NCoq_NArith_NArith.cmo
1956
lib/coq/theories/NArith/.coq-native/NCoq_NArith_NArith.cmx
1957
lib/coq/theories/NArith/.coq-native/NCoq_NArith_NArith.cmxs
1958
lib/coq/theories/NArith/.coq-native/NCoq_NArith_NArith.o
1490
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndec.cmi
1959
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndec.cmi
1491
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndec.cmo
1960
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndec.cmx
1961
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndec.cmxs
1962
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndec.o
1492
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndigits.cmi
1963
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndigits.cmi
1493
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndigits.cmo
1964
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndigits.cmx
1965
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndigits.cmxs
1966
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndigits.o
1494
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndist.cmi
1967
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndist.cmi
1495
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndist.cmo
1968
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndist.cmx
1969
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndist.cmxs
1970
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndist.o
1496
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndiv_def.cmi
1971
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndiv_def.cmi
1497
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndiv_def.cmo
1972
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndiv_def.cmx
1973
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndiv_def.cmxs
1974
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndiv_def.o
1498
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ngcd_def.cmi
1975
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ngcd_def.cmi
1499
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ngcd_def.cmo
1976
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ngcd_def.cmx
1977
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ngcd_def.cmxs
1978
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ngcd_def.o
1500
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nnat.cmi
1979
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nnat.cmi
1501
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nnat.cmo
1980
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nnat.cmx
1981
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nnat.cmxs
1982
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nnat.o
1502
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nsqrt_def.cmi
1983
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nsqrt_def.cmi
1503
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nsqrt_def.cmo
1984
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nsqrt_def.cmx
1985
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nsqrt_def.cmxs
1986
lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nsqrt_def.o
1504
lib/coq/theories/NArith/BinNat.glob
1987
lib/coq/theories/NArith/BinNat.glob
1505
lib/coq/theories/NArith/BinNat.v
1988
lib/coq/theories/NArith/BinNat.v
1506
lib/coq/theories/NArith/BinNat.vo
1989
lib/coq/theories/NArith/BinNat.vo
Lines 1532-1544 Link Here
1532
lib/coq/theories/NArith/Nsqrt_def.v
2015
lib/coq/theories/NArith/Nsqrt_def.v
1533
lib/coq/theories/NArith/Nsqrt_def.vo
2016
lib/coq/theories/NArith/Nsqrt_def.vo
1534
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BigNumPrelude.cmi
2017
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BigNumPrelude.cmi
1535
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BigNumPrelude.cmo
2018
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BigNumPrelude.cmx
2019
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BigNumPrelude.cmxs
2020
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BigNumPrelude.o
1536
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BinNums.cmi
2021
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BinNums.cmi
1537
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BinNums.cmo
2022
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BinNums.cmx
2023
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BinNums.cmxs
2024
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BinNums.o
1538
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NaryFunctions.cmi
2025
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NaryFunctions.cmi
1539
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NaryFunctions.cmo
2026
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NaryFunctions.cmx
2027
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NaryFunctions.cmxs
2028
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NaryFunctions.o
1540
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NumPrelude.cmi
2029
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NumPrelude.cmi
1541
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NumPrelude.cmo
2030
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NumPrelude.cmx
2031
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NumPrelude.cmxs
2032
lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NumPrelude.o
1542
lib/coq/theories/Numbers/BigNumPrelude.glob
2033
lib/coq/theories/Numbers/BigNumPrelude.glob
1543
lib/coq/theories/Numbers/BigNumPrelude.v
2034
lib/coq/theories/Numbers/BigNumPrelude.v
1544
lib/coq/theories/Numbers/BigNumPrelude.vo
2035
lib/coq/theories/Numbers/BigNumPrelude.vo
Lines 1546-1554 Link Here
1546
lib/coq/theories/Numbers/BinNums.v
2037
lib/coq/theories/Numbers/BinNums.v
1547
lib/coq/theories/Numbers/BinNums.vo
2038
lib/coq/theories/Numbers/BinNums.vo
1548
lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CyclicAxioms.cmi
2039
lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CyclicAxioms.cmi
1549
lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CyclicAxioms.cmo
2040
lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CyclicAxioms.cmx
2041
lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CyclicAxioms.cmxs
2042
lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CyclicAxioms.o
1550
lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_NZCyclic.cmi
2043
lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_NZCyclic.cmi
1551
lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_NZCyclic.cmo
2044
lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_NZCyclic.cmx
2045
lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_NZCyclic.cmxs
2046
lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_NZCyclic.o
1552
lib/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.glob
2047
lib/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.glob
1553
lib/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.v
2048
lib/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.v
1554
lib/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.vo
2049
lib/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.vo
Lines 1556-1580 Link Here
1556
lib/coq/theories/Numbers/Cyclic/Abstract/NZCyclic.v
2051
lib/coq/theories/Numbers/Cyclic/Abstract/NZCyclic.v
1557
lib/coq/theories/Numbers/Cyclic/Abstract/NZCyclic.vo
2052
lib/coq/theories/Numbers/Cyclic/Abstract/NZCyclic.vo
1558
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleAdd.cmi
2053
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleAdd.cmi
1559
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleAdd.cmo
2054
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleAdd.cmx
2055
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleAdd.cmxs
2056
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleAdd.o
1560
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleBase.cmi
2057
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleBase.cmi
1561
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleBase.cmo
2058
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleBase.cmx
2059
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleBase.cmxs
2060
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleBase.o
1562
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleCyclic.cmi
2061
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleCyclic.cmi
1563
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleCyclic.cmo
2062
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleCyclic.cmx
2063
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleCyclic.cmxs
2064
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleCyclic.o
1564
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleDiv.cmi
2065
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleDiv.cmi
1565
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleDiv.cmo
2066
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleDiv.cmx
2067
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleDiv.cmxs
2068
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleDiv.o
1566
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleDivn1.cmi
2069
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleDivn1.cmi
1567
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleDivn1.cmo
2070
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleDivn1.cmx
2071
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleDivn1.cmxs
2072
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleDivn1.o
1568
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleLift.cmi
2073
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleLift.cmi
1569
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleLift.cmo
2074
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleLift.cmx
2075
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleLift.cmxs
2076
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleLift.o
1570
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleMul.cmi
2077
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleMul.cmi
1571
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleMul.cmo
2078
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleMul.cmx
2079
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleMul.cmxs
2080
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleMul.o
1572
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleSqrt.cmi
2081
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleSqrt.cmi
1573
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleSqrt.cmo
2082
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleSqrt.cmx
2083
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleSqrt.cmxs
2084
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleSqrt.o
1574
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleSub.cmi
2085
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleSub.cmi
1575
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleSub.cmo
2086
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleSub.cmx
2087
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleSub.cmxs
2088
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleSub.o
1576
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleType.cmi
2089
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleType.cmi
1577
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleType.cmo
2090
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleType.cmx
2091
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleType.cmxs
2092
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/.coq-native/NCoq_Numbers_Cyclic_DoubleCyclic_DoubleType.o
1578
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleAdd.glob
2093
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleAdd.glob
1579
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleAdd.v
2094
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleAdd.v
1580
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleAdd.vo
2095
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleAdd.vo
Lines 1606-1616 Link Here
1606
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleType.v
2121
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleType.v
1607
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleType.vo
2122
lib/coq/theories/Numbers/Cyclic/DoubleCyclic/DoubleType.vo
1608
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Cyclic31.cmi
2123
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Cyclic31.cmi
1609
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Cyclic31.cmo
2124
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Cyclic31.cmx
2125
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Cyclic31.cmxs
2126
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Cyclic31.o
1610
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Int31.cmi
2127
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Int31.cmi
1611
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Int31.cmo
2128
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Int31.cmx
2129
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Int31.cmxs
2130
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Int31.o
1612
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Ring31.cmi
2131
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Ring31.cmi
1613
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Ring31.cmo
2132
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Ring31.cmx
2133
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Ring31.cmxs
2134
lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Ring31.o
1614
lib/coq/theories/Numbers/Cyclic/Int31/Cyclic31.glob
2135
lib/coq/theories/Numbers/Cyclic/Int31/Cyclic31.glob
1615
lib/coq/theories/Numbers/Cyclic/Int31/Cyclic31.v
2136
lib/coq/theories/Numbers/Cyclic/Int31/Cyclic31.v
1616
lib/coq/theories/Numbers/Cyclic/Int31/Cyclic31.vo
2137
lib/coq/theories/Numbers/Cyclic/Int31/Cyclic31.vo
Lines 1621-1666 Link Here
1621
lib/coq/theories/Numbers/Cyclic/Int31/Ring31.v
2142
lib/coq/theories/Numbers/Cyclic/Int31/Ring31.v
1622
lib/coq/theories/Numbers/Cyclic/Int31/Ring31.vo
2143
lib/coq/theories/Numbers/Cyclic/Int31/Ring31.vo
1623
lib/coq/theories/Numbers/Cyclic/ZModulo/.coq-native/NCoq_Numbers_Cyclic_ZModulo_ZModulo.cmi
2144
lib/coq/theories/Numbers/Cyclic/ZModulo/.coq-native/NCoq_Numbers_Cyclic_ZModulo_ZModulo.cmi
1624
lib/coq/theories/Numbers/Cyclic/ZModulo/.coq-native/NCoq_Numbers_Cyclic_ZModulo_ZModulo.cmo
2145
lib/coq/theories/Numbers/Cyclic/ZModulo/.coq-native/NCoq_Numbers_Cyclic_ZModulo_ZModulo.cmx
2146
lib/coq/theories/Numbers/Cyclic/ZModulo/.coq-native/NCoq_Numbers_Cyclic_ZModulo_ZModulo.cmxs
2147
lib/coq/theories/Numbers/Cyclic/ZModulo/.coq-native/NCoq_Numbers_Cyclic_ZModulo_ZModulo.o
1625
lib/coq/theories/Numbers/Cyclic/ZModulo/ZModulo.glob
2148
lib/coq/theories/Numbers/Cyclic/ZModulo/ZModulo.glob
1626
lib/coq/theories/Numbers/Cyclic/ZModulo/ZModulo.v
2149
lib/coq/theories/Numbers/Cyclic/ZModulo/ZModulo.v
1627
lib/coq/theories/Numbers/Cyclic/ZModulo/ZModulo.vo
2150
lib/coq/theories/Numbers/Cyclic/ZModulo/ZModulo.vo
1628
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAdd.cmi
2151
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAdd.cmi
1629
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAdd.cmo
2152
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAdd.cmx
2153
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAdd.cmxs
2154
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAdd.o
1630
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAddOrder.cmi
2155
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAddOrder.cmi
1631
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAddOrder.cmo
2156
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAddOrder.cmx
2157
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAddOrder.cmxs
2158
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAddOrder.o
1632
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAxioms.cmi
2159
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAxioms.cmi
1633
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAxioms.cmo
2160
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAxioms.cmx
2161
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAxioms.cmxs
2162
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAxioms.o
1634
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBase.cmi
2163
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBase.cmi
1635
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBase.cmo
2164
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBase.cmx
2165
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBase.cmxs
2166
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBase.o
1636
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBits.cmi
2167
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBits.cmi
1637
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBits.cmo
2168
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBits.cmx
2169
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBits.cmxs
2170
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBits.o
1638
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivEucl.cmi
2171
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivEucl.cmi
1639
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivEucl.cmo
2172
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivEucl.cmx
2173
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivEucl.cmxs
2174
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivEucl.o
1640
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivFloor.cmi
2175
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivFloor.cmi
1641
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivFloor.cmo
2176
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivFloor.cmx
2177
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivFloor.cmxs
2178
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivFloor.o
1642
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivTrunc.cmi
2179
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivTrunc.cmi
1643
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivTrunc.cmo
2180
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivTrunc.cmx
2181
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivTrunc.cmxs
2182
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivTrunc.o
1644
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZGcd.cmi
2183
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZGcd.cmi
1645
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZGcd.cmo
2184
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZGcd.cmx
2185
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZGcd.cmxs
2186
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZGcd.o
1646
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLcm.cmi
2187
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLcm.cmi
1647
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLcm.cmo
2188
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLcm.cmx
2189
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLcm.cmxs
2190
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLcm.o
1648
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLt.cmi
2191
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLt.cmi
1649
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLt.cmo
2192
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLt.cmx
2193
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLt.cmxs
2194
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLt.o
1650
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMaxMin.cmi
2195
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMaxMin.cmi
1651
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMaxMin.cmo
2196
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMaxMin.cmx
2197
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMaxMin.cmxs
2198
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMaxMin.o
1652
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMul.cmi
2199
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMul.cmi
1653
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMul.cmo
2200
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMul.cmx
2201
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMul.cmxs
2202
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMul.o
1654
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMulOrder.cmi
2203
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMulOrder.cmi
1655
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMulOrder.cmo
2204
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMulOrder.cmx
2205
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMulOrder.cmxs
2206
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMulOrder.o
1656
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZParity.cmi
2207
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZParity.cmi
1657
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZParity.cmo
2208
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZParity.cmx
2209
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZParity.cmxs
2210
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZParity.o
1658
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZPow.cmi
2211
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZPow.cmi
1659
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZPow.cmo
2212
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZPow.cmx
2213
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZPow.cmxs
2214
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZPow.o
1660
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZProperties.cmi
2215
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZProperties.cmi
1661
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZProperties.cmo
2216
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZProperties.cmx
2217
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZProperties.cmxs
2218
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZProperties.o
1662
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZSgnAbs.cmi
2219
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZSgnAbs.cmi
1663
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZSgnAbs.cmo
2220
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZSgnAbs.cmx
2221
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZSgnAbs.cmxs
2222
lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZSgnAbs.o
1664
lib/coq/theories/Numbers/Integer/Abstract/ZAdd.glob
2223
lib/coq/theories/Numbers/Integer/Abstract/ZAdd.glob
1665
lib/coq/theories/Numbers/Integer/Abstract/ZAdd.v
2224
lib/coq/theories/Numbers/Integer/Abstract/ZAdd.v
1666
lib/coq/theories/Numbers/Integer/Abstract/ZAdd.vo
2225
lib/coq/theories/Numbers/Integer/Abstract/ZAdd.vo
Lines 1716-1724 Link Here
1716
lib/coq/theories/Numbers/Integer/Abstract/ZSgnAbs.v
2275
lib/coq/theories/Numbers/Integer/Abstract/ZSgnAbs.v
1717
lib/coq/theories/Numbers/Integer/Abstract/ZSgnAbs.vo
2276
lib/coq/theories/Numbers/Integer/Abstract/ZSgnAbs.vo
1718
lib/coq/theories/Numbers/Integer/BigZ/.coq-native/NCoq_Numbers_Integer_BigZ_BigZ.cmi
2277
lib/coq/theories/Numbers/Integer/BigZ/.coq-native/NCoq_Numbers_Integer_BigZ_BigZ.cmi
1719
lib/coq/theories/Numbers/Integer/BigZ/.coq-native/NCoq_Numbers_Integer_BigZ_BigZ.cmo
2278
lib/coq/theories/Numbers/Integer/BigZ/.coq-native/NCoq_Numbers_Integer_BigZ_BigZ.cmx
2279
lib/coq/theories/Numbers/Integer/BigZ/.coq-native/NCoq_Numbers_Integer_BigZ_BigZ.cmxs
2280
lib/coq/theories/Numbers/Integer/BigZ/.coq-native/NCoq_Numbers_Integer_BigZ_BigZ.o
1720
lib/coq/theories/Numbers/Integer/BigZ/.coq-native/NCoq_Numbers_Integer_BigZ_ZMake.cmi
2281
lib/coq/theories/Numbers/Integer/BigZ/.coq-native/NCoq_Numbers_Integer_BigZ_ZMake.cmi
1721
lib/coq/theories/Numbers/Integer/BigZ/.coq-native/NCoq_Numbers_Integer_BigZ_ZMake.cmo
2282
lib/coq/theories/Numbers/Integer/BigZ/.coq-native/NCoq_Numbers_Integer_BigZ_ZMake.cmx
2283
lib/coq/theories/Numbers/Integer/BigZ/.coq-native/NCoq_Numbers_Integer_BigZ_ZMake.cmxs
2284
lib/coq/theories/Numbers/Integer/BigZ/.coq-native/NCoq_Numbers_Integer_BigZ_ZMake.o
1722
lib/coq/theories/Numbers/Integer/BigZ/BigZ.glob
2285
lib/coq/theories/Numbers/Integer/BigZ/BigZ.glob
1723
lib/coq/theories/Numbers/Integer/BigZ/BigZ.v
2286
lib/coq/theories/Numbers/Integer/BigZ/BigZ.v
1724
lib/coq/theories/Numbers/Integer/BigZ/BigZ.vo
2287
lib/coq/theories/Numbers/Integer/BigZ/BigZ.vo
Lines 1726-1744 Link Here
1726
lib/coq/theories/Numbers/Integer/BigZ/ZMake.v
2289
lib/coq/theories/Numbers/Integer/BigZ/ZMake.v
1727
lib/coq/theories/Numbers/Integer/BigZ/ZMake.vo
2290
lib/coq/theories/Numbers/Integer/BigZ/ZMake.vo
1728
lib/coq/theories/Numbers/Integer/Binary/.coq-native/NCoq_Numbers_Integer_Binary_ZBinary.cmi
2291
lib/coq/theories/Numbers/Integer/Binary/.coq-native/NCoq_Numbers_Integer_Binary_ZBinary.cmi
1729
lib/coq/theories/Numbers/Integer/Binary/.coq-native/NCoq_Numbers_Integer_Binary_ZBinary.cmo
2292
lib/coq/theories/Numbers/Integer/Binary/.coq-native/NCoq_Numbers_Integer_Binary_ZBinary.cmx
2293
lib/coq/theories/Numbers/Integer/Binary/.coq-native/NCoq_Numbers_Integer_Binary_ZBinary.cmxs
2294
lib/coq/theories/Numbers/Integer/Binary/.coq-native/NCoq_Numbers_Integer_Binary_ZBinary.o
1730
lib/coq/theories/Numbers/Integer/Binary/ZBinary.glob
2295
lib/coq/theories/Numbers/Integer/Binary/ZBinary.glob
1731
lib/coq/theories/Numbers/Integer/Binary/ZBinary.v
2296
lib/coq/theories/Numbers/Integer/Binary/ZBinary.v
1732
lib/coq/theories/Numbers/Integer/Binary/ZBinary.vo
2297
lib/coq/theories/Numbers/Integer/Binary/ZBinary.vo
1733
lib/coq/theories/Numbers/Integer/NatPairs/.coq-native/NCoq_Numbers_Integer_NatPairs_ZNatPairs.cmi
2298
lib/coq/theories/Numbers/Integer/NatPairs/.coq-native/NCoq_Numbers_Integer_NatPairs_ZNatPairs.cmi
1734
lib/coq/theories/Numbers/Integer/NatPairs/.coq-native/NCoq_Numbers_Integer_NatPairs_ZNatPairs.cmo
2299
lib/coq/theories/Numbers/Integer/NatPairs/.coq-native/NCoq_Numbers_Integer_NatPairs_ZNatPairs.cmx
2300
lib/coq/theories/Numbers/Integer/NatPairs/.coq-native/NCoq_Numbers_Integer_NatPairs_ZNatPairs.cmxs
2301
lib/coq/theories/Numbers/Integer/NatPairs/.coq-native/NCoq_Numbers_Integer_NatPairs_ZNatPairs.o
1735
lib/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.glob
2302
lib/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.glob
1736
lib/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.v
2303
lib/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.v
1737
lib/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.vo
2304
lib/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.vo
1738
lib/coq/theories/Numbers/Integer/SpecViaZ/.coq-native/NCoq_Numbers_Integer_SpecViaZ_ZSig.cmi
2305
lib/coq/theories/Numbers/Integer/SpecViaZ/.coq-native/NCoq_Numbers_Integer_SpecViaZ_ZSig.cmi
1739
lib/coq/theories/Numbers/Integer/SpecViaZ/.coq-native/NCoq_Numbers_Integer_SpecViaZ_ZSig.cmo
2306
lib/coq/theories/Numbers/Integer/SpecViaZ/.coq-native/NCoq_Numbers_Integer_SpecViaZ_ZSig.cmx
2307
lib/coq/theories/Numbers/Integer/SpecViaZ/.coq-native/NCoq_Numbers_Integer_SpecViaZ_ZSig.cmxs
2308
lib/coq/theories/Numbers/Integer/SpecViaZ/.coq-native/NCoq_Numbers_Integer_SpecViaZ_ZSig.o
1740
lib/coq/theories/Numbers/Integer/SpecViaZ/.coq-native/NCoq_Numbers_Integer_SpecViaZ_ZSigZAxioms.cmi
2309
lib/coq/theories/Numbers/Integer/SpecViaZ/.coq-native/NCoq_Numbers_Integer_SpecViaZ_ZSigZAxioms.cmi
1741
lib/coq/theories/Numbers/Integer/SpecViaZ/.coq-native/NCoq_Numbers_Integer_SpecViaZ_ZSigZAxioms.cmo
2310
lib/coq/theories/Numbers/Integer/SpecViaZ/.coq-native/NCoq_Numbers_Integer_SpecViaZ_ZSigZAxioms.cmx
2311
lib/coq/theories/Numbers/Integer/SpecViaZ/.coq-native/NCoq_Numbers_Integer_SpecViaZ_ZSigZAxioms.cmxs
2312
lib/coq/theories/Numbers/Integer/SpecViaZ/.coq-native/NCoq_Numbers_Integer_SpecViaZ_ZSigZAxioms.o
1742
lib/coq/theories/Numbers/Integer/SpecViaZ/ZSig.glob
2313
lib/coq/theories/Numbers/Integer/SpecViaZ/ZSig.glob
1743
lib/coq/theories/Numbers/Integer/SpecViaZ/ZSig.v
2314
lib/coq/theories/Numbers/Integer/SpecViaZ/ZSig.v
1744
lib/coq/theories/Numbers/Integer/SpecViaZ/ZSig.vo
2315
lib/coq/theories/Numbers/Integer/SpecViaZ/ZSig.vo
Lines 1749-1785 Link Here
1749
lib/coq/theories/Numbers/NaryFunctions.v
2320
lib/coq/theories/Numbers/NaryFunctions.v
1750
lib/coq/theories/Numbers/NaryFunctions.vo
2321
lib/coq/theories/Numbers/NaryFunctions.vo
1751
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAdd.cmi
2322
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAdd.cmi
1752
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAdd.cmo
2323
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAdd.cmx
2324
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAdd.cmxs
2325
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAdd.o
1753
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAddOrder.cmi
2326
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAddOrder.cmi
1754
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAddOrder.cmo
2327
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAddOrder.cmx
2328
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAddOrder.cmxs
2329
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAddOrder.o
1755
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAxioms.cmi
2330
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAxioms.cmi
1756
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAxioms.cmo
2331
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAxioms.cmx
2332
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAxioms.cmxs
2333
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAxioms.o
1757
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBase.cmi
2334
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBase.cmi
1758
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBase.cmo
2335
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBase.cmx
2336
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBase.cmxs
2337
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBase.o
1759
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBits.cmi
2338
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBits.cmi
1760
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBits.cmo
2339
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBits.cmx
2340
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBits.cmxs
2341
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBits.o
1761
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDiv.cmi
2342
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDiv.cmi
1762
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDiv.cmo
2343
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDiv.cmx
2344
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDiv.cmxs
2345
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDiv.o
1763
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDomain.cmi
2346
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDomain.cmi
1764
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDomain.cmo
2347
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDomain.cmx
2348
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDomain.cmxs
2349
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDomain.o
1765
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZGcd.cmi
2350
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZGcd.cmi
1766
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZGcd.cmo
2351
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZGcd.cmx
2352
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZGcd.cmxs
2353
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZGcd.o
1767
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZLog.cmi
2354
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZLog.cmi
1768
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZLog.cmo
2355
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZLog.cmx
2356
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZLog.cmxs
2357
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZLog.o
1769
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMul.cmi
2358
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMul.cmi
1770
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMul.cmo
2359
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMul.cmx
2360
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMul.cmxs
2361
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMul.o
1771
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMulOrder.cmi
2362
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMulOrder.cmi
1772
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMulOrder.cmo
2363
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMulOrder.cmx
2364
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMulOrder.cmxs
2365
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMulOrder.o
1773
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZOrder.cmi
2366
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZOrder.cmi
1774
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZOrder.cmo
2367
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZOrder.cmx
2368
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZOrder.cmxs
2369
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZOrder.o
1775
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZParity.cmi
2370
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZParity.cmi
1776
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZParity.cmo
2371
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZParity.cmx
2372
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZParity.cmxs
2373
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZParity.o
1777
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZPow.cmi
2374
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZPow.cmi
1778
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZPow.cmo
2375
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZPow.cmx
2376
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZPow.cmxs
2377
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZPow.o
1779
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZProperties.cmi
2378
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZProperties.cmi
1780
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZProperties.cmo
2379
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZProperties.cmx
2380
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZProperties.cmxs
2381
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZProperties.o
1781
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZSqrt.cmi
2382
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZSqrt.cmi
1782
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZSqrt.cmo
2383
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZSqrt.cmx
2384
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZSqrt.cmxs
2385
lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZSqrt.o
1783
lib/coq/theories/Numbers/NatInt/NZAdd.glob
2386
lib/coq/theories/Numbers/NatInt/NZAdd.glob
1784
lib/coq/theories/Numbers/NatInt/NZAdd.v
2387
lib/coq/theories/Numbers/NatInt/NZAdd.v
1785
lib/coq/theories/Numbers/NatInt/NZAdd.vo
2388
lib/coq/theories/Numbers/NatInt/NZAdd.vo
Lines 1829-1873 Link Here
1829
lib/coq/theories/Numbers/NatInt/NZSqrt.v
2432
lib/coq/theories/Numbers/NatInt/NZSqrt.v
1830
lib/coq/theories/Numbers/NatInt/NZSqrt.vo
2433
lib/coq/theories/Numbers/NatInt/NZSqrt.vo
1831
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAdd.cmi
2434
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAdd.cmi
1832
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAdd.cmo
2435
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAdd.cmx
2436
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAdd.cmxs
2437
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAdd.o
1833
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAddOrder.cmi
2438
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAddOrder.cmi
1834
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAddOrder.cmo
2439
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAddOrder.cmx
2440
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAddOrder.cmxs
2441
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAddOrder.o
1835
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAxioms.cmi
2442
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAxioms.cmi
1836
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAxioms.cmo
2443
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAxioms.cmx
2444
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAxioms.cmxs
2445
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAxioms.o
1837
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBase.cmi
2446
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBase.cmi
1838
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBase.cmo
2447
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBase.cmx
2448
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBase.cmxs
2449
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBase.o
1839
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBits.cmi
2450
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBits.cmi
1840
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBits.cmo
2451
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBits.cmx
2452
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBits.cmxs
2453
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBits.o
1841
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDefOps.cmi
2454
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDefOps.cmi
1842
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDefOps.cmo
2455
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDefOps.cmx
2456
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDefOps.cmxs
2457
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDefOps.o
1843
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv.cmi
2458
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv.cmi
1844
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv.cmo
2459
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv.cmx
2460
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv.cmxs
2461
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv.o
1845
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NGcd.cmi
2462
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NGcd.cmi
1846
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NGcd.cmo
2463
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NGcd.cmx
2464
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NGcd.cmxs
2465
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NGcd.o
1847
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NIso.cmi
2466
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NIso.cmi
1848
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NIso.cmo
2467
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NIso.cmx
2468
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NIso.cmxs
2469
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NIso.o
1849
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm.cmi
2470
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm.cmi
1850
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm.cmo
2471
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm.cmx
2472
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm.cmxs
2473
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm.o
1851
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLog.cmi
2474
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLog.cmi
1852
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLog.cmo
2475
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLog.cmx
2476
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLog.cmxs
2477
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLog.o
1853
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMaxMin.cmi
2478
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMaxMin.cmi
1854
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMaxMin.cmo
2479
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMaxMin.cmx
2480
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMaxMin.cmxs
2481
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMaxMin.o
1855
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMulOrder.cmi
2482
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMulOrder.cmi
1856
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMulOrder.cmo
2483
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMulOrder.cmx
2484
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMulOrder.cmxs
2485
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMulOrder.o
1857
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NOrder.cmi
2486
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NOrder.cmi
1858
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NOrder.cmo
2487
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NOrder.cmx
2488
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NOrder.cmxs
2489
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NOrder.o
1859
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NParity.cmi
2490
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NParity.cmi
1860
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NParity.cmo
2491
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NParity.cmx
2492
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NParity.cmxs
2493
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NParity.o
1861
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NPow.cmi
2494
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NPow.cmi
1862
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NPow.cmo
2495
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NPow.cmx
2496
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NPow.cmxs
2497
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NPow.o
1863
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NProperties.cmi
2498
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NProperties.cmi
1864
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NProperties.cmo
2499
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NProperties.cmx
2500
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NProperties.cmxs
2501
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NProperties.o
1865
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSqrt.cmi
2502
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSqrt.cmi
1866
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSqrt.cmo
2503
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSqrt.cmx
2504
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSqrt.cmxs
2505
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSqrt.o
1867
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NStrongRec.cmi
2506
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NStrongRec.cmi
1868
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NStrongRec.cmo
2507
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NStrongRec.cmx
2508
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NStrongRec.cmxs
2509
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NStrongRec.o
1869
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSub.cmi
2510
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSub.cmi
1870
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSub.cmo
2511
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSub.cmx
2512
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSub.cmxs
2513
lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSub.o
1871
lib/coq/theories/Numbers/Natural/Abstract/NAdd.glob
2514
lib/coq/theories/Numbers/Natural/Abstract/NAdd.glob
1872
lib/coq/theories/Numbers/Natural/Abstract/NAdd.v
2515
lib/coq/theories/Numbers/Natural/Abstract/NAdd.v
1873
lib/coq/theories/Numbers/Natural/Abstract/NAdd.vo
2516
lib/coq/theories/Numbers/Natural/Abstract/NAdd.vo
Lines 1929-1941 Link Here
1929
lib/coq/theories/Numbers/Natural/Abstract/NSub.v
2572
lib/coq/theories/Numbers/Natural/Abstract/NSub.v
1930
lib/coq/theories/Numbers/Natural/Abstract/NSub.vo
2573
lib/coq/theories/Numbers/Natural/Abstract/NSub.vo
1931
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_BigN.cmi
2574
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_BigN.cmi
1932
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_BigN.cmo
2575
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_BigN.cmx
2576
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_BigN.cmxs
2577
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_BigN.o
1933
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_NMake.cmi
2578
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_NMake.cmi
1934
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_NMake.cmo
2579
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_NMake.cmx
2580
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_NMake.cmxs
2581
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_NMake.o
1935
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_NMake_gen.cmi
2582
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_NMake_gen.cmi
1936
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_NMake_gen.cmo
2583
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_NMake_gen.cmx
2584
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_NMake_gen.cmxs
2585
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_NMake_gen.o
1937
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_Nbasic.cmi
2586
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_Nbasic.cmi
1938
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_Nbasic.cmo
2587
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_Nbasic.cmx
2588
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_Nbasic.cmxs
2589
lib/coq/theories/Numbers/Natural/BigN/.coq-native/NCoq_Numbers_Natural_BigN_Nbasic.o
1939
lib/coq/theories/Numbers/Natural/BigN/BigN.glob
2590
lib/coq/theories/Numbers/Natural/BigN/BigN.glob
1940
lib/coq/theories/Numbers/Natural/BigN/BigN.v
2591
lib/coq/theories/Numbers/Natural/BigN/BigN.v
1941
lib/coq/theories/Numbers/Natural/BigN/BigN.vo
2592
lib/coq/theories/Numbers/Natural/BigN/BigN.vo
Lines 1949-1967 Link Here
1949
lib/coq/theories/Numbers/Natural/BigN/Nbasic.v
2600
lib/coq/theories/Numbers/Natural/BigN/Nbasic.v
1950
lib/coq/theories/Numbers/Natural/BigN/Nbasic.vo
2601
lib/coq/theories/Numbers/Natural/BigN/Nbasic.vo
1951
lib/coq/theories/Numbers/Natural/Binary/.coq-native/NCoq_Numbers_Natural_Binary_NBinary.cmi
2602
lib/coq/theories/Numbers/Natural/Binary/.coq-native/NCoq_Numbers_Natural_Binary_NBinary.cmi
1952
lib/coq/theories/Numbers/Natural/Binary/.coq-native/NCoq_Numbers_Natural_Binary_NBinary.cmo
2603
lib/coq/theories/Numbers/Natural/Binary/.coq-native/NCoq_Numbers_Natural_Binary_NBinary.cmx
2604
lib/coq/theories/Numbers/Natural/Binary/.coq-native/NCoq_Numbers_Natural_Binary_NBinary.cmxs
2605
lib/coq/theories/Numbers/Natural/Binary/.coq-native/NCoq_Numbers_Natural_Binary_NBinary.o
1953
lib/coq/theories/Numbers/Natural/Binary/NBinary.glob
2606
lib/coq/theories/Numbers/Natural/Binary/NBinary.glob
1954
lib/coq/theories/Numbers/Natural/Binary/NBinary.v
2607
lib/coq/theories/Numbers/Natural/Binary/NBinary.v
1955
lib/coq/theories/Numbers/Natural/Binary/NBinary.vo
2608
lib/coq/theories/Numbers/Natural/Binary/NBinary.vo
1956
lib/coq/theories/Numbers/Natural/Peano/.coq-native/NCoq_Numbers_Natural_Peano_NPeano.cmi
2609
lib/coq/theories/Numbers/Natural/Peano/.coq-native/NCoq_Numbers_Natural_Peano_NPeano.cmi
1957
lib/coq/theories/Numbers/Natural/Peano/.coq-native/NCoq_Numbers_Natural_Peano_NPeano.cmo
2610
lib/coq/theories/Numbers/Natural/Peano/.coq-native/NCoq_Numbers_Natural_Peano_NPeano.cmx
2611
lib/coq/theories/Numbers/Natural/Peano/.coq-native/NCoq_Numbers_Natural_Peano_NPeano.cmxs
2612
lib/coq/theories/Numbers/Natural/Peano/.coq-native/NCoq_Numbers_Natural_Peano_NPeano.o
1958
lib/coq/theories/Numbers/Natural/Peano/NPeano.glob
2613
lib/coq/theories/Numbers/Natural/Peano/NPeano.glob
1959
lib/coq/theories/Numbers/Natural/Peano/NPeano.v
2614
lib/coq/theories/Numbers/Natural/Peano/NPeano.v
1960
lib/coq/theories/Numbers/Natural/Peano/NPeano.vo
2615
lib/coq/theories/Numbers/Natural/Peano/NPeano.vo
1961
lib/coq/theories/Numbers/Natural/SpecViaZ/.coq-native/NCoq_Numbers_Natural_SpecViaZ_NSig.cmi
2616
lib/coq/theories/Numbers/Natural/SpecViaZ/.coq-native/NCoq_Numbers_Natural_SpecViaZ_NSig.cmi
1962
lib/coq/theories/Numbers/Natural/SpecViaZ/.coq-native/NCoq_Numbers_Natural_SpecViaZ_NSig.cmo
2617
lib/coq/theories/Numbers/Natural/SpecViaZ/.coq-native/NCoq_Numbers_Natural_SpecViaZ_NSig.cmx
2618
lib/coq/theories/Numbers/Natural/SpecViaZ/.coq-native/NCoq_Numbers_Natural_SpecViaZ_NSig.cmxs
2619
lib/coq/theories/Numbers/Natural/SpecViaZ/.coq-native/NCoq_Numbers_Natural_SpecViaZ_NSig.o
1963
lib/coq/theories/Numbers/Natural/SpecViaZ/.coq-native/NCoq_Numbers_Natural_SpecViaZ_NSigNAxioms.cmi
2620
lib/coq/theories/Numbers/Natural/SpecViaZ/.coq-native/NCoq_Numbers_Natural_SpecViaZ_NSigNAxioms.cmi
1964
lib/coq/theories/Numbers/Natural/SpecViaZ/.coq-native/NCoq_Numbers_Natural_SpecViaZ_NSigNAxioms.cmo
2621
lib/coq/theories/Numbers/Natural/SpecViaZ/.coq-native/NCoq_Numbers_Natural_SpecViaZ_NSigNAxioms.cmx
2622
lib/coq/theories/Numbers/Natural/SpecViaZ/.coq-native/NCoq_Numbers_Natural_SpecViaZ_NSigNAxioms.cmxs
2623
lib/coq/theories/Numbers/Natural/SpecViaZ/.coq-native/NCoq_Numbers_Natural_SpecViaZ_NSigNAxioms.o
1965
lib/coq/theories/Numbers/Natural/SpecViaZ/NSig.glob
2624
lib/coq/theories/Numbers/Natural/SpecViaZ/NSig.glob
1966
lib/coq/theories/Numbers/Natural/SpecViaZ/NSig.v
2625
lib/coq/theories/Numbers/Natural/SpecViaZ/NSig.v
1967
lib/coq/theories/Numbers/Natural/SpecViaZ/NSig.vo
2626
lib/coq/theories/Numbers/Natural/SpecViaZ/NSig.vo
Lines 1972-1980 Link Here
1972
lib/coq/theories/Numbers/NumPrelude.v
2631
lib/coq/theories/Numbers/NumPrelude.v
1973
lib/coq/theories/Numbers/NumPrelude.vo
2632
lib/coq/theories/Numbers/NumPrelude.vo
1974
lib/coq/theories/Numbers/Rational/BigQ/.coq-native/NCoq_Numbers_Rational_BigQ_BigQ.cmi
2633
lib/coq/theories/Numbers/Rational/BigQ/.coq-native/NCoq_Numbers_Rational_BigQ_BigQ.cmi
1975
lib/coq/theories/Numbers/Rational/BigQ/.coq-native/NCoq_Numbers_Rational_BigQ_BigQ.cmo
2634
lib/coq/theories/Numbers/Rational/BigQ/.coq-native/NCoq_Numbers_Rational_BigQ_BigQ.cmx
2635
lib/coq/theories/Numbers/Rational/BigQ/.coq-native/NCoq_Numbers_Rational_BigQ_BigQ.cmxs
2636
lib/coq/theories/Numbers/Rational/BigQ/.coq-native/NCoq_Numbers_Rational_BigQ_BigQ.o
1976
lib/coq/theories/Numbers/Rational/BigQ/.coq-native/NCoq_Numbers_Rational_BigQ_QMake.cmi
2637
lib/coq/theories/Numbers/Rational/BigQ/.coq-native/NCoq_Numbers_Rational_BigQ_QMake.cmi
1977
lib/coq/theories/Numbers/Rational/BigQ/.coq-native/NCoq_Numbers_Rational_BigQ_QMake.cmo
2638
lib/coq/theories/Numbers/Rational/BigQ/.coq-native/NCoq_Numbers_Rational_BigQ_QMake.cmx
2639
lib/coq/theories/Numbers/Rational/BigQ/.coq-native/NCoq_Numbers_Rational_BigQ_QMake.cmxs
2640
lib/coq/theories/Numbers/Rational/BigQ/.coq-native/NCoq_Numbers_Rational_BigQ_QMake.o
1978
lib/coq/theories/Numbers/Rational/BigQ/BigQ.glob
2641
lib/coq/theories/Numbers/Rational/BigQ/BigQ.glob
1979
lib/coq/theories/Numbers/Rational/BigQ/BigQ.v
2642
lib/coq/theories/Numbers/Rational/BigQ/BigQ.v
1980
lib/coq/theories/Numbers/Rational/BigQ/BigQ.vo
2643
lib/coq/theories/Numbers/Rational/BigQ/BigQ.vo
Lines 1982-2001 Link Here
1982
lib/coq/theories/Numbers/Rational/BigQ/QMake.v
2645
lib/coq/theories/Numbers/Rational/BigQ/QMake.v
1983
lib/coq/theories/Numbers/Rational/BigQ/QMake.vo
2646
lib/coq/theories/Numbers/Rational/BigQ/QMake.vo
1984
lib/coq/theories/Numbers/Rational/SpecViaQ/.coq-native/NCoq_Numbers_Rational_SpecViaQ_QSig.cmi
2647
lib/coq/theories/Numbers/Rational/SpecViaQ/.coq-native/NCoq_Numbers_Rational_SpecViaQ_QSig.cmi
1985
lib/coq/theories/Numbers/Rational/SpecViaQ/.coq-native/NCoq_Numbers_Rational_SpecViaQ_QSig.cmo
2648
lib/coq/theories/Numbers/Rational/SpecViaQ/.coq-native/NCoq_Numbers_Rational_SpecViaQ_QSig.cmx
2649
lib/coq/theories/Numbers/Rational/SpecViaQ/.coq-native/NCoq_Numbers_Rational_SpecViaQ_QSig.cmxs
2650
lib/coq/theories/Numbers/Rational/SpecViaQ/.coq-native/NCoq_Numbers_Rational_SpecViaQ_QSig.o
1986
lib/coq/theories/Numbers/Rational/SpecViaQ/QSig.glob
2651
lib/coq/theories/Numbers/Rational/SpecViaQ/QSig.glob
1987
lib/coq/theories/Numbers/Rational/SpecViaQ/QSig.v
2652
lib/coq/theories/Numbers/Rational/SpecViaQ/QSig.v
1988
lib/coq/theories/Numbers/Rational/SpecViaQ/QSig.vo
2653
lib/coq/theories/Numbers/Rational/SpecViaQ/QSig.vo
1989
lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPos.cmi
2654
lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPos.cmi
1990
lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPos.cmo
2655
lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPos.cmx
2656
lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPos.cmxs
2657
lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPos.o
1991
lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPosDef.cmi
2658
lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPosDef.cmi
1992
lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPosDef.cmo
2659
lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPosDef.cmx
2660
lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPosDef.cmxs
2661
lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPosDef.o
1993
lib/coq/theories/PArith/.coq-native/NCoq_PArith_PArith.cmi
2662
lib/coq/theories/PArith/.coq-native/NCoq_PArith_PArith.cmi
1994
lib/coq/theories/PArith/.coq-native/NCoq_PArith_PArith.cmo
2663
lib/coq/theories/PArith/.coq-native/NCoq_PArith_PArith.cmx
2664
lib/coq/theories/PArith/.coq-native/NCoq_PArith_PArith.cmxs
2665
lib/coq/theories/PArith/.coq-native/NCoq_PArith_PArith.o
1995
lib/coq/theories/PArith/.coq-native/NCoq_PArith_POrderedType.cmi
2666
lib/coq/theories/PArith/.coq-native/NCoq_PArith_POrderedType.cmi
1996
lib/coq/theories/PArith/.coq-native/NCoq_PArith_POrderedType.cmo
2667
lib/coq/theories/PArith/.coq-native/NCoq_PArith_POrderedType.cmx
2668
lib/coq/theories/PArith/.coq-native/NCoq_PArith_POrderedType.cmxs
2669
lib/coq/theories/PArith/.coq-native/NCoq_PArith_POrderedType.o
1997
lib/coq/theories/PArith/.coq-native/NCoq_PArith_Pnat.cmi
2670
lib/coq/theories/PArith/.coq-native/NCoq_PArith_Pnat.cmi
1998
lib/coq/theories/PArith/.coq-native/NCoq_PArith_Pnat.cmo
2671
lib/coq/theories/PArith/.coq-native/NCoq_PArith_Pnat.cmx
2672
lib/coq/theories/PArith/.coq-native/NCoq_PArith_Pnat.cmxs
2673
lib/coq/theories/PArith/.coq-native/NCoq_PArith_Pnat.o
1999
lib/coq/theories/PArith/BinPos.glob
2674
lib/coq/theories/PArith/BinPos.glob
2000
lib/coq/theories/PArith/BinPos.v
2675
lib/coq/theories/PArith/BinPos.v
2001
lib/coq/theories/PArith/BinPos.vo
2676
lib/coq/theories/PArith/BinPos.vo
Lines 2012-2034 Link Here
2012
lib/coq/theories/PArith/Pnat.v
2687
lib/coq/theories/PArith/Pnat.v
2013
lib/coq/theories/PArith/Pnat.vo
2688
lib/coq/theories/PArith/Pnat.vo
2014
lib/coq/theories/Program/.coq-native/NCoq_Program_Basics.cmi
2689
lib/coq/theories/Program/.coq-native/NCoq_Program_Basics.cmi
2015
lib/coq/theories/Program/.coq-native/NCoq_Program_Basics.cmo
2690
lib/coq/theories/Program/.coq-native/NCoq_Program_Basics.cmx
2691
lib/coq/theories/Program/.coq-native/NCoq_Program_Basics.cmxs
2692
lib/coq/theories/Program/.coq-native/NCoq_Program_Basics.o
2016
lib/coq/theories/Program/.coq-native/NCoq_Program_Combinators.cmi
2693
lib/coq/theories/Program/.coq-native/NCoq_Program_Combinators.cmi
2017
lib/coq/theories/Program/.coq-native/NCoq_Program_Combinators.cmo
2694
lib/coq/theories/Program/.coq-native/NCoq_Program_Combinators.cmx
2695
lib/coq/theories/Program/.coq-native/NCoq_Program_Combinators.cmxs
2696
lib/coq/theories/Program/.coq-native/NCoq_Program_Combinators.o
2018
lib/coq/theories/Program/.coq-native/NCoq_Program_Equality.cmi
2697
lib/coq/theories/Program/.coq-native/NCoq_Program_Equality.cmi
2019
lib/coq/theories/Program/.coq-native/NCoq_Program_Equality.cmo
2698
lib/coq/theories/Program/.coq-native/NCoq_Program_Equality.cmx
2699
lib/coq/theories/Program/.coq-native/NCoq_Program_Equality.cmxs
2700
lib/coq/theories/Program/.coq-native/NCoq_Program_Equality.o
2020
lib/coq/theories/Program/.coq-native/NCoq_Program_Program.cmi
2701
lib/coq/theories/Program/.coq-native/NCoq_Program_Program.cmi
2021
lib/coq/theories/Program/.coq-native/NCoq_Program_Program.cmo
2702
lib/coq/theories/Program/.coq-native/NCoq_Program_Program.cmx
2703
lib/coq/theories/Program/.coq-native/NCoq_Program_Program.cmxs
2704
lib/coq/theories/Program/.coq-native/NCoq_Program_Program.o
2022
lib/coq/theories/Program/.coq-native/NCoq_Program_Subset.cmi
2705
lib/coq/theories/Program/.coq-native/NCoq_Program_Subset.cmi
2023
lib/coq/theories/Program/.coq-native/NCoq_Program_Subset.cmo
2706
lib/coq/theories/Program/.coq-native/NCoq_Program_Subset.cmx
2707
lib/coq/theories/Program/.coq-native/NCoq_Program_Subset.cmxs
2708
lib/coq/theories/Program/.coq-native/NCoq_Program_Subset.o
2024
lib/coq/theories/Program/.coq-native/NCoq_Program_Syntax.cmi
2709
lib/coq/theories/Program/.coq-native/NCoq_Program_Syntax.cmi
2025
lib/coq/theories/Program/.coq-native/NCoq_Program_Syntax.cmo
2710
lib/coq/theories/Program/.coq-native/NCoq_Program_Syntax.cmx
2711
lib/coq/theories/Program/.coq-native/NCoq_Program_Syntax.cmxs
2712
lib/coq/theories/Program/.coq-native/NCoq_Program_Syntax.o
2026
lib/coq/theories/Program/.coq-native/NCoq_Program_Tactics.cmi
2713
lib/coq/theories/Program/.coq-native/NCoq_Program_Tactics.cmi
2027
lib/coq/theories/Program/.coq-native/NCoq_Program_Tactics.cmo
2714
lib/coq/theories/Program/.coq-native/NCoq_Program_Tactics.cmx
2715
lib/coq/theories/Program/.coq-native/NCoq_Program_Tactics.cmxs
2716
lib/coq/theories/Program/.coq-native/NCoq_Program_Tactics.o
2028
lib/coq/theories/Program/.coq-native/NCoq_Program_Utils.cmi
2717
lib/coq/theories/Program/.coq-native/NCoq_Program_Utils.cmi
2029
lib/coq/theories/Program/.coq-native/NCoq_Program_Utils.cmo
2718
lib/coq/theories/Program/.coq-native/NCoq_Program_Utils.cmx
2719
lib/coq/theories/Program/.coq-native/NCoq_Program_Utils.cmxs
2720
lib/coq/theories/Program/.coq-native/NCoq_Program_Utils.o
2030
lib/coq/theories/Program/.coq-native/NCoq_Program_Wf.cmi
2721
lib/coq/theories/Program/.coq-native/NCoq_Program_Wf.cmi
2031
lib/coq/theories/Program/.coq-native/NCoq_Program_Wf.cmo
2722
lib/coq/theories/Program/.coq-native/NCoq_Program_Wf.cmx
2723
lib/coq/theories/Program/.coq-native/NCoq_Program_Wf.cmxs
2724
lib/coq/theories/Program/.coq-native/NCoq_Program_Wf.o
2032
lib/coq/theories/Program/Basics.glob
2725
lib/coq/theories/Program/Basics.glob
2033
lib/coq/theories/Program/Basics.v
2726
lib/coq/theories/Program/Basics.v
2034
lib/coq/theories/Program/Basics.vo
2727
lib/coq/theories/Program/Basics.vo
Lines 2057-2087 Link Here
2057
lib/coq/theories/Program/Wf.v
2750
lib/coq/theories/Program/Wf.v
2058
lib/coq/theories/Program/Wf.vo
2751
lib/coq/theories/Program/Wf.vo
2059
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith.cmi
2752
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith.cmi
2060
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith.cmo
2753
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith.cmx
2754
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith.cmxs
2755
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith.o
2061
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith_base.cmi
2756
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith_base.cmi
2062
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith_base.cmo
2757
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith_base.cmx
2758
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith_base.cmxs
2759
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith_base.o
2063
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QOrderedType.cmi
2760
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QOrderedType.cmi
2064
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QOrderedType.cmo
2761
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QOrderedType.cmx
2762
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QOrderedType.cmxs
2763
lib/coq/theories/QArith/.coq-native/NCoq_QArith_QOrderedType.o
2065
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qabs.cmi
2764
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qabs.cmi
2066
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qabs.cmo
2765
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qabs.cmx
2766
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qabs.cmxs
2767
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qabs.o
2067
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcabs.cmi
2768
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcabs.cmi
2068
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcabs.cmo
2769
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcabs.cmx
2770
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcabs.cmxs
2771
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcabs.o
2069
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcanon.cmi
2772
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcanon.cmi
2070
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcanon.cmo
2773
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcanon.cmx
2774
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcanon.cmxs
2775
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcanon.o
2071
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qfield.cmi
2776
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qfield.cmi
2072
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qfield.cmo
2777
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qfield.cmx
2778
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qfield.cmxs
2779
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qfield.o
2073
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qminmax.cmi
2780
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qminmax.cmi
2074
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qminmax.cmo
2781
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qminmax.cmx
2782
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qminmax.cmxs
2783
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qminmax.o
2075
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qpower.cmi
2784
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qpower.cmi
2076
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qpower.cmo
2785
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qpower.cmx
2786
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qpower.cmxs
2787
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qpower.o
2077
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreals.cmi
2788
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreals.cmi
2078
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreals.cmo
2789
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreals.cmx
2790
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreals.cmxs
2791
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreals.o
2079
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreduction.cmi
2792
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreduction.cmi
2080
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreduction.cmo
2793
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreduction.cmx
2794
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreduction.cmxs
2795
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreduction.o
2081
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qring.cmi
2796
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qring.cmi
2082
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qring.cmo
2797
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qring.cmx
2798
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qring.cmxs
2799
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qring.o
2083
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qround.cmi
2800
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qround.cmi
2084
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qround.cmo
2801
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qround.cmx
2802
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qround.cmxs
2803
lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qround.o
2085
lib/coq/theories/QArith/QArith.glob
2804
lib/coq/theories/QArith/QArith.glob
2086
lib/coq/theories/QArith/QArith.v
2805
lib/coq/theories/QArith/QArith.v
2087
lib/coq/theories/QArith/QArith.vo
2806
lib/coq/theories/QArith/QArith.vo
Lines 2122-2250 Link Here
2122
lib/coq/theories/QArith/Qround.v
2841
lib/coq/theories/QArith/Qround.v
2123
lib/coq/theories/QArith/Qround.vo
2842
lib/coq/theories/QArith/Qround.vo
2124
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Alembert.cmi
2843
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Alembert.cmi
2125
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Alembert.cmo
2844
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Alembert.cmx
2845
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Alembert.cmxs
2846
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Alembert.o
2126
lib/coq/theories/Reals/.coq-native/NCoq_Reals_AltSeries.cmi
2847
lib/coq/theories/Reals/.coq-native/NCoq_Reals_AltSeries.cmi
2127
lib/coq/theories/Reals/.coq-native/NCoq_Reals_AltSeries.cmo
2848
lib/coq/theories/Reals/.coq-native/NCoq_Reals_AltSeries.cmx
2849
lib/coq/theories/Reals/.coq-native/NCoq_Reals_AltSeries.cmxs
2850
lib/coq/theories/Reals/.coq-native/NCoq_Reals_AltSeries.o
2128
lib/coq/theories/Reals/.coq-native/NCoq_Reals_ArithProp.cmi
2851
lib/coq/theories/Reals/.coq-native/NCoq_Reals_ArithProp.cmi
2129
lib/coq/theories/Reals/.coq-native/NCoq_Reals_ArithProp.cmo
2852
lib/coq/theories/Reals/.coq-native/NCoq_Reals_ArithProp.cmx
2853
lib/coq/theories/Reals/.coq-native/NCoq_Reals_ArithProp.cmxs
2854
lib/coq/theories/Reals/.coq-native/NCoq_Reals_ArithProp.o
2130
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Binomial.cmi
2855
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Binomial.cmi
2131
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Binomial.cmo
2856
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Binomial.cmx
2857
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Binomial.cmxs
2858
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Binomial.o
2132
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cauchy_prod.cmi
2859
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cauchy_prod.cmi
2133
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cauchy_prod.cmo
2860
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cauchy_prod.cmx
2861
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cauchy_prod.cmxs
2862
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cauchy_prod.o
2134
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_plus.cmi
2863
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_plus.cmi
2135
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_plus.cmo
2864
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_plus.cmx
2865
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_plus.cmxs
2866
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_plus.o
2136
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_rel.cmi
2867
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_rel.cmi
2137
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_rel.cmo
2868
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_rel.cmx
2869
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_rel.cmxs
2870
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_rel.o
2138
lib/coq/theories/Reals/.coq-native/NCoq_Reals_DiscrR.cmi
2871
lib/coq/theories/Reals/.coq-native/NCoq_Reals_DiscrR.cmi
2139
lib/coq/theories/Reals/.coq-native/NCoq_Reals_DiscrR.cmo
2872
lib/coq/theories/Reals/.coq-native/NCoq_Reals_DiscrR.cmx
2873
lib/coq/theories/Reals/.coq-native/NCoq_Reals_DiscrR.cmxs
2874
lib/coq/theories/Reals/.coq-native/NCoq_Reals_DiscrR.o
2140
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Exp_prop.cmi
2875
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Exp_prop.cmi
2141
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Exp_prop.cmo
2876
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Exp_prop.cmx
2877
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Exp_prop.cmxs
2878
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Exp_prop.o
2142
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Integration.cmi
2879
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Integration.cmi
2143
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Integration.cmo
2880
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Integration.cmx
2881
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Integration.cmxs
2882
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Integration.o
2144
lib/coq/theories/Reals/.coq-native/NCoq_Reals_MVT.cmi
2883
lib/coq/theories/Reals/.coq-native/NCoq_Reals_MVT.cmi
2145
lib/coq/theories/Reals/.coq-native/NCoq_Reals_MVT.cmo
2884
lib/coq/theories/Reals/.coq-native/NCoq_Reals_MVT.cmx
2885
lib/coq/theories/Reals/.coq-native/NCoq_Reals_MVT.cmxs
2886
lib/coq/theories/Reals/.coq-native/NCoq_Reals_MVT.o
2146
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Machin.cmi
2887
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Machin.cmi
2147
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Machin.cmo
2888
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Machin.cmx
2889
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Machin.cmxs
2890
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Machin.o
2148
lib/coq/theories/Reals/.coq-native/NCoq_Reals_NewtonInt.cmi
2891
lib/coq/theories/Reals/.coq-native/NCoq_Reals_NewtonInt.cmi
2149
lib/coq/theories/Reals/.coq-native/NCoq_Reals_NewtonInt.cmo
2892
lib/coq/theories/Reals/.coq-native/NCoq_Reals_NewtonInt.cmx
2893
lib/coq/theories/Reals/.coq-native/NCoq_Reals_NewtonInt.cmxs
2894
lib/coq/theories/Reals/.coq-native/NCoq_Reals_NewtonInt.o
2150
lib/coq/theories/Reals/.coq-native/NCoq_Reals_PSeries_reg.cmi
2895
lib/coq/theories/Reals/.coq-native/NCoq_Reals_PSeries_reg.cmi
2151
lib/coq/theories/Reals/.coq-native/NCoq_Reals_PSeries_reg.cmo
2896
lib/coq/theories/Reals/.coq-native/NCoq_Reals_PSeries_reg.cmx
2897
lib/coq/theories/Reals/.coq-native/NCoq_Reals_PSeries_reg.cmxs
2898
lib/coq/theories/Reals/.coq-native/NCoq_Reals_PSeries_reg.o
2152
lib/coq/theories/Reals/.coq-native/NCoq_Reals_PartSum.cmi
2899
lib/coq/theories/Reals/.coq-native/NCoq_Reals_PartSum.cmi
2153
lib/coq/theories/Reals/.coq-native/NCoq_Reals_PartSum.cmo
2900
lib/coq/theories/Reals/.coq-native/NCoq_Reals_PartSum.cmx
2901
lib/coq/theories/Reals/.coq-native/NCoq_Reals_PartSum.cmxs
2902
lib/coq/theories/Reals/.coq-native/NCoq_Reals_PartSum.o
2154
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RIneq.cmi
2903
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RIneq.cmi
2155
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RIneq.cmo
2904
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RIneq.cmx
2905
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RIneq.cmxs
2906
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RIneq.o
2156
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RList.cmi
2907
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RList.cmi
2157
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RList.cmo
2908
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RList.cmx
2909
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RList.cmxs
2910
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RList.o
2158
lib/coq/theories/Reals/.coq-native/NCoq_Reals_ROrderedType.cmi
2911
lib/coq/theories/Reals/.coq-native/NCoq_Reals_ROrderedType.cmi
2159
lib/coq/theories/Reals/.coq-native/NCoq_Reals_ROrderedType.cmo
2912
lib/coq/theories/Reals/.coq-native/NCoq_Reals_ROrderedType.cmx
2913
lib/coq/theories/Reals/.coq-native/NCoq_Reals_ROrderedType.cmxs
2914
lib/coq/theories/Reals/.coq-native/NCoq_Reals_ROrderedType.o
2160
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_Ifp.cmi
2915
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_Ifp.cmi
2161
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_Ifp.cmo
2916
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_Ifp.cmx
2917
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_Ifp.cmxs
2918
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_Ifp.o
2162
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqr.cmi
2919
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqr.cmi
2163
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqr.cmo
2920
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqr.cmx
2921
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqr.cmxs
2922
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqr.o
2164
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqrt.cmi
2923
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqrt.cmi
2165
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqrt.cmo
2924
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqrt.cmx
2925
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqrt.cmxs
2926
lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqrt.o
2166
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis.cmi
2927
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis.cmi
2167
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis.cmo
2928
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis.cmx
2929
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis.cmxs
2930
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis.o
2168
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis1.cmi
2931
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis1.cmi
2169
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis1.cmo
2932
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis1.cmx
2933
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis1.cmxs
2934
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis1.o
2170
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis2.cmi
2935
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis2.cmi
2171
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis2.cmo
2936
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis2.cmx
2937
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis2.cmxs
2938
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis2.o
2172
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis3.cmi
2939
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis3.cmi
2173
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis3.cmo
2940
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis3.cmx
2941
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis3.cmxs
2942
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis3.o
2174
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis4.cmi
2943
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis4.cmi
2175
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis4.cmo
2944
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis4.cmx
2945
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis4.cmxs
2946
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis4.o
2176
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis5.cmi
2947
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis5.cmi
2177
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis5.cmo
2948
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis5.cmx
2949
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis5.cmxs
2950
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis5.o
2178
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis_reg.cmi
2951
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis_reg.cmi
2179
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis_reg.cmo
2952
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis_reg.cmx
2953
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis_reg.cmxs
2954
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis_reg.o
2180
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ratan.cmi
2955
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ratan.cmi
2181
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ratan.cmo
2956
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ratan.cmx
2957
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ratan.cmxs
2958
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ratan.o
2182
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Raxioms.cmi
2959
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Raxioms.cmi
2183
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Raxioms.cmo
2960
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Raxioms.cmx
2961
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Raxioms.cmxs
2962
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Raxioms.o
2184
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbase.cmi
2963
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbase.cmi
2185
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbase.cmo
2964
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbase.cmx
2965
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbase.cmxs
2966
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbase.o
2186
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbasic_fun.cmi
2967
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbasic_fun.cmi
2187
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbasic_fun.cmo
2968
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbasic_fun.cmx
2969
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbasic_fun.cmxs
2970
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbasic_fun.o
2188
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rcomplete.cmi
2971
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rcomplete.cmi
2189
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rcomplete.cmo
2972
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rcomplete.cmx
2973
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rcomplete.cmxs
2974
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rcomplete.o
2190
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rdefinitions.cmi
2975
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rdefinitions.cmi
2191
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rdefinitions.cmo
2976
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rdefinitions.cmx
2977
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rdefinitions.cmxs
2978
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rdefinitions.o
2192
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rderiv.cmi
2979
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rderiv.cmi
2193
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rderiv.cmo
2980
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rderiv.cmx
2981
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rderiv.cmxs
2982
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rderiv.o
2194
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Reals.cmi
2983
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Reals.cmi
2195
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Reals.cmo
2984
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Reals.cmx
2985
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Reals.cmxs
2986
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Reals.o
2196
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rfunctions.cmi
2987
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rfunctions.cmi
2197
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rfunctions.cmo
2988
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rfunctions.cmx
2989
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rfunctions.cmxs
2990
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rfunctions.o
2198
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rgeom.cmi
2991
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rgeom.cmi
2199
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rgeom.cmo
2992
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rgeom.cmx
2993
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rgeom.cmxs
2994
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rgeom.o
2200
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt.cmi
2995
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt.cmi
2201
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt.cmo
2996
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt.cmx
2997
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt.cmxs
2998
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt.o
2202
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt_SF.cmi
2999
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt_SF.cmi
2203
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt_SF.cmo
3000
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt_SF.cmx
3001
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt_SF.cmxs
3002
lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt_SF.o
2204
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlimit.cmi
3003
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlimit.cmi
2205
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlimit.cmo
3004
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlimit.cmx
3005
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlimit.cmxs
3006
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlimit.o
2206
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlogic.cmi
3007
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlogic.cmi
2207
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlogic.cmo
3008
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlogic.cmx
3009
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlogic.cmxs
3010
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlogic.o
2208
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rminmax.cmi
3011
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rminmax.cmi
2209
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rminmax.cmo
3012
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rminmax.cmx
3013
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rminmax.cmxs
3014
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rminmax.o
2210
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpow_def.cmi
3015
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpow_def.cmi
2211
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpow_def.cmo
3016
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpow_def.cmx
3017
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpow_def.cmxs
3018
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpow_def.o
2212
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpower.cmi
3019
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpower.cmi
2213
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpower.cmo
3020
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpower.cmx
3021
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpower.cmxs
3022
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpower.o
2214
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rprod.cmi
3023
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rprod.cmi
2215
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rprod.cmo
3024
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rprod.cmx
3025
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rprod.cmxs
3026
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rprod.o
2216
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rseries.cmi
3027
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rseries.cmi
2217
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rseries.cmo
3028
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rseries.cmx
3029
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rseries.cmxs
3030
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rseries.o
2218
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsigma.cmi
3031
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsigma.cmi
2219
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsigma.cmo
3032
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsigma.cmx
3033
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsigma.cmxs
3034
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsigma.o
2220
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsqrt_def.cmi
3035
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsqrt_def.cmi
2221
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsqrt_def.cmo
3036
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsqrt_def.cmx
3037
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsqrt_def.cmxs
3038
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsqrt_def.o
2222
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtopology.cmi
3039
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtopology.cmi
2223
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtopology.cmo
3040
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtopology.cmx
3041
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtopology.cmxs
3042
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtopology.o
2224
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo.cmi
3043
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo.cmi
2225
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo.cmo
3044
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo.cmx
3045
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo.cmxs
3046
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo.o
2226
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo1.cmi
3047
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo1.cmi
2227
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo1.cmo
3048
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo1.cmx
3049
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo1.cmxs
3050
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo1.o
2228
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_alt.cmi
3051
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_alt.cmi
2229
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_alt.cmo
3052
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_alt.cmx
3053
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_alt.cmxs
3054
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_alt.o
2230
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_calc.cmi
3055
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_calc.cmi
2231
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_calc.cmo
3056
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_calc.cmx
3057
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_calc.cmxs
3058
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_calc.o
2232
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_def.cmi
3059
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_def.cmi
2233
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_def.cmo
3060
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_def.cmx
3061
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_def.cmxs
3062
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_def.o
2234
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_fun.cmi
3063
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_fun.cmi
2235
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_fun.cmo
3064
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_fun.cmx
3065
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_fun.cmxs
3066
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_fun.o
2236
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_reg.cmi
3067
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_reg.cmi
2237
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_reg.cmo
3068
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_reg.cmx
3069
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_reg.cmxs
3070
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_reg.o
2238
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqProp.cmi
3071
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqProp.cmi
2239
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqProp.cmo
3072
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqProp.cmx
3073
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqProp.cmxs
3074
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqProp.o
2240
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqSeries.cmi
3075
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqSeries.cmi
2241
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqSeries.cmo
3076
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqSeries.cmx
3077
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqSeries.cmxs
3078
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqSeries.o
2242
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitAbsolu.cmi
3079
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitAbsolu.cmi
2243
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitAbsolu.cmo
3080
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitAbsolu.cmx
3081
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitAbsolu.cmxs
3082
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitAbsolu.o
2244
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitRmult.cmi
3083
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitRmult.cmi
2245
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitRmult.cmo
3084
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitRmult.cmx
3085
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitRmult.cmxs
3086
lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitRmult.o
2246
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Sqrt_reg.cmi
3087
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Sqrt_reg.cmi
2247
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Sqrt_reg.cmo
3088
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Sqrt_reg.cmx
3089
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Sqrt_reg.cmxs
3090
lib/coq/theories/Reals/.coq-native/NCoq_Reals_Sqrt_reg.o
2248
lib/coq/theories/Reals/Alembert.glob
3091
lib/coq/theories/Reals/Alembert.glob
2249
lib/coq/theories/Reals/Alembert.v
3092
lib/coq/theories/Reals/Alembert.v
2250
lib/coq/theories/Reals/Alembert.vo
3093
lib/coq/theories/Reals/Alembert.vo
Lines 2432-2444 Link Here
2432
lib/coq/theories/Reals/Sqrt_reg.v
3275
lib/coq/theories/Reals/Sqrt_reg.v
2433
lib/coq/theories/Reals/Sqrt_reg.vo
3276
lib/coq/theories/Reals/Sqrt_reg.vo
2434
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Operators_Properties.cmi
3277
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Operators_Properties.cmi
2435
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Operators_Properties.cmo
3278
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Operators_Properties.cmx
3279
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Operators_Properties.cmxs
3280
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Operators_Properties.o
2436
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Definitions.cmi
3281
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Definitions.cmi
2437
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Definitions.cmo
3282
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Definitions.cmx
3283
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Definitions.cmxs
3284
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Definitions.o
2438
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Operators.cmi
3285
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Operators.cmi
2439
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Operators.cmo
3286
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Operators.cmx
3287
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Operators.cmxs
3288
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Operators.o
2440
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relations.cmi
3289
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relations.cmi
2441
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relations.cmo
3290
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relations.cmx
3291
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relations.cmxs
3292
lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relations.o
2442
lib/coq/theories/Relations/Operators_Properties.glob
3293
lib/coq/theories/Relations/Operators_Properties.glob
2443
lib/coq/theories/Relations/Operators_Properties.v
3294
lib/coq/theories/Relations/Operators_Properties.v
2444
lib/coq/theories/Relations/Operators_Properties.vo
3295
lib/coq/theories/Relations/Operators_Properties.vo
Lines 2452-2505 Link Here
2452
lib/coq/theories/Relations/Relations.v
3303
lib/coq/theories/Relations/Relations.v
2453
lib/coq/theories/Relations/Relations.vo
3304
lib/coq/theories/Relations/Relations.vo
2454
lib/coq/theories/Setoids/.coq-native/NCoq_Setoids_Setoid.cmi
3305
lib/coq/theories/Setoids/.coq-native/NCoq_Setoids_Setoid.cmi
2455
lib/coq/theories/Setoids/.coq-native/NCoq_Setoids_Setoid.cmo
3306
lib/coq/theories/Setoids/.coq-native/NCoq_Setoids_Setoid.cmx
3307
lib/coq/theories/Setoids/.coq-native/NCoq_Setoids_Setoid.cmxs
3308
lib/coq/theories/Setoids/.coq-native/NCoq_Setoids_Setoid.o
2456
lib/coq/theories/Setoids/Setoid.glob
3309
lib/coq/theories/Setoids/Setoid.glob
2457
lib/coq/theories/Setoids/Setoid.v
3310
lib/coq/theories/Setoids/Setoid.v
2458
lib/coq/theories/Setoids/Setoid.vo
3311
lib/coq/theories/Setoids/Setoid.vo
2459
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Classical_sets.cmi
3312
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Classical_sets.cmi
2460
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Classical_sets.cmo
3313
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Classical_sets.cmx
3314
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Classical_sets.cmxs
3315
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Classical_sets.o
2461
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Constructive_sets.cmi
3316
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Constructive_sets.cmi
2462
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Constructive_sets.cmo
3317
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Constructive_sets.cmx
3318
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Constructive_sets.cmxs
3319
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Constructive_sets.o
2463
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Cpo.cmi
3320
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Cpo.cmi
2464
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Cpo.cmo
3321
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Cpo.cmx
3322
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Cpo.cmxs
3323
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Cpo.o
2465
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Ensembles.cmi
3324
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Ensembles.cmi
2466
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Ensembles.cmo
3325
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Ensembles.cmx
3326
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Ensembles.cmxs
3327
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Ensembles.o
2467
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets.cmi
3328
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets.cmi
2468
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets.cmo
3329
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets.cmx
3330
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets.cmxs
3331
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets.o
2469
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets_facts.cmi
3332
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets_facts.cmi
2470
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets_facts.cmo
3333
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets_facts.cmx
3334
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets_facts.cmxs
3335
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets_facts.o
2471
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Image.cmi
3336
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Image.cmi
2472
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Image.cmo
3337
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Image.cmx
3338
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Image.cmxs
3339
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Image.o
2473
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Infinite_sets.cmi
3340
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Infinite_sets.cmi
2474
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Infinite_sets.cmo
3341
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Infinite_sets.cmx
3342
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Infinite_sets.cmxs
3343
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Infinite_sets.o
2475
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Integers.cmi
3344
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Integers.cmi
2476
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Integers.cmo
3345
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Integers.cmx
3346
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Integers.cmxs
3347
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Integers.o
2477
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Multiset.cmi
3348
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Multiset.cmi
2478
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Multiset.cmo
3349
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Multiset.cmx
3350
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Multiset.cmxs
3351
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Multiset.o
2479
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Partial_Order.cmi
3352
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Partial_Order.cmi
2480
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Partial_Order.cmo
3353
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Partial_Order.cmx
3354
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Partial_Order.cmxs
3355
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Partial_Order.o
2481
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Permut.cmi
3356
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Permut.cmi
2482
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Permut.cmo
3357
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Permut.cmx
3358
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Permut.cmxs
3359
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Permut.o
2483
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset.cmi
3360
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset.cmi
2484
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset.cmo
3361
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset.cmx
3362
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset.cmxs
3363
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset.o
2485
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_Classical_facts.cmi
3364
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_Classical_facts.cmi
2486
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_Classical_facts.cmo
3365
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_Classical_facts.cmx
3366
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_Classical_facts.cmxs
3367
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_Classical_facts.o
2487
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_facts.cmi
3368
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_facts.cmi
2488
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_facts.cmo
3369
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_facts.cmx
3370
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_facts.cmxs
3371
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_facts.o
2489
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1.cmi
3372
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1.cmi
2490
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1.cmo
3373
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1.cmx
3374
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1.cmxs
3375
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1.o
2491
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1_facts.cmi
3376
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1_facts.cmi
2492
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1_facts.cmo
3377
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1_facts.cmx
3378
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1_facts.cmxs
3379
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1_facts.o
2493
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2.cmi
3380
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2.cmi
2494
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2.cmo
3381
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2.cmx
3382
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2.cmxs
3383
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2.o
2495
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2_facts.cmi
3384
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2_facts.cmi
2496
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2_facts.cmo
3385
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2_facts.cmx
3386
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2_facts.cmxs
3387
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2_facts.o
2497
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3.cmi
3388
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3.cmi
2498
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3.cmo
3389
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3.cmx
3390
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3.cmxs
3391
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3.o
2499
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3_facts.cmi
3392
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3_facts.cmi
2500
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3_facts.cmo
3393
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3_facts.cmx
3394
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3_facts.cmxs
3395
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3_facts.o
2501
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Uniset.cmi
3396
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Uniset.cmi
2502
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Uniset.cmo
3397
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Uniset.cmx
3398
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Uniset.cmxs
3399
lib/coq/theories/Sets/.coq-native/NCoq_Sets_Uniset.o
2503
lib/coq/theories/Sets/Classical_sets.glob
3400
lib/coq/theories/Sets/Classical_sets.glob
2504
lib/coq/theories/Sets/Classical_sets.v
3401
lib/coq/theories/Sets/Classical_sets.v
2505
lib/coq/theories/Sets/Classical_sets.vo
3402
lib/coq/theories/Sets/Classical_sets.vo
Lines 2567-2585 Link Here
2567
lib/coq/theories/Sets/Uniset.v
3464
lib/coq/theories/Sets/Uniset.v
2568
lib/coq/theories/Sets/Uniset.vo
3465
lib/coq/theories/Sets/Uniset.vo
2569
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Heap.cmi
3466
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Heap.cmi
2570
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Heap.cmo
3467
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Heap.cmx
3468
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Heap.cmxs
3469
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Heap.o
2571
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Mergesort.cmi
3470
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Mergesort.cmi
2572
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Mergesort.cmo
3471
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Mergesort.cmx
3472
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Mergesort.cmxs
3473
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Mergesort.o
2573
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutEq.cmi
3474
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutEq.cmi
2574
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutEq.cmo
3475
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutEq.cmx
3476
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutEq.cmxs
3477
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutEq.o
2575
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutSetoid.cmi
3478
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutSetoid.cmi
2576
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutSetoid.cmo
3479
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutSetoid.cmx
3480
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutSetoid.cmxs
3481
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutSetoid.o
2577
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Permutation.cmi
3482
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Permutation.cmi
2578
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Permutation.cmo
3483
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Permutation.cmx
3484
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Permutation.cmxs
3485
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Permutation.o
2579
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorted.cmi
3486
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorted.cmi
2580
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorted.cmo
3487
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorted.cmx
3488
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorted.cmxs
3489
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorted.o
2581
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorting.cmi
3490
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorting.cmi
2582
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorting.cmo
3491
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorting.cmx
3492
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorting.cmxs
3493
lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorting.o
2583
lib/coq/theories/Sorting/Heap.glob
3494
lib/coq/theories/Sorting/Heap.glob
2584
lib/coq/theories/Sorting/Heap.v
3495
lib/coq/theories/Sorting/Heap.v
2585
lib/coq/theories/Sorting/Heap.vo
3496
lib/coq/theories/Sorting/Heap.vo
Lines 2602-2610 Link Here
2602
lib/coq/theories/Sorting/Sorting.v
3513
lib/coq/theories/Sorting/Sorting.v
2603
lib/coq/theories/Sorting/Sorting.vo
3514
lib/coq/theories/Sorting/Sorting.vo
2604
lib/coq/theories/Strings/.coq-native/NCoq_Strings_Ascii.cmi
3515
lib/coq/theories/Strings/.coq-native/NCoq_Strings_Ascii.cmi
2605
lib/coq/theories/Strings/.coq-native/NCoq_Strings_Ascii.cmo
3516
lib/coq/theories/Strings/.coq-native/NCoq_Strings_Ascii.cmx
3517
lib/coq/theories/Strings/.coq-native/NCoq_Strings_Ascii.cmxs
3518
lib/coq/theories/Strings/.coq-native/NCoq_Strings_Ascii.o
2606
lib/coq/theories/Strings/.coq-native/NCoq_Strings_String.cmi
3519
lib/coq/theories/Strings/.coq-native/NCoq_Strings_String.cmi
2607
lib/coq/theories/Strings/.coq-native/NCoq_Strings_String.cmo
3520
lib/coq/theories/Strings/.coq-native/NCoq_Strings_String.cmx
3521
lib/coq/theories/Strings/.coq-native/NCoq_Strings_String.cmxs
3522
lib/coq/theories/Strings/.coq-native/NCoq_Strings_String.o
2608
lib/coq/theories/Strings/Ascii.glob
3523
lib/coq/theories/Strings/Ascii.glob
2609
lib/coq/theories/Strings/Ascii.v
3524
lib/coq/theories/Strings/Ascii.v
2610
lib/coq/theories/Strings/Ascii.vo
3525
lib/coq/theories/Strings/Ascii.vo
Lines 2612-2644 Link Here
2612
lib/coq/theories/Strings/String.v
3527
lib/coq/theories/Strings/String.v
2613
lib/coq/theories/Strings/String.vo
3528
lib/coq/theories/Strings/String.vo
2614
lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableType.cmi
3529
lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableType.cmi
2615
lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableType.cmo
3530
lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableType.cmx
3531
lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableType.cmxs
3532
lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableType.o
2616
lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableTypeEx.cmi
3533
lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableTypeEx.cmi
2617
lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableTypeEx.cmo
3534
lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableTypeEx.cmx
3535
lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableTypeEx.cmxs
3536
lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableTypeEx.o
2618
lib/coq/theories/Structures/.coq-native/NCoq_Structures_Equalities.cmi
3537
lib/coq/theories/Structures/.coq-native/NCoq_Structures_Equalities.cmi
2619
lib/coq/theories/Structures/.coq-native/NCoq_Structures_Equalities.cmo
3538
lib/coq/theories/Structures/.coq-native/NCoq_Structures_Equalities.cmx
3539
lib/coq/theories/Structures/.coq-native/NCoq_Structures_Equalities.cmxs
3540
lib/coq/theories/Structures/.coq-native/NCoq_Structures_Equalities.o
2620
lib/coq/theories/Structures/.coq-native/NCoq_Structures_EqualitiesFacts.cmi
3541
lib/coq/theories/Structures/.coq-native/NCoq_Structures_EqualitiesFacts.cmi
2621
lib/coq/theories/Structures/.coq-native/NCoq_Structures_EqualitiesFacts.cmo
3542
lib/coq/theories/Structures/.coq-native/NCoq_Structures_EqualitiesFacts.cmx
3543
lib/coq/theories/Structures/.coq-native/NCoq_Structures_EqualitiesFacts.cmxs
3544
lib/coq/theories/Structures/.coq-native/NCoq_Structures_EqualitiesFacts.o
2622
lib/coq/theories/Structures/.coq-native/NCoq_Structures_GenericMinMax.cmi
3545
lib/coq/theories/Structures/.coq-native/NCoq_Structures_GenericMinMax.cmi
2623
lib/coq/theories/Structures/.coq-native/NCoq_Structures_GenericMinMax.cmo
3546
lib/coq/theories/Structures/.coq-native/NCoq_Structures_GenericMinMax.cmx
3547
lib/coq/theories/Structures/.coq-native/NCoq_Structures_GenericMinMax.cmxs
3548
lib/coq/theories/Structures/.coq-native/NCoq_Structures_GenericMinMax.o
2624
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedType.cmi
3549
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedType.cmi
2625
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedType.cmo
3550
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedType.cmx
3551
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedType.cmxs
3552
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedType.o
2626
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeAlt.cmi
3553
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeAlt.cmi
2627
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeAlt.cmo
3554
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeAlt.cmx
3555
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeAlt.cmxs
3556
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeAlt.o
2628
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeEx.cmi
3557
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeEx.cmi
2629
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeEx.cmo
3558
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeEx.cmx
3559
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeEx.cmxs
3560
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeEx.o
2630
lib/coq/theories/Structures/.coq-native/NCoq_Structures_Orders.cmi
3561
lib/coq/theories/Structures/.coq-native/NCoq_Structures_Orders.cmi
2631
lib/coq/theories/Structures/.coq-native/NCoq_Structures_Orders.cmo
3562
lib/coq/theories/Structures/.coq-native/NCoq_Structures_Orders.cmx
3563
lib/coq/theories/Structures/.coq-native/NCoq_Structures_Orders.cmxs
3564
lib/coq/theories/Structures/.coq-native/NCoq_Structures_Orders.o
2632
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersAlt.cmi
3565
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersAlt.cmi
2633
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersAlt.cmo
3566
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersAlt.cmx
3567
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersAlt.cmxs
3568
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersAlt.o
2634
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersEx.cmi
3569
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersEx.cmi
2635
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersEx.cmo
3570
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersEx.cmx
3571
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersEx.cmxs
3572
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersEx.o
2636
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersFacts.cmi
3573
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersFacts.cmi
2637
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersFacts.cmo
3574
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersFacts.cmx
3575
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersFacts.cmxs
3576
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersFacts.o
2638
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersLists.cmi
3577
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersLists.cmi
2639
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersLists.cmo
3578
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersLists.cmx
3579
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersLists.cmxs
3580
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersLists.o
2640
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersTac.cmi
3581
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersTac.cmi
2641
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersTac.cmo
3582
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersTac.cmx
3583
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersTac.cmxs
3584
lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersTac.o
2642
lib/coq/theories/Structures/DecidableType.glob
3585
lib/coq/theories/Structures/DecidableType.glob
2643
lib/coq/theories/Structures/DecidableType.v
3586
lib/coq/theories/Structures/DecidableType.v
2644
lib/coq/theories/Structures/DecidableType.vo
3587
lib/coq/theories/Structures/DecidableType.vo
Lines 2682-2690 Link Here
2682
lib/coq/theories/Structures/OrdersTac.v
3625
lib/coq/theories/Structures/OrdersTac.v
2683
lib/coq/theories/Structures/OrdersTac.vo
3626
lib/coq/theories/Structures/OrdersTac.vo
2684
lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8.cmi
3627
lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8.cmi
2685
lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8.cmo
3628
lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8.cmx
3629
lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8.cmxs
3630
lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8.o
2686
lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8_core.cmi
3631
lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8_core.cmi
2687
lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8_core.cmo
3632
lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8_core.cmx
3633
lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8_core.cmxs
3634
lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8_core.o
2688
lib/coq/theories/Unicode/Utf8.glob
3635
lib/coq/theories/Unicode/Utf8.glob
2689
lib/coq/theories/Unicode/Utf8.v
3636
lib/coq/theories/Unicode/Utf8.v
2690
lib/coq/theories/Unicode/Utf8.vo
3637
lib/coq/theories/Unicode/Utf8.vo
Lines 2692-2706 Link Here
2692
lib/coq/theories/Unicode/Utf8_core.v
3639
lib/coq/theories/Unicode/Utf8_core.v
2693
lib/coq/theories/Unicode/Utf8_core.vo
3640
lib/coq/theories/Unicode/Utf8_core.vo
2694
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Fin.cmi
3641
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Fin.cmi
2695
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Fin.cmo
3642
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Fin.cmx
3643
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Fin.cmxs
3644
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Fin.o
2696
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Vector.cmi
3645
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Vector.cmi
2697
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Vector.cmo
3646
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Vector.cmx
3647
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Vector.cmxs
3648
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Vector.o
2698
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorDef.cmi
3649
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorDef.cmi
2699
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorDef.cmo
3650
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorDef.cmx
3651
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorDef.cmxs
3652
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorDef.o
2700
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorEq.cmi
3653
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorEq.cmi
2701
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorEq.cmo
3654
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorEq.cmx
3655
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorEq.cmxs
3656
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorEq.o
2702
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorSpec.cmi
3657
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorSpec.cmi
2703
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorSpec.cmo
3658
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorSpec.cmx
3659
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorSpec.cmxs
3660
lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorSpec.o
2704
lib/coq/theories/Vectors/Fin.glob
3661
lib/coq/theories/Vectors/Fin.glob
2705
lib/coq/theories/Vectors/Fin.v
3662
lib/coq/theories/Vectors/Fin.v
2706
lib/coq/theories/Vectors/Fin.vo
3663
lib/coq/theories/Vectors/Fin.vo
Lines 2717-2739 Link Here
2717
lib/coq/theories/Vectors/VectorSpec.v
3674
lib/coq/theories/Vectors/VectorSpec.v
2718
lib/coq/theories/Vectors/VectorSpec.vo
3675
lib/coq/theories/Vectors/VectorSpec.vo
2719
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Disjoint_Union.cmi
3676
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Disjoint_Union.cmi
2720
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Disjoint_Union.cmo
3677
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Disjoint_Union.cmx
3678
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Disjoint_Union.cmxs
3679
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Disjoint_Union.o
2721
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inclusion.cmi
3680
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inclusion.cmi
2722
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inclusion.cmo
3681
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inclusion.cmx
3682
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inclusion.cmxs
3683
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inclusion.o
2723
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inverse_Image.cmi
3684
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inverse_Image.cmi
2724
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inverse_Image.cmo
3685
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inverse_Image.cmx
3686
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inverse_Image.cmxs
3687
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inverse_Image.o
2725
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Exponentiation.cmi
3688
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Exponentiation.cmi
2726
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Exponentiation.cmo
3689
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Exponentiation.cmx
3690
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Exponentiation.cmxs
3691
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Exponentiation.o
2727
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Product.cmi
3692
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Product.cmi
2728
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Product.cmo
3693
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Product.cmx
3694
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Product.cmxs
3695
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Product.o
2729
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Transitive_Closure.cmi
3696
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Transitive_Closure.cmi
2730
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Transitive_Closure.cmo
3697
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Transitive_Closure.cmx
3698
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Transitive_Closure.cmxs
3699
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Transitive_Closure.o
2731
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Union.cmi
3700
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Union.cmi
2732
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Union.cmo
3701
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Union.cmx
3702
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Union.cmxs
3703
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Union.o
2733
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Well_Ordering.cmi
3704
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Well_Ordering.cmi
2734
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Well_Ordering.cmo
3705
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Well_Ordering.cmx
3706
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Well_Ordering.cmxs
3707
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Well_Ordering.o
2735
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Wellfounded.cmi
3708
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Wellfounded.cmi
2736
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Wellfounded.cmo
3709
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Wellfounded.cmx
3710
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Wellfounded.cmxs
3711
lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Wellfounded.o
2737
lib/coq/theories/Wellfounded/Disjoint_Union.glob
3712
lib/coq/theories/Wellfounded/Disjoint_Union.glob
2738
lib/coq/theories/Wellfounded/Disjoint_Union.v
3713
lib/coq/theories/Wellfounded/Disjoint_Union.v
2739
lib/coq/theories/Wellfounded/Disjoint_Union.vo
3714
lib/coq/theories/Wellfounded/Disjoint_Union.vo
Lines 2762-2832 Link Here
2762
lib/coq/theories/Wellfounded/Wellfounded.v
3737
lib/coq/theories/Wellfounded/Wellfounded.v
2763
lib/coq/theories/Wellfounded/Wellfounded.vo
3738
lib/coq/theories/Wellfounded/Wellfounded.vo
2764
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinInt.cmi
3739
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinInt.cmi
2765
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinInt.cmo
3740
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinInt.cmx
3741
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinInt.cmxs
3742
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinInt.o
2766
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinIntDef.cmi
3743
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinIntDef.cmi
2767
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinIntDef.cmo
3744
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinIntDef.cmx
3745
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinIntDef.cmxs
3746
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinIntDef.o
2768
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Int.cmi
3747
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Int.cmi
2769
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Int.cmo
3748
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Int.cmx
3749
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Int.cmxs
3750
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Int.o
2770
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Wf_Z.cmi
3751
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Wf_Z.cmi
2771
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Wf_Z.cmo
3752
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Wf_Z.cmx
3753
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Wf_Z.cmxs
3754
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Wf_Z.o
2772
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith.cmi
3755
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith.cmi
2773
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith.cmo
3756
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith.cmx
3757
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith.cmxs
3758
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith.o
2774
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_base.cmi
3759
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_base.cmi
2775
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_base.cmo
3760
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_base.cmx
3761
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_base.cmxs
3762
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_base.o
2776
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_dec.cmi
3763
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_dec.cmi
2777
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_dec.cmo
3764
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_dec.cmx
3765
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_dec.cmxs
3766
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_dec.o
2778
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zabs.cmi
3767
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zabs.cmi
2779
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zabs.cmo
3768
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zabs.cmx
3769
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zabs.cmxs
3770
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zabs.o
2780
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbool.cmi
3771
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbool.cmi
2781
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbool.cmo
3772
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbool.cmx
3773
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbool.cmxs
3774
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbool.o
2782
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcompare.cmi
3775
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcompare.cmi
2783
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcompare.cmo
3776
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcompare.cmx
3777
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcompare.cmxs
3778
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcompare.o
2784
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcomplements.cmi
3779
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcomplements.cmi
2785
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcomplements.cmo
3780
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcomplements.cmx
3781
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcomplements.cmxs
3782
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcomplements.o
2786
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdigits.cmi
3783
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdigits.cmi
2787
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdigits.cmo
3784
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdigits.cmx
3785
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdigits.cmxs
3786
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdigits.o
2788
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdiv.cmi
3787
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdiv.cmi
2789
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdiv.cmo
3788
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdiv.cmx
3789
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdiv.cmxs
3790
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdiv.o
2790
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeuclid.cmi
3791
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeuclid.cmi
2791
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeuclid.cmo
3792
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeuclid.cmx
3793
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeuclid.cmxs
3794
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeuclid.o
2792
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeven.cmi
3795
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeven.cmi
2793
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeven.cmo
3796
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeven.cmx
3797
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeven.cmxs
3798
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeven.o
2794
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zgcd_alt.cmi
3799
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zgcd_alt.cmi
2795
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zgcd_alt.cmo
3800
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zgcd_alt.cmx
3801
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zgcd_alt.cmxs
3802
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zgcd_alt.o
2796
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zhints.cmi
3803
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zhints.cmi
2797
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zhints.cmo
3804
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zhints.cmx
3805
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zhints.cmxs
3806
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zhints.o
2798
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zlogarithm.cmi
3807
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zlogarithm.cmi
2799
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zlogarithm.cmo
3808
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zlogarithm.cmx
3809
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zlogarithm.cmxs
3810
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zlogarithm.o
2800
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmax.cmi
3811
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmax.cmi
2801
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmax.cmo
3812
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmax.cmx
3813
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmax.cmxs
3814
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmax.o
2802
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmin.cmi
3815
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmin.cmi
2803
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmin.cmo
3816
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmin.cmx
3817
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmin.cmxs
3818
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmin.o
2804
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zminmax.cmi
3819
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zminmax.cmi
2805
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zminmax.cmo
3820
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zminmax.cmx
3821
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zminmax.cmxs
3822
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zminmax.o
2806
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmisc.cmi
3823
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmisc.cmi
2807
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmisc.cmo
3824
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmisc.cmx
3825
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmisc.cmxs
3826
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmisc.o
2808
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znat.cmi
3827
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znat.cmi
2809
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znat.cmo
3828
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znat.cmx
3829
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znat.cmxs
3830
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znat.o
2810
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znumtheory.cmi
3831
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znumtheory.cmi
2811
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znumtheory.cmo
3832
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znumtheory.cmx
3833
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znumtheory.cmxs
3834
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znumtheory.o
2812
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zorder.cmi
3835
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zorder.cmi
2813
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zorder.cmo
3836
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zorder.cmx
3837
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zorder.cmxs
3838
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zorder.o
2814
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_alt.cmi
3839
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_alt.cmi
2815
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_alt.cmo
3840
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_alt.cmx
3841
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_alt.cmxs
3842
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_alt.o
2816
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_def.cmi
3843
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_def.cmi
2817
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_def.cmo
3844
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_def.cmx
3845
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_def.cmxs
3846
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_def.o
2818
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_facts.cmi
3847
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_facts.cmi
2819
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_facts.cmo
3848
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_facts.cmx
3849
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_facts.cmxs
3850
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_facts.o
2820
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpower.cmi
3851
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpower.cmi
2821
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpower.cmo
3852
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpower.cmx
3853
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpower.cmxs
3854
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpower.o
2822
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zquot.cmi
3855
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zquot.cmi
2823
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zquot.cmo
3856
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zquot.cmx
3857
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zquot.cmxs
3858
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zquot.o
2824
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zsqrt_compat.cmi
3859
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zsqrt_compat.cmi
2825
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zsqrt_compat.cmo
3860
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zsqrt_compat.cmx
3861
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zsqrt_compat.cmxs
3862
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zsqrt_compat.o
2826
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zwf.cmi
3863
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zwf.cmi
2827
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zwf.cmo
3864
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zwf.cmx
3865
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zwf.cmxs
3866
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zwf.o
2828
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_auxiliary.cmi
3867
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_auxiliary.cmi
2829
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_auxiliary.cmo
3868
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_auxiliary.cmx
3869
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_auxiliary.cmxs
3870
lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_auxiliary.o
2830
lib/coq/theories/ZArith/BinInt.glob
3871
lib/coq/theories/ZArith/BinInt.glob
2831
lib/coq/theories/ZArith/BinInt.v
3872
lib/coq/theories/ZArith/BinInt.v
2832
lib/coq/theories/ZArith/BinInt.vo
3873
lib/coq/theories/ZArith/BinInt.vo
Lines 2947-2961 Link Here
2947
lib/coq/toplevel/obligations.cmi
3988
lib/coq/toplevel/obligations.cmi
2948
lib/coq/toplevel/record.cmi
3989
lib/coq/toplevel/record.cmi
2949
lib/coq/toplevel/search.cmi
3990
lib/coq/toplevel/search.cmi
3991
lib/coq/toplevel/toplevel.a
2950
lib/coq/toplevel/toplevel.cma
3992
lib/coq/toplevel/toplevel.cma
3993
lib/coq/toplevel/toplevel.cmxa
2951
lib/coq/toplevel/usage.cmi
3994
lib/coq/toplevel/usage.cmi
2952
lib/coq/toplevel/vernac.cmi
3995
lib/coq/toplevel/vernac.cmi
2953
lib/coq/toplevel/vernacentries.cmi
3996
lib/coq/toplevel/vernacentries.cmi
2954
lib/coq/toplevel/vernacinterp.cmi
3997
lib/coq/toplevel/vernacinterp.cmi
2955
lib/coq/toploop/coqidetop.cma
3998
lib/coq/toploop/coqidetop.cma
3999
lib/coq/toploop/coqidetop.cmxs
2956
lib/coq/toploop/proofworkertop.cma
4000
lib/coq/toploop/proofworkertop.cma
4001
lib/coq/toploop/proofworkertop.cmxs
2957
lib/coq/toploop/queryworkertop.cma
4002
lib/coq/toploop/queryworkertop.cma
4003
lib/coq/toploop/queryworkertop.cmxs
2958
lib/coq/toploop/tacworkertop.cma
4004
lib/coq/toploop/tacworkertop.cma
4005
lib/coq/toploop/tacworkertop.cmxs
2959
man/man1/coq-tex.1.gz
4006
man/man1/coq-tex.1.gz
2960
man/man1/coq_makefile.1.gz
4007
man/man1/coq_makefile.1.gz
2961
man/man1/coqc.1.gz
4008
man/man1/coqc.1.gz
Lines 2969-2979 Link Here
2969
man/man1/coqtop.opt.1.gz
4016
man/man1/coqtop.opt.1.gz
2970
man/man1/coqwc.1.gz
4017
man/man1/coqwc.1.gz
2971
man/man1/gallina.1.gz
4018
man/man1/gallina.1.gz
2972
%%PORTDOCS%%%%DATADIR%%/coq-ssreflect.lang
4019
%%IDE%%%%DATADIR%%/coq-ssreflect.lang
2973
%%PORTDOCS%%%%DATADIR%%/coq.lang
4020
%%IDE%%%%DATADIR%%/coq.lang
2974
%%PORTDOCS%%%%DATADIR%%/coq.png
4021
%%IDE%%%%DATADIR%%/coq.png
2975
%%PORTDOCS%%%%DATADIR%%/coq_style.xml
4022
%%IDE%%%%DATADIR%%/coq_style.xml
2976
%%PORTDOCS%%%%DOCSDIR%%/FAQ-CoqIde
4023
%%IDE%%%%DOCSDIR%%/FAQ-CoqIde
2977
%%EMACS_SITE_LISPDIR%%/coq/coq-font-lock.el
4024
%%EMACS_SITE_LISPDIR%%/coq/coq-font-lock.el
2978
%%EMACS_SITE_LISPDIR%%/coq/coq-inferior.el
4025
%%EMACS_SITE_LISPDIR%%/coq/coq-inferior.el
2979
%%EMACS_SITE_LISPDIR%%/coq/gallina-db.el
4026
%%EMACS_SITE_LISPDIR%%/coq/gallina-db.el
Lines 2981-2984 Link Here
2981
%%EMACS_SITE_LISPDIR%%/coq/gallina.el
4028
%%EMACS_SITE_LISPDIR%%/coq/gallina.el
2982
%%PORTDOCS%%%%EMACS_SITE_LISPDIR%%/coqdoc.sty
4029
%%PORTDOCS%%%%EMACS_SITE_LISPDIR%%/coqdoc.sty
2983
@dir lib/coq/user-contrib
4030
@dir lib/coq/user-contrib
4031
@dir %%OCAML_SITELIBDIR%%
2984
%%IDE%%@dir etc/xdg/coq
4032
%%IDE%%@dir etc/xdg/coq
(-)devel/ocaml-magic/Makefile (-10 / +5 lines)
Lines 3-30 Link Here
3
3
4
PORTNAME=	magic
4
PORTNAME=	magic
5
PORTVERSION=	0.7.3
5
PORTVERSION=	0.7.3
6
PORTREVISION=	3
6
PORTREVISION=	4
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	SF/ocaml-${PORTNAME}/ocaml-${PORTNAME}/0.7
8
MASTER_SITES=	SF/ocaml-${PORTNAME}/ocaml-${PORTNAME}/0.7
9
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
10
DISTNAME=	${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}
10
DISTNAME=	${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}
11
11
12
MAINTAINER=	ports@FreeBSD.org
12
MAINTAINER=	hrs@FreeBSD.org
13
COMMENT=	OCaml binding for libmagic(3)
13
COMMENT=	OCaml binding for libmagic(3)
14
14
15
LICENSE=	LGPL21
15
LICENSE=	LGPL21
16
LICENSE_FILE=	${WRKSRC}/LICENSE
16
LICENSE_FILE=	${WRKSRC}/LICENSE
17
17
18
USE_OCAML=		yes
18
USES=		gmake ocaml
19
USE_OCAML_FINDLIB=	yes
19
USE_OCAML=	findlib ldconfig
20
USE_OCAML_LDCONFIG=	yes
21
22
MAKE_JOBS_UNSAFE=	yes
23
24
USES=		gmake
25
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
26
27
ALL_TARGET=	doc examples
21
ALL_TARGET=	doc examples
22
MAKE_JOBS_UNSAFE=	yes
28
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
23
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
29
EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
24
EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
30
25
(-)devel/ocaml-parmap/Makefile (-6 / +5 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	parmap
4
PORTNAME=	parmap
5
DISTVERSION=	1.0-rc6
5
DISTVERSION=	1.0-rc6
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
PKGNAMEPREFIX=	ocaml-
8
PKGNAMEPREFIX=	ocaml-
8
9
Lines 15-28 Link Here
15
USE_GITHUB=	yes
16
USE_GITHUB=	yes
16
GH_ACCOUNT=	rdicosmo
17
GH_ACCOUNT=	rdicosmo
17
18
18
USES=			gmake
19
USES=			gmake ocaml
20
USE_OCAML=		findlib ldconfig
19
GNU_CONFIGURE=		yes
21
GNU_CONFIGURE=		yes
20
USE_OCAML=		yes
21
USE_OCAML_FINDLIB=	yes
22
USE_OCAML_LDCONFIG=	yes
23
22
24
post-install:
23
post-install:
25
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ocaml/parmap/*.cmxs
24
	cd ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME} && \
26
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ocaml/stublibs/*.so
25
	    ${STRIP_CMD} *.cmxs *.so
27
26
28
.include <bsd.port.mk>
27
.include <bsd.port.mk>
(-)devel/ocaml-parmap/files/patch-Makefile.in (-9 / +30 lines)
Lines 1-15 Link Here
1
--- Makefile.in.orig	2015-02-09 10:42:28 UTC
1
--- Makefile.in.orig	2015-02-09 10:42:28 UTC
2
+++ Makefile.in
2
+++ Makefile.in
3
@@ -20,9 +20,9 @@ INSTALL = $(OCAMLFIND) install
3
@@ -12,21 +12,11 @@ datarootdir = @datarootdir@
4
 prefix = @prefix@
5
 exec_prefix = @exec_prefix@
6
 
7
-ifeq ($(DESTDIR),)
8
-LIBDIR=$(shell ocamlfind printconf destdir)
9
-BINDIR=@bindir@
10
-MANDIR=@mandir@/man3
11
+LIBDIR=$(DESTDIR)/$(shell ocamlfind printconf destdir)
12
+BINDIR=$(DESTDIR)$(exec_prefix)/bin
13
+MANDIR=$(DESTDIR)$(prefix)/man/man3
14
 INSTALL = $(OCAMLFIND) install
4
 UNINSTALL = $(OCAMLFIND) remove
15
 UNINSTALL = $(OCAMLFIND) remove
5
 else
16
-else
6
 export OCAMLLIBDIR := lib/ocaml
17
-export OCAMLLIBDIR := lib/ocaml
7
-LIBDIR=$(DESTDIR)/$(OCAMLLIBDIR)
18
-LIBDIR=$(DESTDIR)/$(OCAMLLIBDIR)
8
-BINDIR=$(DESTDIR)/bin
19
-BINDIR=$(DESTDIR)/bin
9
-MANDIR=$(DESTDIR)/man/man3
20
-MANDIR=$(DESTDIR)/man/man3
10
+LIBDIR=$(DESTDIR)$(prefix)/$(OCAMLLIBDIR)
21
-INSTALL = $(OCAMLFIND) install -destdir $(LIBDIR)
11
+BINDIR=$(DESTDIR)$(exec_prefix)/bin
22
-UNINSTALL = $(OCAMLFIND) remove -destdir $(LIBDIR)
12
+MANDIR=$(DESTDIR)$(prefix)/man/man3
23
-endif
13
 INSTALL = $(OCAMLFIND) install -destdir $(LIBDIR)
24
-
14
 UNINSTALL = $(OCAMLFIND) remove -destdir $(LIBDIR)
25
 
15
 endif
26
 ifeq ("@OCAMLBEST@","opt")
27
   OCAMLBEST=native
28
@@ -81,8 +71,6 @@ INSTALL_STUFF += $(filter-out $(wildcard
29
 INSTALL_STUFF += $(wildcard _build/*.so _build/*.a)
30
 
31
 install: $(LIBS) META
32
-	test -d $(LIBDIR) || mkdir -p $(LIBDIR)
33
-	test -d $(LIBDIR)/stublibs || mkdir -p $(LIBDIR)/stublibs
34
 	$(INSTALL) -patch-version $(VERSION) $(NAME) $(INSTALL_STUFF)
35
 	(cd _build; ocamldoc -man -man-mini parmap.ml parmap.mli)
36
 	test -d $(MANDIR) || mkdir -p $(MANDIR)
(-)devel/ocaml-parmap/pkg-plist (-17 / +15 lines)
Lines 1-18 Link Here
1
lib/ocaml/parmap/META
1
%%OCAML_SITELIBDIR%%/parmap/META
2
lib/ocaml/parmap/bytearray.cmi
2
%%OCAML_SITELIBDIR%%/parmap/bytearray.cmi
3
lib/ocaml/parmap/bytearray.mli
3
%%OCAML_SITELIBDIR%%/parmap/bytearray.mli
4
lib/ocaml/parmap/libparmap_stubs.a
4
%%OCAML_SITELIBDIR%%/parmap/dllparmap_stubs.so
5
lib/ocaml/parmap/parmap.a
5
%%OCAML_SITELIBDIR%%/parmap/libparmap_stubs.a
6
lib/ocaml/parmap/parmap.cma
6
%%OCAML_SITELIBDIR%%/parmap/parmap.a
7
lib/ocaml/parmap/parmap.cmi
7
%%OCAML_SITELIBDIR%%/parmap/parmap.cma
8
lib/ocaml/parmap/parmap.cmxa
8
%%OCAML_SITELIBDIR%%/parmap/parmap.cmi
9
lib/ocaml/parmap/parmap.cmxs
9
%%OCAML_SITELIBDIR%%/parmap/parmap.cmxa
10
lib/ocaml/parmap/parmap.mli
10
%%OCAML_SITELIBDIR%%/parmap/parmap.cmxs
11
lib/ocaml/parmap/parmap_utils.cmi
11
%%OCAML_SITELIBDIR%%/parmap/parmap.mli
12
lib/ocaml/parmap/parmap_utils.mli
12
%%OCAML_SITELIBDIR%%/parmap/parmap_utils.cmi
13
lib/ocaml/parmap/setcore.cmi
13
%%OCAML_SITELIBDIR%%/parmap/parmap_utils.mli
14
lib/ocaml/parmap/setcore.mli
14
%%OCAML_SITELIBDIR%%/parmap/setcore.cmi
15
lib/ocaml/stublibs/dllparmap_stubs.so
15
%%OCAML_SITELIBDIR%%/parmap/setcore.mli
16
lib/ocaml/stublibs/dllparmap_stubs.so.owner
17
man/man3/Parmap.3o.gz
16
man/man3/Parmap.3o.gz
18
@dir %%OCAML_SITELIBDIR%%
(-)devel/ocaml-res/Makefile (-10 / +7 lines)
Lines 3-23 Link Here
3
3
4
PORTNAME=	res
4
PORTNAME=	res
5
PORTVERSION=	4.0.4
5
PORTVERSION=	4.0.4
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://cdn.bitbucket.org/mmottl/res/downloads/
8
MASTER_SITES=	http://cdn.bitbucket.org/mmottl/res/downloads/
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
10
10
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	Automatically Resizing Contiguous Memory for OCaml
12
COMMENT=	Automatically Resizing Contiguous Memory for OCaml
12
13
13
LICENSE=	LGPL20+ # source says LGPL20+, COPYING says LGPL21
14
LICENSE=	LGPL20+ # source says LGPL20+, COPYING says LGPL21
14
LICENSE_FILE=	${WRKSRC}/COPYING.txt
15
LICENSE_FILE=	${WRKSRC}/COPYING.txt
15
16
16
USE_OCAML=	yes
17
USES=		ocaml
17
USE_OCAML_FINDLIB=yes
18
USE_OCAML=	findlib:plist wash
18
USE_OCAMLFIND_PLIST=yes
19
USE_OCAML_WASH=	yes
20
21
HAS_CONFIGURE=	yes
19
HAS_CONFIGURE=	yes
22
CONFIGURE_ARGS=	--prefix ${PREFIX} --disable-docs --disable-examples
20
CONFIGURE_ARGS=	--prefix ${PREFIX} --disable-docs --disable-examples
23
MAKE_JOBS_UNSAFE=yes
21
MAKE_JOBS_UNSAFE=yes
Lines 24-30 Link Here
24
22
25
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
23
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
26
EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
24
EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
27
28
PORTDOCS=	*
25
PORTDOCS=	*
29
PORTEXAMPLES=	*
26
PORTEXAMPLES=	*
30
27
Lines 32-40 Link Here
32
29
33
post-install-DOCS-on:
30
post-install-DOCS-on:
34
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
31
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
35
.for i in AUTHORS.txt CHANGES.txt README.md TODO.md
32
	cd ${WRKSRC} && ${INSTALL_DATA} \
36
	${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
33
	    AUTHORS.txt CHANGES.txt README.md TODO.md \
37
.endfor
34
	    ${STAGEDIR}${DOCSDIR}
38
35
39
post-install-EXAMPLES-on:
36
post-install-EXAMPLES-on:
40
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
37
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
(-)devel/ocaml-sem/Makefile (-6 / +4 lines)
Lines 3-24 Link Here
3
3
4
PORTNAME=	sem
4
PORTNAME=	sem
5
PORTVERSION=	0.0.2
5
PORTVERSION=	0.0.2
6
PORTREVISION=	3
6
PORTREVISION=	4
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://ocaml-sem.sourceforge.net/files/ \
8
MASTER_SITES=	http://ocaml-sem.sourceforge.net/files/ \
9
		SF/ocaml-${PORTNAME}/${PORTNAME}/${PORTVERSION}
9
		SF/ocaml-${PORTNAME}/${PORTNAME}/${PORTVERSION}
10
PKGNAMEPREFIX=	ocaml-
10
PKGNAMEPREFIX=	ocaml-
11
11
12
MAINTAINER=	ports@FreeBSD.org
12
MAINTAINER=	hrs@FreeBSD.org
13
COMMENT=	POSIX semaphores for OCaml
13
COMMENT=	POSIX semaphores for OCaml
14
14
15
LICENSE=	BSD3CLAUSE
15
LICENSE=	BSD3CLAUSE
16
LICENSE_FILE=	${WRKSRC}/LICENSE
16
LICENSE_FILE=	${WRKSRC}/LICENSE
17
17
18
USES=		gmake tar:bzip2
18
USES=		gmake tar:bzip2 ocaml
19
USE_OCAML=	yes
19
USE_OCAML=	findlib ldconfig
20
USE_OCAML_LDCONFIG=	yes
21
USE_OCAML_FINDLIB=	yes
22
MAKE_ENV=	OCAML_LIB_INSTALL="${PREFIX}/lib/ocaml/site-lib/sem" \
20
MAKE_ENV=	OCAML_LIB_INSTALL="${PREFIX}/lib/ocaml/site-lib/sem" \
23
		INCDIRS="${LOCALBASE}/include" LIBDIRS="${LOCALBASE}/lib"
21
		INCDIRS="${LOCALBASE}/include" LIBDIRS="${LOCALBASE}/lib"
24
MAKE_JOBS_UNSAFE=	yes
22
MAKE_JOBS_UNSAFE=	yes
(-)devel/ocaml-type_conv/Makefile (-11 / +10 lines)
Lines 3-29 Link Here
3
3
4
PORTNAME=	type_conv
4
PORTNAME=	type_conv
5
PORTVERSION=	113.00.02
5
PORTVERSION=	113.00.02
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	https://ocaml.janestreet.com/ocaml-core/${PORTVERSION:R}/files/
8
MASTER_SITES=	https://ocaml.janestreet.com/ocaml-core/${PORTVERSION:R}/files/
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
10
10
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	Type conversion routines for OCaml
12
COMMENT=	Type conversion routines for OCaml
12
13
13
LICENSE=	APACHE20 BSD3CLAUSE
14
LICENSE=	APACHE20 BSD3CLAUSE
14
LICENSE_COMB=	multi
15
LICENSE_COMB=	multi
15
16
16
OPTIONS_DEFINE=	DOCS
17
USES=		gmake ocaml
17
18
USE_OCAML=	findlib:plist camlp4
19
HAS_CONFIGURE=	yes
18
CONFIGURE_ARGS=	--disable-docs --prefix ${PREFIX}
20
CONFIGURE_ARGS=	--disable-docs --prefix ${PREFIX}
19
HAS_CONFIGURE=	yes
20
MAKE_JOBS_UNSAFE=	yes
21
MAKE_JOBS_UNSAFE=	yes
21
USE_OCAML=	yes
22
USE_OCAML_CAMLP4=	yes
23
USE_OCAML_FINDLIB=	yes
24
USE_OCAMLFIND_PLIST=	yes
25
USES=		gmake
26
22
23
OPTIONS_DEFINE=	DOCS
24
27
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
25
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
28
PORTDOCS=	*
26
PORTDOCS=	*
29
27
Lines 31-37 Link Here
31
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/type_conv/pa_type_conv.cmxs
29
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/type_conv/pa_type_conv.cmxs
32
30
33
post-install-DOCS-on:
31
post-install-DOCS-on:
34
	${MKDIR} ${STAGEDIR}${DOCSDIR}/
32
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
35
	cd ${WRKSRC}/ && ${INSTALL_DATA} CHANGES.md README.md ${STAGEDIR}${DOCSDIR}/
33
	cd ${WRKSRC} && ${INSTALL_DATA} \
34
	    CHANGES.md README.md ${STAGEDIR}${DOCSDIR}
36
35
37
.include <bsd.port.mk>
36
.include <bsd.port.mk>
(-)devel/ocaml-type_conv/distinfo (+1 lines)
Lines 1-2 Link Here
1
TIMESTAMP = 1488695179
1
SHA256 (type_conv-113.00.02.tar.gz) = d305d0032be314916ac3ec37617e0c8d3aadab9bcee14e746e567d8405f5289c
2
SHA256 (type_conv-113.00.02.tar.gz) = d305d0032be314916ac3ec37617e0c8d3aadab9bcee14e746e567d8405f5289c
2
SIZE (type_conv-113.00.02.tar.gz) = 64174
3
SIZE (type_conv-113.00.02.tar.gz) = 64174
(-)devel/ocaml-xstrp4/Makefile (-9 / +7 lines)
Lines 3-31 Link Here
3
3
4
PORTNAME=	xstrp4
4
PORTNAME=	xstrp4
5
PORTVERSION=	1.8.2
5
PORTVERSION=	1.8.2
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://download.camlcity.org/download/
8
MASTER_SITES=	http://download.camlcity.org/download/
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
10
10
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	OCaml extension to expands brace expansions
12
COMMENT=	OCaml extension to expands brace expansions
12
13
13
LICENSE=	MIT
14
LICENSE=	MIT
14
15
15
OPTIONS_DEFINE=	EXAMPLES
16
USES=		gmake ocaml
16
17
USE_OCAML=	findlib:plist camlp4
17
USES=		gmake
18
USE_OCAML=	yes
19
USE_OCAML_FINDLIB=	yes
20
USE_OCAML_CAMLP4=	yes
21
USE_OCAMLFIND_PLIST=	yes
22
HAS_CONFIGURE=	yes
18
HAS_CONFIGURE=	yes
23
MAKE_JOBS_UNSAFE=	yes
19
MAKE_JOBS_UNSAFE=	yes
24
PORTEXAMPLES=	*
20
PORTEXAMPLES=	*
25
EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
21
EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
26
22
23
OPTIONS_DEFINE=	EXAMPLES
24
27
post-install:
25
post-install:
28
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
26
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
29
	(cd ${WRKSRC} && ${INSTALL_DATA} sample.* ${STAGEDIR}${EXAMPLESDIR})
27
	cd ${WRKSRC} && ${INSTALL_DATA} sample.* ${STAGEDIR}${EXAMPLESDIR}
30
28
31
.include <bsd.port.mk>
29
.include <bsd.port.mk>
(-)textproc/ocaml-csv/Makefile (-4 / +5 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	ocaml-csv
4
PORTNAME=	ocaml-csv
5
PORTVERSION=	1.2.1
5
PORTVERSION=	1.2.1
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	textproc
7
CATEGORIES=	textproc
8
MASTER_SITES=	https://forge.ocamlcore.org/frs/download.php/420/
8
MASTER_SITES=	https://forge.ocamlcore.org/frs/download.php/420/
9
9
Lines 10-22 Link Here
10
MAINTAINER=	tcrimi@gmail.com
10
MAINTAINER=	tcrimi@gmail.com
11
COMMENT=	OCaml library to read and write CSV files
11
COMMENT=	OCaml library to read and write CSV files
12
12
13
LICENSE=	LGPL21
14
13
BUILD_DEPENDS=	${LOCALBASE}/${OCAML_SITELIBDIR}/extlib:devel/ocaml-extlib
15
BUILD_DEPENDS=	${LOCALBASE}/${OCAML_SITELIBDIR}/extlib:devel/ocaml-extlib
14
16
15
WRKSRC=		${WRKDIR}/csv-${PORTVERSION}
17
WRKSRC=		${WRKDIR}/csv-${PORTVERSION}
16
USES=		gmake
18
USES=		gmake ocaml
17
MAKE_ARGS=	byte native
19
MAKE_ARGS=	byte native
18
USE_OCAML=	yes
20
USE_OCAML=	findlib
19
USE_OCAML_FINDLIB=	yes
20
OCAML_PKGDIRS=	csv
21
OCAML_PKGDIRS=	csv
21
22
22
MAKE_JOBS_UNSAFE=	yes
23
MAKE_JOBS_UNSAFE=	yes
(-)textproc/ocaml-expat/Makefile (-6 / +6 lines)
Lines 3-23 Link Here
3
3
4
PORTNAME=	expat
4
PORTNAME=	expat
5
PORTVERSION=	0.9.1
5
PORTVERSION=	0.9.1
6
PORTREVISION=	4
6
PORTREVISION=	5
7
CATEGORIES=	textproc
7
CATEGORIES=	textproc
8
MASTER_SITES=	http://www.xs4all.nl/~mmzeeman/ocaml/
8
MASTER_SITES=	http://www.xs4all.nl/~mmzeeman/ocaml/
9
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
10
DISTNAME=	${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}
10
DISTNAME=	${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}
11
11
12
MAINTAINER=	ports@FreeBSD.org
12
MAINTAINER=	hrs@FreeBSD.org
13
COMMENT=	Stub for the expat parser in OCaml
13
COMMENT=	Stub for the expat parser in OCaml
14
14
15
LICENSE=	MIT
16
15
LIB_DEPENDS=	libexpat.so:textproc/expat2
17
LIB_DEPENDS=	libexpat.so:textproc/expat2
16
18
17
USES=		gmake
19
USES=		gmake ocaml
18
USE_OCAML=	yes
20
USE_OCAML=	findlib ldconfig
19
USE_OCAML_FINDLIB=	yes
20
USE_OCAML_LDCONFIG=	yes
21
MAKE_ARGS=	EXPAT_LIBDIR=${LOCALBASE}/lib \
21
MAKE_ARGS=	EXPAT_LIBDIR=${LOCALBASE}/lib \
22
		EXPAT_INCDIR=${LOCALBASE}/include \
22
		EXPAT_INCDIR=${LOCALBASE}/include \
23
		CAML_INCDIR=${LOCALBASE}/lib/ocaml
23
		CAML_INCDIR=${LOCALBASE}/lib/ocaml
(-)www/ocaml-net/Makefile (-25 / +18 lines)
Lines 2-37 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	net
4
PORTNAME=	net
5
PORTVERSION=	4.0.4
5
PORTVERSION=	4.1.2
6
PORTREVISION=	1
7
CATEGORIES=	www
6
CATEGORIES=	www
8
MASTER_SITES=	http://download.camlcity.org/download/
7
MASTER_SITES=	http://download.camlcity.org/download/
9
PKGNAMEPREFIX=	ocaml-
8
PKGNAMEPREFIX=	ocaml-
10
DISTNAME=	ocaml${PORTNAME}-${PORTVERSION}
9
DISTNAME=	ocaml${PORTNAME}-${PORTVERSION}
11
10
12
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
13
COMMENT=	OCaml modules for Internet applications
12
COMMENT=	OCaml modules for Internet applications
14
13
15
LICENSE=	GPLv2
14
LICENSE=	GPLv2
16
15
17
BUILD_DEPENDS=	${SA_DIR}/pcre/pcre.a:devel/ocaml-pcre
16
BUILD_DEPENDS=	${SA_DIR}/pcre/pcre.a:devel/ocaml-pcre
17
LIB_DEPENDS=	libnettle.so:security/nettle
18
RUN_DEPENDS=	${SA_DIR}/pcre/pcre.a:devel/ocaml-pcre
18
RUN_DEPENDS=	${SA_DIR}/pcre/pcre.a:devel/ocaml-pcre
19
19
20
CONFLICTS=	ocaml-equeue-2* ocaml-netclient-0*
20
CONFLICTS=	ocaml-equeue-2* ocaml-netclient-0*
21
21
22
USES=			gmake
22
USES=		gmake ocaml
23
USE_OCAML=		yes
23
USE_OCAML=	findlib:plist camlp4 ldconfig
24
USE_OCAML_FINDLIB=	yes
24
OCAML_PKGDIRS=	equeue netcamlbox netcgi2 netcgi2-plex \
25
USE_OCAML_CAMLP4=	yes
25
		netclient netmulticore netplex netshm \
26
USE_OCAML_LDCONFIG=	yes
26
		netstring netstring-pcre netsys \
27
USE_OCAMLFIND_PLIST=	yes
27
		netunidata rpc rpc-auth-local rpc-generator shell
28
HAS_CONFIGURE=		yes
28
OCAML_LDLIBS=	${OCAML_PKGDIRS:S/^/${OCAML_SITELIBDIR}\//}
29
CONFIGURE_ARGS=		-disable-gtk \
29
HAS_CONFIGURE=	yes
30
			-enable-pcre
30
CONFIGURE_ARGS=	-disable-gtk \
31
31
		-enable-pcre
32
ALL_TARGET=		all opt
32
ALL_TARGET=	all opt
33
MAKE_JOBS_UNSAFE=	yes
33
MAKE_JOBS_UNSAFE=yes
34
35
PLIST_FILES=	bin/netplex-admin \
34
PLIST_FILES=	bin/netplex-admin \
36
		bin/ocamlrpcgen
35
		bin/ocamlrpcgen
37
36
Lines 41-52 Link Here
41
PORTDOCS=	*
40
PORTDOCS=	*
42
PORTEXAMPLES=	*
41
PORTEXAMPLES=	*
43
42
44
OCAML_PKGDIRS=	netsys netshm equeue shell netstring rpc-generator \
45
		rpc pop smtp netclient netcgi2 netgssapi netplex \
46
		netcgi2-plex netcamlbox netmulticore rpc-auth-local \
47
		netstring-pcre netunidata
48
OCAML_LDLIBS=	${OCAML_PKGDIRS:S/^/${OCAML_SITELIBDIR}\//}
49
50
OPTIONS_DEFINE=	NETHTTPD GTK2 GNUTLS APACHE ZIP EXAMPLES DOCS
43
OPTIONS_DEFINE=	NETHTTPD GTK2 GNUTLS APACHE ZIP EXAMPLES DOCS
51
OPTIONS_DEFAULT=GNUTLS
44
OPTIONS_DEFAULT=GNUTLS
52
NETHTTPD_DESC=	Integrated HTTP daemon
45
NETHTTPD_DESC=	Integrated HTTP daemon
Lines 78-88 Link Here
78
71
79
post-install-DOCS-on:
72
post-install-DOCS-on:
80
	@${MKDIR} ${STAGEDIR}${DOCSDIR}/
73
	@${MKDIR} ${STAGEDIR}${DOCSDIR}/
81
	@(cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/)
74
	cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
82
75
83
post-install-EXAMPLES-on:
76
post-install-EXAMPLES-on:
84
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/
77
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/
85
	@(cd ${WRKSRC}/examples/ && \
78
	cd ${WRKSRC}/examples/ && \
86
		${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/)
79
	    ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
87
80
88
.include <bsd.port.mk>
81
.include <bsd.port.mk>
(-)www/ocaml-net/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (ocamlnet-4.0.4.tar.gz) = becaa6c2b0c1ae6a3fb05139928442e5d4a685ea5033017060a86d70114e5f72
1
TIMESTAMP = 1488711346
2
SIZE (ocamlnet-4.0.4.tar.gz) = 4336176
2
SHA256 (ocamlnet-4.1.2.tar.gz) = 918c3921529cfe545e206b3535a58f43f665165044dd3548f685b583e94f14d8
3
SIZE (ocamlnet-4.1.2.tar.gz) = 4623183
(-)www/ocaml-net/pkg-descr (-1 / +1 lines)
Lines 15-18 Link Here
15
    * netsys contains bindings for system functions
15
    * netsys contains bindings for system functions
16
    * smtp and pop are two further client implementations
16
    * smtp and pop are two further client implementations
17
17
18
WWW: https://sourceforge.net/projects/ocamlnet/
18
WWW: http://projects.camlcity.org/projects/ocamlnet.html
(-)textproc/ocaml-tyxml/Makefile (-10 / +6 lines)
Lines 3-13 Link Here
3
3
4
PORTNAME=	tyxml
4
PORTNAME=	tyxml
5
PORTVERSION=	2.2.0
5
PORTVERSION=	2.2.0
6
PORTREVISION=	1
6
CATEGORIES=	textproc
7
CATEGORIES=	textproc
7
MASTER_SITES=	http://ocsigen.org/download/
8
MASTER_SITES=	http://ocsigen.org/download/
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
10
10
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	OCaml XML typing library
12
COMMENT=	OCaml XML typing library
12
13
13
LICENSE=	LGPL21_SSLEX
14
LICENSE=	LGPL21_SSLEX
Lines 18-31 Link Here
18
BUILD_DEPENDS=	${SA_DIR}/netstring/netstring.a:www/ocaml-net
19
BUILD_DEPENDS=	${SA_DIR}/netstring/netstring.a:www/ocaml-net
19
RUN_DEPENDS=	${SA_DIR}/netstring/netstring.a:www/ocaml-net
20
RUN_DEPENDS=	${SA_DIR}/netstring/netstring.a:www/ocaml-net
20
21
21
USES=			gmake
22
USES=		gmake ocaml
22
USE_OCAML=		yes
23
USE_OCAML=	findlib:plist camlp4 ldconfig
23
USE_OCAML_FINDLIB=	yes
24
MAKE_ENV=	INSTALLDIR="${STAGEDIR}${SA_DIR}"
24
USE_OCAML_LDCONFIG=	yes
25
SA_DIR=		${LOCALBASE}/${OCAML_SITELIBDIR}
25
USE_OCAML_CAMLP4=	yes
26
USE_OCAMLFIND_PLIST=	yes
27
26
28
SA_DIR=			${LOCALBASE}/${OCAML_SITELIBDIR}
29
MAKE_ENV+=		INSTALLDIR="${STAGEDIR}${SA_DIR}"
30
31
.include <bsd.port.mk>
27
.include <bsd.port.mk>
(-)textproc/ocaml-pxp/Makefile (-16 / +9 lines)
Lines 2-39 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	pxp
4
PORTNAME=	pxp
5
PORTVERSION=	1.2.7
5
PORTVERSION=	1.2.9
6
CATEGORIES=	textproc
6
CATEGORIES=	textproc
7
MASTER_SITES=	http://download.camlcity.org/download/
7
MASTER_SITES=	http://download.camlcity.org/download/
8
PKGNAMEPREFIX=	ocaml-
8
PKGNAMEPREFIX=	ocaml-
9
9
10
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	Validating XML parser for OCaml
11
COMMENT=	Validating XML parser for OCaml
12
12
13
BUILD_DEPENDS=	${LOCALBASE}/${OCAML_SITELIBDIR}/netstring/netstring.a:www/ocaml-net
13
BUILD_DEPENDS=	${LOCALBASE}/${OCAML_SITELIBDIR}/netstring/netstring.a:www/ocaml-net
14
RUN_DEPENDS=	${LOCALBASE}/${OCAML_SITELIBDIR}/netstring/netstring.a:www/ocaml-net
14
RUN_DEPENDS=	${LOCALBASE}/${OCAML_SITELIBDIR}/netstring/netstring.a:www/ocaml-net
15
15
16
BROKEN=		does not build
16
USES=		gmake ocaml
17
USE_OCAML=	findlib camlp4 ldconfig
18
HAS_CONFIGURE=	yes
19
CONFIGURE_ARGS=	-without-wlex-compat -without-wlex
20
ALL_TARGET=	all opt
21
MAKE_JOBS_UNSAFE=yes
17
22
18
OPTIONS_DEFINE=	ULEX
23
OPTIONS_DEFINE=	ULEX
19
OPTIONS_DEFAULT=ULEX
24
OPTIONS_DEFAULT=ULEX
25
20
ULEX_DESC=	Include UTF-8 lexical analyzer support
26
ULEX_DESC=	Include UTF-8 lexical analyzer support
21
22
USES=		gmake
23
USE_OCAML=	true
24
USE_OCAML_FINDLIB=	true
25
USE_OCAML_LDCONFIG=	true
26
USE_OCAML_CAMLP4=	true
27
28
ULEX_BUILD_DEPENDS=	${LOCALBASE}/${OCAML_SITELIBDIR}/ulex/ulexing.a:devel/ocaml-ulex
27
ULEX_BUILD_DEPENDS=	${LOCALBASE}/${OCAML_SITELIBDIR}/ulex/ulexing.a:devel/ocaml-ulex
29
ULEX_RUN_DEPENDS=	${LOCALBASE}/${OCAML_SITELIBDIR}/ulex/ulexing.a:devel/ocaml-ulex
28
ULEX_RUN_DEPENDS=	${LOCALBASE}/${OCAML_SITELIBDIR}/ulex/ulexing.a:devel/ocaml-ulex
30
29
31
HAS_CONFIGURE=	yes
32
CONFIGURE_ARGS+=-without-wlex-compat -without-wlex
33
34
ALL_TARGET=	all opt
35
MAKE_JOBS_UNSAFE=	yes
36
37
# to avoid a conflict with PACKAGES in bsd.port.mk
30
# to avoid a conflict with PACKAGES in bsd.port.mk
38
post-extract:
31
post-extract:
39
	${FIND} ${WRKSRC} -name "Makefile*" | ${XARGS} ${REINPLACE_CMD} -e 's/PACKAGES/PXP_PACKAGES/'
32
	${FIND} ${WRKSRC} -name "Makefile*" | ${XARGS} ${REINPLACE_CMD} -e 's/PACKAGES/PXP_PACKAGES/'
(-)textproc/ocaml-pxp/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (pxp-1.2.7.tar.gz) = 2b0aca564f71c87825436e31a82de2ca3b3e99ee81a83840a525b0be63d73025
1
TIMESTAMP = 1488712340
2
SIZE (pxp-1.2.7.tar.gz) = 735710
2
SHA256 (pxp-1.2.9.tar.gz) = b1ba8f305913b7e9d0bcbce0c532aeb28a79396e08f178b119c2050835ab1c7b
3
SIZE (pxp-1.2.9.tar.gz) = 626001
(-)math/ocaml-zarith/Makefile (-12 / +11 lines)
Lines 3-13 Link Here
3
3
4
PORTNAME=	zarith
4
PORTNAME=	zarith
5
PORTVERSION=	1.2.1
5
PORTVERSION=	1.2.1
6
PORTREVISION=	1
6
CATEGORIES=	math
7
CATEGORIES=	math
7
MASTER_SITES=	http://forge.ocamlcore.org/frs/download.php/1199/
8
MASTER_SITES=	http://forge.ocamlcore.org/frs/download.php/1199/
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
10
10
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	OCaml arithmetic library for arbitrary precision integers
12
COMMENT=	OCaml arithmetic library for arbitrary precision integers
12
13
13
LICENSE=	LGPL20
14
LICENSE=	LGPL20
Lines 15-31 Link Here
15
16
16
LIB_DEPENDS=	libgmp.so:math/gmp
17
LIB_DEPENDS=	libgmp.so:math/gmp
17
18
18
USES=			gmake perl5 shebangfix tar:tgz
19
USES=		gmake perl5 shebangfix localbase tar:tgz ocaml
19
USE_PERL5=		build
20
USE_PERL5=	build
20
USE_OCAML=		yes
21
USE_OCAML=	findlib ldconfig
21
USE_OCAML_FINDLIB=	yes
22
OCAMLFIND_LDCONF=/dev/null
22
OCAMLFIND_LDCONF=	/dev/null
23
HAS_CONFIGURE=	yes
23
HAS_CONFIGURE=		yes
24
CONFIGURE_ENV=	LIBS="${LIBS}" \
24
ALL_TARGET=		all
25
		DESTDIR="${STAGEDIR}"
25
SHEBANG_FILES=		z_pp.pl
26
ALL_TARGET=	all
26
CONFIGURE_ENV=		DESTDIR=${STAGEDIR}
27
SHEBANG_FILES=	z_pp.pl
27
CPPFLAGS+=		-I${LOCALBASE}/include
28
LDFLAGS+=		-L${LOCALBASE}/lib
29
28
30
MAKE_JOBS_UNSAFE=	yes
29
MAKE_JOBS_UNSAFE=	yes
31
30
(-)math/ocaml-zarith/files/patch-caml_z.c (+131 lines)
Line 0 Link Here
1
--- caml_z.c.orig	2013-06-12 16:13:59.000000000 +0900
2
+++ caml_z.c	2017-03-05 20:20:18.515648000 +0900
3
@@ -430,7 +430,7 @@
4
 
5
 CAMLprim value ml_z_of_int32(value v)
6
 {
7
-  int32 x;
8
+  int32_t x;
9
   value r;
10
   Z_MARK_OP;
11
   x = Int32_val(v);
12
@@ -452,7 +452,7 @@
13
 
14
 CAMLprim value ml_z_of_int64(value v)
15
 {
16
-  int64 x;
17
+  int64_t x;
18
   value r;
19
   Z_MARK_OP;
20
   x = Int64_val(v);
21
@@ -484,7 +484,7 @@
22
 {
23
   double x;
24
   int exp;
25
-  int64 y, m;
26
+  int64_t y, m;
27
   value r;
28
   Z_MARK_OP;
29
   x = Double_val(v);
30
@@ -496,7 +496,7 @@
31
 #ifdef ARCH_ALIGN_INT64
32
   memcpy(&y, v, 8);
33
 #else
34
-  y = *((int64*)v);
35
+  y = *((int64_t*)v);
36
 #endif
37
   exp = ((y >> 52) & 0x7ff) - 1023; /* exponent */
38
   if (exp < 0) return(Val_long(0));
39
@@ -663,7 +663,7 @@
40
 
41
 CAMLprim value ml_z_to_int64(value v)
42
 {
43
-  int64 x = 0;
44
+  int64_t x = 0;
45
   Z_DECL(v);
46
   Z_MARK_OP;
47
   Z_CHECK(v);  
48
@@ -674,16 +674,16 @@
49
   case 0: x = 0; break;
50
   case 1: x = ptr_v[0]; break;
51
 #ifndef ARCH_SIXTYFOUR
52
-  case 2: x = ptr_v[0] | ((uint64)ptr_v[1] << 32); break;
53
+  case 2: x = ptr_v[0] | ((uint64_t)ptr_v[1] << 32); break;
54
 #endif
55
   default: ml_z_raise_overflow(); break;
56
   }
57
   if (sign_v) {
58
-    if ((uint64)x > Z_HI_INT64) ml_z_raise_overflow();
59
+    if ((uint64_t)x > Z_HI_INT64) ml_z_raise_overflow();
60
     x = -x;
61
   }
62
   else {
63
-    if ((uint64)x >= Z_HI_INT64) ml_z_raise_overflow();
64
+    if ((uint64_t)x >= Z_HI_INT64) ml_z_raise_overflow();
65
   }
66
   return caml_copy_int64(x);
67
 }
68
@@ -1128,7 +1128,7 @@
69
 
70
 CAMLprim value ml_z_fits_int64(value v)
71
 {
72
-  int64 x;
73
+  int64_t x;
74
   Z_DECL(v);
75
   Z_MARK_OP;
76
   Z_CHECK(v);  
77
@@ -1139,15 +1139,15 @@
78
   case 0: return Val_true;
79
   case 1: x = ptr_v[0]; break;
80
 #ifndef ARCH_SIXTYFOUR
81
-  case 2: x = ptr_v[0] | ((uint64)ptr_v[1] << 32); break;
82
+  case 2: x = ptr_v[0] | ((uint64_t)ptr_v[1] << 32); break;
83
 #endif
84
   default: return Val_false;
85
   }
86
   if (sign_v) {
87
-    if ((uint64)x > Z_HI_INT64) return Val_false;
88
+    if ((uint64_t)x > Z_HI_INT64) return Val_false;
89
   }
90
   else {
91
-    if ((uint64)x >= Z_HI_INT64) return Val_false;
92
+    if ((uint64_t)x >= Z_HI_INT64) return Val_false;
93
   }
94
   return Val_true;
95
 }
96
@@ -2600,11 +2600,11 @@
97
 {
98
   Z_DECL(v);
99
   mp_size_t i;
100
-  uint32 acc = 0;
101
+  uint32_t acc = 0;
102
   Z_CHECK(v);
103
   Z_ARG(v);
104
   for (i = 0; i < size_v; i++) {
105
-    acc = caml_hash_mix_uint32(acc, (uint32)(ptr_v[i]));
106
+    acc = caml_hash_mix_uint32(acc, (uint32_t)(ptr_v[i]));
107
 #ifdef ARCH_SIXTYFOUR
108
     acc = caml_hash_mix_uint32(acc, ptr_v[i] >> 32);
109
 #endif
110
@@ -2636,7 +2636,7 @@
111
   Z_DECL(v);
112
   Z_CHECK(v);
113
   Z_ARG(v);
114
-  if ((mp_size_t)(uint32) size_v != size_v) 
115
+  if ((mp_size_t)(uint32_t) size_v != size_v) 
116
     caml_failwith("Z.serialize: number is too large");
117
   nb = size_v * sizeof(mp_limb_t);
118
   caml_serialize_int_1(sign_v ? 1 : 0);
119
@@ -2671,9 +2671,9 @@
120
 {
121
   mp_limb_t* d = ((mp_limb_t*)dst) + 1;
122
   int sign = caml_deserialize_uint_1();
123
-  uint32 sz = caml_deserialize_uint_4();
124
-  uint32 szw = (sz + sizeof(mp_limb_t) - 1) / sizeof(mp_limb_t);
125
-  uint32 i = 0;
126
+  uint32_t sz = caml_deserialize_uint_4();
127
+  uint32_t szw = (sz + sizeof(mp_limb_t) - 1) / sizeof(mp_limb_t);
128
+  uint32_t i = 0;
129
   mp_limb_t x; 
130
   /* all limbs but last */
131
   if (szw > 1) {
(-)math/ocaml-zarith/files/patch-configure (-7 / +33 lines)
Lines 1-6 Link Here
1
--- configure.orig	2013-06-12 07:13:59 UTC
1
--- configure.orig	2013-06-12 16:13:59.000000000 +0900
2
+++ configure
2
+++ configure	2017-03-05 20:22:23.294480000 +0900
3
@@ -127,6 +127,10 @@ searchbin()
3
@@ -30,6 +30,7 @@
4
   cc='gcc'
5
   ccopt="-O3 -Wall -Wextra $CFLAGS"
6
 fi
7
+libs="$LIBS"
8
 ar='ar'
9
 ocaml='ocaml'
10
 ocamlc='ocamlc'
11
@@ -127,6 +128,10 @@
4
 {
12
 {
5
     if test "x$1" = "x"; then return 0; fi
13
     if test "x$1" = "x"; then return 0; fi
6
     echo_n "binary $1: "
14
     echo_n "binary $1: "
Lines 11-17 Link Here
11
     IFS=':'
19
     IFS=':'
12
     for i in $PATH
20
     for i in $PATH
13
     do
21
     do
14
@@ -258,7 +262,7 @@ searchbin ocamlfind
22
@@ -167,7 +172,7 @@
23
     rm -f tmp.c tmp.out
24
     echo "int main() { return 1; }" >> tmp.c
25
     r=1
26
-    $cc $ccopt $cclib tmp.c -l$1 -o tmp.out >/dev/null 2>/dev/null || r=0
27
+    $cc $ccopt $cclib tmp.c -l$1 $libs -o tmp.out >/dev/null 2>/dev/null || r=0
28
     if test ! -x tmp.out; then r=0; fi
29
     rm -f tmp.c tmp.o tmp.out
30
     if test $r -eq 0; then echo "not found"; else echo "found"; fi
31
@@ -258,7 +263,7 @@
15
 if test $? -eq 1 -a $ocamlfind != "no"; then 
32
 if test $? -eq 1 -a $ocamlfind != "no"; then 
16
     instmeth='findlib'
33
     instmeth='findlib'
17
     if test "$installdir" = "auto"
34
     if test "$installdir" = "auto"
Lines 20-26 Link Here
20
 else
37
 else
21
     searchbin install
38
     searchbin install
22
     if test $? -eq 1; then instmeth='install'
39
     if test $? -eq 1; then instmeth='install'
23
@@ -304,6 +308,14 @@ case $host in
40
@@ -304,6 +309,14 @@
24
             arch='i686'
41
             arch='i686'
25
         fi
42
         fi
26
 	;;
43
 	;;
Lines 28-34 Link Here
28
+        ccdef="-DZ_ELF -DZ_DOT_LABEL_PREFIX $ccdef"
45
+        ccdef="-DZ_ELF -DZ_DOT_LABEL_PREFIX $ccdef"
29
+        arch='i686'
46
+        arch='i686'
30
+        ;;
47
+        ;;
31
+    amd64-*freebsd* | x86_64-*dragonfly*)
48
+    amd64-*freebsd* | x86_64-*freebsd* | x86_64-*dragonfly*)
32
+        ccdef="-DZ_ELF -DZ_DOT_LABEL_PREFIX $ccdef"
49
+        ccdef="-DZ_ELF -DZ_DOT_LABEL_PREFIX $ccdef"
33
+        arch='x86_64'
50
+        arch='x86_64'
34
+        ;;
51
+        ;;
Lines 35-41 Link Here
35
     i386-*darwin* | x86_64-*darwin*)
52
     i386-*darwin* | x86_64-*darwin*)
36
         ccdef="-DZ_UNDERSCORE_PREFIX -DZ_MACOS $ccdef"
53
         ccdef="-DZ_UNDERSCORE_PREFIX -DZ_MACOS $ccdef"
37
         if test "x$wordsize" = "x64"; then
54
         if test "x$wordsize" = "x64"; then
38
@@ -401,7 +413,7 @@ CFLAGS=$ccinc $ccdef $ccopt
55
@@ -392,7 +405,7 @@
56
 OCAMLC=$ocamlc
57
 OCAMLOPT=$ocamlopt
58
 OCAMLDEP=$ocamldep
59
-OCAMLMKLIB=$ocamlmklib
60
+OCAMLMKLIB=$ocamlmklib $libs
61
 OCAMLDOC=$ocamldoc
62
 OCAMLFLAGS=$mlflags
63
 OCAMLOPTFLAGS=$mloptflags
64
@@ -401,7 +414,7 @@
39
 ASFLAGS=$ccdef $asopt
65
 ASFLAGS=$ccdef $asopt
40
 LIBS=$cclib
66
 LIBS=$cclib
41
 ARCH=$arch
67
 ARCH=$arch
(-)lang/ocaml-autoconf/Makefile (-8 / +9 lines)
Lines 3-19 Link Here
3
3
4
PORTNAME=	autoconf
4
PORTNAME=	autoconf
5
PORTVERSION=	1.1
5
PORTVERSION=	1.1
6
PORTREVISION=	1
6
CATEGORIES=	lang
7
CATEGORIES=	lang
7
MASTER_SITES=	http://forge.ocamlcore.org/frs/download.php/181/
8
MASTER_SITES=	http://forge.ocamlcore.org/frs/download.php/282/
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
DISTNAME=	${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}
10
DISTNAME=	${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}
10
11
11
MAINTAINER=	ports@FreeBSD.org
12
MAINTAINER=	hrs@FreeBSD.org
12
COMMENT=	Autoconf module for ocaml
13
COMMENT=	Autoconf module for ocaml
13
14
15
LICENSE=	BSD3CLAUSE
16
14
NO_BUILD=	yes
17
NO_BUILD=	yes
15
WRKSRC=		${WRKDIR}/${PKGNAMEPREFIX}${PORTNAME}-1.0
16
17
DOCSDIR=	${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
18
DOCSDIR=	${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
18
AC_SUBDIR=	${PREFIX}/share/aclocal
19
AC_SUBDIR=	${PREFIX}/share/aclocal
19
PLIST_FILES=	share/aclocal/ocaml.m4
20
PLIST_FILES=	share/aclocal/ocaml.m4
Lines 21-29 Link Here
21
PORTDOCS=	*
22
PORTDOCS=	*
22
23
23
do-install:
24
do-install:
24
	${MKDIR} ${STAGEDIR}${AC_SUBDIR}/
25
	@${MKDIR} ${STAGEDIR}${AC_SUBDIR}
25
	${INSTALL_DATA} ${WRKSRC}/ocaml.m4 ${STAGEDIR}${AC_SUBDIR}/
26
	${INSTALL_DATA} ${WRKSRC}/ocaml.m4 ${STAGEDIR}${AC_SUBDIR}
26
	${MKDIR} ${STAGEDIR}${DOCSDIR}/
27
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
27
	${INSTALL_DATA} ${WRKSRC}/ocaml.m4.txt ${STAGEDIR}${DOCSDIR}/
28
	${INSTALL_DATA} ${WRKSRC}/ocaml.m4.txt ${STAGEDIR}${DOCSDIR}
28
29
29
.include <bsd.port.mk>
30
.include <bsd.port.mk>
(-)lang/ocaml-autoconf/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (ocaml-autoconf-1.1.tar.gz) = 67e85520f65c033c86e99e5438e51657e777579034570527c1b2c62096ecb004
1
TIMESTAMP = 1488718509
2
SIZE (ocaml-autoconf-1.1.tar.gz) = 11337
2
SHA256 (ocaml-autoconf-1.1.tar.gz) = dca81a55d755912b229de33fd4fed93ead9319e9bb9c545bc745eee98a7884ae
3
SIZE (ocaml-autoconf-1.1.tar.gz) = 10987
(-)x11-toolkits/ocaml-labltk/Makefile (-9 / +9 lines)
Lines 2-23 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	labltk
4
PORTNAME=	labltk
5
PORTVERSION=	8.06.0
5
PORTVERSION=	8.06.2
6
CATEGORIES=	x11-toolkits
6
CATEGORIES=	x11-toolkits
7
MASTER_SITES=	http://forge.ocamlcore.org/frs/download.php/1455/
7
MASTER_SITES=	https://forge.ocamlcore.org/frs/download.php/1628/
8
PKGNAMEPREFIX=	ocaml-
8
PKGNAMEPREFIX=	ocaml-
9
9
10
MAINTAINER=	michipili@gmail.com
10
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	Objective Caml interface to Tk
11
COMMENT=	Objective Caml interface to Tk
12
12
13
LICENSE=	LGPL20
13
LICENSE=	LGPL20
14
14
15
USES=		gmake tk:84,85
15
USES=		gmake tk tcl ocaml
16
USE_XORG=	x11
16
HAS_CONFIGURE=	yes
17
HAS_CONFIGURE=	yes
17
MAKE_JOBS_UNSAFE=yes
18
MAKE_JOBS_UNSAFE=yes
18
MAKE_ENV+=	STAGEDIR="${STAGEDIR}"
19
MAKE_ENV=	STAGEDIR="${STAGEDIR}"
19
USE_OCAML=	yes
20
21
ALL_TARGET=	all opt
20
ALL_TARGET=	all opt
22
21
23
post-patch:
22
post-patch:
Lines 33-39 Link Here
33
	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/ocaml/stublibs
32
	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/ocaml/stublibs
34
33
35
post-install:
34
post-install:
36
	${INSTALL_DATA} ${WRKSRC}/support/META ${STAGEDIR}${PREFIX}/lib/ocaml/${PORTNAME}
35
	${INSTALL_DATA} ${WRKSRC}/support/META \
37
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ocaml/stublibs/dlllabltk.so
36
	    ${STAGEDIR}${PREFIX}/lib/ocaml/${PORTNAME}
37
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ocaml/stublibs/dlllabltk.so
38
38
39
.include <bsd.port.mk>
39
.include <bsd.port.mk>
(-)x11-toolkits/ocaml-labltk/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (labltk-8.06.0.tar.gz) = 71997dbd6c36e4eb064484dc73037d4bd10e465e180fead07a4b193d21af9764
1
TIMESTAMP = 1488719794
2
SIZE (labltk-8.06.0.tar.gz) = 368790
2
SHA256 (labltk-8.06.2.tar.gz) = b32ea0465ec2fff89ebf5219845656f8334f61857e01ea3d59b3ab31749227dd
3
SIZE (labltk-8.06.2.tar.gz) = 369508
(-)graphics/ocaml-lablgl/Makefile (-14 / +9 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	lablgl
4
PORTNAME=	lablgl
5
PORTVERSION=	1.05
5
PORTVERSION=	1.05
6
PORTREVISION=	1
6
PORTEPOCH=	1
7
PORTEPOCH=	1
7
CATEGORIES=	graphics
8
CATEGORIES=	graphics
8
MASTER_SITES=	http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/dist/ \
9
MASTER_SITES=	http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/dist/ \
Lines 9-15 Link Here
9
		https://forge.ocamlcore.org/frs/download.php/1254/
10
		https://forge.ocamlcore.org/frs/download.php/1254/
10
PKGNAMEPREFIX=	ocaml-
11
PKGNAMEPREFIX=	ocaml-
11
12
12
MAINTAINER=	ports@FreeBSD.org
13
MAINTAINER=	hrs@FreeBSD.org
13
COMMENT=	OpenGL interface for Objective Caml
14
COMMENT=	OpenGL interface for Objective Caml
14
15
15
LICENSE=	BSD3CLAUSE
16
LICENSE=	BSD3CLAUSE
Lines 16-39 Link Here
16
17
17
CONFLICTS=	ocaml-nox11-[0-9]*
18
CONFLICTS=	ocaml-nox11-[0-9]*
18
19
19
USES=		gmake tk:84,85
20
USES=		gmake tk ocaml
20
USE_XORG=	x11 xext xmu
21
USE_XORG=	x11 xext xmu
21
USE_GL=		glut
22
USE_GL=		gl glu glut
22
USE_OCAML=	yes
23
USE_OCAML=	camlp4 wash tk
23
USE_OCAML_WASH=	yes
24
USE_OCAML_CAMLP4=yes
25
USE_OCAML_TK=	yes
26
ALL_TARGET=	all opt
24
ALL_TARGET=	all opt
27
MAKE_JOBS_UNSAFE=	yes
25
MAKE_JOBS_UNSAFE=	yes
28
29
DOCSDIR=	${PREFIX}/share/doc/ocaml/lablgl
26
DOCSDIR=	${PREFIX}/share/doc/ocaml/lablgl
30
EXAMPLESDIR=	${PREFIX}/share/examples/ocaml/lablgl
27
EXAMPLESDIR=	${PREFIX}/share/examples/ocaml/lablgl
31
32
PATTERN=	[[:space:]]*(do|then)?[[:space:]]*)cp([[:space:]]
28
PATTERN=	[[:space:]]*(do|then)?[[:space:]]*)cp([[:space:]]
33
29
34
OPTIONS_DEFINE=	THREADS DOCS
30
OPTIONS_DEFINE=	THREADS DOCS
35
OPTIONS_DEFAULT=	THREADS
31
OPTIONS_DEFAULT=	THREADS
36
37
THREADS_DESC=	Threaded Tcl/Tk (must match lang/ocaml)
32
THREADS_DESC=	Threaded Tcl/Tk (must match lang/ocaml)
38
33
39
.include <bsd.port.options.mk>
34
.include <bsd.port.options.mk>
Lines 73-82 Link Here
73
post-install:
68
post-install:
74
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/lablglut
69
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/lablglut
75
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/togl
70
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/togl
76
	@(cd ${WRKSRC}/LablGlut/examples && ${COPYTREE_SHARE} . \
71
	cd ${WRKSRC}/LablGlut/examples && ${COPYTREE_SHARE} . \
77
		${STAGEDIR}${EXAMPLESDIR}/lablglut '! -name Makefile')
72
	    ${STAGEDIR}${EXAMPLESDIR}/lablglut '! -name Makefile'
78
	@(cd ${WRKSRC}/Togl/examples && ${COPYTREE_SHARE} . \
73
	cd ${WRKSRC}/Togl/examples && ${COPYTREE_SHARE} . \
79
		${STAGEDIR}${EXAMPLESDIR}/togl '! -name Makefile')
74
	    ${STAGEDIR}${EXAMPLESDIR}/togl '! -name Makefile'
80
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
75
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
81
	${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
76
	${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
82
77
(-)graphics/ocaml-images/Makefile (-19 / +13 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	images
4
PORTNAME=	images
5
PORTVERSION=	4.0.1
5
PORTVERSION=	4.0.1
6
PORTREVISION=	8
6
PORTREVISION=	9
7
PORTEPOCH=	2
7
PORTEPOCH=	2
8
CATEGORIES=	graphics
8
CATEGORIES=	graphics
9
MASTER_SITES=	https://bitbucket.org/camlspotter/camlimages/get/
9
MASTER_SITES=	https://bitbucket.org/camlspotter/camlimages/get/
Lines 11-37 Link Here
11
DISTNAME=	v${PORTVERSION}
11
DISTNAME=	v${PORTVERSION}
12
DIST_SUBDIR=	ocaml-images
12
DIST_SUBDIR=	ocaml-images
13
13
14
MAINTAINER=	michael.grunewald@laposte.net
14
MAINTAINER=	hrs@FreeBSD.org
15
COMMENT=	Objective Caml image processing library
15
COMMENT=	Objective Caml image processing library
16
16
17
BUILD_DEPENDS=	${LOCALBASE}/share/aclocal/ocaml.m4:lang/ocaml-autoconf
17
LICENSE=	LGPL20
18
BUILD_DEPENDS+=	omake:devel/omake
19
18
20
USE_OCAML=		yes
19
BUILD_DEPENDS=	${LOCALBASE}/share/aclocal/ocaml.m4:lang/ocaml-autoconf \
21
USE_OCAML_FINDLIB=	yes
20
		omake:devel/omake
22
OCAMLFIND_DESTDIR=	${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}
23
21
22
USES=		ocaml
23
USE_OCAML=	findlib
24
OCAML_PKGDIRS=	camlimages
24
OCAML_PKGDIRS=	camlimages
25
OCAML_LDLIBS=	${OCAML_SITELIBDIR}/camlimages
25
OCAML_LDLIBS=	${OCAML_SITELIBDIR}/camlimages
26
26
WRKSRC=		${WRKDIR}/camlspotter-camlimages-c803efa9d5d3
27
OMAKESUBS+=	-e s@%%INCLUDESPORTS%%@${LOCALBASE}/include@
27
OMAKESUBS+=	-e s@%%INCLUDESPORTS%%@${LOCALBASE}/include@
28
OMAKESUBS+=	-e s@%%INCLUDESX11%%@${LOCALBASE}/include/X11@
28
OMAKESUBS+=	-e s@%%INCLUDESX11%%@${LOCALBASE}/include/X11@
29
OMAKESUBS+=	-e s@%%INCLUDESPNG%%@${LOCALBASE}/include/libpng15@
29
OMAKESUBS+=	-e s@%%INCLUDESPNG%%@${LOCALBASE}/include/libpng15@
30
OMAKESUBS+=	-e s@%%LDFLAGSPORTS%%@-L${LOCALBASE}/lib@
30
OMAKESUBS+=	-e s@%%LDFLAGSPORTS%%@-L${LOCALBASE}/lib@
31
32
OMAKE=		omake 'PREFIX=${STAGEDIR}${PREFIX}'
31
OMAKE=		omake 'PREFIX=${STAGEDIR}${PREFIX}'
33
OMARGS=		--dotomake .omake --force-dotomake
32
OMARGS=		--dotomake .omake --force-dotomake
34
WRKSRC=		${WRKDIR}/camlspotter-camlimages-c803efa9d5d3
35
33
36
MAKE_JOBS_UNSAFE=	yes
34
MAKE_JOBS_UNSAFE=	yes
37
35
Lines 64-81 Link Here
64
GTK2_BUILD_DEPENDS=	lablgtk2:x11-toolkits/ocaml-lablgtk2
62
GTK2_BUILD_DEPENDS=	lablgtk2:x11-toolkits/ocaml-lablgtk2
65
GTK2_RUN_DEPENDS=	lablgtk2:x11-toolkits/ocaml-lablgtk2
63
GTK2_RUN_DEPENDS=	lablgtk2:x11-toolkits/ocaml-lablgtk2
66
64
67
.include <bsd.port.options.mk>
65
XPM_USE=	XORG=xpm
68
66
69
.if ${PORT_OPTIONS:MXPM}
70
USE_XORG=	xpm
71
.endif
72
73
do-configure:
67
do-configure:
74
	@(cd ${WRKSRC} && ${REINPLACE_CMD} ${OMAKESUBS} OMakefile)
68
	cd ${WRKSRC} && ${REINPLACE_CMD} ${OMAKESUBS} OMakefile
75
	(cd ${WRKSRC} && ${OMAKE} ${OMARGS} configure)
69
	cd ${WRKSRC} && ${OMAKE} ${OMARGS} configure
76
70
77
do-build:
71
do-build:
78
	(cd ${WRKSRC} && ${OMAKE} ${OMARGS})
72
	cd ${WRKSRC} && ${OMAKE} ${OMARGS}
79
73
80
ocaml-findlib:
74
ocaml-findlib:
81
	# Overriding ocaml-findlib target which does not support stage
75
	# Overriding ocaml-findlib target which does not support stage
Lines 83-88 Link Here
83
77
84
do-install:
78
do-install:
85
	@${MKDIR} ${STAGEDIR}${PREFIX}/${OCAML_LDLIBS}
79
	@${MKDIR} ${STAGEDIR}${PREFIX}/${OCAML_LDLIBS}
86
	(cd ${WRKSRC} && ${OMAKE} ${OMARGS} install)
80
	cd ${WRKSRC} && ${OMAKE} ${OMARGS} install
87
81
88
.include <bsd.port.mk>
82
.include <bsd.port.mk>
(-)graphics/ocaml-images/files/patch-src_tiffwrite.c (-2 / +22 lines)
Lines 1-5 Link Here
1
--- src/tiffwrite.c.orig	2011-06-22 20:04:32.000000000 +0200
1
--- src/tiffwrite.c.orig	2011-06-23 03:04:32.000000000 +0900
2
+++ src/tiffwrite.c
2
+++ src/tiffwrite.c	2017-03-05 22:26:50.023344000 +0900
3
@@ -2,7 +2,7 @@
4
 /*                                                                     */
5
 /*                           Objective Caml                            */
6
 /*                                                                     */
7
-/*            François Pessaux, projet Cristal, INRIA Rocquencourt     */
8
+/*            Françïis Pessaux, projet Cristal, INRIA Rocquencourt     */
9
 /*            Pierre Weis, projet Cristal, INRIA Rocquencourt          */
10
 /*            Jun Furuse, projet Cristal, INRIA Rocquencourt           */
11
 /*                                                                     */
3
@@ -20,11 +20,16 @@
12
@@ -20,11 +20,16 @@
4
 #include <caml/memory.h>
13
 #include <caml/memory.h>
5
 #include <caml/fail.h>
14
 #include <caml/fail.h>
Lines 26-28 Link Here
26
 
35
 
27
 extern value *imglib_error;
36
 extern value *imglib_error;
28
 
37
 
38
@@ -56,8 +63,8 @@
39
     /* Resolution */
40
     /* FillOrder */
41
     
42
-    TIFFSetField(tif, TIFFTAG_IMAGEWIDTH, (uint32) image_width);
43
-    TIFFSetField(tif, TIFFTAG_IMAGELENGTH, (uint32) image_height);
44
+    TIFFSetField(tif, TIFFTAG_IMAGEWIDTH, (uint32_t) image_width);
45
+    TIFFSetField(tif, TIFFTAG_IMAGELENGTH, (uint32_t) image_height);
46
     TIFFSetField(tif, TIFFTAG_ORIENTATION, ORIENTATION_TOPLEFT);
47
     TIFFSetField(tif, TIFFTAG_SAMPLESPERPIXEL, 3);
48
     TIFFSetField(tif, TIFFTAG_BITSPERSAMPLE, 8);
(-)graphics/ocaml-images/pkg-plist (-146 / +146 lines)
Lines 1-146 Link Here
1
lib/ocaml/site-lib/camlimages/META
1
%%OCAML_SITELIBDIR%%/camlimages/META
2
lib/ocaml/site-lib/camlimages/bitmap.cmi
2
%%OCAML_SITELIBDIR%%/camlimages/bitmap.cmi
3
lib/ocaml/site-lib/camlimages/bitmap.mli
3
%%OCAML_SITELIBDIR%%/camlimages/bitmap.mli
4
lib/ocaml/site-lib/camlimages/blend.cmi
4
%%OCAML_SITELIBDIR%%/camlimages/blend.cmi
5
lib/ocaml/site-lib/camlimages/blend.mli
5
%%OCAML_SITELIBDIR%%/camlimages/blend.mli
6
lib/ocaml/site-lib/camlimages/bmp.cmi
6
%%OCAML_SITELIBDIR%%/camlimages/bmp.cmi
7
lib/ocaml/site-lib/camlimages/bmp.mli
7
%%OCAML_SITELIBDIR%%/camlimages/bmp.mli
8
lib/ocaml/site-lib/camlimages/camlimages.cmi
8
%%OCAML_SITELIBDIR%%/camlimages/camlimages.cmi
9
lib/ocaml/site-lib/camlimages/camlimages_all.a
9
%%OCAML_SITELIBDIR%%/camlimages/camlimages_all.a
10
lib/ocaml/site-lib/camlimages/camlimages_all.cma
10
%%OCAML_SITELIBDIR%%/camlimages/camlimages_all.cma
11
lib/ocaml/site-lib/camlimages/camlimages_all.cmxa
11
%%OCAML_SITELIBDIR%%/camlimages/camlimages_all.cmxa
12
lib/ocaml/site-lib/camlimages/camlimages_core.a
12
%%OCAML_SITELIBDIR%%/camlimages/camlimages_core.a
13
lib/ocaml/site-lib/camlimages/camlimages_core.cma
13
%%OCAML_SITELIBDIR%%/camlimages/camlimages_core.cma
14
lib/ocaml/site-lib/camlimages/camlimages_core.cmxa
14
%%OCAML_SITELIBDIR%%/camlimages/camlimages_core.cmxa
15
lib/ocaml/site-lib/camlimages/camlimages_freetype.a
15
%%OCAML_SITELIBDIR%%/camlimages/camlimages_freetype.a
16
lib/ocaml/site-lib/camlimages/camlimages_freetype.cma
16
%%OCAML_SITELIBDIR%%/camlimages/camlimages_freetype.cma
17
lib/ocaml/site-lib/camlimages/camlimages_freetype.cmxa
17
%%OCAML_SITELIBDIR%%/camlimages/camlimages_freetype.cmxa
18
%%GIF%%lib/ocaml/site-lib/camlimages/camlimages_gif.a
18
%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/camlimages_gif.a
19
%%GIF%%lib/ocaml/site-lib/camlimages/camlimages_gif.cma
19
%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/camlimages_gif.cma
20
%%GIF%%lib/ocaml/site-lib/camlimages/camlimages_gif.cmxa
20
%%GIF%%%%OCAML_SITELIBDIR%%/camlimages/camlimages_gif.cmxa
21
lib/ocaml/site-lib/camlimages/camlimages_graphics.a
21
%%OCAML_SITELIBDIR%%/camlimages/camlimages_graphics.a
22
lib/ocaml/site-lib/camlimages/camlimages_graphics.cma
22
%%OCAML_SITELIBDIR%%/camlimages/camlimages_graphics.cma
23
lib/ocaml/site-lib/camlimages/camlimages_graphics.cmxa
23
%%OCAML_SITELIBDIR%%/camlimages/camlimages_graphics.cmxa
24
lib/ocaml/site-lib/camlimages/camlimages_jpeg.a
24
%%OCAML_SITELIBDIR%%/camlimages/camlimages_jpeg.a
25
lib/ocaml/site-lib/camlimages/camlimages_jpeg.cma
25
%%OCAML_SITELIBDIR%%/camlimages/camlimages_jpeg.cma
26
lib/ocaml/site-lib/camlimages/camlimages_jpeg.cmxa
26
%%OCAML_SITELIBDIR%%/camlimages/camlimages_jpeg.cmxa
27
%%GTK2%%lib/ocaml/site-lib/camlimages/camlimages_lablgtk2.a
27
%%GTK2%%%%OCAML_SITELIBDIR%%/camlimages/camlimages_lablgtk2.a
28
%%GTK2%%lib/ocaml/site-lib/camlimages/camlimages_lablgtk2.cma
28
%%GTK2%%%%OCAML_SITELIBDIR%%/camlimages/camlimages_lablgtk2.cma
29
%%GTK2%%lib/ocaml/site-lib/camlimages/camlimages_lablgtk2.cmxa
29
%%GTK2%%%%OCAML_SITELIBDIR%%/camlimages/camlimages_lablgtk2.cmxa
30
lib/ocaml/site-lib/camlimages/camlimages_png.a
30
%%OCAML_SITELIBDIR%%/camlimages/camlimages_png.a
31
lib/ocaml/site-lib/camlimages/camlimages_png.cma
31
%%OCAML_SITELIBDIR%%/camlimages/camlimages_png.cma
32
lib/ocaml/site-lib/camlimages/camlimages_png.cmxa
32
%%OCAML_SITELIBDIR%%/camlimages/camlimages_png.cmxa
33
lib/ocaml/site-lib/camlimages/camlimages_ps.a
33
%%OCAML_SITELIBDIR%%/camlimages/camlimages_ps.a
34
lib/ocaml/site-lib/camlimages/camlimages_ps.cma
34
%%OCAML_SITELIBDIR%%/camlimages/camlimages_ps.cma
35
lib/ocaml/site-lib/camlimages/camlimages_ps.cmxa
35
%%OCAML_SITELIBDIR%%/camlimages/camlimages_ps.cmxa
36
lib/ocaml/site-lib/camlimages/camlimages_supported.a
36
%%OCAML_SITELIBDIR%%/camlimages/camlimages_supported.a
37
lib/ocaml/site-lib/camlimages/camlimages_supported.cma
37
%%OCAML_SITELIBDIR%%/camlimages/camlimages_supported.cma
38
lib/ocaml/site-lib/camlimages/camlimages_supported.cmxa
38
%%OCAML_SITELIBDIR%%/camlimages/camlimages_supported.cmxa
39
lib/ocaml/site-lib/camlimages/camlimages_tiff.a
39
%%OCAML_SITELIBDIR%%/camlimages/camlimages_tiff.a
40
lib/ocaml/site-lib/camlimages/camlimages_tiff.cma
40
%%OCAML_SITELIBDIR%%/camlimages/camlimages_tiff.cma
41
lib/ocaml/site-lib/camlimages/camlimages_tiff.cmxa
41
%%OCAML_SITELIBDIR%%/camlimages/camlimages_tiff.cmxa
42
lib/ocaml/site-lib/camlimages/camlimages_xpm.a
42
%%OCAML_SITELIBDIR%%/camlimages/camlimages_xpm.a
43
lib/ocaml/site-lib/camlimages/camlimages_xpm.cma
43
%%OCAML_SITELIBDIR%%/camlimages/camlimages_xpm.cma
44
lib/ocaml/site-lib/camlimages/camlimages_xpm.cmxa
44
%%OCAML_SITELIBDIR%%/camlimages/camlimages_xpm.cmxa
45
lib/ocaml/site-lib/camlimages/cmyk32.cmi
45
%%OCAML_SITELIBDIR%%/camlimages/cmyk32.cmi
46
lib/ocaml/site-lib/camlimages/cmyk32.mli
46
%%OCAML_SITELIBDIR%%/camlimages/cmyk32.mli
47
lib/ocaml/site-lib/camlimages/color.cmi
47
%%OCAML_SITELIBDIR%%/camlimages/color.cmi
48
lib/ocaml/site-lib/camlimages/color.mli
48
%%OCAML_SITELIBDIR%%/camlimages/color.mli
49
lib/ocaml/site-lib/camlimages/colorhist.cmi
49
%%OCAML_SITELIBDIR%%/camlimages/colorhist.cmi
50
lib/ocaml/site-lib/camlimages/colorhist.mli
50
%%OCAML_SITELIBDIR%%/camlimages/colorhist.mli
51
lib/ocaml/site-lib/camlimages/dllcamlimages_all.so
51
%%OCAML_SITELIBDIR%%/camlimages/dllcamlimages_all.so
52
lib/ocaml/site-lib/camlimages/dllcamlimages_freetype.so
52
%%OCAML_SITELIBDIR%%/camlimages/dllcamlimages_freetype.so
53
lib/ocaml/site-lib/camlimages/dllcamlimages_gif.so
53
%%OCAML_SITELIBDIR%%/camlimages/dllcamlimages_gif.so
54
lib/ocaml/site-lib/camlimages/dllcamlimages_jpeg.so
54
%%OCAML_SITELIBDIR%%/camlimages/dllcamlimages_jpeg.so
55
lib/ocaml/site-lib/camlimages/dllcamlimages_png.so
55
%%OCAML_SITELIBDIR%%/camlimages/dllcamlimages_png.so
56
lib/ocaml/site-lib/camlimages/dllcamlimages_supported.so
56
%%OCAML_SITELIBDIR%%/camlimages/dllcamlimages_supported.so
57
lib/ocaml/site-lib/camlimages/dllcamlimages_tiff.so
57
%%OCAML_SITELIBDIR%%/camlimages/dllcamlimages_tiff.so
58
lib/ocaml/site-lib/camlimages/dllcamlimages_xpm.so
58
%%OCAML_SITELIBDIR%%/camlimages/dllcamlimages_xpm.so
59
lib/ocaml/site-lib/camlimages/freetype.cmi
59
%%OCAML_SITELIBDIR%%/camlimages/freetype.cmi
60
lib/ocaml/site-lib/camlimages/freetype.mli
60
%%OCAML_SITELIBDIR%%/camlimages/freetype.mli
61
lib/ocaml/site-lib/camlimages/ftlow.cmi
61
%%OCAML_SITELIBDIR%%/camlimages/ftlow.cmi
62
lib/ocaml/site-lib/camlimages/ftlow.mli
62
%%OCAML_SITELIBDIR%%/camlimages/ftlow.mli
63
lib/ocaml/site-lib/camlimages/fttext.cmi
63
%%OCAML_SITELIBDIR%%/camlimages/fttext.cmi
64
lib/ocaml/site-lib/camlimages/fttext.mli
64
%%OCAML_SITELIBDIR%%/camlimages/fttext.mli
65
lib/ocaml/site-lib/camlimages/genimage.cmi
65
%%OCAML_SITELIBDIR%%/camlimages/genimage.cmi
66
lib/ocaml/site-lib/camlimages/genimage.mli
66
%%OCAML_SITELIBDIR%%/camlimages/genimage.mli
67
lib/ocaml/site-lib/camlimages/geometry.cmi
67
%%OCAML_SITELIBDIR%%/camlimages/geometry.cmi
68
lib/ocaml/site-lib/camlimages/geometry.mli
68
%%OCAML_SITELIBDIR%%/camlimages/geometry.mli
69
lib/ocaml/site-lib/camlimages/gif.cmi
69
%%OCAML_SITELIBDIR%%/camlimages/gif.cmi
70
lib/ocaml/site-lib/camlimages/gif.mli
70
%%OCAML_SITELIBDIR%%/camlimages/gif.mli
71
lib/ocaml/site-lib/camlimages/graphic_image.cmi
71
%%OCAML_SITELIBDIR%%/camlimages/graphic_image.cmi
72
lib/ocaml/site-lib/camlimages/graphic_image.mli
72
%%OCAML_SITELIBDIR%%/camlimages/graphic_image.mli
73
lib/ocaml/site-lib/camlimages/image_intf.cmi
73
%%OCAML_SITELIBDIR%%/camlimages/image_intf.cmi
74
lib/ocaml/site-lib/camlimages/image_intf.mli
74
%%OCAML_SITELIBDIR%%/camlimages/image_intf.mli
75
%%GTK2%%lib/ocaml/site-lib/camlimages/imagegdk.cmi
75
%%GTK2%%%%OCAML_SITELIBDIR%%/camlimages/imagegdk.cmi
76
lib/ocaml/site-lib/camlimages/imagegdk.mli
76
%%OCAML_SITELIBDIR%%/camlimages/imagegdk.mli
77
lib/ocaml/site-lib/camlimages/images.cmi
77
%%OCAML_SITELIBDIR%%/camlimages/images.cmi
78
lib/ocaml/site-lib/camlimages/images.mli
78
%%OCAML_SITELIBDIR%%/camlimages/images.mli
79
lib/ocaml/site-lib/camlimages/index16.cmi
79
%%OCAML_SITELIBDIR%%/camlimages/index16.cmi
80
lib/ocaml/site-lib/camlimages/index16.mli
80
%%OCAML_SITELIBDIR%%/camlimages/index16.mli
81
lib/ocaml/site-lib/camlimages/index8.cmi
81
%%OCAML_SITELIBDIR%%/camlimages/index8.cmi
82
lib/ocaml/site-lib/camlimages/index8.mli
82
%%OCAML_SITELIBDIR%%/camlimages/index8.mli
83
lib/ocaml/site-lib/camlimages/info.cmi
83
%%OCAML_SITELIBDIR%%/camlimages/info.cmi
84
lib/ocaml/site-lib/camlimages/info.mli
84
%%OCAML_SITELIBDIR%%/camlimages/info.mli
85
lib/ocaml/site-lib/camlimages/jis_table.cmi
85
%%OCAML_SITELIBDIR%%/camlimages/jis_table.cmi
86
lib/ocaml/site-lib/camlimages/jis_unicode.cmi
86
%%OCAML_SITELIBDIR%%/camlimages/jis_unicode.cmi
87
lib/ocaml/site-lib/camlimages/jis_unicode.mli
87
%%OCAML_SITELIBDIR%%/camlimages/jis_unicode.mli
88
lib/ocaml/site-lib/camlimages/jpeg.cmi
88
%%OCAML_SITELIBDIR%%/camlimages/jpeg.cmi
89
lib/ocaml/site-lib/camlimages/jpeg.mli
89
%%OCAML_SITELIBDIR%%/camlimages/jpeg.mli
90
lib/ocaml/site-lib/camlimages/libcamlimages_all.a
90
%%OCAML_SITELIBDIR%%/camlimages/libcamlimages_all.a
91
lib/ocaml/site-lib/camlimages/libcamlimages_freetype.a
91
%%OCAML_SITELIBDIR%%/camlimages/libcamlimages_freetype.a
92
lib/ocaml/site-lib/camlimages/libcamlimages_gif.a
92
%%OCAML_SITELIBDIR%%/camlimages/libcamlimages_gif.a
93
lib/ocaml/site-lib/camlimages/libcamlimages_jpeg.a
93
%%OCAML_SITELIBDIR%%/camlimages/libcamlimages_jpeg.a
94
lib/ocaml/site-lib/camlimages/libcamlimages_png.a
94
%%OCAML_SITELIBDIR%%/camlimages/libcamlimages_png.a
95
lib/ocaml/site-lib/camlimages/libcamlimages_supported.a
95
%%OCAML_SITELIBDIR%%/camlimages/libcamlimages_supported.a
96
lib/ocaml/site-lib/camlimages/libcamlimages_tiff.a
96
%%OCAML_SITELIBDIR%%/camlimages/libcamlimages_tiff.a
97
lib/ocaml/site-lib/camlimages/libcamlimages_xpm.a
97
%%OCAML_SITELIBDIR%%/camlimages/libcamlimages_xpm.a
98
lib/ocaml/site-lib/camlimages/mstring.cmi
98
%%OCAML_SITELIBDIR%%/camlimages/mstring.cmi
99
lib/ocaml/site-lib/camlimages/mstring.mli
99
%%OCAML_SITELIBDIR%%/camlimages/mstring.mli
100
lib/ocaml/site-lib/camlimages/oBmp.cmi
100
%%OCAML_SITELIBDIR%%/camlimages/oBmp.cmi
101
lib/ocaml/site-lib/camlimages/oColor.cmi
101
%%OCAML_SITELIBDIR%%/camlimages/oColor.cmi
102
lib/ocaml/site-lib/camlimages/oColor.mli
102
%%OCAML_SITELIBDIR%%/camlimages/oColor.mli
103
lib/ocaml/site-lib/camlimages/oFreetype.cmi
103
%%OCAML_SITELIBDIR%%/camlimages/oFreetype.cmi
104
lib/ocaml/site-lib/camlimages/oGif.cmi
104
%%OCAML_SITELIBDIR%%/camlimages/oGif.cmi
105
lib/ocaml/site-lib/camlimages/oGraphic.cmi
105
%%OCAML_SITELIBDIR%%/camlimages/oGraphic.cmi
106
lib/ocaml/site-lib/camlimages/oImages.cmi
106
%%OCAML_SITELIBDIR%%/camlimages/oImages.cmi
107
lib/ocaml/site-lib/camlimages/oImages.mli
107
%%OCAML_SITELIBDIR%%/camlimages/oImages.mli
108
lib/ocaml/site-lib/camlimages/oJpeg.cmi
108
%%OCAML_SITELIBDIR%%/camlimages/oJpeg.cmi
109
lib/ocaml/site-lib/camlimages/oJpeg.mli
109
%%OCAML_SITELIBDIR%%/camlimages/oJpeg.mli
110
lib/ocaml/site-lib/camlimages/oPng.cmi
110
%%OCAML_SITELIBDIR%%/camlimages/oPng.cmi
111
lib/ocaml/site-lib/camlimages/oPng.mli
111
%%OCAML_SITELIBDIR%%/camlimages/oPng.mli
112
lib/ocaml/site-lib/camlimages/oPpm.cmi
112
%%OCAML_SITELIBDIR%%/camlimages/oPpm.cmi
113
lib/ocaml/site-lib/camlimages/oPs.cmi
113
%%OCAML_SITELIBDIR%%/camlimages/oPs.cmi
114
lib/ocaml/site-lib/camlimages/oTiff.cmi
114
%%OCAML_SITELIBDIR%%/camlimages/oTiff.cmi
115
%%GTK2%%lib/ocaml/site-lib/camlimages/oXimage.cmi
115
%%GTK2%%%%OCAML_SITELIBDIR%%/camlimages/oXimage.cmi
116
lib/ocaml/site-lib/camlimages/oXimage.mli
116
%%OCAML_SITELIBDIR%%/camlimages/oXimage.mli
117
%%GTK2%%lib/ocaml/site-lib/camlimages/oXimage2.cmi
117
%%GTK2%%%%OCAML_SITELIBDIR%%/camlimages/oXimage2.cmi
118
lib/ocaml/site-lib/camlimages/oXpm.cmi
118
%%OCAML_SITELIBDIR%%/camlimages/oXpm.cmi
119
lib/ocaml/site-lib/camlimages/oXvthumb.cmi
119
%%OCAML_SITELIBDIR%%/camlimages/oXvthumb.cmi
120
lib/ocaml/site-lib/camlimages/oXvthumb.mli
120
%%OCAML_SITELIBDIR%%/camlimages/oXvthumb.mli
121
lib/ocaml/site-lib/camlimages/png.cmi
121
%%OCAML_SITELIBDIR%%/camlimages/png.cmi
122
lib/ocaml/site-lib/camlimages/png.mli
122
%%OCAML_SITELIBDIR%%/camlimages/png.mli
123
lib/ocaml/site-lib/camlimages/ppm.cmi
123
%%OCAML_SITELIBDIR%%/camlimages/ppm.cmi
124
lib/ocaml/site-lib/camlimages/ppm.mli
124
%%OCAML_SITELIBDIR%%/camlimages/ppm.mli
125
lib/ocaml/site-lib/camlimages/ps.cmi
125
%%OCAML_SITELIBDIR%%/camlimages/ps.cmi
126
lib/ocaml/site-lib/camlimages/ps.mli
126
%%OCAML_SITELIBDIR%%/camlimages/ps.mli
127
lib/ocaml/site-lib/camlimages/reduce.cmi
127
%%OCAML_SITELIBDIR%%/camlimages/reduce.cmi
128
lib/ocaml/site-lib/camlimages/reduce.mli
128
%%OCAML_SITELIBDIR%%/camlimages/reduce.mli
129
lib/ocaml/site-lib/camlimages/region.cmi
129
%%OCAML_SITELIBDIR%%/camlimages/region.cmi
130
lib/ocaml/site-lib/camlimages/region.mli
130
%%OCAML_SITELIBDIR%%/camlimages/region.mli
131
lib/ocaml/site-lib/camlimages/rgb24.cmi
131
%%OCAML_SITELIBDIR%%/camlimages/rgb24.cmi
132
lib/ocaml/site-lib/camlimages/rgb24.mli
132
%%OCAML_SITELIBDIR%%/camlimages/rgb24.mli
133
lib/ocaml/site-lib/camlimages/rgba32.cmi
133
%%OCAML_SITELIBDIR%%/camlimages/rgba32.cmi
134
lib/ocaml/site-lib/camlimages/rgba32.mli
134
%%OCAML_SITELIBDIR%%/camlimages/rgba32.mli
135
lib/ocaml/site-lib/camlimages/tiff.cmi
135
%%OCAML_SITELIBDIR%%/camlimages/tiff.cmi
136
lib/ocaml/site-lib/camlimages/tiff.mli
136
%%OCAML_SITELIBDIR%%/camlimages/tiff.mli
137
lib/ocaml/site-lib/camlimages/tmpfile.cmi
137
%%OCAML_SITELIBDIR%%/camlimages/tmpfile.cmi
138
lib/ocaml/site-lib/camlimages/tmpfile.mli
138
%%OCAML_SITELIBDIR%%/camlimages/tmpfile.mli
139
lib/ocaml/site-lib/camlimages/units.cmi
139
%%OCAML_SITELIBDIR%%/camlimages/units.cmi
140
%%GTK2%%lib/ocaml/site-lib/camlimages/ximage.cmi
140
%%GTK2%%%%OCAML_SITELIBDIR%%/camlimages/ximage.cmi
141
lib/ocaml/site-lib/camlimages/ximage.mli
141
%%OCAML_SITELIBDIR%%/camlimages/ximage.mli
142
%%GTK2%%lib/ocaml/site-lib/camlimages/ximage2.cmi
142
%%GTK2%%%%OCAML_SITELIBDIR%%/camlimages/ximage2.cmi
143
lib/ocaml/site-lib/camlimages/xpm.cmi
143
%%OCAML_SITELIBDIR%%/camlimages/xpm.cmi
144
lib/ocaml/site-lib/camlimages/xpm.mli
144
%%OCAML_SITELIBDIR%%/camlimages/xpm.mli
145
lib/ocaml/site-lib/camlimages/xvthumb.cmi
145
%%OCAML_SITELIBDIR%%/camlimages/xvthumb.cmi
146
lib/ocaml/site-lib/camlimages/xvthumb.mli
146
%%OCAML_SITELIBDIR%%/camlimages/xvthumb.mli
(-)security/ocaml-cryptgps/Makefile (-7 / +4 lines)
Lines 3-14 Link Here
3
3
4
PORTNAME=	cryptgps
4
PORTNAME=	cryptgps
5
PORTVERSION=	0.2.1
5
PORTVERSION=	0.2.1
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	security
7
CATEGORIES=	security
8
MASTER_SITES=	http://download.camlcity.org/download/
8
MASTER_SITES=	http://download.camlcity.org/download/
9
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
10
10
11
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
12
COMMENT=	Symmetric cryptographic algorithms package for OCaml
12
COMMENT=	Symmetric cryptographic algorithms package for OCaml
13
13
14
LICENSE=	MIT
14
LICENSE=	MIT
Lines 15-25 Link Here
15
LICENSE_FILE=	${WRKSRC}/LICENSE
15
LICENSE_FILE=	${WRKSRC}/LICENSE
16
16
17
WRKSRC=		${WRKDIR}/${PORTNAME}
17
WRKSRC=		${WRKDIR}/${PORTNAME}
18
USES=		gmake
18
USES=		gmake ocaml
19
USE_OCAML=	yes
19
USE_OCAML=	findlib:plist
20
USE_OCAML_FINDLIB=	yes
21
USE_OCAMLFIND_PLIST=	yes
22
23
ALL_TARGET=	all opt
20
ALL_TARGET=	all opt
24
21
25
PORTDOCS=	*
22
PORTDOCS=	*
(-)devel/ocaml-sdl/Makefile (-11 / +5 lines)
Lines 3-15 Link Here
3
3
4
PORTNAME=	sdl
4
PORTNAME=	sdl
5
PORTVERSION=	0.9.1
5
PORTVERSION=	0.9.1
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	SF/ocaml${PORTNAME}/OCamlSDL/ocaml${PORTNAME}-${PORTVERSION}
8
MASTER_SITES=	SF/ocaml${PORTNAME}/OCamlSDL/ocaml${PORTNAME}-${PORTVERSION}
9
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
10
DISTNAME=	ocamlsdl-${PORTVERSION}
10
DISTNAME=	ocamlsdl-${PORTVERSION}
11
11
12
MAINTAINER=	ports@FreeBSD.org
12
MAINTAINER=	hrs@FreeBSD.org
13
COMMENT=	OCaml interface to the SDL
13
COMMENT=	OCaml interface to the SDL
14
14
15
LICENSE=	LGPL20+ # source says LGPL20+, COPYING says LGPL21
15
LICENSE=	LGPL20+ # source says LGPL20+, COPYING says LGPL21
Lines 17-36 Link Here
17
17
18
BUILD_DEPENDS=	ocaml-lablgl>0:graphics/ocaml-lablgl
18
BUILD_DEPENDS=	ocaml-lablgl>0:graphics/ocaml-lablgl
19
19
20
USE_OCAML=	yes
20
USES=		gmake ocaml
21
USE_OCAML_FINDLIB=yes
21
USE_OCAML=	findlib:plist ldconfig
22
USE_OCAMLFIND_PLIST=yes
23
USE_OCAML_LDCONFIG=yes
24
25
USES=		gmake
26
USE_SDL=	sdl
22
USE_SDL=	sdl
27
GNU_CONFIGURE=	yes
23
GNU_CONFIGURE=	yes
28
CONFIGURE_ARGS=	--with-lablgldir=${LOCALBASE} \
24
CONFIGURE_ARGS=	--with-lablgldir=${LOCALBASE} \
29
		--with-sdl-prefix=${LOCALBASE} \
25
		--with-sdl-prefix=${LOCALBASE} \
30
		--with-installdir=${PREFIX}
26
		--with-installdir=${PREFIX}
31
32
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
27
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
33
34
INFO=		ocamlsdl
28
INFO=		ocamlsdl
35
PORTDOCS=	*
29
PORTDOCS=	*
36
30
Lines 55-61 Link Here
55
SDL_TTF_CONFIGURE_OFF=	--disable-sdl-ttf
49
SDL_TTF_CONFIGURE_OFF=	--disable-sdl-ttf
56
50
57
post-install:
51
post-install:
58
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib/sdl/*.so
52
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/sdl/*.so
59
	${INSTALL_DATA} ${WRKSRC}/doc/ocamlsdl.info ${STAGEDIR}${PREFIX}/${INFO_PATH}
53
	${INSTALL_DATA} ${WRKSRC}/doc/ocamlsdl.info ${STAGEDIR}${PREFIX}/${INFO_PATH}
60
54
61
post-install-DOCS-on:
55
post-install-DOCS-on:
(-)math/facile/Makefile (-2 / +2 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	facile
4
PORTNAME=	facile
5
PORTVERSION=	1.1.3
5
PORTVERSION=	1.1.3
6
PORTREVISION=	1
6
CATEGORIES=	math
7
CATEGORIES=	math
7
MASTER_SITES=	http://opti.recherche.enac.fr/facile/distrib/
8
MASTER_SITES=	http://opti.recherche.enac.fr/facile/distrib/
8
9
Lines 12-19 Link Here
12
LICENSE=	LGPL21
13
LICENSE=	LGPL21
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
LICENSE_FILE=	${WRKSRC}/LICENSE
14
15
15
USES=		gmake
16
USES=		gmake ocaml
16
USE_OCAML=	yes
17
HAS_CONFIGURE=	yes
17
HAS_CONFIGURE=	yes
18
ALL_TARGET=	compile
18
ALL_TARGET=	compile
19
19
(-)devel/ocaml-camljava/Makefile (-3 / +5 lines)
Lines 3-17 Link Here
3
3
4
PORTNAME=	camljava
4
PORTNAME=	camljava
5
PORTVERSION=	0.3
5
PORTVERSION=	0.3
6
PORTREVISION=	3
6
PORTREVISION=	4
7
CATEGORIES=	devel java
7
CATEGORIES=	devel java
8
MASTER_SITES=	http://caml.inria.fr/distrib/bazar-ocaml/
8
MASTER_SITES=	http://caml.inria.fr/distrib/bazar-ocaml/
9
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
10
10
11
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
12
COMMENT=	OCaml-Java library interface
12
COMMENT=	OCaml-Java library interface
13
13
14
USE_OCAML=	yes
14
LICENSE=	LGPL20
15
16
USES=		ocaml
15
USE_JAVA=	yes
17
USE_JAVA=	yes
16
JAVA_VERSION=	1.6+
18
JAVA_VERSION=	1.6+
17
19
(-)devel/ocaml-camljava/files/patch-lib-jnistubs.c (+11 lines)
Line 0 Link Here
1
--- lib/jnistubs.c.orig	2017-03-06 00:03:15.797439000 +0900
2
+++ lib/jnistubs.c	2017-03-06 00:03:27.837854000 +0900
3
@@ -884,7 +884,7 @@
4
   value * wrapper = stat_alloc(sizeof(value));
5
   *wrapper = vobj;
6
   register_global_root(wrapper);
7
-  return copy_int64((int64) (value) wrapper);
8
+  return copy_int64((int64_t) (value) wrapper);
9
 }
10
 
11
 void camljava_FreeWrapper(JNIEnv * env, jclass cls, jlong wrapper)
(-)devel/ocaml-optcomp/Makefile (+27 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	optcomp
4
PORTVERSION=	1.6
5
CATEGORIES=	devel
6
PKGNAMEPREFIX=	ocaml-
7
8
MAINTAINER=	hrs@FreeBSD.org
9
COMMENT=	Optional compilation with cpp-like directives in OCaml
10
11
LICENSE=	LGPL20
12
13
USES=		gmake ocaml
14
USE_OCAML=	ocamlbuild camlp4 findlib:plist ldconfig
15
USE_GITHUB=	yes
16
GH_ACCOUNT=	diml
17
HAS_CONFIGURE=	yes
18
CONFIGURE_ARGS=	--destdir ${STAGEDIR}
19
PORTDOCS=	api
20
PLIST_FILES=	bin/optcomp-o bin/optcomp-r
21
22
post-install:
23
	cd ${STAGEDIR}${PREFIX}/bin && ${STRIP_CMD} optcomp-o optcomp-r
24
	cd ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/optcomp && \
25
	    ${STRIP_CMD} optcomp.cmxs
26
27
.include <bsd.port.mk>
(-)devel/ocaml-optcomp/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1489420405
2
SHA256 (diml-optcomp-1.6_GH0.tar.gz) = 5022d80e4d7dba4ada3aa57156503fad75fcd6d7b13cfa8580012a1d9f581042
3
SIZE (diml-optcomp-1.6_GH0.tar.gz) = 56370
(-)devel/ocaml-optcomp/pkg-descr (+14 lines)
Line 0 Link Here
1
Optcomp is a syntax extension which handles `#if`, `#else`,
2
... directives in ocaml source files.
3
4
Optcomp is more OCaml-friendly than cpp:
5
6
* it does not interpret `//`, `/*`, and `*/` as comment delimiters
7
* it does not complains about missing `'`
8
* it is easier to integrate in the build process when using other
9
  camlp4 syntax extensions
10
11
By the way optcomp does not do macro expansion while cpp does.
12
13
WWW: https://forge.ocamlcore.org/projects/optcomp/
14
WWW: https://github.com/diml/optcomp
(-)devel/ocaml-deriving-ocsigen/Makefile (-11 / +17 lines)
Lines 2-28 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	deriving-ocsigen
4
PORTNAME=	deriving-ocsigen
5
PORTVERSION=	0.3c
5
PORTVERSION=	0.7.1
6
PORTREVISION=	1
7
CATEGORIES=	devel www
6
CATEGORIES=	devel www
8
MASTER_SITES=	http://ocsigen.org/download/
9
PKGNAMEPREFIX=	ocaml-
7
PKGNAMEPREFIX=	ocaml-
10
8
11
MAINTAINER=	ports@FreeBSD.org
9
MAINTAINER=	hrs@FreeBSD.org
12
COMMENT=	Function derivation library
10
COMMENT=	Function derivation library
13
11
14
LICENSE=	MIT
12
LICENSE=	MIT
15
LICENSE_FILE=	${WRKSRC}/COPYING
13
LICENSE_FILE=	${WRKSRC}/COPYING
16
14
17
USE_OCAML=		yes
15
BUILD_DEPENDS=	optcomp-o:devel/ocaml-optcomp
18
USE_OCAML_FINDLIB=	yes
19
USE_OCAML_CAMLP4=	yes
20
USE_OCAMLFIND_PLIST=	yes
21
USE_OCAML_LDCONFIG=	yes
22
16
23
USES=		gmake
17
USES=		gmake ocaml
18
USE_OCAML=	findlib:plist camlp4 ldconfig
19
OCAML_PKGDIRS=	deriving
20
OCAML_LDLIBS=	${OCAML_SITELIBDIR}/deriving
21
USE_GITHUB=	yes
22
GH_TUPLE=	ocsigen:deriving:
23
HAS_CONFIGURE=	yes
24
CONFIGURE_ARGS=	--destdir ${STAGEDIR} \
25
		--docdir ${STAGEDIR}${DOCSDIR}
26
PORTDOCS=	api
24
27
28
pre-configure:
29
	cd ${WRKSRC} && ${MAKE_CMD} ./setup.exe
30
25
post-install:
31
post-install:
26
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/deriving-ocsigen/*.cmxs
32
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/deriving/*.cmxs
27
33
28
.include <bsd.port.mk>
34
.include <bsd.port.mk>
(-)devel/ocaml-deriving-ocsigen/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (deriving-ocsigen-0.3c.tar.gz) = eb6e7e647b6f2effcc65c9b32076fbc12e366e16035447a762a93e5e1cba94c7
1
TIMESTAMP = 1488718047
2
SIZE (deriving-ocsigen-0.3c.tar.gz) = 61242
2
SHA256 (ocsigen-deriving-0.7.1_GH0.tar.gz) = 4794d455cb65d053fbbd49f94b1eb70c1b577dad9e4c277e5292086e13ea299b
3
SIZE (ocsigen-deriving-0.7.1_GH0.tar.gz) = 68550
(-)devel/ocaml-deriving-ocsigen/files/patch-syntax-Makefile (-15 lines)
Lines 1-15 Link Here
1
--- syntax/Makefile.orig	2011-12-08 04:46:54 UTC
2
+++ syntax/Makefile
3
@@ -39,9 +39,9 @@ ifneq (${TYPECONV},)
4
 MAIN_TC := pa_deriving_tc.ml
5
 endif
6
 
7
-CLASSES_CMO := $(patsubst %.ml,classes/%.cmo$,${CLASSES})
8
-CLASSES_CMX := $(patsubst %.ml,classes/%.cmx$,${CLASSES})
9
-CLASSES_DEPS := $(patsubst %.ml,classes/.%.ml.deps$,${CLASSES})
10
+CLASSES_CMO := $(patsubst %.ml,classes/%.cmo,${CLASSES})
11
+CLASSES_CMX := $(patsubst %.ml,classes/%.cmx,${CLASSES})
12
+CLASSES_DEPS := $(patsubst %.ml,classes/.%.ml.deps,${CLASSES})
13
 
14
 ${CLASSES_CMO} ${CLASSES_CMX} ${CLASSES_DEPS}: \
15
 	LIBS+=-syntax camlp4o -package camlp4.quotations.o -I classes
(-)devel/ocaml-easy-format/Makefile (+23 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	easy-format
4
PORTVERSION=	1.2.0
5
DISTVERSIONPREFIX=	v
6
CATEGORIES=	devel www
7
PKGNAMEPREFIX=	ocaml-
8
9
MAINTAINER=	hrs@FreeBSD.org
10
COMMENT=	Indent and format library in OCaml
11
12
LICENSE=	BSD3CLAUSE
13
14
USES=		gmake ocaml
15
USE_OCAML=	findlib:plist
16
USE_GITHUB=	yes
17
GH_ACCOUNT=	mjambon
18
ALL_TARGET=	default
19
20
post-install:
21
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/easy-format/easy_format.cmxs
22
23
.include <bsd.port.mk>
(-)devel/ocaml-easy-format/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1489429005
2
SHA256 (mjambon-easy-format-v1.2.0_GH0.tar.gz) = a288fabcdc19c2262e76cf93e0fd987fe1b21493edd13309522fbae405329ffd
3
SIZE (mjambon-easy-format-v1.2.0_GH0.tar.gz) = 15632
(-)devel/ocaml-easy-format/pkg-descr (+3 lines)
Line 0 Link Here
1
Easy-format: indentation made easy
2
3
WWW: https://github.com/mjambon/easy-format
(-)devel/ocaml-uchar/Makefile (+33 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	uchar
4
PORTVERSION=	0.0.1
5
DISTVERSIONPREFIX=	v
6
CATEGORIES=	devel www
7
PKGNAMEPREFIX=	ocaml-
8
9
MAINTAINER=	hrs@FreeBSD.org
10
COMMENT=	Compatibility library for OCaml's Uchar module
11
12
LICENSE=	LGPL20
13
14
USES=		gmake ocaml
15
#USE_OCAML=	findlib:plist
16
#OCAML_PKGDIRS=	deriving
17
#OCAML_LDLIBS=	${OCAML_SITELIBDIR}/deriving
18
USE_GITHUB=	yes
19
GH_ACCOUNT=	ocaml
20
#MAKE_ARGS=	PREFIX=${STAGEDIR}${PREFIX}
21
#MAKE_JOBS_UNSAFE=	yes
22
#ALL_TARGET=	all ydump
23
PLIST_FILES=	${OCAML_SITELIBDIR}/${PORTNAME}/META
24
25
do-build:
26
	cd ${WRKSRC} && ${OCAML} pkg/build.ml native=true native-dynlink=true
27
28
do-install:
29
	${MKDIR} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}
30
	${INSTALL_DATA} ${WRKSRC}/_build/pkg/META.empty \
31
	    ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/META
32
33
.include <bsd.port.mk>
(-)devel/ocaml-uchar/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1489455645
2
SHA256 (ocaml-uchar-v0.0.1_GH0.tar.gz) = ac94116a35cbcf346c94b4326d03d382560fbae337b7a59794ad6e1a1a84c140
3
SIZE (ocaml-uchar-v0.0.1_GH0.tar.gz) = 23471
(-)devel/ocaml-uchar/pkg-descr (+4 lines)
Line 0 Link Here
1
The `uchar` package provides a compatibility library for the
2
Uchar module introduced in OCaml 4.03.
3
4
WWW: https://github.com/ocaml/uchar
(-)devel/menhir/Makefile (-17 / +15 lines)
Lines 5-25 Link Here
5
PORTVERSION=	20160303
5
PORTVERSION=	20160303
6
CATEGORIES=	devel
6
CATEGORIES=	devel
7
MASTER_SITES=	http://cristal.inria.fr/~fpottier/menhir/
7
MASTER_SITES=	http://cristal.inria.fr/~fpottier/menhir/
8
PKGNAMEPREFIX=	ocaml-
8
9
9
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	hrs@FreeBSD.org
10
COMMENT=	LR(1) parser generator for OCaml
11
COMMENT=	LR(1) parser generator for OCaml
11
12
12
USE_OCAML=	yes
13
LICENSE=	LGPL20
13
USE_OCAML_FINDLIB=	yes
14
USE_OCAMLFIND_PLIST=	yes
15
OCAML_PKGDIRS=		menhirLib
16
14
17
USES=		gmake shebangfix
15
USES=		gmake shebangfix ocaml
16
USE_OCAML=	findlib:plist
17
OCAML_PKGDIRS=	menhirLib
18
SHEBANG_FILES=	demos/find-menhir.sh
18
SHEBANG_FILES=	demos/find-menhir.sh
19
MAKE_JOBS_UNSAFE=	yes
19
MAKE_JOBS_UNSAFE= yes
20
21
DOCSDIR=	${PREFIX}/share/doc/ocaml/${PORTNAME}
20
DOCSDIR=	${PREFIX}/share/doc/ocaml/${PORTNAME}
22
23
PORTDOCS=	*
21
PORTDOCS=	*
24
PLIST_FILES=	bin/menhir man/man1/menhir.1.gz %%DATADIR%%/standard.mly
22
PLIST_FILES=	bin/menhir man/man1/menhir.1.gz %%DATADIR%%/standard.mly
25
23
Lines 26-40 Link Here
26
OPTIONS_DEFINE=	DOCS
24
OPTIONS_DEFINE=	DOCS
27
25
28
post-patch:
26
post-patch:
29
	@${REINPLACE_CMD} -e \
27
	${REINPLACE_CMD} -e \
30
		's|share/man|man| ; \
28
	    's|share/man|man| ; \
31
		 s|doc/menhir|doc/ocaml/menhir| ; \
29
	     s|doc/menhir|doc/ocaml/menhir| ; \
32
		 s| \($$(bindir)\)| $${DESTDIR}\1| ; \
30
	     s| \($$(bindir)\)| $${DESTDIR}\1| ; \
33
		 s| \($$(libdir)\)| $${DESTDIR}\1| ; \
31
	     s| \($$(libdir)\)| $${DESTDIR}\1| ; \
34
		 s| \($$(docdir)\)| $${DESTDIR}\1| ; \
32
	     s| \($$(docdir)\)| $${DESTDIR}\1| ; \
35
		 s| \($$(mandir)\)| $${DESTDIR}\1|' ${WRKSRC}/Makefile
33
	     s| \($$(mandir)\)| $${DESTDIR}\1|' ${WRKSRC}/Makefile
36
34
37
post-install:
35
post-install:
38
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/menhir
36
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/menhir
39
37
40
.include <bsd.port.mk>
38
.include <bsd.port.mk>
(-)lang/js_of_ocaml/Makefile (-25 / +30 lines)
Lines 2-42 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	js_of_ocaml
4
PORTNAME=	js_of_ocaml
5
PORTVERSION=	2.5
5
PORTVERSION=	2.8.4
6
CATEGORIES=	lang
6
CATEGORIES=	lang
7
PKGNAMEPREFIX=	ocaml-
7
8
8
MAINTAINER=	ports@FreeBSD.org
9
MAINTAINER=	hrs@FreeBSD.org
9
COMMENT=	OCaml to JavaScript compiler
10
COMMENT=	OCaml to JavaScript compiler
10
11
12
LICENSE=	LGPL20
13
11
BUILD_DEPENDS=	ocaml-lwt>=2.3.0:devel/ocaml-lwt \
14
BUILD_DEPENDS=	ocaml-lwt>=2.3.0:devel/ocaml-lwt \
12
		menhir:devel/menhir \
15
		menhir:devel/menhir \
13
		${SA_DIR}/deriving-ocsigen/deriving.a:devel/ocaml-deriving-ocsigen \
16
		${SA_DIR}/deriving/deriving.a:devel/ocaml-deriving-ocsigen \
14
		${SA_DIR}/cmdliner/cmdliner.a:devel/ocaml-cmdliner
17
		${SA_DIR}/cmdliner/cmdliner.a:devel/ocaml-cmdliner \
15
RUN_DEPENDS=	ocaml-lwt>=2.3.0:devel/ocaml-lwt \
18
		${SA_DIR}/uchar/META:devel/ocaml-uchar \
16
		${SA_DIR}/deriving-ocsigen/deriving.a:devel/ocaml-deriving-ocsigen \
19
		${SA_DIR}/base64/META:converters/ocaml-base64 \
17
		${SA_DIR}/cmdliner/cmdliner.a:devel/ocaml-cmdliner
20
		${SA_DIR}/yojson/META:devel/ocaml-yojson \
21
		${SA_DIR}/ppx_tools/META:devel/ocaml-ppx-tools
22
RUN_DEPENDS:=	${BUILD_DEPENDS}
18
23
19
SA_DIR=		${LOCALBASE}/${OCAML_SITELIBDIR}
24
SA_DIR=		${LOCALBASE}/${OCAML_SITELIBDIR}
20
25
21
USES=			gmake
26
USES=		gmake ocaml
22
USE_OCAML=		yes
27
USE_OCAML=	findlib:plist camlp4 ldconfig
23
USE_OCAML_FINDLIB=	yes
28
USE_GITHUB=	yes
24
USE_OCAML_LDCONFIG=	yes
29
GH_ACCOUNT=	ocsigen
25
USE_OCAML_CAMLP4=	yes
30
MAKE_ENV=	BINDIR=${STAGEDIR}${PREFIX}/bin \
26
USE_OCAMLFIND_PLIST=	yes
31
		PREFIX=${PREFIX} \
32
		DESTDIR=${STAGEDIR} \
33
		OCAML_SITELIBDIR=${OCAML_SITELIBDIR}
34
PROG=		bin/js_of_ocaml bin/jsoo_minify bin/jsoo_link \
35
		bin/jsoo_mktop bin/jsoo_mkcmis bin/jsoo_listunits
36
PLIST_FILES=	${PROG}
37
MAKE_JOBS_UNSAFE=yes
27
38
28
USE_GITHUB=		yes
39
post-patch:
29
GH_ACCOUNT=		ocsigen
40
	${REINPLACE_CMD} -e '/^BINDIR/d' ${WRKSRC}/Makefile.conf
30
41
31
PLIST_FILES+=		bin/js_of_ocaml bin/jsoo_minify bin/jsoo_mkcmis \
42
post-install:
32
			bin/jsoo_mktop
43
	cd ${STAGEDIR}${PREFIX} && ${STRIP_CMD} ${PROG}
44
	cd ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME} && \
45
	    ${STRIP_CMD} *.cmxs *.so ppx_js
33
46
34
MAKE_JOBS_UNSAFE=	yes
35
MAKE_ENV+=		BINDIR=${STAGEDIR}${PREFIX}/bin \
36
			DESTDIR=${STAGEDIR} \
37
			OCAML_SITELIBDIR=${PREFIX}/lib/ocaml/site-lib
38
39
post-patch:
40
	@${REINPLACE_CMD} -e '/^BINDIR/d' ${WRKSRC}/Makefile.conf
41
42
.include <bsd.port.mk>
47
.include <bsd.port.mk>
(-)lang/js_of_ocaml/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (ocsigen-js_of_ocaml-2.5_GH0.tar.gz) = 5bea34f47210791b8bb89adb158ec9d47816ba074bfb11ee68f56be42c0235df
1
TIMESTAMP = 1489419694
2
SIZE (ocsigen-js_of_ocaml-2.5_GH0.tar.gz) = 1249680
2
SHA256 (ocsigen-js_of_ocaml-2.8.4_GH0.tar.gz) = 74edd38a964fcee930778a908c896b5c9795f64fc34a3c58361ccfa441811725
3
SIZE (ocsigen-js_of_ocaml-2.8.4_GH0.tar.gz) = 1344082
(-)lang/js_of_ocaml/files/patch-Makefile (-5 / +5 lines)
Lines 1-11 Link Here
1
--- Makefile.orig	2014-09-30 14:40:37 UTC
1
--- Makefile.orig	2017-03-14 00:42:18.941740000 +0900
2
+++ Makefile
2
+++ Makefile	2017-03-14 00:42:46.268272000 +0900
3
@@ -47,7 +47,7 @@ VERSION := $(shell head -n 1 VERSION)
3
@@ -47,7 +47,7 @@
4
 install: install-lib install-bin
4
 install: install-lib install-bin
5
 
5
 
6
 install-lib:
6
 install-lib:
7
-	ocamlfind install -patch-version ${VERSION} $(LIBRARY) lib/META $(INTF) $(IMPL) $(OTHERS) $(DOC) $(COMP_INTF) $(COMP_IMPL)
7
-	ocamlfind install -patch-version ${VERSION} $(LIBRARY) lib/META $(INTF) $(IMPL) $(OTHERS) $(DOC) $(COMP_INTF) $(COMP_IMPL) ${OCAMLFIND_BIN}
8
+	ocamlfind install -ldconf ignore -destdir ${DESTDIR}${OCAML_SITELIBDIR} -patch-version ${VERSION} $(LIBRARY) lib/META $(INTF) $(IMPL) $(OTHERS) $(DOC) $(COMP_INTF) $(COMP_IMPL)
8
+	ocamlfind install -ldconf ignore -destdir ${DESTDIR}${PREFIX}/${OCAML_SITELIBDIR} -patch-version ${VERSION} $(LIBRARY) lib/META $(INTF) $(IMPL) $(OTHERS) $(DOC) $(COMP_INTF) $(COMP_IMPL) ${OCAMLFIND_BIN}
9
 
9
 
10
 install-bin:
10
 install-bin:
11
 	install -d -m 755 $(BINDIR)
11
 	install -d -m 755 $(BINDIR)
(-)lang/mtasc/Makefile (-3 / +2 lines)
Lines 12-20 Link Here
12
12
13
BUILD_DEPENDS=	${LOCALBASE}/lib/ocaml/site-lib/extlib/IO.cmi:devel/ocaml-extlib
13
BUILD_DEPENDS=	${LOCALBASE}/lib/ocaml/site-lib/extlib/IO.cmi:devel/ocaml-extlib
14
14
15
USE_OCAML=	yes
15
USES=		ocaml
16
USE_OCAML_FINDLIB=yes
16
USE_OCAML=	findlib camlp4
17
USE_OCAML_CAMLP4=yes
18
OCAML_PKGDIRS=	# This port uses ocaml-findlib but doesn't install one
17
OCAML_PKGDIRS=	# This port uses ocaml-findlib but doesn't install one
19
18
20
OCAMLLEX?=	${LOCALBASE}/bin/ocamllex
19
OCAMLLEX?=	${LOCALBASE}/bin/ocamllex
(-)graphics/llpp/Makefile (-2 / +1 lines)
Lines 30-38 Link Here
30
RUN_DEPENDS=	xsel:x11/xsel-conrad
30
RUN_DEPENDS=	xsel:x11/xsel-conrad
31
31
32
STRIP=	# Stripping renders the executable unusable, so don't do it for now
32
STRIP=	# Stripping renders the executable unusable, so don't do it for now
33
USES=		desktop-file-utils gmake jpeg ssl
33
USES=		desktop-file-utils gmake jpeg ocaml ssl
34
USE_GL=		gl
34
USE_GL=		gl
35
USE_OCAML=	yes
36
NO_OCAML_RUNDEPENDS=	yes
35
NO_OCAML_RUNDEPENDS=	yes
37
USE_OPENGL=	yes
36
USE_OPENGL=	yes
38
USE_XORG=	x11 xext
37
USE_XORG=	x11 xext
(-)security/sks/Makefile (-4 / +3 lines)
Lines 2-8 Link Here
2
2
3
PORTNAME=	sks
3
PORTNAME=	sks
4
PORTVERSION=	1.1.5
4
PORTVERSION=	1.1.5
5
PORTREVISION=	1
5
PORTREVISION=	2
6
CATEGORIES=	security
6
CATEGORIES=	security
7
MASTER_SITES=	http://bitbucket.org/skskeyserver/sks-keyserver/downloads/
7
MASTER_SITES=	http://bitbucket.org/skskeyserver/sks-keyserver/downloads/
8
8
Lines 9-17 Link Here
9
MAINTAINER=	johans@FreeBSD.org
9
MAINTAINER=	johans@FreeBSD.org
10
COMMENT=	Synchronizing Key Server, a fast OpenPGP keyserver
10
COMMENT=	Synchronizing Key Server, a fast OpenPGP keyserver
11
11
12
USE_OCAML=	yes
12
USES=		bdb:5 perl5 gmake ocaml shebangfix tar:tgz
13
USE_OCAML_CAMLP4=yes
13
USE_OCAML=	camlp4
14
USES=		bdb:5 perl5 gmake shebangfix tar:tgz
15
USE_PERL5=	build
14
USE_PERL5=	build
16
MAKE_JOBS_UNSAFE=yes
15
MAKE_JOBS_UNSAFE=yes
17
SHEBANG_FILES=	sks_build.sh
16
SHEBANG_FILES=	sks_build.sh
(-)math/ocaml-ocamlgraph/Makefile (-30 / +48 lines)
Line 0 Link Here
1
--- cryptokit-1.7-sks.patch.orig	2017-03-14 12:18:54.440470000 +0900
2
+++ cryptokit-1.7-sks.patch	2017-03-14 12:19:04.224274000 +0900
3
@@ -143,3 +143,16 @@
4
          let num_equals =
5
            match ipos with 1 -> 2 | 2 -> 1 | _ -> 0 in
6
          self#ensure_capacity num_equals;
7
+--- cryptokit-1.7/src/stubs-md5.c.orig	2017-03-14 12:18:24.064861000 +0900
8
++++ cryptokit-1.7/src/stubs-md5.c	2017-03-14 12:18:36.560212000 +0900
9
+@@ -18,8 +18,8 @@
10
+ #include <caml/alloc.h>
11
+ 
12
+ struct MD5Context {
13
+-        uint32 buf[4];
14
+-        uint32 bits[2];
Lines 3-59 Link Here
3
3
4
PORTNAME=	ocamlgraph
4
PORTNAME=	ocamlgraph
5
PORTVERSION=	1.8.7
5
PORTVERSION=	1.8.7
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	math
7
CATEGORIES=	math
8
MASTER_SITES=	http://ocamlgraph.lri.fr/download/ \
8
MASTER_SITES=	http://ocamlgraph.lri.fr/download/ \
9
		ftp://ftp.stack.nl/pub/users/johans/ocamlgraph/
9
		ftp://ftp.stack.nl/pub/users/johans/ocamlgraph/
10
PKGNAMEPREFIX=	ocaml-
10
PKGNAMEPREFIX=	ocaml-
11
11
12
MAINTAINER=	ports@FreeBSD.org
12
MAINTAINER=	hrs@FreeBSD.org
13
COMMENT=	Graph manipulation library for OCaml
13
COMMENT=	Graph manipulation library for OCaml
14
14
15
LICENSE=	LGPL21
16
17
USES=		gmake gettext-runtime ocaml
18
USE_OCAML=	findlib:plist ldconfig
19
#OCAML_LDLIBS=	${OCAML_LIBDIR}/${PORTNAME}
20
GNU_CONFIGURE=	yes
21
MAKE_ENV=	LIBDESTDIR=${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}
22
ALL_TARGET=	all
23
INSTALL_TARGET=	install install-findlib
24
MAKE_JOBS_UNSAFE=	yes
25
PORTSCOUT=	skipv:1.81
26
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
27
PORTDOCS=	*
28
29
ocaml-findlib:
30
	@${FIND} ${STAGEDIR}${PREFIX}/${OCAML_LIBDIR}/${PORTNAME}/ \
31
	    ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/ \
32
	    -type f -print | ${SED} -e \
33
	    's,^${STAGEDIR}${PREFIX}/,,' >> ${TMPPLIST}
34
15
OPTIONS_DEFINE=	GUI DOCS
35
OPTIONS_DEFINE=	GUI DOCS
16
OPTIONS_DEFAULT=GUI
36
OPTIONS_DEFAULT=GUI
17
OPTIONS_SUB=	yes
37
OPTIONS_SUB=	yes
18
GUI_DESC=		Include GUI user programs: viewer and editor
38
GUI_DESC=		Include GUI user programs: viewer and editor
39
GUI_LIB_DEPENDS=	libfontconfig.so:x11-fonts/fontconfig \
40
			libfreetype.so:print/freetype2
19
GUI_BUILD_DEPENDS=	lablgtk2:x11-toolkits/ocaml-lablgtk2
41
GUI_BUILD_DEPENDS=	lablgtk2:x11-toolkits/ocaml-lablgtk2
20
GUI_RUN_DEPENDS=	lablgtk2:x11-toolkits/ocaml-lablgtk2
42
GUI_RUN_DEPENDS=	lablgtk2:x11-toolkits/ocaml-lablgtk2
21
GUI_CONFIGURE_OFF=	LABLGTK2=no
43
GUI_CONFIGURE_OFF=	LABLGTK2=no
44
GUI_USE=	GNOME=atk,cairo,gdkpixbuf2,glib20,gtk20,libartlgpl2,libgnomecanvas,pango
22
45
23
USES=		gmake
46
post-patch-GUI-off:
24
USE_OCAML=	yes
47
	@${REINPLACE_CMD} -Ee 's/(LABLGTK2)=yes/\1=no/' ${WRKSRC}/configure
25
USE_OCAML_FINDLIB=	yes
26
USE_OCAML_LDCONFIG=	yes
27
USE_OCAMLFIND_PLIST=	yes
28
OCAML_LDLIBS=	${OCAML_LIBDIR}/${PORTNAME}
29
GNU_CONFIGURE=	yes
30
48
31
PLIST_SUB+=	OCAMLGRAPHDIR="${OCAML_LDLIBS}"
49
post-install-GUI-on:
50
	cd ${STAGEDIR}${PREFIX}/bin && ${STRIP_CMD} \
51
	    graph-viewer.opt graph-viewer graph-editor.opt graph-editor
52
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_LIBDIR}/${PORTNAME}/*.cmxs
32
53
33
ALL_TARGET=	all
54
DOCS_ALL_TARGET=	doc
34
INSTALL_TARGET=	install
35
55
36
MAKE_JOBS_UNSAFE=	yes
56
post-patch-DOCS-on:
37
PORTSCOUT=	skipv:1.81
38
39
.include <bsd.port.options.mk>
40
41
.if ${PORT_OPTIONS:MDOCS}
42
ALL_TARGET+=	doc
43
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
44
PORTDOCS=	*
45
46
post-patch:
47
	@${REINPLACE_CMD} -e '/VIEWER_DIR. doc/d' ${WRKSRC}/Makefile.in
57
	@${REINPLACE_CMD} -e '/VIEWER_DIR. doc/d' ${WRKSRC}/Makefile.in
48
.if empty(PORT_OPTIONS:MGUI)
49
	# Override auto-detection
50
	@${REINPLACE_CMD} -Ee 's/(LABLGTK2)=yes/\1=no/' ${WRKSRC}/configure
51
.endif
52
58
53
post-install:
59
post-install-DOCS-on:
54
	${MKDIR} ${STAGEDIR}${DOCSDIR}
60
	${MKDIR} ${STAGEDIR}${DOCSDIR}
55
	${INSTALL_DATA} ${WRKSRC}/doc/* ${STAGEDIR}${DOCSDIR}
61
	${INSTALL_DATA} ${WRKSRC}/doc/* ${STAGEDIR}${DOCSDIR}
56
	${INSTALL_DATA} ${WRKSRC}/META ${STAGEDIR}${PREFIX}/${OCAML_LDLIBS}
57
.endif
58
62
59
.include <bsd.port.mk>
63
.include <bsd.port.mk>
(-)math/ocaml-ocamlgraph/files/patch-Makefile.in (+13 lines)
Line 0 Link Here
1
--- Makefile.in.orig	2017-04-02 00:51:36 UTC
2
+++ Makefile.in
3
@@ -420,10 +420,6 @@ ifeq (@LABLGNOMECANVAS@,yes)
4
 	cp -f $(VIEWER_DIR)/*.mli $(DGRAPH_DIR)/*.mli $(INSTALL_LIBDIR)
5
 endif
6
 
7
-ifdef DESTDIR
8
-OCAMLFINDDEST := -destdir $(DESTDIR)
9
-endif
10
-
11
 install-findlib: META
12
 ifdef OCAMLFIND
13
 ifeq (@LABLGNOMECANVAS@,yes)
(-)math/ocaml-ocamlgraph/pkg-plist (-70 lines)
Lines 4-76 Link Here
4
%%GUI%%bin/graph-editor.byte
4
%%GUI%%bin/graph-editor.byte
5
%%GUI%%bin/graph-editor.opt
5
%%GUI%%bin/graph-editor.opt
6
%%GUI%%bin/graph-editor
6
%%GUI%%bin/graph-editor
7
%%OCAMLGRAPHDIR%%/META
8
%%OCAMLGRAPHDIR%%/builder.mli
9
%%OCAMLGRAPHDIR%%/classic.mli
10
%%OCAMLGRAPHDIR%%/clique.mli
11
%%OCAMLGRAPHDIR%%/cliquetree.mli
12
%%OCAMLGRAPHDIR%%/coloring.mli
13
%%OCAMLGRAPHDIR%%/components.mli
14
%%OCAMLGRAPHDIR%%/contraction.mli
15
%%OCAMLGRAPHDIR%%/delaunay.mli
16
%%OCAMLGRAPHDIR%%/dominator.mli
17
%%OCAMLGRAPHDIR%%/dot.mli
18
%%OCAMLGRAPHDIR%%/dot_ast.mli
19
%%OCAMLGRAPHDIR%%/dot_parser.mli
20
%%OCAMLGRAPHDIR%%/fixpoint.mli
21
%%OCAMLGRAPHDIR%%/flow.mli
22
%%OCAMLGRAPHDIR%%/gmap.mli
23
%%OCAMLGRAPHDIR%%/gml.mli
24
%%OCAMLGRAPHDIR%%/graph.a
25
%%OCAMLGRAPHDIR%%/graph.cma
26
%%OCAMLGRAPHDIR%%/graph.cmi
27
%%OCAMLGRAPHDIR%%/graph.cmo
28
%%OCAMLGRAPHDIR%%/graph.cmx
29
%%OCAMLGRAPHDIR%%/graph.cmxa
30
%%OCAMLGRAPHDIR%%/graph.cmxs
31
%%OCAMLGRAPHDIR%%/graph.o
32
%%OCAMLGRAPHDIR%%/graphml.mli
33
%%OCAMLGRAPHDIR%%/graphviz.mli
34
%%OCAMLGRAPHDIR%%/imperative.mli
35
%%OCAMLGRAPHDIR%%/kruskal.mli
36
%%OCAMLGRAPHDIR%%/leaderlist.mli
37
%%OCAMLGRAPHDIR%%/mcs_m.mli
38
%%OCAMLGRAPHDIR%%/md.mli
39
%%OCAMLGRAPHDIR%%/merge.mli
40
%%OCAMLGRAPHDIR%%/mincut.mli
41
%%OCAMLGRAPHDIR%%/minsep.mli
42
%%OCAMLGRAPHDIR%%/nonnegative.mli
43
%%OCAMLGRAPHDIR%%/oper.mli
44
%%OCAMLGRAPHDIR%%/pack.mli
45
%%OCAMLGRAPHDIR%%/path.mli
46
%%OCAMLGRAPHDIR%%/persistent.mli
47
%%OCAMLGRAPHDIR%%/prim.mli
48
%%OCAMLGRAPHDIR%%/rand.mli
49
%%OCAMLGRAPHDIR%%/sig.mli
50
%%OCAMLGRAPHDIR%%/sig_pack.mli
51
%%OCAMLGRAPHDIR%%/strat.mli
52
%%OCAMLGRAPHDIR%%/topological.mli
53
%%OCAMLGRAPHDIR%%/traverse.mli
54
%%OCAMLGRAPHDIR%%/util.mli
55
%%GUI%%%%OCAMLGRAPHDIR%%/dGraphContainer.mli
56
%%GUI%%%%OCAMLGRAPHDIR%%/dGraphModel.mli
57
%%GUI%%%%OCAMLGRAPHDIR%%/dGraphRandModel.mli
58
%%GUI%%%%OCAMLGRAPHDIR%%/dGraphSubTree.mli
59
%%GUI%%%%OCAMLGRAPHDIR%%/dGraphTreeLayout.mli
60
%%GUI%%%%OCAMLGRAPHDIR%%/dGraphTreeModel.mli
61
%%GUI%%%%OCAMLGRAPHDIR%%/dGraphView.mli
62
%%GUI%%%%OCAMLGRAPHDIR%%/dGraphViewItem.mli
63
%%GUI%%%%OCAMLGRAPHDIR%%/dgraph.cmi
64
%%GUI%%%%OCAMLGRAPHDIR%%/dgraph.cmo
65
%%GUI%%%%OCAMLGRAPHDIR%%/dgraph.cmx
66
%%GUI%%%%OCAMLGRAPHDIR%%/dgraph.o
67
%%GUI%%%%OCAMLGRAPHDIR%%/viewGraph_core.mli
68
%%GUI%%%%OCAMLGRAPHDIR%%/viewGraph_select.mli
69
%%GUI%%%%OCAMLGRAPHDIR%%/viewGraph_utils.mli
70
%%GUI%%%%OCAMLGRAPHDIR%%/viewgraph.cmi
71
%%GUI%%%%OCAMLGRAPHDIR%%/viewgraph.cmo
72
%%GUI%%%%OCAMLGRAPHDIR%%/viewgraph.cmx
73
%%GUI%%%%OCAMLGRAPHDIR%%/viewgraph.o
74
%%GUI%%%%OCAMLGRAPHDIR%%/xDot.mli
75
%%GUI%%%%OCAMLGRAPHDIR%%/xDotDraw.mli
76
@comment @dir %%OCAML_SITELIBDIR%%
(-)x11-toolkits/ocaml-lablgtk2/Makefile (-30 / +24 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	lablgtk2
4
PORTNAME=	lablgtk2
5
PORTVERSION=	2.18.3
5
PORTVERSION=	2.18.3
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	x11-toolkits
7
CATEGORIES=	x11-toolkits
8
MASTER_SITES=	http://forge.ocamlcore.org/frs/download.php/1479/ \
8
MASTER_SITES=	http://forge.ocamlcore.org/frs/download.php/1479/ \
9
		LOCAL/bf
9
		LOCAL/bf
Lines 10-29 Link Here
10
PKGNAMEPREFIX=	ocaml-
10
PKGNAMEPREFIX=	ocaml-
11
DISTNAME=	lablgtk-${PORTVERSION}
11
DISTNAME=	lablgtk-${PORTVERSION}
12
12
13
MAINTAINER=	ports@FreeBSD.org
13
MAINTAINER=	hrs@FreeBSD.org
14
COMMENT=	Objective Caml interface to GTK+ 2.x
14
COMMENT=	Objective Caml interface to GTK+ 2.x
15
15
16
LICENSE=	LGPL21
16
LICENSE=	LGPL21
17
17
18
USES=		gmake pkgconfig
18
LIB_DEPENDS=	libfontconfig.so:x11-fonts/fontconfig \
19
USE_GNOME=	gtk20
19
		libfreetype.so:print/freetype2 \
20
USE_OCAML=	yes
20
		libpopt.so:devel/popt
21
USE_OCAML_FINDLIB=	yes
22
USE_OCAMLFIND_PLIST=	yes
23
USE_OCAML_CAMLP4=	yes
24
USE_OCAML_LDCONFIG=	yes
25
USE_OCAML_WASH= 	yes
26
21
22
USES=		gmake gettext-runtime pkgconfig ocaml
23
USE_GNOME=	gtk20 cairo
24
USE_XORG=	sm ice
25
USE_GL=		gl glu
26
USE_OCAML=	findlib:plist camlp4 ldconfig wash
27
HAS_CONFIGURE=	yes
28
ALL_TARGET=	all opt
29
CONFIGURE_ARGS=	--prefix=${PREFIX} \
30
		--with-libdir=${PREFIX}/${OCAML_LIBDIR} \
31
		--without-gtksourceview
32
CONFIGURE_ENV=	CAMLP4O="camlp4 pa_o.cmo pa_op.cmo pr_dump.cmo"
33
MAKE_JOBS_UNSAFE=	yes
34
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
35
PORTDOCS=	COPYING README
36
EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
37
PORTEXAMPLES=	*
38
39
PATTERN=	[[:space:]]*(do|then)?[[:space:]]*)cp([[:space:]]
40
27
OPTIONS_DEFINE=		GLADE GNOMECANVAS GNOMEUI GTKGLAREA GTKSOURCEVIEW2 \
41
OPTIONS_DEFINE=		GLADE GNOMECANVAS GNOMEUI GTKGLAREA GTKSOURCEVIEW2 \
28
			GTKSPELL LIBRSVG2 DOCS EXAMPLES
42
			GTKSPELL LIBRSVG2 DOCS EXAMPLES
29
OPTIONS_DEFAULT=	GLADE GNOMECANVAS GNOMEUI GTKGLAREA GTKSOURCEVIEW2 \
43
OPTIONS_DEFAULT=	GLADE GNOMECANVAS GNOMEUI GTKGLAREA GTKSOURCEVIEW2 \
Lines 36-63 Link Here
36
GTKSPELL_DESC=		GtkSpell support
50
GTKSPELL_DESC=		GtkSpell support
37
#GNOMEPANEL_DESC=	GNOME Panel support
51
#GNOMEPANEL_DESC=	GNOME Panel support
38
52
39
HAS_CONFIGURE=	yes
40
ALL_TARGET=	all opt
41
MAKE_JOBS_UNSAFE=	yes
42
43
CONFIGURE_ARGS=	--prefix=${PREFIX} --with-libdir=${PREFIX}/${OCAML_LIBDIR} \
44
		--without-gtksourceview
45
CONFIGURE_ENV=	CAMLP4O="camlp4 pa_o.cmo pa_op.cmo pr_dump.cmo"
46
47
PATTERN=	[[:space:]]*(do|then)?[[:space:]]*)cp([[:space:]]
48
49
.include <bsd.port.options.mk>
53
.include <bsd.port.options.mk>
50
54
51
.if ${PORT_OPTIONS:MDOCS}
52
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
53
PORTDOCS=	COPYING README
54
.endif
55
56
.if ${PORT_OPTIONS:MEXAMPLES}
57
EXAMPLESDIR=	${OCAML_EXAMPLESDIR}/${PORTNAME}
58
PORTEXAMPLES=	*
59
.endif
60
61
.if ${PORT_OPTIONS:MGTKGLAREA}
55
.if ${PORT_OPTIONS:MGTKGLAREA}
62
CONFIGURE_ARGS+=	--with-gl
56
CONFIGURE_ARGS+=	--with-gl
63
BUILD_DEPENDS+=	lablgl:graphics/ocaml-lablgl
57
BUILD_DEPENDS+=	lablgl:graphics/ocaml-lablgl
(-)x11-toolkits/ocaml-lablgtk2/files/patch-src-ml_glib.c (+11 lines)
Line 0 Link Here
1
--- src/ml_glib.c.orig	2017-03-06 00:22:40.017047000 +0900
2
+++ src/ml_glib.c	2017-03-06 00:23:07.882081000 +0900
3
@@ -163,7 +163,7 @@
4
 static void ml_raise_gerror_exn(GError *, value *) Noreturn;
5
 static void ml_raise_gerror_exn(GError *err, value *exn)
6
 {
7
-  CAMLlocal2(b, msg);
8
+  value b, msg;
9
   g_assert (err && exn);
10
   msg = copy_string(err->message);
11
   b = alloc_small (3, 0);
(-)math/alt-ergo/Makefile (-15 / +13 lines)
Lines 7-13 Link Here
7
CATEGORIES=	math
7
CATEGORIES=	math
8
MASTER_SITES=	http://alt-ergo.ocamlpro.com/http/alt-ergo-${PORTVERSION}/
8
MASTER_SITES=	http://alt-ergo.ocamlpro.com/http/alt-ergo-${PORTVERSION}/
9
9
10
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	Automatic solver of mathematical formulas for program verification
11
COMMENT=	Automatic solver of mathematical formulas for program verification
12
12
13
LICENSE=	CeCILL-C
13
LICENSE=	CeCILL-C
Lines 17-27 Link Here
17
17
18
BUILD_DEPENDS=	ocaml-zarith>1.2:math/ocaml-zarith \
18
BUILD_DEPENDS=	ocaml-zarith>1.2:math/ocaml-zarith \
19
		ocaml-ocamlgraph>1.8:math/ocaml-ocamlgraph
19
		ocaml-ocamlgraph>1.8:math/ocaml-ocamlgraph
20
LIB_DEPENDS=	libgmp.so:math/gmp
20
RUN_DEPENDS=	ocaml-ocamlgraph>1.8:math/ocaml-ocamlgraph
21
RUN_DEPENDS=	ocaml-ocamlgraph>1.8:math/ocaml-ocamlgraph
21
22
23
USES=		gmake gettext-runtime ocaml
22
GNU_CONFIGURE=	yes
24
GNU_CONFIGURE=	yes
23
USES=		gmake
24
USE_OCAML=	yes
25
ALL_TARGET=	opt pack xpack META
25
ALL_TARGET=	opt pack xpack META
26
INSTALL_TARGET=	install install-pack-opt install-pack-byte
26
INSTALL_TARGET=	install install-pack-opt install-pack-byte
27
27
Lines 29-46 Link Here
29
OPTIONS_DEFAULT=GUI
29
OPTIONS_DEFAULT=GUI
30
OPTIONS_SUB=	yes
30
OPTIONS_SUB=	yes
31
31
32
.include <bsd.port.options.mk>
32
GUI_BUILD_DEPENDS= lablgtk2:x11-toolkits/ocaml-lablgtk2
33
GUI_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
34
		 libfreetype.so:print/freetype2
35
GUI_RUN_DEPENDS= lablgtk2:x11-toolkits/ocaml-lablgtk2
36
GUI_USE=	GNOME=atk,cairo,gdkpixbuf2,glib20,gtk20,gtksourceview2,pango
37
GUI_ALL_TARGET=	gui
38
GUI_INSTALL_TARGET+= install-gui
33
39
34
.if ${PORT_OPTIONS:MGUI}
35
BUILD_DEPENDS +=	lablgtk2:x11-toolkits/ocaml-lablgtk2
36
RUN_DEPENDS+=		lablgtk2:x11-toolkits/ocaml-lablgtk2
37
ALL_TARGET+=		gui
38
INSTALL_TARGET+=	install-gui
39
.endif
40
41
post-patch:
40
post-patch:
42
	@${REINPLACE_CMD} -e '\|^# installation|,\|^# documentation|{ \
41
	@${REINPLACE_CMD} -e '\|^# installation|,\|^# documentation|{ \
43
		\|cp -f.*$$(BINDIR)|s|cp -f|${INSTALL_SCRIPT}|; \
42
		\|cp -f.*\.byte.*$$(BINDIR)|s|cp -f|${INSTALL_SCRIPT}|; \
43
		\|cp -f.*$$(BINDIR)|s|cp -f|${INSTALL_PROGRAM}|; \
44
		\|cp -f.*$$(MANDIR)|s|cp -f|${INSTALL_MAN}|; \
44
		\|cp -f.*$$(MANDIR)|s|cp -f|${INSTALL_MAN}|; \
45
		\|cp -f.*$$(LIBDIR)|s|cp -f|${INSTALL_DATA}|; }' \
45
		\|cp -f.*$$(LIBDIR)|s|cp -f|${INSTALL_DATA}|; }' \
46
		-e 's|make -C|${MAKE_CMD} -C|' \
46
		-e 's|make -C|${MAKE_CMD} -C|' \
Lines 48-60 Link Here
48
	@${REINPLACE_CMD} -Ee 's@(\+|/)(lablgtk2)@\1site-lib/\2@' \
48
	@${REINPLACE_CMD} -Ee 's@(\+|/)(lablgtk2)@\1site-lib/\2@' \
49
		${WRKSRC}/configure
49
		${WRKSRC}/configure
50
50
51
.if ${PORT_OPTIONS:MGUI}
51
pre-configure-GUI-on:
52
pre-configure:
53
	@(if [ ! -e ${LOCALBASE}/${OCAML_SITELIBDIR}/lablgtk2/lablgtksourceview2.cmxa ] ; then \
52
	@(if [ ! -e ${LOCALBASE}/${OCAML_SITELIBDIR}/lablgtk2/lablgtksourceview2.cmxa ] ; then \
54
	${ECHO_MSG} "==> The WITH_GUI option for ${PKGNAME} requires" ; \
53
	${ECHO_MSG} "==> The WITH_GUI option for ${PKGNAME} requires" ; \
55
	${ECHO_MSG} "==> x11-toolkits/ocaml-lablgtk2 to be built" ; \
54
	${ECHO_MSG} "==> x11-toolkits/ocaml-lablgtk2 to be built" ; \
56
	${ECHO_MSG} "==> WITH_GTKSOURCEVIEW2" ; \
55
	${ECHO_MSG} "==> WITH_GTKSOURCEVIEW2" ; \
57
	exit 1; fi)
56
	exit 1; fi)
58
.endif
59
57
60
.include <bsd.port.mk>
58
.include <bsd.port.mk>
(-)math/alt-ergo/pkg-plist (-1 / +1 lines)
Lines 6-9 Link Here
6
lib/ocaml/alt-ergo/altErgo.cmx
6
lib/ocaml/alt-ergo/altErgo.cmx
7
lib/ocaml/alt-ergo/altErgo.o
7
lib/ocaml/alt-ergo/altErgo.o
8
man/man1/alt-ergo.1.gz
8
man/man1/alt-ergo.1.gz
9
share/gtksourceview-2.0/language-specs/alt-ergo.lang
9
%%GUI%%share/gtksourceview-2.0/language-specs/alt-ergo.lang
(-)math/why3/Makefile (-15 / +13 lines)
Lines 3-37 Link Here
3
3
4
PORTNAME=	why3
4
PORTNAME=	why3
5
PORTVERSION=	0.83
5
PORTVERSION=	0.83
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	math
7
CATEGORIES=	math
8
MASTER_SITES=	http://gforge.inria.fr/frs/download.php/33490/ \
8
MASTER_SITES=	http://gforge.inria.fr/frs/download.php/33490/ \
9
		http://pkgs.fedoraproject.org/repo/pkgs/why3/${FEDORA}/
9
		http://pkgs.fedoraproject.org/repo/pkgs/why3/${FEDORA}/
10
10
11
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
12
COMMENT=	Deductive program verification platform
12
COMMENT=	Deductive program verification platform
13
13
14
LICENSE=	LGPL21
14
LICENSE=	LGPL21
15
LICENSE_FILE=	${WRKSRC}/LICENSE
15
LICENSE_FILE=	${WRKSRC}/LICENSE
16
16
17
CONFLICTS_INSTALL= why3-gpl-*
18
19
BUILD_DEPENDS=	ocaml-zarith>1.2:math/ocaml-zarith \
17
BUILD_DEPENDS=	ocaml-zarith>1.2:math/ocaml-zarith \
20
		lablgtk2:x11-toolkits/ocaml-lablgtk2 \
18
		lablgtk2:x11-toolkits/ocaml-lablgtk2 \
21
		ocaml-sqlite3>2:databases/ocaml-sqlite3 \
19
		ocaml-sqlite3>2:databases/ocaml-sqlite3 \
22
		ocaml-ocamlgraph>1.8:math/ocaml-ocamlgraph \
20
		ocaml-ocamlgraph>1.8:math/ocaml-ocamlgraph
23
		camlp5o:devel/ocaml-camlp5
21
LIB_DEPENDS=	libfontconfig.so:x11-fonts/fontconfig \
22
		libfreetype.so:print/freetype2
24
23
24
USES=		gmake gettext-runtime ocaml sqlite
25
USE_OCAML=	findlib campl5
26
USE_GNOME=	atk cairo gdkpixbuf2 glib20 gtk20 gtksourceview2 pango
25
GNU_CONFIGURE=	yes
27
GNU_CONFIGURE=	yes
26
INSTALL_TARGET=	install-all
27
28
USES=		gmake
29
USE_OCAML=	yes
30
USE_OCAML_FINDLIB=	yes
31
32
FEDORA=		${DISTNAME}${EXTRACT_SUFX}/35f99e5f64939e50ea57f641ba2073ec
33
ALL_TARGET=	all byte
34
35
CONFIGURE_ARGS=	--enable-relocation \
28
CONFIGURE_ARGS=	--enable-relocation \
36
		--disable-doc \
29
		--disable-doc \
37
		--disable-pvs-libs \
30
		--disable-pvs-libs \
Lines 39-45 Link Here
39
		--disable-coq-tactic \
32
		--disable-coq-tactic \
40
		--disable-coq-libs \
33
		--disable-coq-libs \
41
		--disable-isabelle-libs
34
		--disable-isabelle-libs
35
ALL_TARGET=	all byte
36
INSTALL_TARGET=	install-all
37
CONFLICTS_INSTALL= why3-gpl-*
42
38
39
FEDORA=		${DISTNAME}${EXTRACT_SUFX}/35f99e5f64939e50ea57f641ba2073ec
40
43
OPTIONS_DEFINE=	DOCS
41
OPTIONS_DEFINE=	DOCS
44
42
45
# The pdf is pre-built, but the makefile wants to build it again in order
43
# The pdf is pre-built, but the makefile wants to build it again in order
(-)print/texvc/Makefile (-3 / +2 lines)
Lines 2-8 Link Here
2
2
3
PORTNAME=	texvc
3
PORTNAME=	texvc
4
PORTVERSION=	20050202
4
PORTVERSION=	20050202
5
PORTREVISION=	5
5
PORTREVISION=	6
6
CATEGORIES=	print
6
CATEGORIES=	print
7
MASTER_SITES=	SF/wikipedia/Support%20files/${PORTNAME}%20Linux-x86%20source%20%2B%20binary
7
MASTER_SITES=	SF/wikipedia/Support%20files/${PORTNAME}%20Linux-x86%20source%20%2B%20binary
8
DISTNAME=	${PORTNAME}-linux-x86-${PORTVERSION}
8
DISTNAME=	${PORTNAME}-linux-x86-${PORTVERSION}
Lines 10-17 Link Here
10
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	ports@FreeBSD.org
11
COMMENT=	Convert latex equations to HTML, MathML, PNG
11
COMMENT=	Convert latex equations to HTML, MathML, PNG
12
12
13
USES=		gmake
13
USES=		gmake ocaml
14
USE_OCAML=	yes
15
NO_OCAML_RUNDEPENDS=	yes
14
NO_OCAML_RUNDEPENDS=	yes
16
BUILD_WRKSRC=	${WRKSRC}/src
15
BUILD_WRKSRC=	${WRKSRC}/src
17
16
(-)science/kalzium/Makefile (-4 / +2 lines)
Lines 2-8 Link Here
2
2
3
PORTNAME=	kalzium
3
PORTNAME=	kalzium
4
PORTVERSION=	${KDE4_VERSION}
4
PORTVERSION=	${KDE4_VERSION}
5
PORTREVISION=	1
5
PORTREVISION=	2
6
CATEGORIES=	science kde kde-kde4
6
CATEGORIES=	science kde kde-kde4
7
7
8
MAINTAINER=	kde@FreeBSD.org
8
MAINTAINER=	kde@FreeBSD.org
Lines 16-25 Link Here
16
		${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:science/chemical-mime-data
16
		${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:science/chemical-mime-data
17
RUN_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:science/chemical-mime-data
17
RUN_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:science/chemical-mime-data
18
18
19
USES=		cmake:outsource kde:4 pkgconfig tar:xz
19
USES=		cmake:outsource kde:4 ocaml:build pkgconfig tar:xz
20
USE_KDE=	kdelibs automoc4
20
USE_KDE=	kdelibs automoc4
21
USE_OCAML=	yes
22
NO_OCAML_RUNDEPENDS=	yes
23
USE_QT4=	corelib declarative designer opengl script xml \
21
USE_QT4=	corelib declarative designer opengl script xml \
24
		moc_build qmake_build rcc_build uic_build
22
		moc_build qmake_build rcc_build uic_build
25
USE_LDCONFIG=	yes
23
USE_LDCONFIG=	yes
(-)science/kalzium/files/patch-src_CMakeOCamlInstructions.cmake (+11 lines)
Line 0 Link Here
1
--- src/CMakeOCamlInstructions.cmake.orig	2017-04-02 01:28:31 UTC
2
+++ src/CMakeOCamlInstructions.cmake
3
@@ -58,7 +58,7 @@ ocaml_ml_to_cmx(${CMAKE_CURRENT_BINARY_D
4
 # object files
5
 
6
 add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/modwrap.o
7
-                   COMMAND ${OCAML_OCAMLOPT_EXECUTABLE} -I ${LIBFACILE_INCLUDE_DIR} -c ${CMAKE_CURRENT_SOURCE_DIR}/solver/modwrap.c -o ${CMAKE_CURRENT_BINARY_DIR}/modwrap.o
8
+                   COMMAND ${OCAML_OCAMLOPT_EXECUTABLE} -I ${LIBFACILE_INCLUDE_DIR} -c ${CMAKE_CURRENT_SOURCE_DIR}/solver/modwrap.c ${CMAKE_CURRENT_BINARY_DIR}/modwrap.o
9
                    DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/solver/modwrap.c ${CMAKE_CURRENT_BINARY_DIR}/solver.o
10
                    WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
11
 set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES ${CMAKE_CURRENT_BINARY_DIR}/modwrap.o)
(-)net-p2p/liberator/Makefile (-4 / +3 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	liberator
4
PORTNAME=	liberator
5
PORTVERSION=	2.0.2
5
PORTVERSION=	2.0.2
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	net-p2p
7
CATEGORIES=	net-p2p
8
MASTER_SITES=	SF/${PORTNAME}/ofcp/ofcp-${PORTVERSION}
8
MASTER_SITES=	SF/${PORTNAME}/ofcp/ofcp-${PORTVERSION}
9
DISTNAME=	ofcp-${PORTVERSION}
9
DISTNAME=	ofcp-${PORTVERSION}
Lines 14-22 Link Here
14
LICENSE=	LGPL21+
14
LICENSE=	LGPL21+
15
LICENSE_FILE=	${WRKSRC}/COPYING
15
LICENSE_FILE=	${WRKSRC}/COPYING
16
16
17
USES=		tar:bzip2
17
USES=		ocaml tar:bzip2
18
USE_OCAML=	yes
18
USE_OCAML=	camlp4
19
USE_OCAML_CAMLP4=yes
20
ALL_TARGET=	all opt
19
ALL_TARGET=	all opt
21
MAKE_JOBS_UNSAFE=yes
20
MAKE_JOBS_UNSAFE=yes
22
21
(-)net-p2p/mldonkey/Makefile (-5 / +6 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	mldonkey
4
PORTNAME=	mldonkey
5
PORTVERSION=	3.1.5
5
PORTVERSION=	3.1.5
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES+=	net-p2p
7
CATEGORIES+=	net-p2p
8
MASTER_SITES=	SF
8
MASTER_SITES=	SF
9
9
Lines 15-24 Link Here
15
15
16
CONFLICTS=	mldonkey{-{core,gui},}-devel-[0-9]*
16
CONFLICTS=	mldonkey{-{core,gui},}-devel-[0-9]*
17
17
18
USES=		iconv tar:bzip2 gmake
18
USES=		iconv ocaml tar:bzip2 gmake
19
USE_AUTOTOOLS=	autoconf:env
19
USE_AUTOTOOLS=	autoconf:env
20
USE_OCAML=	yes
20
USE_OCAML=	camlp4
21
USE_OCAML_CAMLP4=yes
22
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
23
ALL_TARGET=	opt
22
ALL_TARGET=	opt
24
MAKE_ENV+=	OCAMLRUNPARAM="l=256M"
23
MAKE_ENV+=	OCAMLRUNPARAM="l=256M"
Lines 32-37 Link Here
32
31
33
SUB_FILES=	pkg-message
32
SUB_FILES=	pkg-message
34
33
34
IGNORE=		does not build: Multiple definition of the extension constructor name Error
35
35
###
36
###
36
## Options activation
37
## Options activation
37
###
38
###
Lines 71-77 Link Here
71
.endif # ${PORT_OPTIONS:MGUI} && ${PORT_OPTIONS:MCORE}
72
.endif # ${PORT_OPTIONS:MGUI} && ${PORT_OPTIONS:MCORE}
72
73
73
.if ${PORT_OPTIONS:MGUI}
74
.if ${PORT_OPTIONS:MGUI}
74
BUILD_DEPENDS+=	${LOCALBASE}/lib/ocaml/site-lib/lablgtk2/lablrsvg.cma:x11-toolkits/ocaml-lablgtk2
75
BUILD_DEPENDS+=	${LOCALBASE}/${OCAML_SITELIBDIR}/lablgtk2/lablrsvg.cma:x11-toolkits/ocaml-lablgtk2
75
LIB_DEPENDS+=	librsvg-2.so:graphics/librsvg2
76
LIB_DEPENDS+=	librsvg-2.so:graphics/librsvg2
76
77
77
CONFIGURE_ARGS+=--enable-gui=newgui2
78
CONFIGURE_ARGS+=--enable-gui=newgui2
(-)astro/planets/Makefile (-5 / +3 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	planets
4
PORTNAME=	planets
5
PORTVERSION=	0.1.13
5
PORTVERSION=	0.1.13
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	astro
7
CATEGORIES=	astro
8
MASTER_SITES=	GENTOO \
8
MASTER_SITES=	GENTOO \
9
		http://planets.homedns.org/dist/
9
		http://planets.homedns.org/dist/
Lines 14-23 Link Here
14
LICENSE=	GPLv2+
14
LICENSE=	GPLv2+
15
LICENSE_FILE=	${WRKSRC}/COPYING
15
LICENSE_FILE=	${WRKSRC}/COPYING
16
16
17
USES=		gmake tar:tgz
17
USES=		gmake ocaml tar:tgz tk tcl
18
USE_OCAML=	yes
18
USE_OCAML=	camlp4 tk
19
USE_OCAML_CAMLP4=yes
20
USE_OCAML_TK=	yes
21
USE_XORG=	x11
19
USE_XORG=	x11
22
ALL_TARGET=	${PORTNAME}
20
ALL_TARGET=	${PORTNAME}
23
21
(-)devel/coccinelle/Makefile (-4 / +5 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	coccinelle
4
PORTNAME=	coccinelle
5
PORTVERSION=	1.0.4
5
PORTVERSION=	1.0.4
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://coccinelle.lip6.fr/distrib/
8
MASTER_SITES=	http://coccinelle.lip6.fr/distrib/
8
9
Lines 17-31 Link Here
17
		ocaml-pcre>=0:devel/ocaml-pcre
18
		ocaml-pcre>=0:devel/ocaml-pcre
18
LIB_DEPENDS=	libpcre.so:devel/pcre
19
LIB_DEPENDS=	libpcre.so:devel/pcre
19
20
20
USE_OCAML=	3.0+
21
USES=		gmake perl5 pkgconfig:build ocaml python tar:tgz
21
USE_OCAML_CAMLP4=yes
22
23
USES=		gmake perl5 pkgconfig:build python tar:tgz
24
USE_PERL5=	build
22
USE_PERL5=	build
23
USE_OCAML=	camlp4 findlib
25
GNU_CONFIGURE=	yes
24
GNU_CONFIGURE=	yes
26
CONFIGURE_ENV=	PYTHON="${PYTHON_CMD}" PYVER="${PYTHON_VER}"
25
CONFIGURE_ENV=	PYTHON="${PYTHON_CMD}" PYVER="${PYTHON_VER}"
27
MAKE_ARGS=	PYTHON_VERSION="${PYTHON_VER}"
26
MAKE_ARGS=	PYTHON_VERSION="${PYTHON_VER}"
28
27
28
IGNORE=		does not build: Required module Setcore is unavailable
29
29
post-install:
30
post-install:
30
	# FIXME: Stripping spatch(1) breaks the executable.
31
	# FIXME: Stripping spatch(1) breaks the executable.
31
	# ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/coccinelle/spatch
32
	# ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/coccinelle/spatch
(-)devel/frama-c/Makefile (-6 / +5 lines)
Lines 4-9 Link Here
4
PORTNAME=	frama-c
4
PORTNAME=	frama-c
5
DISTVERSIONPREFIX=	Silicon-
5
DISTVERSIONPREFIX=	Silicon-
6
DISTVERSION=	20161101
6
DISTVERSION=	20161101
7
PORTREVISION=	1
7
CATEGORIES=	devel lang
8
CATEGORIES=	devel lang
8
MASTER_SITES=	http://frama-c.com/download/
9
MASTER_SITES=	http://frama-c.com/download/
9
DIST_SUBDIR=	framac-01
10
DIST_SUBDIR=	framac-01
Lines 13-28 Link Here
13
14
14
LICENSE=	LGPL21
15
LICENSE=	LGPL21
15
16
16
BUILD_DEPENDS=	${LOCALBASE}/lib/ocaml/ocamlgraph/graph.a:math/ocaml-ocamlgraph \
17
BUILD_DEPENDS=	${LOCALBASE}/${OCAML_SITELIBDIR}/ocamlgraph/META:math/ocaml-ocamlgraph \
17
	    ${LOCALBASE}/lib/ocaml/site-lib/zarith/zarith.a:math/ocaml-zarith
18
	    ${LOCALBASE}/${OCAML_SITELIBDIR}/zarith/META:math/ocaml-zarith
18
RUN_DEPENDS=	${LOCALBASE}/lib/ocaml/ocamlgraph/graph.a:math/ocaml-ocamlgraph \
19
RUN_DEPENDS:=	${BUILD_DEPENDS}
19
	    ${LOCALBASE}/lib/ocaml/site-lib/zarith/zarith.a:math/ocaml-zarith
20
LIB_DEPENDS=	libgmp.so:math/gmp \
20
LIB_DEPENDS=	libgmp.so:math/gmp \
21
	    libfreetype.so:print/freetype2 \
21
	    libfreetype.so:print/freetype2 \
22
	    libfontconfig.so:x11-fonts/fontconfig
22
	    libfontconfig.so:x11-fonts/fontconfig
23
23
24
USES=		gettext-runtime gmake gnome localbase pathfix pkgconfig
24
USES=		gettext-runtime gmake gnome localbase ocaml pathfix pkgconfig
25
USE_OCAML=	yes
26
USE_GNOME=	atk cairo gdkpixbuf2 glib20 gtk20 gtksourceview2 \
25
USE_GNOME=	atk cairo gdkpixbuf2 glib20 gtk20 gtksourceview2 \
27
	    libartlgpl2 libgnomecanvas pango
26
	    libartlgpl2 libgnomecanvas pango
28
27
(-)devel/aifad/Makefile (-6 / +3 lines)
Lines 4-12 Link Here
4
PORTNAME=	aifad
4
PORTNAME=	aifad
5
PORTVERSION=	2.0.8
5
PORTVERSION=	2.0.8
6
DISTVERSIONPREFIX=	v
6
DISTVERSIONPREFIX=	v
7
PORTREVISION=	1
7
CATEGORIES=	devel
8
CATEGORIES=	devel
8
9
9
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	hrs@FreeBSD.org
10
COMMENT=	Machine learning system
11
COMMENT=	Machine learning system
11
12
12
LICENSE=	LGPL21+
13
LICENSE=	LGPL21+
Lines 17-31 Link Here
17
		ocaml-res>0:devel/ocaml-res
18
		ocaml-res>0:devel/ocaml-res
18
LIB_DEPENDS=	libpcre.so:devel/pcre
19
LIB_DEPENDS=	libpcre.so:devel/pcre
19
20
21
USES=		ocaml:build
20
USE_GITHUB=	yes
22
USE_GITHUB=	yes
21
GH_ACCOUNT=	mmottl
23
GH_ACCOUNT=	mmottl
22
23
USE_OCAML=	yes
24
NO_OCAML_RUNDEPENDS=yes
25
26
HAS_CONFIGURE=	yes
24
HAS_CONFIGURE=	yes
27
CONFIGURE_ARGS=	--prefix ${STAGEDIR}${PREFIX}
25
CONFIGURE_ARGS=	--prefix ${STAGEDIR}${PREFIX}
28
29
PORTDOCS=	AUTHORS.txt CHANGES.txt README.md TODO.md
26
PORTDOCS=	AUTHORS.txt CHANGES.txt README.md TODO.md
30
PORTEXAMPLES=	*
27
PORTEXAMPLES=	*
31
PLIST_FILES=	bin/aifad
28
PLIST_FILES=	bin/aifad
(-)devel/monotone-viz/Makefile (-4 / +3 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	monotone-viz
4
PORTNAME=	monotone-viz
5
PORTVERSION=	1.0.2
5
PORTVERSION=	1.0.2
6
PORTREVISION=	7
6
PORTREVISION=	8
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://oandrieu.nerim.net/monotone-viz/
8
MASTER_SITES=	http://oandrieu.nerim.net/monotone-viz/
9
9
Lines 24-32 Link Here
24
		bash:shells/bash \
24
		bash:shells/bash \
25
		lablgtk2:x11-toolkits/ocaml-lablgtk2
25
		lablgtk2:x11-toolkits/ocaml-lablgtk2
26
26
27
USES=		gmake
27
USES=		gmake ocaml
28
USE_OCAML=	yes
28
USE_OCAML=	camlp4
29
USE_OCAML_CAMLP4=yes
30
GNU_CONFIGURE=	yes
29
GNU_CONFIGURE=	yes
31
CONFIGURE_ARGS=	--without-local-lablgtk
30
CONFIGURE_ARGS=	--without-local-lablgtk
32
31
(-)devel/cil/Makefile (-5 / +4 lines)
Lines 3-13 Link Here
3
3
4
PORTNAME=	cil
4
PORTNAME=	cil
5
PORTVERSION=	1.7.3
5
PORTVERSION=	1.7.3
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	devel lang
7
CATEGORIES=	devel lang
8
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}
8
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}
9
9
10
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	Infrastructure for C Program Analysis and Transformation
11
COMMENT=	Infrastructure for C Program Analysis and Transformation
12
12
13
LICENSE=	BSD3CLAUSE
13
LICENSE=	BSD3CLAUSE
Lines 16-24 Link Here
16
CONFLICTS=	ccured-[0-9]*
16
CONFLICTS=	ccured-[0-9]*
17
17
18
ONLY_FOR_ARCHS=	i386 amd64
18
ONLY_FOR_ARCHS=	i386 amd64
19
USES=		gmake perl5
19
USES=		gmake ocaml perl5
20
USE_OCAML=	yes
20
USE_OCAML=	findlib
21
USE_OCAML_FINDLIB=	yes
22
OCAML_PKGDIRS=
21
OCAML_PKGDIRS=
23
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
24
MAKE_JOBS_UNSAFE=yes
23
MAKE_JOBS_UNSAFE=yes
(-)devel/omake/Makefile (-5 / +3 lines)
Lines 3-23 Link Here
3
3
4
PORTNAME=	omake
4
PORTNAME=	omake
5
DISTVERSION=	0.9.8.6-0.rc1
5
DISTVERSION=	0.9.8.6-0.rc1
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://pkgs.fedoraproject.org/repo/pkgs/ocaml-omake/omake-0.9.8.6-0.rc1.tar.gz/fe39a476ef4e33b7ba2ca77a6bcaded2/ \
8
MASTER_SITES=	http://pkgs.fedoraproject.org/repo/pkgs/ocaml-omake/omake-0.9.8.6-0.rc1.tar.gz/fe39a476ef4e33b7ba2ca77a6bcaded2/ \
9
		http://download.camlcity.org/download/
9
		http://download.camlcity.org/download/
10
10
11
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
12
COMMENT=	Flexible build system
12
COMMENT=	Flexible build system
13
13
14
LICENSE=	GPLv2
14
LICENSE=	GPLv2
15
LICENSE_FILE=	${WRKSRC}/LICENSE
15
LICENSE_FILE=	${WRKSRC}/LICENSE
16
16
17
USES=		ncurses ocaml:build readline
17
WRKSRC=		${WRKDIR}/${PORTNAME}-${DISTVERSION:C|-.*||}
18
WRKSRC=		${WRKDIR}/${PORTNAME}-${DISTVERSION:C|-.*||}
18
USE_OCAML=	yes
19
NO_OCAML_RUNDEPENDS=yes
20
USES=		ncurses readline
21
MAKE_ENV=	INSTALL_ROOT=${STAGEDIR}
19
MAKE_ENV=	INSTALL_ROOT=${STAGEDIR}
22
MAKE_JOBS_UNSAFE=	yes
20
MAKE_JOBS_UNSAFE=	yes
23
21
(-)deskutils/wyrd/Makefile (-4 / +3 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	wyrd
4
PORTNAME=	wyrd
5
PORTVERSION=	1.4.6
5
PORTVERSION=	1.4.6
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	deskutils
7
CATEGORIES=	deskutils
8
MASTER_SITES=	http://pessimization.com/software/wyrd/
8
MASTER_SITES=	http://pessimization.com/software/wyrd/
9
9
Lines 14-22 Link Here
14
14
15
RUN_DEPENDS=	remind:deskutils/remind
15
RUN_DEPENDS=	remind:deskutils/remind
16
16
17
USES=		gmake ncurses
17
USES=		gmake ncurses ocaml
18
USE_OCAML=	yes
18
USE_OCAML=	camlp4
19
USE_OCAML_CAMLP4=yes
20
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
21
20
22
CONFIGURE_ARGS= CPPFLAGS="${CFLAGS}"
21
CONFIGURE_ARGS= CPPFLAGS="${CFLAGS}"
(-)deskutils/semantik/Makefile (-3 / +2 lines)
Lines 2-7 Link Here
2
2
3
PORTNAME=	semantik
3
PORTNAME=	semantik
4
PORTVERSION=	0.9.5
4
PORTVERSION=	0.9.5
5
PORTREVISION=	1
5
CATEGORIES=	deskutils kde
6
CATEGORIES=	deskutils kde
6
MASTER_SITES=	http://ftp.waf.io/pub/release/ \
7
MASTER_SITES=	http://ftp.waf.io/pub/release/ \
7
		http://www.freehackers.org/~tnagy/release/
8
		http://www.freehackers.org/~tnagy/release/
Lines 11-21 Link Here
11
12
12
LICENSE=	GPLv3
13
LICENSE=	GPLv3
13
14
14
USES=		kde:4 pkgconfig python:2 shebangfix tar:bzip2 waf \
15
USES=		kde:4 pkgconfig python:2 shebangfix ocaml:build tar:bzip2 waf \
15
		gettext shared-mime-info
16
		gettext shared-mime-info
16
USE_KDE=	kdelibs
17
USE_KDE=	kdelibs
17
USE_OCAML=	yes
18
NO_OCAML_RUNDEPENDS=	yes
19
USE_QT4=	corelib gui linguist_build svg webkit xml \
18
USE_QT4=	corelib gui linguist_build svg webkit xml \
20
		moc_build qmake_build uic_build
19
		moc_build qmake_build uic_build
21
QT_NONSTANDARD=	yes
20
QT_NONSTANDARD=	yes
(-)net/unison/Makefile (-3 / +1 lines)
Lines 16-25 Link Here
16
LICENSE=	GPLv3
16
LICENSE=	GPLv3
17
17
18
PLIST_SUB=	PORTVERSION=${PORTVERSION}
18
PLIST_SUB=	PORTVERSION=${PORTVERSION}
19
USES=		gmake localbase
19
USES=		gmake localbase ocaml:build
20
USE_OCAML=	yes
21
WRKSRC=		${WRKDIR}/src
20
WRKSRC=		${WRKDIR}/src
22
NO_OCAML_RUNDEPENDS=yes
23
WANT_GNOME=	yes
21
WANT_GNOME=	yes
24
CONFLICTS?=	unison-devel-[0-9]* unison-nox11-[0-9]*
22
CONFLICTS?=	unison-devel-[0-9]* unison-nox11-[0-9]*
25
MAKE_ENV=	CLIBS="${LIBS:S/^-/-ccopt -/}" COFLAGS="${CFLAGS:C/ *(-[^ ]*) */ -ccopt \"\1 \"/gW}"
23
MAKE_ENV=	CLIBS="${LIBS:S/^-/-ccopt -/}" COFLAGS="${CFLAGS:C/ *(-[^ ]*) */ -ccopt \"\1 \"/gW}"
(-)net/unison-devel/Makefile (-3 / +1 lines)
Lines 20-28 Link Here
20
LICENSE=	GPLv3
20
LICENSE=	GPLv3
21
21
22
PLIST_SUB=	PORTVERSION=${PORTVERSION}
22
PLIST_SUB=	PORTVERSION=${PORTVERSION}
23
USES=		gmake
23
USES=		gmake ocaml:build
24
USE_OCAML=	yes
25
NO_OCAML_RUNDEPENDS=yes
26
WANT_GNOME=	yes
24
WANT_GNOME=	yes
27
MAKE_ARGS=	CFLAGS=""
25
MAKE_ARGS=	CFLAGS=""
28
CONFLICTS=	unison-[0-9]* unison-nox11-[0-9]*
26
CONFLICTS=	unison-[0-9]* unison-nox11-[0-9]*
(-)net/unison232/Makefile (-3 / +1 lines)
Lines 18-26 Link Here
18
LICENSE=	GPLv3
18
LICENSE=	GPLv3
19
19
20
PLIST_SUB=	PORTVERSION=${PORTVERSION}
20
PLIST_SUB=	PORTVERSION=${PORTVERSION}
21
USES=		gmake
21
USES=		gmake ocaml:build
22
USE_OCAML=	yes
23
NO_OCAML_RUNDEPENDS=yes
24
WANT_GNOME=	yes
22
WANT_GNOME=	yes
25
MAKE_ARGS=	CFLAGS=""
23
MAKE_ARGS=	CFLAGS=""
26
24
(-)net/unison240/Makefile (-4 / +2 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	unison
4
PORTNAME=	unison
5
PORTVERSION=	2.40.128
5
PORTVERSION=	2.40.128
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	net
7
CATEGORIES=	net
8
MASTER_SITES=	http://www.cis.upenn.edu/~bcpierce/unison/download/releases/${DISTNAME}/
8
MASTER_SITES=	http://www.cis.upenn.edu/~bcpierce/unison/download/releases/${DISTNAME}/
9
PKGNAMESUFFIX=	240
9
PKGNAMESUFFIX=	240
Lines 17-25 Link Here
17
LICENSE=	GPLv3
17
LICENSE=	GPLv3
18
18
19
PLIST_SUB=	PORTVERSION=${PORTVERSION}
19
PLIST_SUB=	PORTVERSION=${PORTVERSION}
20
USES=		gmake
20
USES=		gmake ocaml:build
21
USE_OCAML=	yes
22
NO_OCAML_RUNDEPENDS=yes
23
WANT_GNOME=	yes
21
WANT_GNOME=	yes
24
MAKE_ARGS=	CFLAGS=""
22
MAKE_ARGS=	CFLAGS=""
25
23
(-)net/unison240/files/patch-system_system__generic.ml (+11 lines)
Line 0 Link Here
1
--- system/system_generic.ml.orig	2010-04-15 17:29:31 UTC
2
+++ system/system_generic.ml
3
@@ -57,7 +57,7 @@ let opendir f =
4
 let readdir = Unix.readdir
5
 let closedir = Unix.closedir
6
 let readlink = Unix.readlink
7
-let symlink = Unix.symlink
8
+let symlink s1 s2 = Unix.symlink s1 s2
9
 let chdir = Sys.chdir
10
 let getcwd = Sys.getcwd
11
 
(-)sysutils/ledit/Makefile (-4 / +3 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	ledit
4
PORTNAME=	ledit
5
PORTVERSION=	2.03
5
PORTVERSION=	2.03
6
PORTREVISION=	1
6
CATEGORIES=	sysutils
7
CATEGORIES=	sysutils
7
MASTER_SITES=	http://cristal.inria.fr/%SUBDIR%/ \
8
MASTER_SITES=	http://cristal.inria.fr/%SUBDIR%/ \
8
		http://pauillac.inria.fr/%SUBDIR%/
9
		http://pauillac.inria.fr/%SUBDIR%/
Lines 14-24 Link Here
14
LICENSE=	BSD3CLAUSE
15
LICENSE=	BSD3CLAUSE
15
LICENSE_FILE=	${WRKSRC}/LICENSE
16
LICENSE_FILE=	${WRKSRC}/LICENSE
16
17
17
BUILD_DEPENDS=	camlp5r:devel/ocaml-camlp5
18
USES=		gmake ocaml tar:tgz
19
USE_OCAML=	camlp5
18
20
19
USES=		gmake tar:tgz
20
USE_OCAML=	yes
21
22
ALL_TARGET=	all ledit.opt
21
ALL_TARGET=	all ledit.opt
23
MAKE_JOBS_UNSAFE=	yes
22
MAKE_JOBS_UNSAFE=	yes
24
23
(-)devel/ocaml-sexplib/Makefile (-15 / +13 lines)
Lines 2-13 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	sexplib
4
PORTNAME=	sexplib
5
PORTVERSION=	113.00.00
5
PORTVERSION=	113.33.00
6
DISTVERSIONSUFFIX=	+4.03
7
CATEGORIES=	devel
6
MASTER_SITES=	https://ocaml.janestreet.com/ocaml-core/${PORTVERSION:R}/files/
8
MASTER_SITES=	https://ocaml.janestreet.com/ocaml-core/${PORTVERSION:R}/files/
7
CATEGORIES=	devel
8
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
9
10
10
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	OCaml library for working with S-expressions
12
COMMENT=	OCaml library for working with S-expressions
12
13
13
LICENSE=	APACHE20 BSD3CLAUSE
14
LICENSE=	APACHE20 BSD3CLAUSE
Lines 18-43 Link Here
18
BUILD_DEPENDS=	ocaml-type_conv>=0:devel/ocaml-type_conv
19
BUILD_DEPENDS=	ocaml-type_conv>=0:devel/ocaml-type_conv
19
RUN_DEPENDS=	ocaml-type_conv>=0:devel/ocaml-type_conv
20
RUN_DEPENDS=	ocaml-type_conv>=0:devel/ocaml-type_conv
20
21
21
OPTIONS_DEFINE=	DOCS
22
USES=		gmake ocaml
22
23
USE_OCAML=	findlib:plist camlp4
24
OCAML_PKGDIRS=	${PORTNAME} ${PORTNAME}_num ${PORTNAME}_unix
25
HAS_CONFIGURE=	yes
23
CONFIGURE_ARGS=	--disable-docs --prefix ${PREFIX}
26
CONFIGURE_ARGS=	--disable-docs --prefix ${PREFIX}
24
HAS_CONFIGURE=	yes
25
MAKE_JOBS_UNSAFE=	yes
27
MAKE_JOBS_UNSAFE=	yes
26
USE_OCAML=	yes
27
USE_OCAML_FINDLIB=	yes
28
USE_OCAML_CAMLP4=	yes
29
USE_OCAMLFIND_PLIST=	yes
30
USES=		gmake
31
32
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
28
DOCSDIR=	${OCAML_DOCSDIR}/${PORTNAME}
33
OCAML_PKGDIRS=	${PORTNAME} ${PORTNAME}_num ${PORTNAME}_unix
34
PORTDOCS=	*
29
PORTDOCS=	*
35
30
31
OPTIONS_DEFINE=	DOCS
32
36
post-install:
33
post-install:
37
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/sexplib*/*.cmxs
34
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/sexplib*/*.cmxs
38
35
39
post-install-DOCS-on:
36
post-install-DOCS-on:
40
	${MKDIR} ${STAGEDIR}${DOCSDIR}/
37
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
41
	cd ${WRKSRC}/ && ${INSTALL_DATA} CHANGES.md README.md ${STAGEDIR}${DOCSDIR}/
38
	cd ${WRKSRC}/ && ${INSTALL_DATA} \
39
	    CHANGES.md README.org ${STAGEDIR}${DOCSDIR}
42
40
43
.include <bsd.port.mk>
41
.include <bsd.port.mk>
(-)devel/ocaml-sexplib/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (sexplib-113.00.00.tar.gz) = df91f1b4aae3936856cbb00a621a2c40f6b56c06670e1513b2b60698ab8240e4
1
TIMESTAMP = 1488724873
2
SIZE (sexplib-113.00.00.tar.gz) = 136960
2
SHA256 (sexplib-113.33.00+4.03.tar.gz) = 83de1e9f1c10e5d65d30ef78cf45ddec7dd7ae759fedf001aae80ffd546e39b6
3
SIZE (sexplib-113.33.00+4.03.tar.gz) = 115878
(-)devel/ocaml-sexplib/files/patch-Makefile (+11 lines)
Line 0 Link Here
1
--- Makefile.orig	2017-04-01 19:16:57 UTC
2
+++ Makefile
3
@@ -29,7 +29,7 @@ $(NAME).install: js-utils/gen_install.ml
4
 	ocaml -I js-utils js-utils/gen_install.ml
5
 
6
 install: $(NAME).install
7
-	opam-installer -i --prefix $(PREFIX) $(NAME).install
8
+	ocaml setup.ml -install
9
 
10
 uninstall: $(NAME).install
11
 	opam-installer -u --prefix $(PREFIX) $(NAME).install
(-)devel/ocaml-cudf/Makefile (+27 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	cudf
4
PORTVERSION=	0.8
5
CATEGORIES=	devel
6
MASTER_SITES=	https://gforge.inria.fr/frs/download.php/file/34659/
7
PKGNAMEPREFIX=	ocaml-
8
9
MAINTAINER=	hrs@FreeBSD.org
10
COMMENT=	CUDF (Common Upgradeability Description Format) library
11
12
LICENSE=	LGPL3+
13
14
BUILD_DEPENDS=	${LOCALBASE}/${OCAML_SITELIBDIR}/extlib/META:devel/ocaml-extlib \
15
		${LOCALBASE}/${OCAML_SITELIBDIR}/oUnit/META:devel/ocaml-ounit
16
RUN_DEPENDS:=	${BUILD_DEPENDS}
17
18
USES=		gmake ocaml
19
USE_OCAML=	findlib:plist camlp4 ldconfig
20
ALL_TARGET=	all opt
21
PLIST_FILES=	bin/cudf-check bin/cudf-parse-822
22
23
post-install:
24
	cd ${STAGEDIR}${PREFIX} && ${STRIP_CMD} \
25
	    bin/cudf-check bin/cudf-parse-822
26
27
.include <bsd.port.mk>
(-)devel/ocaml-cudf/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1491075679
2
SHA256 (cudf-0.8.tar.gz) = 06f8ce019c87893e27d545b5cf8dc38041657a4c4856c02be4e99e8175874229
3
SIZE (cudf-0.8.tar.gz) = 55147
(-)devel/ocaml-cudf/files/patch-Makefile (+26 lines)
Line 0 Link Here
1
--- Makefile.orig	2015-03-30 17:37:15 UTC
2
+++ Makefile
3
@@ -18,13 +18,8 @@ OCAMLBUILD = ocamlbuild
4
 OBFLAGS =
5
 OCAMLFIND = ocamlfind
6
 
7
-ifeq ($(DESTDIR),)
8
 INSTALL = $(OCAMLFIND) install
9
 UNINSTALL = $(OCAMLFIND) remove
10
-else
11
-INSTALL = $(OCAMLFIND) install -destdir $(DESTDIR)/$(OCAMLLIBDIR)
12
-UNINSTALL = $(OCAMLFIND) remove -destdir $(DESTDIR)/$(OCAMLLIBDIR)
13
-endif
14
 
15
 DIST_DIR = $(NAME)-$(VERSION)
16
 DIST_TARBALL = $(DIST_DIR).tar.gz
17
@@ -79,9 +74,7 @@ INSTALL_STUFF += $(wildcard _build/cudf_
18
 INSTALL_STUFF += $(wildcard _build/cudf.o _build/cudf.cmx _build/cudf.cmi)
19
 
20
 install:
21
-	test -d $(DESTDIR)/$(OCAMLLIBDIR) || mkdir -p $(DESTDIR)/$(OCAMLLIBDIR)
22
 	$(INSTALL) -patch-version $(VERSION) $(NAME) $(INSTALL_STUFF)
23
-	test -d $(DESTDIR)/$(BINDIR) || mkdir -p $(DESTDIR)/$(BINDIR)
24
 	for p in $(notdir $(PROGS)) ; do \
25
 		tgt=`echo $$p | sed -e 's/^main.//' -e 's/_/-/g'` ; \
26
 		if [ -f _build/$$p.native ] ; then \
(-)devel/ocaml-cudf/files/patch-Makefile.config (+16 lines)
Line 0 Link Here
1
--- Makefile.config.orig	2015-03-30 17:37:15 UTC
2
+++ Makefile.config
3
@@ -4,8 +4,8 @@ export DESTDIR =
4
 
5
 # all the following variables will be prepended by $(DESTDIR) upon install
6
 
7
-export OCAMLLIBDIR := $(shell ocamlc -where)
8
-export BINDIR  = /usr/bin
9
-export LIBDIR = /usr/lib
10
-export INCDIR = /usr/include
11
-export PCDIR   = $(LIBDIR)/pkgconfig
12
+export OCAMLLIBDIR := $(shell ocamlfind printconf destdir)
13
+export BINDIR  = ${LOCALBASE}/bin
14
+export LIBDIR = ${LOCALBASE}/lib
15
+export INCDIR = ${LOCALBASE}/include
16
+export PCDIR   = ${LOCALBASE}/libdata/pkgconfig
(-)devel/ocaml-cudf/pkg-descr (+4 lines)
Line 0 Link Here
1
libCUDF is a library to manipulate so called CUDF documents. A CUDF
2
(Common Upgradeability Description Format) document describes an
3
"upgrade scenario", as faced by package managers in popular
4
package-based FOSS (Free and Open Source Software) distributions.
(-)devel/ocaml-dose3/Makefile (+35 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	dose3
4
PORTVERSION=	5.0.1
5
CATEGORIES=	devel
6
MASTER_SITES=	https://gforge.inria.fr/frs/download.php/file/35957/
7
PKGNAMEPREFIX=	ocaml-
8
DISTNAME=	${PORTNAME}-5.0~rc2
9
10
MAINTAINER=	hrs@FreeBSD.org
11
COMMENT=	Dependency toolkit
12
13
LICENSE=	LGPL3+
14
15
BUILD_DEPENDS=	${LOCALBASE}/${OCAML_SITELIBDIR}/extlib/META:devel/ocaml-extlib \
16
		${LOCALBASE}/${OCAML_SITELIBDIR}/ocamlgraph/META:math/ocaml-ocamlgraph \
17
		${LOCALBASE}/${OCAML_SITELIBDIR}/cudf/META:devel/ocaml-cudf \
18
		${LOCALBASE}/${OCAML_SITELIBDIR}/re/META:devel/ocaml-re \
19
		cppo:devel/ocaml-cppo
20
RUN_DEPENDS:=	${BUILD_DEPENDS}
21
22
USES=		gmake ocaml perl5
23
USE_OCAML=	findlib:plist
24
USE_PERL5=	build
25
GNU_CONFIGURE=	yes
26
MAKE_JOBS_UNSAFE=	yes
27
PLIST_FILES=	bin/apt-cudf bin/ceve bin/challenged \
28
		bin/deb-buildcheck bin/deb-coinstall \
29
		bin/debcheck bin/distcheck bin/eclipsecheck \
30
		bin/outdated bin/rpmcheck
31
32
post-install:
33
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/*.cmxs
34
35
.include <bsd.port.mk>
(-)devel/ocaml-dose3/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1491076873
2
SHA256 (dose3-5.0~rc2.tar.gz) = c7ff6f13f95f7aa5ded8f2fe273cea5f47399b7a4ed7d4537b309a5fc9b676a4
3
SIZE (dose3-5.0~rc2.tar.gz) = 297350
(-)devel/ocaml-dose3/files/patch-Makefile (+24 lines)
Line 0 Link Here
1
--- Makefile.orig	2016-06-15 10:23:22 UTC
2
+++ Makefile
3
@@ -230,8 +230,6 @@ exclude_cudf = $(wildcard _build/doselib
4
 INSTALL_STUFF = $(filter-out $(exclude_cudf), $(INSTALL_STUFF_))
5
 
6
 installlib: META installcudf
7
-	@test -d $(LIBDIR) || mkdir -p $(LIBDIR)
8
-	@test -d $(LIBDIR)/stublibs || mkdir -p $(LIBDIR)/stublibs
9
 	@$(INSTALL) -patch-version $(VERSION) $(NAME) $(INSTALL_STUFF)
10
 	@echo "Install dose librairies to $(LIBDIR)"
11
 
12
@@ -241,9 +239,9 @@ install: installlib
13
 	for f in $$(ls *.$(OCAMLEXT)) ; do \
14
 		install $(INSTALLOPTS) $$f $(BINDIR)/$${f%.$(OCAMLEXT)}$(EXE) ; \
15
 	done
16
-	@$(LN) $(BINDIR)/distcheck $(BINDIR)/debcheck$(EXE)
17
-	@$(LN) $(BINDIR)/distcheck $(BINDIR)/rpmcheck$(EXE)
18
-	@$(LN) $(BINDIR)/distcheck $(BINDIR)/eclipsecheck$(EXE)
19
+	cd $(BINDIR) && $(LN) distcheck debcheck$(EXE)
20
+	cd $(BINDIR) && $(LN) distcheck rpmcheck$(EXE)
21
+	cd $(BINDIR) && $(LN) distcheck eclipsecheck$(EXE)
22
 	@echo "Install dose binaries to $(BINDIR)"
23
 
24
 uninstalllib:
(-)devel/ocaml-dose3/files/patch-Makefile.config.in (+19 lines)
Line 0 Link Here
1
--- Makefile.config.in.orig	2016-06-15 10:23:22 UTC
2
+++ Makefile.config.in
3
@@ -25,12 +25,12 @@ endif
4
 # if DESTDIR is specified, we ignore the prefix and we use the 
5
 # default debian location
6
 ifneq ($(DESTDIR),)
7
-  BINDIR = $(DESTDIR)@bindir@
8
-  LIBDIR = $(DESTDIR)@libdir@/ocaml
9
+  BINDIR = $(DESTDIR)@prefix@@bindir@
10
+  LIBDIR = $(DESTDIR)$(shell ocamlfind printconf destdir)
11
 endif
12
 
13
-INSTALL=$(OCAMLFIND) install -destdir $(LIBDIR)
14
-UNINSTALL=$(OCAMLFIND) remove -destdir $(LIBDIR)
15
+INSTALL=$(OCAMLFIND) install
16
+UNINSTALL=$(OCAMLFIND) remove
17
 
18
 printconf:
19
 	@echo
(-)devel/ocaml-dose3/files/patch-algo_dominators.ml (+14 lines)
Line 0 Link Here
1
--- algo/dominators.ml.orig	2017-04-01 20:53:42 UTC
2
+++ algo/dominators.ml
3
@@ -101,11 +101,7 @@ let dominators_tarjan graph =
4
   ) graph;
5
 
6
   Util.Timer.start tjntimer;
7
-#if OCAMLGRAPHVERSION <= 186
8
   let module Dom = Dominator.Make_graph(G) in
9
-#else
10
-  let module Dom = Dominator.Make(G) in
11
-#endif
12
   let idom = Dom.compute_all graph start_pkg in
13
   let domgr = idom.Dom.dom_graph () in
14
   Util.Timer.stop tjntimer ();
(-)devel/ocaml-dose3/files/patch-configure (+8 lines)
Line 0 Link Here
1
--- configure.orig	2016-06-15 10:23:22 UTC
2
+++ configure
3
@@ -6554,4 +6554,4 @@ $as_echo "$as_me: WARNING: unrecognized 
4
 fi
5
 
6
 
7
-make printconf
8
+gmake printconf
(-)devel/ocaml-dose3/files/patch-deb_debian.mlpack (+10 lines)
Line 0 Link Here
1
--- deb/debian.mlpack.orig	2016-06-15 10:23:22 UTC
2
+++ deb/debian.mlpack
3
@@ -1,6 +1,7 @@
4
 Packages
5
 Apt
6
 Sources
7
+Version
8
 Debcudf
9
 Release
10
 Architecture
(-)devel/ocaml-dose3/files/patch-deb_version.ml (+245 lines)
Line 0 Link Here
1
--- deb/version.ml.orig	2017-04-01 20:53:10 UTC
2
+++ deb/version.ml
3
@@ -0,0 +1,242 @@
4
+(******************************************************************************)
5
+(*  This file is part of the Dose library http://www.irill.org/software/dose  *)
6
+(*                                                                            *)
7
+(*  Copyright (C) 2011 Ralf Treinen <ralf.treinen@pps.jussieu.fr>             *)
8
+(*                                                                            *)
9
+(*  This library is free software: you can redistribute it and/or modify      *)
10
+(*  it under the terms of the GNU Lesser General Public License as            *)
11
+(*  published by the Free Software Foundation, either version 3 of the        *)
12
+(*  License, or (at your option) any later version.  A special linking        *)
13
+(*  exception to the GNU Lesser General Public License applies to this        *)
14
+(*  library, see the COPYING file for more information.                       *)
15
+(*                                                                            *)
16
+(*  Work developed with the support of the Mancoosi Project                   *)
17
+(*  http://www.mancoosi.org                                                   *)
18
+(*                                                                            *)
19
+(******************************************************************************)
20
+
21
+open Common
22
+module Pcre = Re_pcre
23
+
24
+let is_digit = function
25
+  | '0'..'9' -> true
26
+  | _ -> false
27
+;;
28
+
29
+(* [skip_while_from i f w m] yields the index of the leftmost character
30
+ * in the string [s], starting from [i], end ending at  [m], that does 
31
+ * not satisfy the predicate [f], or [length w] if no such index exists.  *)
32
+let skip_while_from i f w m =
33
+  let rec loop i =
34
+    if i = m then i
35
+    else if f w.[i] then loop (i + 1) else i
36
+  in loop i
37
+;;
38
+
39
+(* splits a version into (epoch,rest), without the separating ':'. The
40
+ * epoch is delimited by the leftmost occurrence of ':' in x, and is ""
41
+ * in case there is no ':' in x.  *)
42
+let extract_epoch x =
43
+  try
44
+    let ci = String.index x ':' in
45
+    let epoch = String.sub x 0 ci
46
+    and rest = String.sub x (ci + 1) (String.length x - ci - 1)
47
+    in (epoch,rest)
48
+  with
49
+    | Not_found -> ("",x)
50
+;;
51
+
52
+(* splits a version into (prefix,revision). The revision starts on the
53
+ * right-most occurrence of '-', or is empty in case the version does
54
+ * not contain '-'.  *)
55
+let extract_revision x =
56
+  try
57
+    let di = String.rindex x '-' in
58
+    let before = String.sub x 0 di in
59
+    let after = String.sub x (di+1) (String.length x - di -1) in
60
+    (before,after)
61
+  with
62
+    | Not_found -> (x,"")
63
+;;
64
+
65
+(* character comparison uses a modified character ordering: '~' first,
66
+   then letters, then anything else *)
67
+let compare_chars c1 c2 = match c1 with
68
+  | '~' -> (match c2 with
69
+      | '~' -> 0
70
+      | _ -> -1)
71
+  | 'a'..'z'|'A'..'Z' -> (match c2 with
72
+      | '~' -> 1
73
+      | 'a'..'z'|'A'..'Z' -> Char.compare c1 c2
74
+      | _ -> -1)
75
+  | _ -> (match c2 with
76
+      | '~'|'a'..'z'|'A'..'Z' -> 1
77
+      | _ -> Char.compare c1 c2)
78
+;;
79
+
80
+(* return the first index of x, starting from xi, of a nun-null
81
+ * character in x.  or (length x) in case x contains only 0's starting
82
+ * from xi on.  *)
83
+let skip_zeros x xi xl = skip_while_from xi (fun c -> c = '0') x xl;;
84
+
85
+(* compare versions chunks, that is parts of version strings that are
86
+ * epoch, upstream version, or revisision. Alternates string comparison
87
+ * and numerical comaprison.  *)
88
+let compare_chunks x y =
89
+  (* x and y may be empty *)
90
+  let xl = String.length x
91
+  and yl = String.length y
92
+  in
93
+  let rec loop_lexical xi yi =
94
+    assert (xi <= xl && yi <= yl);
95
+    match (xi=xl,yi=yl) with (* which of x and y is exhausted? *)
96
+      | true,true -> 0 
97
+      | true,false -> 
98
+	(* if y continues numerically than we have to continue by
99
+	 * comparing numerically. In this case the x part is
100
+	 * interpreted as 0 (since empty). If the y part consists
101
+	 * only of 0's then both parts are equal, otherwise the y
102
+	 * part is larger. If y continues non-numerically then y is
103
+	 * larger anyway, so we only have to skip 0's in the y part
104
+	 * and check whether this exhausts the y part.  *)
105
+	let ys = skip_zeros y yi yl in
106
+	if ys = yl then 0 else if y.[ys]='~' then 1 else -1
107
+      | false,true -> (* symmetric to the preceding case *)
108
+	let xs = skip_zeros x xi xl in
109
+	if xs = xl then 0 else if x.[xs]='~' then -1 else 1
110
+      | false,false -> (* which of x and y continues numerically? *)
111
+	match (is_digit x.[xi], is_digit y.[yi]) with 
112
+	  | true,true ->
113
+	    (* both continue numerically. Skip leading zeros in the
114
+	     * remaining parts, and then continue by
115
+	     * comparing numerically. *)
116
+	    compare_numerical (skip_zeros x xi xl) (skip_zeros y yi yl)
117
+	  | true,false -> (* '~' is smaller than any numeric part *)
118
+	    if y.[yi]='~' then 1 else -1
119
+	  | false,true -> (* '~' is smaller than any numeric part *)
120
+	    if x.[xi]='~' then -1 else 1
121
+	  | false,false -> (* continue comparing lexically *)
122
+	    let comp = compare_chars x.[xi] y.[yi]
123
+	    in if comp = 0 then loop_lexical (xi+1) (yi+1) else comp
124
+  and compare_numerical xi yi =
125
+    assert (xi = xl || (xi < xl && x.[xi] <> '0'));
126
+    (* leading zeros have been stripped *) 
127
+    assert (yi = yl || (yi < yl && y.[yi] <> '0'));
128
+    (* leading zeros have been stripped *) 
129
+    let xn = skip_while_from xi is_digit x xl (* length of numerical part *)
130
+    and yn = skip_while_from yi is_digit y yl (* length of numerical part *)
131
+    in 
132
+    let comp = compare (xn-xi) (yn-yi)
133
+    in if comp = 0
134
+      then (* both numerical parts have same length: compare digit by digit *)
135
+	loop_numerical xi yi yn
136
+      else
137
+	(* if one numerical part is longer than the other we have found the
138
+	 * answer since leading 0 have been striped when switching
139
+	 * to numerical comparison.  *)
140
+	comp
141
+  and loop_numerical xi yi yn =
142
+    assert (xi <= xl && yi <= yn && yn <= yl);
143
+    (* invariant: the two numerical parts that remain to compare are
144
+       of the same length *)
145
+    if yi=yn
146
+    then
147
+      (* both numerical parts are exhausted, we switch to lexical
148
+	 comparison *)
149
+      loop_lexical xi yi
150
+    else
151
+      (* both numerical parts are not exhausted, we continue comparing
152
+	 digit by digit *)
153
+      let comp = Char.compare x.[xi] y.[yi] 
154
+      in if comp = 0 then loop_numerical (xi+1) (yi+1) yn else comp
155
+  in loop_lexical 0 0
156
+;;
157
+
158
+let compare (x : string) (y : string) =
159
+  let normalize_comp_result x = if x=0 then 0 else if x < 0 then -1 else 1
160
+  in
161
+  if x = y then 0
162
+  else
163
+    let (e1,rest1) = extract_epoch x 
164
+    and (e2,rest2) = extract_epoch y in
165
+    let e_comp = compare_chunks e1 e2 in 
166
+    if e_comp <> 0 then normalize_comp_result e_comp
167
+    else
168
+      let (u1,r1) = extract_revision rest1
169
+      and (u2,r2) = extract_revision rest2 in
170
+      let u_comp = compare_chunks u1 u2 in
171
+      if u_comp <> 0 then normalize_comp_result u_comp
172
+      else normalize_comp_result (compare_chunks r1 r2)
173
+;;
174
+
175
+let equal (x : string) (y : string) =
176
+  if x = y then true else (compare x y) = 0
177
+;;
178
+
179
+(************** splitting and recomposing version strings *******************)
180
+
181
+type version_analysis =
182
+  | Native of string*string*string
183
+    (* epoch,upstream,binnmu *)
184
+  | NonNative of string*string*string*string
185
+    (* epoch,upstream,revision,binnmu *)
186
+;;
187
+
188
+let binnmu_regexp = Pcre.regexp "^(.*)\\+(b[\\d]+)$" ;;
189
+let extract_binnmu v =
190
+  try
191
+    let subs = Pcre.extract ~rex:binnmu_regexp v
192
+    in (subs.(1),subs.(2))
193
+  with Not_found -> (v,"")
194
+;;
195
+
196
+let decompose v =
197
+  let epoch,rest = extract_epoch v in
198
+  let upstream_complete,revision_complete = extract_revision rest in
199
+  if revision_complete = ""
200
+  then let upstream,binnmu = extract_binnmu upstream_complete in
201
+       Native(epoch,upstream,binnmu)
202
+  else let revision,binnmu = extract_binnmu revision_complete in
203
+       NonNative(epoch,upstream_complete,revision,binnmu)
204
+;;
205
+
206
+let compose = function 
207
+  | Native("",upstream,"") -> upstream
208
+  | Native(epoch,upstream,"") -> epoch^":"^upstream
209
+  | Native("",upstream,binnmu) -> upstream^"+"^binnmu
210
+  | Native(epoch,upstream,binnmu) -> epoch^":"^upstream^"+"^binnmu
211
+  | NonNative("",upstream,revision,"") -> upstream^"-"^revision
212
+  | NonNative(epoch,upstream,revision,"") -> epoch^":"^upstream^"-"^revision
213
+  | NonNative("",upstream,revision,binnmu) -> upstream^"-"^revision^"+"^binnmu
214
+  | NonNative(epoch,upstream,revision,binnmu) ->
215
+    epoch^":"^upstream^"-"^revision^"+"^binnmu
216
+;;
217
+
218
+let strip_epoch_binnmu v =
219
+  match decompose v with
220
+    | Native(_,upstream,_) -> upstream
221
+    | NonNative(_,upstream,revision,_) -> upstream^"-"^revision
222
+;;
223
+
224
+(****************************************************************************)
225
+(* for the deprecated interface  *)
226
+ 
227
+let split s = match decompose s with
228
+    | Native(e,u,b) -> (e,u,"",b)
229
+    | NonNative(e,u,r,b) -> (e,u,r,b)
230
+;;
231
+
232
+let concat = function
233
+  |("",u,"","") -> Printf.sprintf "%s" u (* 1.1 *)
234
+  |("",u,r,"") -> Printf.sprintf "%s-%s" u r (* 1.1-1 *)
235
+  |("",u,"",b) -> Printf.sprintf "%s+%s" u b (* 1.1+b1 *)
236
+  |("",u,r,b) -> Printf.sprintf "%s-%s+%s" u r b (* 1.1-1+b1 *)
237
+  |(e,u,"","") -> Printf.sprintf "%s:%s" e u (* 1:1.1 *)
238
+  |(e,u,"",b) -> Printf.sprintf "%s:%s+%s" e u b (* 1:1.1+b1 *)
239
+  |(e,u,r,"") -> Printf.sprintf "%s:%s-%s" e u r (* 1:1.1-1 *)
240
+  |(e,u,r,b) -> Printf.sprintf "%s:%s-%s+%s" e u r b (* 1:1.1-1+b1 *)
241
+;;
242
+
243
+let normalize = strip_epoch_binnmu
244
+
245
+
(-)devel/ocaml-dose3/files/patch-deb_version.mli (+101 lines)
Line 0 Link Here
1
--- deb/version.mli.orig	2017-04-01 20:53:10 UTC
2
+++ deb/version.mli
3
@@ -0,0 +1,98 @@
4
+(******************************************************************************)
5
+(*  This file is part of the Dose library http://www.irill.org/software/dose  *)
6
+(*                                                                            *)
7
+(*  Copyright (C) 2009-2011 Pietro Abate <pietro.abate@pps.jussieu.fr>        *)
8
+(*                                                                            *)
9
+(*  This library is free software: you can redistribute it and/or modify      *)
10
+(*  it under the terms of the GNU Lesser General Public License as            *)
11
+(*  published by the Free Software Foundation, either version 3 of the        *)
12
+(*  License, or (at your option) any later version.  A special linking        *)
13
+(*  exception to the GNU Lesser General Public License applies to this        *)
14
+(*  library, see the COPYING file for more information.                       *)
15
+(*                                                                            *)
16
+(*  Work developed with the support of the Mancoosi Project                   *)
17
+(*  http://www.mancoosi.org                                                   *)
18
+(*                                                                            *)
19
+(******************************************************************************)
20
+
21
+
22
+(** Functions for manipulating and comparing Debian version strings.
23
+    Compliant with Debian policy version 3.9.2. and Debian developers
24
+    reference version 3.4.6 *)
25
+
26
+(** {2 Comparing debian version strings} *)
27
+
28
+(** The following functions compare any two strings, that is these
29
+    functions do not check whether the arguments are really legal
30
+    debian versions. If the arguments are debian version strings, then
31
+    the result is as required by debian policy. Note that two strings
32
+    may be equivalent, that is denote the same debian version, even
33
+    when they differ in syntax, as for instance "0:1.2.00" and
34
+    "1.02-0".
35
+*)
36
+
37
+(** @return [true] iff the two strings define the same version. Hence,
38
+    the result may be true even when the two string differ
39
+    syntactically. *)
40
+val equal : string -> string -> bool
41
+
42
+(** [compare x y] returns 0 if x is eqivalent to y, -1 if x is smaller
43
+    than y, and 1 if x is greater than y. This is consistent with
44
+    [Pervasives.compare]. *)
45
+val compare : string -> string -> int
46
+
47
+(** {2 Decomposing and recomposing debian version strings} *)
48
+
49
+(** Version strings may be the decomposed into epoch, upstream, and
50
+    revision as described in debian policy section 5.6.12. An epoch is
51
+    present if the version string contains a colon ':', in this case
52
+    the leftmost colon separates the epoch from the rest. A revision
53
+    is present if the string contains a dash '-', in this case the
54
+    rightmost dash separates the rest from the revision.
55
+
56
+    A version string that contains no dash (hence, no revision) is
57
+    called native. Otherwise it is called non-native, in this case the
58
+    revision may be empty (example: "1.2-") or not.
59
+
60
+    A suffix of the upstream part of a native version, or the suffix
61
+    of the revision part of a non-native version, may contain a part
62
+    indicating a binary NMU (Debian Developers Reference, section
63
+    5.10.2.1). A binary NMU part is of the form "+bN" where N is an
64
+    unsigned integer.
65
+*)
66
+
67
+(** result type of the analysis of a version string. The binNMU part,
68
+    if present, has been removed from the upstream (if native version)
69
+    or revision (if non-native vesion).
70
+*)
71
+type version_analysis =
72
+  | Native of string*string*string            (** epoch,upstream,binnmu *)
73
+  | NonNative of string*string*string*string  (** epoch,upstream,revision,binnmu *)
74
+
75
+(** decompose a version string *)
76
+val decompose: string -> version_analysis
77
+
78
+(** recompose a decomposed version string. For all v:
79
+    [equal(v,compose(decompose v)) = true].  There may, however, be
80
+    small syntactic differences between [v] and [compose(decompose v)] *)
81
+val compose: version_analysis -> string 
82
+
83
+(** return a version without its epoch and without its binNMU part *)
84
+val  strip_epoch_binnmu: string -> string
85
+
86
+(** {2 Decomposing and recomposing version strings (deprecated interface)} *)
87
+
88
+(** split the debian version into its components.
89
+    (epoch,upstream,revision,binnmu) = split v
90
+    v = epoch ^ ":" ^ upstream ^ "-" ^ revision ^ binnmu.
91
+
92
+    @deprecated [decompose] should be used instead. *)
93
+val split : string -> (string * string * string * string)
94
+
95
+(** @deprecated [recompose] should be used instead. *)
96
+val concat : (string * string * string * string) -> string
97
+
98
+(** chop the epoch and binnmu component from a version.
99
+
100
+    @deprecated [strip_epoch_binnmu] should be used instead. *)
101
+val normalize : string -> string
(-)devel/ocaml-dose3/pkg-descr (+6 lines)
Line 0 Link Here
1
Dose is a library and a collection of tools to perform la large
2
spectrum of analysis on package repositories.  Dose manipulates
3
packages repositories from different sources such as Debian, Rpm,
4
Eclipse/Osgi and OpenCSW / Solaris .
5
6
WWW: http://gforge.inria.fr/projects/dose/
(-)devel/ocaml-opam/Makefile (-5 / +12 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	opam
4
PORTNAME=	opam
5
PORTVERSION=	1.2.2
5
PORTVERSION=	1.2.2
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	https://github.com/ocaml/opam/releases/download/${DISTVERSION}/
8
MASTER_SITES=	https://github.com/ocaml/opam/releases/download/${DISTVERSION}/
9
PKGNAMEPREFIX=	ocaml-
9
PKGNAMEPREFIX=	ocaml-
Lines 15-27 Link Here
15
15
16
LICENSE=	GPLv3
16
LICENSE=	GPLv3
17
17
18
RUN_DEPENDS=		camlp4:devel/ocaml-camlp4
18
BUILD_DEPENDS=	${LOCALBASE}/${OCAML_SITELIBDIR}/extlib/META:devel/ocaml-extlib \
19
		${LOCALBASE}/${OCAML_SITELIBDIR}/ocamlgraph/META:math/ocaml-ocamlgraph \
20
		${LOCALBASE}/${OCAML_SITELIBDIR}/cudf/META:devel/ocaml-cudf \
21
		${LOCALBASE}/${OCAML_SITELIBDIR}/dose3/META:devel/ocaml-dose3 \
22
		${LOCALBASE}/${OCAML_SITELIBDIR}/jsonm/META:converters/ocaml-jsonm \
23
		${LOCALBASE}/${OCAML_SITELIBDIR}/re/META:devel/ocaml-re \
24
		${LOCALBASE}/${OCAML_SITELIBDIR}/cmdliner/META:devel/ocaml-cmdliner
25
RUN_DEPENDS:=	${BUILD_DEPENDS}
19
26
20
USES=		gmake
27
USES=		gmake ocaml
21
USE_OCAML=	yes
28
USE_OCAML=	camlp4
22
GNU_CONFIGURE=	yes
29
GNU_CONFIGURE=	yes
23
MAKE_ENV+=	TERM=xterm
30
MAKE_ENV+=	TERM=xterm
24
ALL_TARGET=	lib-ext all man
31
ALL_TARGET=	all man
25
32
26
OPTIONS_DEFINE=		RSYNC GIT WGET HG DARCS ASPCUD
33
OPTIONS_DEFINE=		RSYNC GIT WGET HG DARCS ASPCUD
27
OPTIONS_DEFAULT=	RSYNC GIT WGET ASPCUD
34
OPTIONS_DEFAULT=	RSYNC GIT WGET ASPCUD
(-)devel/ocaml-result/Makefile (+22 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	result
4
PORTVERSION=	1.2
5
CATEGORIES=	devel
6
PKGNAMEPREFIX=	ocaml-
7
8
MAINTAINER=	hrs@FreeBSD.org
9
COMMENT=	OCaml result compatibility module
10
11
LICENSE=	BSD3CLAUSE
12
13
USES=		ocaml
14
USE_OCAML=	findlib:plist
15
USE_GITHUB=	yes
16
GH_ACCOUNT=	janestreet
17
MAKE_JOBS_UNSAFE=	yes
18
19
post-install:
20
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/*.cmxs
21
22
.include <bsd.port.mk>
(-)devel/ocaml-result/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1491081129
2
SHA256 (janestreet-result-1.2_GH0.tar.gz) = 7cf7909f902994dc885ceae1983e4cda3665914c774f774604d076b89f76f7dd
3
SIZE (janestreet-result-1.2_GH0.tar.gz) = 2100
(-)devel/ocaml-result/pkg-descr (+3 lines)
Line 0 Link Here
1
Projects that want to use the new result type defined in OCaml >= 4.03
2
while staying compatible with older version of OCaml should use the
3
`Result` module defined in this library.
(-)devel/ocaml-topkg/Makefile (+39 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	topkg
4
PORTVERSION=	0.9.0
5
DISTVERSIONPREFIX=	v
6
CATEGORIES=	devel
7
PKGNAMEPREFIX=	ocaml-
8
9
MAINTAINER=	hrs@FreeBSD.org
10
COMMENT=	Transitory OCaml software packager
11
12
LICENSE=	MIT
13
14
BUILD_DEPENDS=	${LOCALBASE}/${OCAML_SITELIBDIR}/result/META:devel/ocaml-result \
15
		opam-installer:devel/ocaml-opam
16
RUN_DEPENDS:=	${BUILD_DEPENDS}
17
18
USES=		gmake ocaml
19
USE_OCAML=	findlib:plist
20
USE_GITHUB=	yes
21
GH_ACCOUNT=	dbuenzli
22
PORTDOCS=	*
23
24
do-build:
25
	cd ${WRKSRC} && \
26
	    ${OCAML_CMD} pkg/pkg.ml build --pkg-name ${PORTNAME}
27
28
do-install:
29
	cd ${WRKSRC} && \
30
	    ${LOCALBASE}/bin/opam-installer -i \
31
	    --prefix=${STAGEDIR}${PREFIX} \
32
	    --libdir=${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR} \
33
	    --docdir=${STAGEDIR}${PREFIX}/share/doc \
34
	    topkg.install
35
36
post-install:
37
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/*.cmxs
38
39
.include <bsd.port.mk>
(-)devel/ocaml-topkg/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1491074824
2
SHA256 (dbuenzli-topkg-v0.9.0_GH0.tar.gz) = 1f9a718d49151ac4e914404e78865cc74e361d7befea2167fb8daa78a68fba11
3
SIZE (dbuenzli-topkg-v0.9.0_GH0.tar.gz) = 120352
(-)devel/ocaml-topkg/pkg-descr (+2 lines)
Line 0 Link Here
1
ocaml-ipaddr
2
A library for manipulation of IP (and MAC) address representations.
(-)devel/ocaml-yojson/Makefile (+33 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	yojson
4
PORTVERSION=	1.3.3
5
DISTVERSIONPREFIX=	v
6
CATEGORIES=	devel www
7
PKGNAMEPREFIX=	ocaml-
8
9
MAINTAINER=	hrs@FreeBSD.org
10
COMMENT=	JSON library for OCaml
11
12
LICENSE=	BSD3CLAUSE
13
14
BUILD_DEPENDS=	${LOCALBASE}/${OCAML_SITELIBDIR}/easy-format/easy_format.cmx:devel/ocaml-easy-format \
15
		${LOCALBASE}/${OCAML_SITELIBDIR}/biniou/biniou.cmxs:devel/ocaml-biniou \
16
		cppo:devel/ocaml-cppo
17
RUN_DEPENDS:=	${BUILD_DEPENDS}
18
19
USES=		gmake ocaml
20
USE_OCAML=	findlib:plist camlp4 ldconfig
21
#OCAML_PKGDIRS=	deriving
22
#OCAML_LDLIBS=	${OCAML_SITELIBDIR}/deriving
23
USE_GITHUB=	yes
24
GH_ACCOUNT=	mjambon
25
MAKE_ARGS=	PREFIX=${STAGEDIR}${PREFIX}
26
MAKE_JOBS_UNSAFE=	yes
27
ALL_TARGET=	all ydump
28
PLIST_FILES=	bin/ydump
29
30
post-install:
31
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ydump
32
33
.include <bsd.port.mk>
(-)devel/ocaml-yojson/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1489423623
2
SHA256 (mjambon-yojson-v1.3.3_GH0.tar.gz) = de5ad4fd681f58ae5a670f0a43684873cc6ca50bdf52e63ac0c4b8a8bbe1d51a
3
SIZE (mjambon-yojson-v1.3.3_GH0.tar.gz) = 26940
(-)devel/ocaml-yojson/pkg-descr (+5 lines)
Line 0 Link Here
1
Yojson: JSON library for OCaml
2
3
Yojson supersedes json-wheel.
4
5
WWW: http://mjambon.com/yojson.html
(-)devel/ocaml-biniou/Makefile (+26 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	biniou
4
PORTVERSION=	1.0.12
5
DISTVERSIONPREFIX=	v
6
CATEGORIES=	devel www
7
PKGNAMEPREFIX=	ocaml-
8
9
MAINTAINER=	hrs@FreeBSD.org
10
COMMENT=	Binary data format library in OCaml
11
12
LICENSE=	BSD3CLAUSE
13
14
USES=		gmake ocaml
15
USE_OCAML=	findlib:plist
16
USE_GITHUB=	yes
17
GH_ACCOUNT=	mjambon
18
MAKE_ARGS=	PREFIX=${STAGEDIR}${PREFIX}
19
MAKE_JOBS_UNSAFE= yes
20
PLIST_FILES=	bin/bdump
21
22
post-install:
23
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/bdump \
24
	    ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/${PORTNAME}/biniou.cmxs
25
26
.include <bsd.port.mk>
(-)devel/ocaml-biniou/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1489429348
2
SHA256 (mjambon-biniou-v1.0.12_GH0.tar.gz) = b946e720d94d524b95bb0401d9e47a971e9234df808fe5f12601140ab09ec686
3
SIZE (mjambon-biniou-v1.0.12_GH0.tar.gz) = 24262
(-)devel/ocaml-biniou/pkg-descr (+3 lines)
Line 0 Link Here
1
Easy-format: indentation made easy
2
3
WWW: https://github.com/mjambon/easy-format
(-)devel/Makefile (+10 lines)
Lines 1686-1691 Link Here
1686
    SUBDIR += obby
1686
    SUBDIR += obby
1687
    SUBDIR += objecthash
1687
    SUBDIR += objecthash
1688
    SUBDIR += ocaml-annexlib
1688
    SUBDIR += ocaml-annexlib
1689
    SUBDIR += ocaml-biniou
1689
    SUBDIR += ocaml-calendar
1690
    SUBDIR += ocaml-calendar
1690
    SUBDIR += ocaml-camljava
1691
    SUBDIR += ocaml-camljava
1691
    SUBDIR += ocaml-camlp4
1692
    SUBDIR += ocaml-camlp4
Lines 1696-1702 Link Here
1696
    SUBDIR += ocaml-classes
1697
    SUBDIR += ocaml-classes
1697
    SUBDIR += ocaml-cmdliner
1698
    SUBDIR += ocaml-cmdliner
1698
    SUBDIR += ocaml-cppo
1699
    SUBDIR += ocaml-cppo
1700
    SUBDIR += ocaml-cudf
1699
    SUBDIR += ocaml-deriving-ocsigen
1701
    SUBDIR += ocaml-deriving-ocsigen
1702
    SUBDIR += ocaml-dose3
1703
    SUBDIR += ocaml-easy-format
1700
    SUBDIR += ocaml-extlib
1704
    SUBDIR += ocaml-extlib
1701
    SUBDIR += ocaml-findlib
1705
    SUBDIR += ocaml-findlib
1702
    SUBDIR += ocaml-ipaddr
1706
    SUBDIR += ocaml-ipaddr
Lines 1703-1709 Link Here
1703
    SUBDIR += ocaml-lacaml
1707
    SUBDIR += ocaml-lacaml
1704
    SUBDIR += ocaml-lwt
1708
    SUBDIR += ocaml-lwt
1705
    SUBDIR += ocaml-magic
1709
    SUBDIR += ocaml-magic
1710
    SUBDIR += ocaml-ocamlbuild
1706
    SUBDIR += ocaml-opam
1711
    SUBDIR += ocaml-opam
1712
    SUBDIR += ocaml-optcomp
1707
    SUBDIR += ocaml-ounit
1713
    SUBDIR += ocaml-ounit
1708
    SUBDIR += ocaml-parmap
1714
    SUBDIR += ocaml-parmap
1709
    SUBDIR += ocaml-pcre
1715
    SUBDIR += ocaml-pcre
Lines 1712-1725 Link Here
1712
    SUBDIR += ocaml-re
1718
    SUBDIR += ocaml-re
1713
    SUBDIR += ocaml-react
1719
    SUBDIR += ocaml-react
1714
    SUBDIR += ocaml-res
1720
    SUBDIR += ocaml-res
1721
    SUBDIR += ocaml-result
1715
    SUBDIR += ocaml-sdl
1722
    SUBDIR += ocaml-sdl
1716
    SUBDIR += ocaml-sem
1723
    SUBDIR += ocaml-sem
1717
    SUBDIR += ocaml-sexplib
1724
    SUBDIR += ocaml-sexplib
1718
    SUBDIR += ocaml-type_conv
1725
    SUBDIR += ocaml-type_conv
1726
    SUBDIR += ocaml-topkg
1727
    SUBDIR += ocaml-uchar
1719
    SUBDIR += ocaml-ulex
1728
    SUBDIR += ocaml-ulex
1720
    SUBDIR += ocaml-uutf
1729
    SUBDIR += ocaml-uutf
1721
    SUBDIR += ocaml-xstr
1730
    SUBDIR += ocaml-xstr
1722
    SUBDIR += ocaml-xstrp4
1731
    SUBDIR += ocaml-xstrp4
1732
    SUBDIR += ocaml-yojson
1723
    SUBDIR += ocl-icd
1733
    SUBDIR += ocl-icd
1724
    SUBDIR += oclgrind
1734
    SUBDIR += oclgrind
1725
    SUBDIR += ode
1735
    SUBDIR += ode

Return to bug 218333