-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from kit-ty-kate/fix-0
Fix compilation on OCaml 5.0 without ocamlfind installed
- Loading branch information
Showing
7 changed files
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
(executable | ||
(name benchmarks) | ||
(enabled_if (= %{profile} benchmark)) | ||
(enabled_if | ||
(= %{profile} benchmark)) | ||
(libraries base64 core_bench)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
(executable | ||
(name fuzz_rfc2045) | ||
(enabled_if (= %{profile} fuzz)) | ||
(enabled_if | ||
(= %{profile} fuzz)) | ||
(modules fuzz_rfc2045) | ||
(libraries astring crowbar fmt base64.rfc2045)) | ||
|
||
(executable | ||
(name fuzz_rfc4648) | ||
(enabled_if (= %{profile} fuzz)) | ||
(enabled_if | ||
(= %{profile} fuzz)) | ||
(modules fuzz_rfc4648) | ||
(libraries astring crowbar fmt base64)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
(library | ||
(name base64) | ||
(modules unsafe base64) | ||
(public_name base64) | ||
(libraries bytes)) | ||
(public_name base64)) | ||
|
||
(rule | ||
(copy %{read:../config/which-unsafe-file} unsafe.ml)) | ||
|
||
(library | ||
(name base64_rfc2045) | ||
(modules base64_rfc2045) | ||
(public_name base64.rfc2045) | ||
(libraries bytes)) | ||
(public_name base64.rfc2045)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters