forked from LibRaw/LibRaw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
51 lines (29 loc) · 1.08 KB
/
INSTALL
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
45
46
47
48
49
========= Installing LibRaw ========
I. Installation steps
1. Unpack the distribution file:
$ tar xzvf LibRaw-0.xx.yy.tar.gz
2. Go to LibRaw folder and run ./configure and make:
$ cd LibRaw-0.xx.yy
$ ./configure [...optional args...]
$ make
3. install by run make install as root:
$ sudo make install
If you're using Github snapshot, create ./configure script:
autoreconf --install
before using it (you'll need autotools installed).
Alternatively, you may use pre-created Makefiles (Makefile.dist for Unix,
Makefile.msvc for Windows/VisualStudio) and add/remove options by editing
these Makefiles
II. ./configure options
--enable-openmp
--disable-openmp
Enable/disable OpenMP support if compiler supports it.
OpenMP is enabled by default.
--enable-lcms
--disable-lcms
Enable/disable LCMS color engine support. If enabled, ./configure will try to
find lcms library. Both LCMS-1.x and LCMS-2.x are supported
LCMS support is enabled by default
--enable-examples
--disable-examples
Enables/disables examples compilation and installation. Enabled by default