blob: 4576b47b80a47150f51c6a2261a7a9e9bf4cbedb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
Dont build with -Werror like switches.
Need to patch Makefile and *NOT* Makefile.in since otherwise this triggers a
rebuild of the Makefile which needs htmlc to be installed first.
https://bugs.gentoo.org/show_bug.cgi?id=553172
Index: htmlc-2.6.0/config/Makefile
===================================================================
--- htmlc-2.6.0.orig/config/Makefile
+++ htmlc-2.6.0/config/Makefile
@@ -40,7 +40,7 @@ MANDIR = $(PREFIXINSTALLDIR)/man/man$(MA
# The Caml compilers (those defaults should be OK)
CAMLDEP = $(OCAML_COMMAND_SEARCH_PATH)ocamldep
-CAML_FLAGS = -w A -warn-error A #-safe-string
+CAML_FLAGS = -w A #-safe-string
CAMLBYT_FLAGS = $(CAML_FLAGS) -g -annot
CAMLBYT = $(OCAML_COMMAND_SEARCH_PATH)ocamlc $(CAMLBYT_FLAGS)
CAMLBIN_FLAGS = $(CAML_FLAGS) -inline 10000
|