Skip to content

Commit e5ea621

Browse files
committed
include pkg-config in the dependency
1 parent af3c794 commit e5ea621

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

dune-project

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
(name hdr_histogram)
2121
(synopsis "OCaml bindings to Hdr Histogram")
2222
(description "OCaml bindings to Hdr Histogram")
23-
(depends ocaml dune (ctypes (>= 0.20.1)) (ctypes-foreign (>= 0.18.0)))
23+
(depends ocaml dune (ctypes (>= 0.20.1)) (ctypes-foreign (>= 0.18.0))
24+
(conf-pkg-config :build))
2425
(tags
2526
("histogram" "tail latency")))
2627

hdr_histogram.opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ depends: [
1414
"dune" {>= "3.3"}
1515
"ctypes" {>= "0.20.1"}
1616
"ctypes-foreign" {>= "0.18.0"}
17+
"conf-pkg-config" {build}
1718
"odoc" {with-doc}
1819
]
1920
build: [

lib/dune

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
(library
22
(name hdr_histogram)
33
(public_name hdr_histogram)
4-
; (libraries core)
54
; ctypes backward compatibility shims warn sometimes; suppress them
65
(flags (:standard -w -9-27))
76
(ctypes

0 commit comments

Comments
 (0)