~ubuntu-branches/ubuntu/raring/clucene-core/raring-proposed

« back to all changes in this revision

Viewing changes to src/ext/boost/version.hpp

  • Committer: Package Import Robot
  • Author(s): Fathi Boudra
  • Date: 2012-08-11 09:33:38 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20120811093338-fgrx41ftqew3qt6a
Tags: 2.3.3.4-1
* New upstream release (Closes: #661703).
* Convert package to multiarch.
* Drop obsolete patches:
  - 01_add_missing_include_bug505667.diff
  - 02_posixness_fix_bug530308.diff
* Add patches:
  - Fixing_ZLIB_configuration_in_shared_CMakeLists.patch
  - Fix-pkgconfig-file-by-adding-clucene-shared-library.patch
  - Install-contribs-lib.patch
  - multiarch.patch
* Update debian/compat: bump to 8.
* Update debian/control:
  - update build dependencies (add cmake, libboost-dev and libz-dev).
  - bump Standards-Version to 3.9.3.
  - rename packages due to ABI bump: libclucene0ldbl -> libclucene-core1.
  - add libclucene-contribs1 package.
* Update debian/rules:
  - rewrite to use CMake.
  - add multiarch support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  Boost version.hpp configuration header file  ------------------------------//
 
2
 
 
3
//  (C) Copyright John maddock 1999. Distributed under the Boost
 
4
//  Software License, Version 1.0. (See accompanying file
 
5
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 
6
 
 
7
//  See http://www.boost.org/libs/config for documentation
 
8
 
 
9
#ifndef BOOST_VERSION_HPP
 
10
#define BOOST_VERSION_HPP
 
11
 
 
12
//
 
13
//  Caution, this is the only boost header that is guarenteed
 
14
//  to change with every boost release, including this header
 
15
//  will cause a recompile every time a new boost version is
 
16
//  released.
 
17
//
 
18
//  BOOST_VERSION % 100 is the patch level
 
19
//  BOOST_VERSION / 100 % 1000 is the minor version
 
20
//  BOOST_VERSION / 100000 is the major version
 
21
 
 
22
#define BOOST_VERSION 104200
 
23
 
 
24
//
 
25
//  BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
 
26
//  but as a *string* in the form "x_y[_z]" where x is the major version
 
27
//  number, y is the minor version number, and z is the patch level if not 0.
 
28
//  This is used by <config/auto_link.hpp> to select which library version to link to.
 
29
 
 
30
#define BOOST_LIB_VERSION "1_42"
 
31
 
 
32
#endif
 
33
 
 
34
 
 
35