/usr/include/IceUtil/Config.h is in libzeroc-ice-dev 3.7.0-5.
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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 | // **********************************************************************
//
// Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#ifndef ICE_UTIL_CONFIG_H
#define ICE_UTIL_CONFIG_H
//
// Use the system headers as preferred way to detect endianness
// and fallback to architecture based checks.
//
//
#include <stdlib.h>
#if defined(__GLIBC__)
# include <endian.h>
#elif defined(__APPLE__)
# include <machine/endian.h>
#elif defined(__FreeBSD__)
# include <sys/endian.h>
#endif
#if (defined(__BYTE_ORDER) && defined(__LITTLE_ENDIAN) && (__BYTE_ORDER == __LITTLE_ENDIAN)) || \
(defined(_BYTE_ORDER) && defined(_LITTLE_ENDIAN) && (_BYTE_ORDER == _LITTLE_ENDIAN))
# define ICE_LITTLE_ENDIAN
#elif (defined(__BYTE_ORDER) && defined(__BIG_ENDIAN) && (__BYTE_ORDER == __BIG_ENDIAN)) || \
(defined(_BYTE_ORDER) && defined(_BIG_ENDIAN) && (_BYTE_ORDER == _BIG_ENDIAN))
# define ICE_BIG_ENDIAN
#elif defined(__i386) || \
defined(_M_IX86) || \
defined(__x86_64) || \
defined(_M_X64) || \
defined(_M_IA64) || \
defined(__alpha__) || \
defined(__ARMEL__) || \
defined(_M_ARM_FP) || \
defined(__arm64) || \
defined(__MIPSEL__)
# define ICE_LITTLE_ENDIAN
#elif defined(__sparc) || \
defined(__sparc__) || \
defined(__hppa) || \
defined(__ppc__) || \
defined(__powerpc) || \
defined(_ARCH_COM) || \
defined(__MIPSEB__)
# define ICE_BIG_ENDIAN
#else
# error "Unknown architecture"
#endif
#ifdef _MSC_VER
# ifdef _WIN64
# define ICE_64
# else
# define ICE_32
# endif
#else
//
// Use system headers as preferred way to detect 32 or 64 bit mode and
// fallback to architecture based checks
//
# include <stdint.h>
# if defined(__WORDSIZE) && (__WORDSIZE == 64)
# define ICE_64
# elif defined(__WORDSIZE) && (__WORDSIZE == 32)
# define ICE_32
# elif defined(__sun) && (defined(__sparcv9) || defined(__x86_64)) || \
defined(__linux) && defined(__x86_64) || \
defined(__APPLE__) && defined(__x86_64) || \
defined(__hppa) && defined(__LP64__) || \
defined(_ARCH_COM) && defined(__64BIT__) || \
defined(__alpha__) || \
defined(_WIN64)
# define ICE_64
# else
# define ICE_32
# endif
#endif
//
// Check for C++ 11 support
//
// For GCC, we recognize --std=c++0x only for GCC version 4.5 and greater,
// as C++11 support in prior releases was too limited.
//
#if (__cplusplus >= 201103) || \
((defined(__GNUC__) && defined(__GXX_EXPERIMENTAL_CXX0X__) && ((__GNUC__* 100) + __GNUC_MINOR__) >= 405)) || \
(defined(_MSC_VER) && (_MSC_VER >= 1900))
# define ICE_CPP11_COMPILER
#endif
//
// Ensure the C++ compiler supports C++11 when using the C++11 mapping
//
#if defined(ICE_CPP11_MAPPING) && !defined(ICE_CPP11_COMPILER)
# error "you need a C++11 capable compiler to use the C++11 mapping"
#endif
#if defined(ICE_CPP11_COMPILER) && (!defined(_MSC_VER) || (_MSC_VER >= 1900))
# define ICE_NOEXCEPT noexcept
# define ICE_NOEXCEPT_FALSE noexcept(false)
#else
# define ICE_NOEXCEPT throw()
# define ICE_NOEXCEPT_FALSE /**/
#endif
//
// Does the C++ compiler library provide std::codecvt_utf8 and
// std::codecvt_utf8_utf16?
//
#if (defined(_MSC_VER) && (_MSC_VER >= 1800)) || \
defined(__clang__) || \
(defined(ICE_CPP11_COMPILER) && defined(__GNUC__) && (__GNUC__ >= 5))
#define ICE_HAS_CODECVT_UTF8
#endif
//
// Visual Studio 2015 or later
//
#if defined(_MSC_VER) && (_MSC_VER >= 1900)
//
// Check if building for UWP
//
# include <winapifamily.h>
# if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_APP)
# define ICE_OS_UWP
# define ICE_STATIC_LIBS
# endif
#endif
//
// Support for thread-safe function local static initialization
// (a.k.a. "magic statics")
//
#if defined(ICE_CPP11_MAPPING) || defined(__GNUC__) || defined(__clang__) || (defined(_MSC_VER) && (_MSC_VER >= 1900))
# define ICE_HAS_THREAD_SAFE_LOCAL_STATIC
#endif
//
// Compiler extensions to export and import symbols: see the documentation
// for Visual Studio, Solaris Studio and GCC.
//
#if defined(_MSC_VER)
# define ICE_DECLSPEC_EXPORT __declspec(dllexport)
# define ICE_DECLSPEC_IMPORT __declspec(dllimport)
// With Visual Studio, we can import/export member functions without importing/
// exporting the whole class
# define ICE_MEMBER_IMPORT_EXPORT
#elif defined(__GNUC__) || defined(__clang__)
# define ICE_DECLSPEC_EXPORT __attribute__((visibility ("default")))
# define ICE_DECLSPEC_IMPORT __attribute__((visibility ("default")))
#elif defined(__SUNPRO_CC)
# define ICE_DECLSPEC_EXPORT __global
# define ICE_DECLSPEC_IMPORT /**/
#else
# define ICE_DECLSPEC_EXPORT /**/
# define ICE_DECLSPEC_IMPORT /**/
#endif
#ifdef ICE_MEMBER_IMPORT_EXPORT
# define ICE_CLASS(API) /**/
# define ICE_MEMBER(API) API
#else
# define ICE_CLASS(API) API
# define ICE_MEMBER(API) /**/
#endif
//
// Let's use these extensions with Ice:
//
#ifndef ICE_API
# if defined(ICE_STATIC_LIBS)
# define ICE_API /**/
# elif defined(ICE_API_EXPORTS)
# define ICE_API ICE_DECLSPEC_EXPORT
# else
# define ICE_API ICE_DECLSPEC_IMPORT
# endif
#endif
#if defined(_MSC_VER)
# define ICE_DEPRECATED_API(msg) __declspec(deprecated(msg))
#elif defined(__clang__)
# if __has_extension(attribute_deprecated_with_message)
# define ICE_DEPRECATED_API(msg) __attribute__((deprecated(msg)))
# else
# define ICE_DEPRECATED_API(msg) __attribute__((deprecated))
# endif
#elif defined(__GNUC__)
# if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5))
// The message option was introduced in GCC 4.5
# define ICE_DEPRECATED_API(msg) __attribute__((deprecated(msg)))
# else
# define ICE_DEPRECATED_API(msg) __attribute__((deprecated))
# endif
#else
# define ICE_DEPRECATED_API(msg) /**/
#endif
#ifdef _WIN32
# include <windows.h>
# if defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x600)
//
// Windows provides native condition variables on Vista and later
//
# ifndef ICE_HAS_WIN32_CONDVAR
# define ICE_HAS_WIN32_CONDVAR
# endif
# endif
#endif
//
// Some include files we need almost everywhere.
//
#include <cassert>
#include <iostream>
#include <sstream>
#ifndef _WIN32
# include <pthread.h>
# include <errno.h>
# include <unistd.h>
#endif
#ifdef __APPLE__
# include <TargetConditionals.h>
#endif
#if defined(_AIX) && defined(_LARGE_FILES)
// defines macros such as open that we want to use consistently everywhere
# include <fcntl.h>
#endif
#ifdef __IBMCPP__
// TODO: better fix for this warning
# pragma report(disable, "1540-0198") // private inheritance without private keyword
#endif
//
// The Ice version.
//
#define ICE_STRING_VERSION "3.7.0" // "A.B.C", with A=major, B=minor, C=patch
#define ICE_INT_VERSION 30700 // AABBCC, with AA=major, BB=minor, CC=patch
#define ICE_SO_VERSION "37" // "ABC", with A=major, B=minor, C=patch
#if !defined(ICE_BUILDING_ICE) && defined(ICE_API_EXPORTS)
# define ICE_BUILDING_ICE
#endif
#if defined(_MSC_VER)
# if !defined(ICE_STATIC_LIBS) && (!defined(_DLL) || !defined(_MT))
# error "Only multi-threaded DLL libraries can be used with Ice!"
# endif
# ifdef ICE_CPP11_MAPPING
# if defined(_DEBUG)
# if defined(ICE_OS_UWP)
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "uwp++11D.lib"
# else
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "++11D.lib"
# endif
# else
# if defined(ICE_OS_UWP)
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "uwp++11.lib"
# else
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "++11.lib"
# endif
# endif
# else
# if defined(_DEBUG)
# if defined(ICE_OS_UWP)
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "uwpD.lib"
# else
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "D.lib"
# endif
# else
# if defined(ICE_OS_UWP)
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "uwp.lib"
# else
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION ".lib"
# endif
# endif
# endif
//
// Automatically link with Ice[D|++11|++11D].lib
//
# if !defined(ICE_BUILDING_ICE) && !defined(ICE_BUILDING_SLICE_COMPILERS)
# pragma comment(lib, ICE_LIBNAME("Ice"))
# endif
#endif
namespace IceUtil
{
//
// By deriving from this class, other classes are made non-copyable.
//
class ICE_API noncopyable
{
protected:
noncopyable() { }
~noncopyable() { } // May not be virtual! Classes without virtual
// operations also derive from noncopyable.
private:
noncopyable(const noncopyable&);
const noncopyable& operator=(const noncopyable&);
};
typedef unsigned char Byte;
//
// Int64 typedef and ICE_INT64 macro for Int64 literal values
//
// Note that on Windows, long is always 32-bit
//
#if defined(_WIN32) && defined(_MSC_VER)
typedef __int64 Int64;
# define ICE_INT64(n) n##i64
# define ICE_INT64_FORMAT "%lld"
#elif defined(ICE_64) && !defined(_WIN32)
typedef long Int64;
# define ICE_INT64(n) n##L
# define ICE_INT64_FORMAT "%ld"
#else
typedef long long Int64;
# define ICE_INT64(n) n##LL
# define ICE_INT64_FORMAT "%lld"
#endif
}
//
// Macros to facilitate C++98 -> C++11 transition
//
#ifdef ICE_CPP11_MAPPING // C++11 mapping
# include <memory>
# include <future>
# define ICE_HANDLE ::std::shared_ptr
# define ICE_INTERNAL_HANDLE ::std::shared_ptr
# define ICE_PROXY_HANDLE ::std::shared_ptr
# define ICE_MAKE_SHARED(T, ...) ::std::make_shared<T>(__VA_ARGS__)
# define ICE_DEFINE_PTR(TPtr, T) using TPtr = ::std::shared_ptr<T>
# define ICE_ENUM(CLASS,ENUMERATOR) CLASS::ENUMERATOR
# define ICE_SCOPED_ENUM(CLASS,ENUMERATOR) CLASS::ENUMERATOR
# define ICE_NULLPTR nullptr
# define ICE_DYNAMIC_CAST(T,V) ::std::dynamic_pointer_cast<T>(V)
# define ICE_SHARED_FROM_THIS shared_from_this()
# define ICE_SHARED_FROM_CONST_THIS(T) const_cast<T*>(this)->shared_from_this()
# define ICE_GET_SHARED_FROM_THIS(p) p->shared_from_this()
# define ICE_CHECKED_CAST(T, ...) Ice::checkedCast<T>(__VA_ARGS__)
# define ICE_UNCHECKED_CAST(T, ...) Ice::uncheckedCast<T>(__VA_ARGS__)
# define ICE_DELEGATE(T) T
# define ICE_IN(...) __VA_ARGS__
# define ICE_SET_EXCEPTION_FROM_CLONE(T, V) T = V
#else // C++98 mapping
# define ICE_HANDLE ::IceUtil::Handle
# define ICE_INTERNAL_HANDLE ::IceInternal::Handle
# define ICE_PROXY_HANDLE ::IceInternal::ProxyHandle
# define ICE_MAKE_SHARED(T, ...) new T(__VA_ARGS__)
# define ICE_DEFINE_PTR(TPtr, T) typedef ::IceUtil::Handle<T> TPtr
# define ICE_ENUM(CLASS,ENUMERATOR) ENUMERATOR
# define ICE_SCOPED_ENUM(CLASS,ENUMERATOR) CLASS##ENUMERATOR
# define ICE_NULLPTR 0
# define ICE_DYNAMIC_CAST(T,V) T##Ptr::dynamicCast(V)
# define ICE_SHARED_FROM_THIS this
# define ICE_SHARED_FROM_CONST_THIS(T) const_cast<T*>(this)
# define ICE_GET_SHARED_FROM_THIS(p) p
# define ICE_CHECKED_CAST(T, ...) T::checkedCast(__VA_ARGS__)
# define ICE_UNCHECKED_CAST(T, ...) T::uncheckedCast(__VA_ARGS__)
# define ICE_DELEGATE(T) T##Ptr
# define ICE_IN(...) const __VA_ARGS__&
# define ICE_SET_EXCEPTION_FROM_CLONE(T, V) T.reset(V)
#endif
#endif
|