From: hartmann Date: Mon, 9 Feb 2004 11:24:33 +0000 (+0000) Subject: Allow for version control. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d7f65e00a6c18faf0bb060cae0244f5c6bcd17ce;p=dealii-svn.git Allow for version control. git-svn-id: https://svn.dealii.org/trunk@8428 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/contrib/boost/include/boost/version.hpp b/deal.II/contrib/boost/include/boost/version.hpp new file mode 100644 index 0000000000..032cc5f215 --- /dev/null +++ b/deal.II/contrib/boost/include/boost/version.hpp @@ -0,0 +1,26 @@ +// Boost version.hpp configuration header file ------------------------------// + +// (C) Copyright Boost.org 1999. Permission to copy, use, modify, sell and +// distribute this software is granted provided this copyright notice appears +// in all copies. This software is provided "as is" without express or implied +// warranty, and with no claim as to its suitability for any purpose. + +// See http://www.boost.org/libs/config for documentation + +#ifndef BOOST_VERSION_HPP +#define BOOST_VERSION_HPP + +// +// Caution, this is the only boost header that is guarenteed +// to change with every boost release, including this header +// will cause a recompile every time a new boost version is +// released. +// +// BOOST_VERSION % 100 is the sub-minor version +// BOOST_VERSION / 100 % 1000 is the minor version +// BOOST_VERSION / 100000 is the major version + +#define BOOST_VERSION 103002 + +#endif +