Fix memory leaks and alignment issues (thanks rixed at happyleptic.org)
[ocaml-bitstring.git] / META.in
1 name = "bitstring"
2 version = "@PACKAGE_VERSION@"
3 description = "Bitstrings and bitstring matching"
4 requires = "unix"
5 archive(byte) = "bitstring.cma"
6 archive(native) = "bitstring.cmxa"
7
8 package "persistent" (
9   requires = "bitstring"
10   version = "@PACKAGE_VERSION@"
11   description = "Persistent patterns for bitstring (requires camlp4)"
12   archive(byte) = "bitstring_persistent.cma"
13   archive(native) = "bitstring_persistent.cmxa"
14 )
15
16 package "syntax" (
17   version = "@PACKAGE_VERSION@"
18   requires = "camlp4"
19   description = "Syntax extension: bitstring operators"
20   archive(syntax,preprocessor) = "-parser o -parser op -printer p unix.cma bitstring.cma bitstring_persistent.cma pa_bitstring.cmo"
21   archive(syntax,toploop) = "unix.cma bitstring.cma bitstring_persistent.cma pa_bitstring.cmo"
22 )