~ubuntu-branches/ubuntu/saucy/darktable/saucy

« back to all changes in this revision

Viewing changes to src/external/LibRaw/libraw/libraw_version.h

  • Committer: Package Import Robot
  • Author(s): David Bremner
  • Date: 2011-11-13 10:46:00 UTC
  • mfrom: (8.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20111113104600-56c59agrs615gjim
New upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
it under the terms of the one of three licenses as you choose:
11
11
 
12
12
1. GNU LESSER GENERAL PUBLIC LICENSE version 2.1
13
 
   (See the file LICENSE.LGPL provided in LibRaw distribution archive for details).
 
13
(See the file LICENSE.LGPL provided in LibRaw distribution archive for details).
14
14
 
15
15
2. COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
16
 
   (See the file LICENSE.CDDL provided in LibRaw distribution archive for details).
 
16
(See the file LICENSE.CDDL provided in LibRaw distribution archive for details).
17
17
 
18
18
3. LibRaw Software License 27032010
19
 
   (See the file LICENSE.LibRaw.pdf provided in LibRaw distribution archive for details).
 
19
  (See the file LICENSE.LibRaw.pdf provided in LibRaw distribution archive for details).
20
20
 
21
21
 */
22
22
 
24
24
#define __VERSION_H
25
25
 
26
26
#define LIBRAW_MAJOR_VERSION  0
27
 
#define LIBRAW_MINOR_VERSION  12
28
 
#define LIBRAW_PATCH_VERSION  0
 
27
#define LIBRAW_MINOR_VERSION  13
 
28
#define LIBRAW_PATCH_VERSION  8
29
29
#define LIBRAW_VERSION_TAIL   Release
30
30
 
 
31
#define LIBRAW_SHLIB_CURRENT    2
 
32
#define LIBRAW_SHLIB_REVISION   6
 
33
#define LIBRAW_SHLIB_AGE        0
 
34
 
31
35
#define _LIBRAW_VERSION_MAKE(a,b,c,d) #a"."#b"."#c"-"#d
32
36
#define LIBRAW_VERSION_MAKE(a,b,c,d) _LIBRAW_VERSION_MAKE(a,b,c,d)
33
37