fix bug in multi-line comments
[sqlgg.git] / README.txt
blobf6769088732b14a55ecc08da374f2580f162e47f
2 Build
3 =====
5 Dependencies
6 ------------
8 * menhir
9 * extlib
10 * oUnit
11 * deriving
13 NB `deriving` is not available in Debian packages
15 `deriving` conflicts with extLib in native (ocamlopt) build. 
16 See http://code.google.com/p/deriving/issues/detail?id=1
17 So you have to alter `deriving/lib/Makefile` and 
18 remove the `enum.ml enum.mli` line from SOURCES beforehand.
20 Dependencies will be found with ocamlfind by default.
21 Alternatively you can create `src/myocamlbuild.config` and manually 
22 specify paths to libraries as follows :
24     extlib=C:/my/contrib/extlib-1.5.1
25     deriving=C:/my/contrib/deriving-0.1.1/lib
26     oUnit=C:/my/contrib/ounit-1.0.3
28 sqlgg
29 -----
31     make -C src
32     (or src\build.bat for Windows)
34 Windows users
35 =============
37 Install VS2005 SP1 redistributable
38 <http://www.microsoft.com/downloads/details.aspx?FamilyID=200b2fd9-ae1a-4a14-984d-389c36f85647>
40 ----
41 2009-10-20