1
2=========  Installing LibRaw ========
3
4I. Installation steps
5
61. Unpack the distribution file:
7
8 $  tar xzvf LibRaw-0.xx.yy.tar.gz
9
102. Go to LibRaw folder and run ./configure and make:
11
12 $ cd LibRaw-0.xx.yy
13 $ ./configure  [...optional args...]
14 $ make
15
163. install by run make install as root:
17
18 $ sudo make install
19
20If you're using Github snapshot, create ./configure script:
21    autoreconf --install
22before using it (you'll need autotools installed).
23
24Alternatively, you may use pre-created Makefiles (Makefile.dist for Unix,
25Makefile.msvc for Windows/VisualStudio) and add/remove options by editing
26these Makefiles
27
28
29II. ./configure options
30
31--enable-openmp
32--disable-openmp
33
34  Enable/disable OpenMP support if compiler supports it.
35  OpenMP is enabled by default.
36
37
38--enable-lcms
39--disable-lcms
40
41  Enable/disable LCMS color engine support. If enabled, ./configure will try to
42  find lcms library.  Both LCMS-1.x and LCMS-2.x are supported
43  LCMS support is enabled by default
44
45
46--enable-examples
47--disable-examples
48
49  Enables/disables examples compilation and installation. Enabled by default
50
51
52