Skip to content

Commit e7c75d9

Browse files
committed
Prepare release
1 parent 12c39d9 commit e7c75d9

39 files changed

+10030
-111
lines changed

.jenkins.sh

-17
This file was deleted.

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Generic Makefile for oasis project
77

88
# Set to setup.exe for the release
9-
SETUP := setup-dev.exe
9+
SETUP := setup.exe
1010

1111
# Default rule
1212
default: build

_tags

+371
Large diffs are not rendered by default.

configure

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
#!/bin/sh
22

33
# OASIS_START
4-
make configure CONFIGUREFLAGS="$*"
4+
# DO NOT EDIT (digest: dc86c2ad450f91ca10c931b6045d0499)
5+
set -e
6+
7+
FST=true
8+
for i in "$@"; do
9+
if $FST; then
10+
set --
11+
FST=false
12+
fi
13+
14+
case $i in
15+
--*=*)
16+
ARG=${i%%=*}
17+
VAL=${i##*=}
18+
set -- "$@" "$ARG" "$VAL"
19+
;;
20+
*)
21+
set -- "$@" "$i"
22+
;;
23+
esac
24+
done
25+
26+
ocaml setup.ml -configure "$@"
527
# OASIS_STOP

dist.sh

-40
This file was deleted.

lwt-api.odocl

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# OASIS_START
2+
# DO NOT EDIT (digest: ec7c575c209ddf74bc7299feef9302b1)
3+
src/core/Lwt_condition
4+
src/core/Lwt_list
5+
src/core/Lwt
6+
src/core/Lwt_mutex
7+
src/core/Lwt_mvar
8+
src/core/Lwt_pool
9+
src/core/Lwt_sequence
10+
src/core/Lwt_stream
11+
src/core/Lwt_switch
12+
src/core/Lwt_pqueue
13+
src/glib/Lwt_glib
14+
src/preemptive/Lwt_preemptive
15+
src/react/Lwt_react
16+
src/ssl/Lwt_ssl
17+
src/logger/Lwt_log_core
18+
src/logger/Lwt_log_rules
19+
src/unix/Lwt_chan
20+
src/unix/Lwt_daemon
21+
src/unix/Lwt_gc
22+
src/unix/Lwt_io
23+
src/unix/Lwt_log
24+
src/unix/Lwt_main
25+
src/unix/Lwt_process
26+
src/unix/Lwt_throttle
27+
src/unix/Lwt_timeout
28+
src/unix/Lwt_unix
29+
src/unix/Lwt_sys
30+
src/unix/Lwt_engine
31+
src/unix/Lwt_bytes
32+
syntax/Pa_lwt
33+
syntax/Pa_lwt_log
34+
ppx/Ppx_lwt
35+
# OASIS_STOP

0 commit comments

Comments
 (0)