File: INSTALL

package info (click to toggle)
libraw 0.21.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,496 kB
  • sloc: cpp: 53,067; ansic: 2,430; makefile: 133; sh: 82; perl: 58
file content (51 lines) | stat: -rw-r--r-- 1,102 bytes parent folder | download | duplicates (5)
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
50
51

=========  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