/usr/include/boost/network/version.hpp is in libcppnetlib-dev 0.11.0-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #ifndef BOOST_NETWORK_VERSION_HPP_20091214
#define BOOST_NETWORK_VERSION_HPP_20091214
// Copyright 2009, 2013 Dean Michael Berris <dberris@google.com>
// Copyright Glyn Matthews 2010.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/config.hpp>
#define BOOST_NETLIB_VERSION_MAJOR 0
#define BOOST_NETLIB_VERSION_MINOR 11
#define BOOST_NETLIB_VERSION_INCREMENT 0
#ifndef BOOST_NETLIB_VERSION
# define BOOST_NETLIB_VERSION \
BOOST_STRINGIZE(BOOST_NETLIB_VERSION_MAJOR) "." \
BOOST_STRINGIZE(BOOST_NETLIB_VERSION_MINOR) "." \
BOOST_STRINGIZE(BOOST_NETLIB_VERSION_INCREMENT)
#endif // BOOST_NETLIB_VERSION
#endif // BOOST_NETWORK_VERSION_HPP_20091214
|