~cosme/ubuntu/precise/freeimage/freeimage-3.15.1

« back to all changes in this revision

Viewing changes to Source/LibRawLite/libraw/libraw_version.h

  • Committer: Stefano Rivera
  • Date: 2010-07-24 15:35:51 UTC
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: stefanor@ubuntu.com-20100724153551-6s3fth1653huk31a
Tags: upstream-3.13.1
ImportĀ upstreamĀ versionĀ 3.31.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- C++ -*-
 
2
 * File: libraw_version.h
 
3
 * Copyright 2008-2009 LibRaw LLC (info@libraw.org)
 
4
 * Created: Mon Sept  8, 2008 
 
5
 *
 
6
 * LibRaw (Lite) version info
 
7
 *
 
8
    This library is free software; you can redistribute it and/or
 
9
    modify it under the terms of the GNU Lesser General Public
 
10
    License as published by the Free Software Foundation; either
 
11
    version 2.1 of the License, or (at your option) any later version.
 
12
 
 
13
    This library is distributed in the hope that it will be useful,
 
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
    Lesser General Public License for more details.
 
17
 
 
18
    You should have received a copy of the GNU Lesser General Public
 
19
    License along with this library; if not, write to the Free Software
 
20
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
21
 */
 
22
 
 
23
#ifndef __VERSION_H
 
24
#define __VERSION_H
 
25
 
 
26
#define LIBRAW_MAJOR_VERSION  0
 
27
#define LIBRAW_MINOR_VERSION  7
 
28
#define LIBRAW_PATCH_VERSION  2
 
29
#define LIBRAW_VERSION_TAIL   Release(Lite)
 
30
 
 
31
#define _LIBRAW_VERSION_MAKE(a,b,c,d) #a"."#b"."#c"-"#d
 
32
#define LIBRAW_VERSION_MAKE(a,b,c,d) _LIBRAW_VERSION_MAKE(a,b,c,d)
 
33
 
 
34
#define LIBRAW_VERSION_STR LIBRAW_VERSION_MAKE(LIBRAW_MAJOR_VERSION,LIBRAW_MINOR_VERSION,LIBRAW_PATCH_VERSION,LIBRAW_VERSION_TAIL)
 
35
 
 
36
#define LIBRAW_MAKE_VERSION(major,minor,patch) \
 
37
    (((major) << 16) | ((minor) << 8) | (patch))
 
38
 
 
39
#define LIBRAW_VERSION \
 
40
    LIBRAW_MAKE_VERSION(LIBRAW_MAJOR_VERSION,LIBRAW_MINOR_VERSION,LIBRAW_PATCH_VERSION)
 
41
 
 
42
#define LIBRAW_CHECK_VERSION(major,minor,patch) \
 
43
    ( LibRaw::versionNumber() >= LIBRAW_MAKE_VERSION(major,minor,patch) )
 
44
 
 
45
 
 
46
#endif