annotate DEPENDENCIES/generic/include/boost/program_options/version.hpp @ 133:4acb5d8d80b6 tip

Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author Chris Cannam
date Tue, 30 Jul 2019 12:25:44 +0100
parents 2665513ce2d3
children
rev   line source
Chris@16 1 // Copyright Vladimir Prus 2004.
Chris@16 2 // Distributed under the Boost Software License, Version 1.0.
Chris@16 3 // (See accompanying file LICENSE_1_0.txt
Chris@16 4 // or copy at http://www.boost.org/LICENSE_1_0.txt)
Chris@16 5
Chris@16 6 #ifndef BOOST_PROGRAM_OPTIONS_VERSION_HPP_VP_2004_04_05
Chris@16 7 #define BOOST_PROGRAM_OPTIONS_VERSION_HPP_VP_2004_04_05
Chris@16 8
Chris@16 9 /** The version of the source interface.
Chris@16 10 The value will be incremented whenever a change is made which might
Chris@16 11 cause compilation errors for existing code.
Chris@16 12 */
Chris@16 13 #ifdef BOOST_PROGRAM_OPTIONS_VERSION
Chris@16 14 #error BOOST_PROGRAM_OPTIONS_VERSION already defined
Chris@16 15 #endif
Chris@16 16 #define BOOST_PROGRAM_OPTIONS_VERSION 2
Chris@16 17
Chris@16 18
Chris@16 19 #endif