Skip to content

Commit 21b834a

Browse files
author
John Christopher McAlpine
committed
fix a dependency issue and update some possibly-obsolete package names
1 parent 86260f9 commit 21b834a

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

build/build.ml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ module Intern = struct
1515
end
1616

1717
let with_package = function
18-
| "eliom.ppx.type" -> "pkg_ppx_eliom_types"
19-
| "eliom.ppx.client"
20-
| "eliom.ppx.server"
18+
| "ppx_eliom.ppx.type" -> "pkg_ppx_eliom_types"
19+
| "ppx_eliom.ppx.client"
20+
| "ppx_eliom.ppx.server"
2121
| "eliom.syntax.predef"
2222
| "eliom.client"
2323
| "eliom.server" -> (* do noting in this case *) "pkg_dummy"

src/lib/client/dune

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,18 @@
55
(libraries
66
eliom.internal
77
eliom.client.internal
8-
eliom.server
8+
ipaddr
99
lwt
1010
js_of_ocaml
1111
js_of_ocaml-lwt
1212
js_of_ocaml-lwt.logger
1313
js_of_ocaml.tyxml
14-
ocsigenserver.cookies
1514
lwt_log
1615
lwt_react
16+
netstring-pcre
17+
ocsigenserver
18+
ocsigenserver.cookies
19+
ocsigenserver.ext
1720
react
1821
reactiveData
1922
tyxml)

src/ocamlbuild/ocamlbuild_eliom.ml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ module MakeIntern (I : INTERNALS)(Eliom : ELIOM) = struct
6969

7070
let get_eliom_syntax_ppx = function
7171
| `Client ->
72-
"eliom.ppx.client"
72+
"ppx_eliom.ppx.client"
7373
| `Server ->
74-
"eliom.ppx.server"
74+
"ppx_eliom.ppx.server"
7575
| `Type ->
76-
"eliom.ppx.type"
76+
"ppx_eliom.ppx.type"
7777

7878
let get_syntaxes_p4 with_eliom_syntax eliom_syntax src =
7979
let eliom_syntax = get_eliom_syntax_p4 eliom_syntax in

0 commit comments

Comments
 (0)