summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/bitstring/camlp4-git.patch
blob: 24d2e362dfac9845ea9faf1a9e62260fadead391 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
diff --git a/Makefile.in b/Makefile.in
index d040f4c..cc1a8f5 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -40,7 +40,7 @@ pkg_extlib	= @OCAML_PKG_extlib@
 enable_coverage = @enable_coverage@
 
 OCAMLCFLAGS	= -g
-OCAMLCPACKAGES	=
+OCAMLCPACKAGES	= -package camlp4
 OCAMLCLIBS	= -linkpkg
 OCAMLOPTFLAGS	= $(OCAMLCFLAGS)
 OCAMLOPTPACKAGES = $(OCAMLCPACKAGES)
@@ -110,12 +110,13 @@ bitstring_persistent.cmi: bitstring_persistent.mli
 	  -I +camlp4 -pp camlp4of -c $<
 
 pa_bitstring.cmo: pa_bitstring.ml bitstring.cma bitstring_persistent.cma
-	$(OCAMLFIND) ocamlc bitstring.cma -I +camlp4 dynlink.cma camlp4lib.cma \
+	$(OCAMLFIND) ocamlc $(OCAMLCPACKAGES) \
+          bitstring.cma -I +camlp4 dynlink.cma camlp4lib.cma \
 	  -pp camlp4of -c $< -o $@
 
 bitstring-objinfo: bitstring_objinfo.cmo bitstring.cma bitstring_persistent.cma
 	$(OCAMLFIND) ocamlc -I +camlp4 unix.cma dynlink.cma camlp4lib.cma \
-	  $(OCAMLCFLAGS) $(OCAMLCLIBS) \
+	  $(OCAMLCFLAGS) $(OCAMLCLIBS) $(OCAMLCPACKAGES) \
 	  bitstring.cma bitstring_persistent.cma \
 	  $< -o $@
 
@@ -158,12 +159,13 @@ tests/test.bmpp: create_test_pattern
 
 create_test_pattern: create_test_pattern.cmo
 	$(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -pp camlp4of \
-	  unix.cma -I +camlp4 dynlink.cma camlp4lib.cma \
+	  unix.cma -I `ocamlfind query camlp4` dynlink.cma camlp4lib.cma \
 	  $(OCAMLCLIBS) \
 	  -I . bitstring.cma bitstring_persistent.cma $< -o $@
 
 create_test_pattern.cmo: create_test_pattern.ml
 	$(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -pp camlp4of \
+	  $(OCAMLCPACKAGES) \
 	  unix.cma -I +camlp4 \
 	  -I . -c $< -o $@