1/*-
2 * Copyright (c) 2018-2020 Ribose Inc.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
15 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
16 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS
18 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
19 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
20 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
23 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
24 * POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#define PACKAGE_STRING    "rnp @RNP_VERSION_FULL@"
28#define PACKAGE_BUGREPORT "@BUGREPORT_EMAIL@"
29
30#cmakedefine HAVE_BZLIB_H
31#cmakedefine HAVE_ZLIB_H
32
33#cmakedefine HAVE_FCNTL_H
34#cmakedefine HAVE_INTTYPES_H
35#cmakedefine HAVE_LIMITS_H
36#cmakedefine HAVE_STDINT_H
37#cmakedefine HAVE_STRING_H
38#cmakedefine HAVE_SYS_CDEFS_H
39#cmakedefine HAVE_SYS_MMAN_H
40#cmakedefine HAVE_SYS_RESOURCE_H
41#cmakedefine HAVE_SYS_STAT_H
42#cmakedefine HAVE_SYS_TYPES_H
43#cmakedefine HAVE_UNISTD_H
44#cmakedefine HAVE_SYS_WAIT_H
45#cmakedefine HAVE_SYS_PARAM_H
46#cmakedefine HAVE_MKDTEMP
47#cmakedefine HAVE_MKSTEMP
48#cmakedefine HAVE_REALPATH
49#cmakedefine HAVE_O_BINARY
50#cmakedefine HAVE__O_BINARY
51#cmakedefine HAVE__TEMPNAM
52
53/* Macro _GLIBCXX_USE_CXX11_ABI was first introduced with GCC 5.0, which
54 * we assume to be bundled with a sane implementation of std::regex. */
55#if !defined(__GNUC__) || defined(_GLIBCXX_USE_CXX11_ABI) || defined(MSVC)
56#define RNP_USE_STD_REGEX 1
57#endif
58
59