premiere-libtorrent/include/libtorrent/config.hpp

589 lines
15 KiB
C++
Raw Normal View History

/*
Copyright (c) 2005-2016, Arvid Norberg
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the distribution.
* Neither the name of the author nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef TORRENT_CONFIG_HPP_INCLUDED
#define TORRENT_CONFIG_HPP_INCLUDED
#include "libtorrent/aux_/disable_warnings_push.hpp"
2014-07-06 21:18:00 +02:00
#define _FILE_OFFSET_BITS 64
#include <boost/config.hpp>
2014-07-06 21:18:00 +02:00
#include <boost/asio/detail/config.hpp>
#include "libtorrent/aux_/disable_warnings_pop.hpp"
#include "libtorrent/export.hpp"
2014-07-06 21:18:00 +02:00
#ifdef __linux__
#include <linux/version.h> // for LINUX_VERSION_CODE and KERNEL_VERSION
#endif // __linux
#if defined TORRENT_DEBUG_BUFFERS && !defined TORRENT_DISABLE_POOL_ALLOCATOR
#error TORRENT_DEBUG_BUFFERS only works if you also disable pool allocators with TORRENT_DISABLE_POOL_ALLOCATOR
#endif
#if !defined BOOST_ASIO_SEPARATE_COMPILATION && !defined BOOST_ASIO_DYN_LINK
#define BOOST_ASIO_SEPARATE_COMPILATION
#endif
#if defined __MINGW64__ || defined __MINGW32__
// GCC warns on format codes that are incompatible with glibc, which the windows
// format codes are. So we need to disable those for mingw targets
#pragma GCC diagnostic ignored "-Wformat"
#pragma GCC diagnostic ignored "-Wformat-extra-args"
2012-08-16 05:03:29 +02:00
#endif
// ======= GCC =========
2007-08-11 17:12:21 +02:00
#if defined __GNUC__
#ifdef _GLIBCXX_CONCEPT_CHECKS
#define TORRENT_COMPLETE_TYPES_REQUIRED 1
#endif
// deprecation markup is only enabled when libtorrent
// headers are included by clients, not while building
// libtorrent itself
# if __GNUC__ >= 3 && !defined TORRENT_BUILDING_LIBRARY
# define TORRENT_DEPRECATED __attribute__ ((deprecated))
# endif
// ======= SUNPRO =========
#elif defined __SUNPRO_CC
#define TORRENT_COMPLETE_TYPES_REQUIRED 1
// ======= MSVC =========
#elif defined BOOST_MSVC
// class X needs to have dll-interface to be used by clients of class Y
#pragma warning(disable:4251)
// deprecation markup is only enabled when libtorrent
// headers are included by clients, not while building
// libtorrent itself
#if !defined TORRENT_BUILDING_LIBRARY
# define TORRENT_DEPRECATED __declspec(deprecated)
#endif
#endif
// ======= PLATFORMS =========
// set up defines for target environments
// ==== AMIGA ===
#if defined __AMIGA__ || defined __amigaos__ || defined __AROS__
#define TORRENT_AMIGA
#define TORRENT_USE_IPV6 0
#define TORRENT_USE_IOSTREAM 0
// set this to 1 to disable all floating point operations
// (disables some float-dependent APIs)
#define TORRENT_NO_FPU 1
#define TORRENT_USE_I2P 0
2011-02-09 10:54:45 +01:00
#ifndef TORRENT_USE_ICONV
#define TORRENT_USE_ICONV 0
2011-02-09 10:54:45 +01:00
#endif
// ==== Darwin/BSD ===
#elif (defined __APPLE__ && defined __MACH__) || defined __FreeBSD__ || defined __NetBSD__ \
|| defined __OpenBSD__ || defined __bsdi__ || defined __DragonFly__ \
|| defined __FreeBSD_kernel__
#define TORRENT_BSD
// we don't need iconv on mac, because
// the locale is always utf-8
#if defined __APPLE__
2014-07-06 21:18:00 +02:00
# ifndef TORRENT_USE_ICONV
# define TORRENT_USE_ICONV 0
# define TORRENT_USE_LOCALE 0
# endif
#include <AvailabilityMacros.h>
#if MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
// on OSX, use the built-in common crypto for built-in
# if !defined TORRENT_USE_LIBCRYPTO && !defined TORRENT_USE_LIBGCRYPT
2014-07-06 21:18:00 +02:00
# define TORRENT_USE_COMMONCRYPTO 1
# endif // TORRENT_USE_OPENSSL
#endif // MAC_OS_X_VERSION_MIN_REQUIRED
2013-05-26 23:36:20 +02:00
// execinfo.h is available in the MacOS X 10.5 SDK.
#if MAC_OS_X_VERSION_MIN_REQUIRED >= 1050
#define TORRENT_USE_EXECINFO 1
#endif
2014-07-06 21:18:00 +02:00
#else // __APPLE__
2012-04-15 04:20:23 +02:00
// FreeBSD has a reasonable iconv signature
2013-06-20 03:11:23 +02:00
// unless we're on glibc
#ifndef __GLIBC__
# define TORRENT_ICONV_ARG (const char**)
#endif
2014-07-06 21:18:00 +02:00
#endif // __APPLE__
#define TORRENT_USE_DEV_RANDOM 1
2014-07-06 21:18:00 +02:00
#define TORRENT_HAVE_MMAP 1
2010-02-15 08:16:41 +01:00
#define TORRENT_HAS_FALLOCATE 0
2014-07-06 21:18:00 +02:00
2011-02-15 08:42:46 +01:00
#define TORRENT_USE_IFADDRS 1
#define TORRENT_USE_SYSCTL 1
#define TORRENT_USE_IFCONF 1
// ==== LINUX ===
#elif defined __linux__
#define TORRENT_LINUX
2014-07-06 21:18:00 +02:00
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,30) && !defined __ANDROID__
2014-07-06 21:18:00 +02:00
# define TORRENT_USE_PREADV 1
# define TORRENT_USE_PREAD 0
#else
# define TORRENT_USE_PREADV 0
# define TORRENT_USE_PREAD 1
#endif
#define TORRENT_HAVE_MMAP 1
#define TORRENT_USE_NETLINK 1
#define TORRENT_USE_IFCONF 1
#define TORRENT_HAS_SALEN 0
#define TORRENT_USE_FDATASYNC 1
2013-11-27 17:58:02 +01:00
// ===== ANDROID ===== (almost linux, sort of)
#if defined __ANDROID__
#define TORRENT_ANDROID 1
2013-11-27 17:58:02 +01:00
#define TORRENT_HAS_FALLOCATE 0
#define TORRENT_USE_ICONV 0
#define TORRENT_USE_IFADDRS 0
#define TORRENT_USE_MEMALIGN 1
2014-07-06 21:18:00 +02:00
#else // ANDROID
#define TORRENT_ANDROID 0
2013-11-27 17:58:02 +01:00
#define TORRENT_USE_IFADDRS 1
#define TORRENT_USE_POSIX_MEMALIGN 1
2015-09-21 23:58:20 +02:00
// posix_fallocate() is available under this condition
#if _XOPEN_SOURCE >= 600 || _POSIX_C_SOURCE >= 200112L
#define TORRENT_HAS_FALLOCATE 1
#else
#define TORRENT_HAS_FALLOCATE 0
#endif
2014-07-06 21:18:00 +02:00
#endif // ANDROID
2013-11-27 17:58:02 +01:00
2015-06-20 22:50:44 +02:00
#if defined __GLIBC__ && ( defined __x86_64__ || defined __i386 \
|| defined _M_X64 || defined _M_IX86 )
2013-05-26 23:36:20 +02:00
#define TORRENT_USE_EXECINFO 1
#endif
2010-02-14 05:05:18 +01:00
// ==== MINGW ===
#elif defined __MINGW32__ || defined __MINGW64__
2009-07-01 01:03:54 +02:00
#define TORRENT_MINGW
2010-02-14 05:05:18 +01:00
#define TORRENT_WINDOWS
2011-02-09 10:54:45 +01:00
#ifndef TORRENT_USE_ICONV
2014-02-13 08:42:37 +01:00
# define TORRENT_USE_ICONV 0
# define TORRENT_USE_LOCALE 1
2011-02-09 10:54:45 +01:00
#endif
2010-02-14 05:05:18 +01:00
#define TORRENT_USE_RLIMIT 0
2011-04-10 05:45:13 +02:00
#define TORRENT_USE_NETLINK 0
#define TORRENT_USE_GETADAPTERSADDRESSES 1
#define TORRENT_HAS_SALEN 0
2011-04-10 05:45:13 +02:00
#define TORRENT_USE_GETIPFORWARDTABLE 1
2012-04-28 18:23:16 +02:00
#ifndef TORRENT_USE_UNC_PATHS
2014-02-13 08:42:37 +01:00
# define TORRENT_USE_UNC_PATHS 1
#endif
2014-07-06 21:18:00 +02:00
// these are emulated on windows
#define TORRENT_USE_PREADV 1
#define TORRENT_USE_PWRITEV 1
2014-02-13 08:42:37 +01:00
// ==== WINDOWS ===
2016-05-24 05:02:52 +02:00
#elif defined _WIN32
#define TORRENT_WINDOWS
#ifndef TORRENT_USE_GETIPFORWARDTABLE
2014-07-06 21:18:00 +02:00
# define TORRENT_USE_GETIPFORWARDTABLE 1
#endif
# if !defined TORRENT_USE_LIBCRYPTO && !defined TORRENT_USE_LIBGCRYPT
// unless some other crypto library has been specified, default to the native
// windows CryptoAPI
#define TORRENT_USE_CRYPTOAPI 1
#ifdef NTDDI_VERSION
# if (NTDDI_VERSION > NTDDI_WINXPSP2)
# define TORRENT_USE_CRYPTOAPI_SHA_512 1
# endif
#else // NTDDI_VERSION not defined so use simple _WIN32_WINNT check
# if _WIN32_WINNT >= 0x0600
# define TORRENT_USE_CRYPTOAPI_SHA_512 1
# endif
#endif
#endif
#define TORRENT_USE_GETADAPTERSADDRESSES 1
#define TORRENT_HAS_SALEN 0
// windows has its own functions to convert
2011-02-09 10:54:45 +01:00
#ifndef TORRENT_USE_ICONV
2014-07-06 21:18:00 +02:00
# define TORRENT_USE_ICONV 0
# define TORRENT_USE_LOCALE 1
2011-02-09 10:54:45 +01:00
#endif
2010-02-14 05:05:18 +01:00
#define TORRENT_USE_RLIMIT 0
2010-02-15 08:16:41 +01:00
#define TORRENT_HAS_FALLOCATE 0
2012-04-28 18:23:16 +02:00
#ifndef TORRENT_USE_UNC_PATHS
2014-07-06 21:18:00 +02:00
# define TORRENT_USE_UNC_PATHS 1
2012-04-28 18:23:16 +02:00
#endif
2014-07-06 21:18:00 +02:00
// these are emulated on windows
#define TORRENT_USE_PREADV 1
#define TORRENT_USE_PWRITEV 1
2015-03-09 09:35:16 +01:00
// ==== WINRT ===
#if defined(WINAPI_FAMILY_PARTITION)
# if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) \
&& !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
# define TORRENT_WINRT
# define TORRENT_USE_CRYPTOGRAPHIC_BUFFER 1
2015-03-09 09:35:16 +01:00
# endif
#endif
// ==== SOLARIS ===
#elif defined sun || defined __sun
2009-01-27 09:24:48 +01:00
#define TORRENT_SOLARIS
#define TORRENT_USE_IFCONF 1
2011-09-05 01:29:47 +02:00
#define TORRENT_HAS_SALEN 0
2014-07-06 21:18:00 +02:00
#define TORRENT_HAS_SEM_RELTIMEDWAIT 1
#define TORRENT_HAVE_MMAP 1
// ==== BEOS ===
#elif defined __BEOS__ || defined __HAIKU__
#define TORRENT_BEOS
#include <storage/StorageDefs.h> // B_PATH_NAME_LENGTH
#define TORRENT_HAS_FALLOCATE 0
2011-02-09 10:54:45 +01:00
#ifndef TORRENT_USE_ICONV
#define TORRENT_USE_ICONV 0
2011-02-09 10:54:45 +01:00
#endif
2011-07-14 16:16:32 +02:00
// ==== GNU/Hurd ===
#elif defined __GNU__
#define TORRENT_HURD
#define TORRENT_USE_IFADDRS 1
#define TORRENT_USE_IFCONF 1
2012-09-24 18:13:57 +02:00
// ==== eCS(OS/2) ===
#elif defined __OS2__
#define TORRENT_OS2
#define TORRENT_HAS_FALLOCATE 0
#define TORRENT_USE_IFCONF 1
#define TORRENT_USE_SYSCTL 1
#define TORRENT_USE_IPV6 0
#define TORRENT_ICONV_ARG (const char**)
#define TORRENT_USE_WRITEV 0
#define TORRENT_USE_READV 0
#else
2014-11-17 04:41:01 +01:00
#ifdef _MSC_VER
#pragma message ( "unknown OS, assuming BSD" )
#else
#warning "unknown OS, assuming BSD"
#endif
#define TORRENT_BSD
#endif
2015-04-20 02:01:27 +02:00
#define TORRENT_UNUSED(x) (void)(x)
2015-04-18 15:56:36 +02:00
// at the highest warning level, clang actually warns about functions
2015-08-02 05:57:11 +02:00
// that could be marked noreturn.
#if defined __clang__ || defined __GNUC__
#define TORRENT_NO_RETURN __attribute((noreturn))
#else
#define TORRENT_NO_RETURN
#endif
2011-07-23 21:30:23 +02:00
#ifndef TORRENT_ICONV_ARG
#define TORRENT_ICONV_ARG (char**)
#endif
#if defined __GNUC__ || defined __clang__
#define TORRENT_FORMAT(fmt, ellipsis) __attribute__((__format__(__printf__, fmt, ellipsis)))
#else
#define TORRENT_FORMAT(fmt, ellipsis)
#endif
2014-07-06 21:18:00 +02:00
// libiconv presence detection is not implemented yet
#ifndef TORRENT_USE_ICONV
#define TORRENT_USE_ICONV 1
#endif
#ifndef TORRENT_HAS_SALEN
#define TORRENT_HAS_SALEN 1
#endif
#ifndef TORRENT_USE_GETADAPTERSADDRESSES
#define TORRENT_USE_GETADAPTERSADDRESSES 0
#endif
#ifndef TORRENT_USE_NETLINK
#define TORRENT_USE_NETLINK 0
#endif
2013-05-26 23:36:20 +02:00
#ifndef TORRENT_USE_EXECINFO
#define TORRENT_USE_EXECINFO 0
#endif
#ifndef TORRENT_USE_SYSCTL
#define TORRENT_USE_SYSCTL 0
#endif
#ifndef TORRENT_USE_GETIPFORWARDTABLE
#define TORRENT_USE_GETIPFORWARDTABLE 0
#endif
2014-07-06 21:18:00 +02:00
#ifndef TORRENT_HAS_SEM_RELTIMEDWAIT
#define TORRENT_HAS_SEM_RELTIMEDWAIT 0
2011-02-22 04:09:13 +01:00
#endif
#ifndef TORRENT_USE_MEMALIGN
#define TORRENT_USE_MEMALIGN 0
#endif
#ifndef TORRENT_USE_POSIX_MEMALIGN
#define TORRENT_USE_POSIX_MEMALIGN 0
#endif
2014-07-06 21:18:00 +02:00
#ifndef TORRENT_USE_LOCALE
#define TORRENT_USE_LOCALE 0
#endif
2012-02-01 07:24:30 +01:00
#ifndef TORRENT_USE_WSTRING
#if !defined BOOST_NO_STD_WSTRING
#define TORRENT_USE_WSTRING 1
#else
#define TORRENT_USE_WSTRING 0
#endif // BOOST_NO_STD_WSTRING
2012-02-01 07:24:30 +01:00
#endif // TORRENT_USE_WSTRING
#ifndef TORRENT_HAS_FALLOCATE
#define TORRENT_HAS_FALLOCATE 1
#endif
#ifndef TORRENT_DEPRECATED
#define TORRENT_DEPRECATED
#endif
#ifndef TORRENT_USE_COMMONCRYPTO
#define TORRENT_USE_COMMONCRYPTO 0
#endif
#ifndef TORRENT_USE_CRYPTOAPI
#define TORRENT_USE_CRYPTOAPI 0
#endif
#ifndef TORRENT_USE_CRYPTOAPI_SHA_512
#define TORRENT_USE_CRYPTOAPI_SHA_512 0
#endif
#ifndef TORRENT_USE_DEV_RANDOM
#define TORRENT_USE_DEV_RANDOM 0
#endif
2014-07-06 21:18:00 +02:00
#ifndef TORRENT_HAVE_MMAP
#define TORRENT_HAVE_MMAP 0
#endif
2010-03-03 08:42:51 +01:00
#ifndef TORRENT_COMPLETE_TYPES_REQUIRED
#define TORRENT_COMPLETE_TYPES_REQUIRED 0
#endif
2014-07-06 21:18:00 +02:00
#ifndef TORRENT_USE_FDATASYNC
#define TORRENT_USE_FDATASYNC 0
#endif
2012-02-23 07:46:23 +01:00
#ifndef TORRENT_USE_UNC_PATHS
#define TORRENT_USE_UNC_PATHS 0
#endif
2010-02-14 05:05:18 +01:00
#ifndef TORRENT_USE_RLIMIT
#define TORRENT_USE_RLIMIT 1
#endif
2011-02-15 08:42:46 +01:00
#ifndef TORRENT_USE_IFADDRS
#define TORRENT_USE_IFADDRS 0
#endif
#ifndef TORRENT_USE_IPV6
#define TORRENT_USE_IPV6 1
#endif
2014-07-06 21:18:00 +02:00
// if preadv() exists, we assume pwritev() does as well
#ifndef TORRENT_USE_PREADV
#define TORRENT_USE_PREADV 0
#endif
2014-07-06 21:18:00 +02:00
// if pread() exists, we assume pwrite() does as well
#ifndef TORRENT_USE_PREAD
#define TORRENT_USE_PREAD 1
#endif
#ifndef TORRENT_NO_FPU
#define TORRENT_NO_FPU 0
#endif
2012-02-01 07:24:30 +01:00
#ifndef TORRENT_USE_IOSTREAM
#ifndef BOOST_NO_IOSTREAM
#define TORRENT_USE_IOSTREAM 1
#else
#define TORRENT_USE_IOSTREAM 0
#endif
2012-02-01 07:24:30 +01:00
#endif
#ifndef TORRENT_USE_I2P
#define TORRENT_USE_I2P 1
#endif
#if !defined(TORRENT_READ_HANDLER_MAX_SIZE)
2013-05-11 09:42:40 +02:00
# ifdef _GLIBCXX_DEBUG
# define TORRENT_READ_HANDLER_MAX_SIZE 400
# else
2013-12-02 05:24:10 +01:00
// if this is not divisible by 8, we're wasting space
# define TORRENT_READ_HANDLER_MAX_SIZE 336
2013-05-11 09:42:40 +02:00
# endif
#endif
#if !defined(TORRENT_WRITE_HANDLER_MAX_SIZE)
2013-05-11 09:42:40 +02:00
# ifdef _GLIBCXX_DEBUG
# define TORRENT_WRITE_HANDLER_MAX_SIZE 400
# else
2013-12-02 05:24:10 +01:00
// if this is not divisible by 8, we're wasting space
# define TORRENT_WRITE_HANDLER_MAX_SIZE 336
2013-05-11 09:42:40 +02:00
# endif
#endif
2014-07-06 21:18:00 +02:00
#if defined __GNUC__
#define TORRENT_FUNCTION __PRETTY_FUNCTION__
#else
#define TORRENT_FUNCTION __FUNCTION__
#endif
// debug builds have asserts enabled by default, release
// builds have asserts if they are explicitly enabled by
// the release_asserts macro.
#ifndef TORRENT_USE_ASSERTS
#define TORRENT_USE_ASSERTS 0
#endif // TORRENT_USE_ASSERTS
#ifndef TORRENT_USE_INVARIANT_CHECKS
2014-01-20 02:36:59 +01:00
#define TORRENT_USE_INVARIANT_CHECKS 0
#endif
// for non-exception builds
#ifdef BOOST_NO_EXCEPTIONS
#define TORRENT_TRY if (true)
#define TORRENT_CATCH(x) else if (false)
2014-08-16 09:46:06 +02:00
#define TORRENT_CATCH_ALL else if (false)
2011-03-10 06:01:36 +01:00
#define TORRENT_DECLARE_DUMMY(x, y) x y
#else
#define TORRENT_TRY try
#define TORRENT_CATCH(x) catch(x)
2014-08-16 09:46:06 +02:00
#define TORRENT_CATCH_ALL catch(...)
2011-03-10 06:01:36 +01:00
#define TORRENT_DECLARE_DUMMY(x, y)
#endif // BOOST_NO_EXCEPTIONS
2014-07-06 21:18:00 +02:00
// SSE is x86 / amd64 specific. On top of that, we only
// know how to access it on msvc and gcc (and gcc compatibles).
// GCC requires the user to enable SSE support in order for
// the program to have access to the intrinsics, this is
// indicated by the __SSE4_1__ macro
#ifndef TORRENT_HAS_SSE
2014-07-06 21:18:00 +02:00
#if (defined _M_AMD64 || defined _M_IX86 || defined _M_X64 \
|| defined __amd64__ || defined __i386 || defined __i386__ \
|| defined __x86_64__ || defined __x86_64) \
2016-06-27 19:46:15 +02:00
&& (defined __GNUC__ || (defined _MSC_VER && _MSC_VER >= 1600))
2014-07-06 21:18:00 +02:00
#define TORRENT_HAS_SSE 1
#else
#define TORRENT_HAS_SSE 0
#endif
#endif // TORRENT_HAS_SSE
#if (defined __arm__ || defined __aarch64__)
#define TORRENT_HAS_ARM 1
#else
#define TORRENT_HAS_ARM 0
#endif // TORRENT_HAS_ARM
#ifndef __has_builtin
#define __has_builtin(x) 0 // for non-clang compilers
#endif
#if (TORRENT_HAS_SSE && defined __GNUC__)
# define TORRENT_HAS_BUILTIN_CLZ 1
#elif (TORRENT_HAS_ARM && defined __GNUC__ && !defined __clang__)
# define TORRENT_HAS_BUILTIN_CLZ 1
#elif (defined __clang__ && __has_builtin(__builtin_clz))
# define TORRENT_HAS_BUILTIN_CLZ 1
#else
# define TORRENT_HAS_BUILTIN_CLZ 0
#endif // TORRENT_HAS_BUILTIN_CLZ
#if (TORRENT_HAS_SSE && defined __GNUC__)
# define TORRENT_HAS_BUILTIN_CTZ 1
#elif (TORRENT_HAS_ARM && defined __GNUC__ && !defined __clang__)
# define TORRENT_HAS_BUILTIN_CTZ 1
#elif (defined __clang__ && __has_builtin(__builtin_ctz))
# define TORRENT_HAS_BUILTIN_CTZ 1
#else
# define TORRENT_HAS_BUILTIN_CTZ 0
#endif // TORRENT_HAS_BUILTIN_CTZ
#if TORRENT_HAS_ARM && defined __ARM_NEON
# define TORRENT_HAS_ARM_NEON 1
#else
# define TORRENT_HAS_ARM_NEON 0
#endif // TORRENT_HAS_ARM_NEON
#if TORRENT_HAS_ARM && defined __ARM_FEATURE_CRC32
# define TORRENT_HAS_ARM_CRC32 1
#else
#if defined TORRENT_FORCE_ARM_CRC32
# define TORRENT_HAS_ARM_CRC32 1
#else
# define TORRENT_HAS_ARM_CRC32 0
#endif
#endif // TORRENT_HAS_ARM_CRC32
#endif // TORRENT_CONFIG_HPP_INCLUDED