File tree Expand file tree Collapse file tree 5 files changed +8
-9
lines changed
Expand file tree Collapse file tree 5 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 2121 dune-configurator
2222 ( ctypes ( >= 0 .14) )
2323 ( integers ( >= 0 .5) )
24- ( patch ( >= 2 .0) ) ) )
24+ ( patch ( >= 3 .0 .0) ) ) )
2525
2626( package
2727 (name raygui)
3434 dune-configurator
3535 ( ctypes ( >= 0 .14) )
3636 ( raylib ( >= 1 .4.0) )
37- ( patch ( >= 2 .0) ) ) )
37+ ( patch ( >= 3 .0 .0) ) ) )
3838
3939( package
4040 (name raylib-gen)
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ depends: [
1414 "dune-configurator"
1515 "ctypes" {>= "0.14"}
1616 "raylib" {>= "1.4.0"}
17- "patch" {>= "2 .0"}
17+ "patch" {>= "3.0 .0"}
1818 "odoc" {with-doc}
1919]
2020build: [
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ depends: [
1818 "conf-libxi" {os = "linux" | os-family = "bsd"}
1919 "conf-libxinerama" {os = "linux" | os-family = "bsd"}
2020 "conf-libxrandr" {os = "linux" | os-family = "bsd"}
21- "patch" {>= "2 .0"}
21+ "patch" {>= "3.0 .0"}
2222 "odoc" {with-doc}
2323]
2424build: [
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ let patch file =
77 let s = really_input_string patch_ic (in_channel_length patch_ic) in
88 close_in patch_ic;
99
10- let patch = Patch. parse s |> List. hd in
10+ let patch = Patch. parse ~p: 1 s |> List. hd in
1111 let target =
1212 match patch.operation with
1313 | Edit (a , _ ) -> String. trim a
@@ -21,7 +21,7 @@ let patch file =
2121 print_endline (" patching " ^ target);
2222
2323 let output =
24- match Patch. patch (Some input) patch with
24+ match Patch. patch ~cleanly: true (Some input) patch with
2525 | Some output -> output
2626 | None -> failwith " Patch does not apply"
2727 in
Original file line number Diff line number Diff line change 1- diff --git a/vendor/raylib/src/Makefile /b/vendor/raylib/src/Makefile
2- deleted file mode 100644
1+ diff --git a/vendor/raylib/src/Makefile b/vendor/raylib/src/Makefile
32index 193e3eb5..11412e60 100644
43--- a/vendor/raylib/src/Makefile
5- +++ / b/vendor/raylib/src/Makefile
4+ +++ b/vendor/raylib/src/Makefile
65@@ -240,8 +240,8 @@ endif
76
87 # Define default C compiler and archiver to pack library: CC, AR
You can’t perform that action at this time.
0 commit comments