Commit 3331e8921c2e09864351567de44599ec61e14e7c

Authored by Jay Berkenbilt
Committed by Jay Berkenbilt
1 parent 248b31fd

Switch variables to cmake in qpdf-config.h

Showing 1 changed file with 28 additions and 119 deletions
libqpdf/qpdf/qpdf-config.h.in
1   -/* libqpdf/qpdf/qpdf-config.h.in. Generated from configure.ac by autoheader. */
2   -
3   -/* Whether to avoid use of HANDLE in Windows */
4   -#undef AVOID_WINDOWS_HANDLE
5   -
6   -/* Default crypto provider */
7   -#undef DEFAULT_CRYPTO
8   -
9   -/* define if the compiler supports basic C++14 syntax */
10   -#undef HAVE_CXX14
11   -
12   -/* Define to 1 if you have the <dlfcn.h> header file. */
13   -#undef HAVE_DLFCN_H
14   -
15   -/* Whether extern long timezone is available */
16   -#undef HAVE_EXTERN_LONG_TIMEZONE
17   -
18   -/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */
19   -#undef HAVE_FSEEKO
20   -
21   -/* Define to 1 if you have the `fseeko64' function. */
22   -#undef HAVE_FSEEKO64
23   -
24   -/* Define to 1 if you have the <inttypes.h> header file. */
25   -#undef HAVE_INTTYPES_H
26   -
27   -/* Define to 1 if you have the `localtime_r' function. */
28   -#undef HAVE_LOCALTIME_R
29   -
30   -/* Define to 1 if you have the <memory.h> header file. */
31   -#undef HAVE_MEMORY_H
32   -
33   -/* Define to 1 if you have the `random' function. */
34   -#undef HAVE_RANDOM
35   -
36   -/* Define to 1 (and set RANDOM_DEVICE) if a random device is available */
37   -#undef HAVE_RANDOM_DEVICE
38   -
39   -/* Define to 1 if you have the <stdint.h> header file. */
40   -#undef HAVE_STDINT_H
41   -
42   -/* Define to 1 if you have the <stdlib.h> header file. */
43   -#undef HAVE_STDLIB_H
44   -
45   -/* Define to 1 if you have the <strings.h> header file. */
46   -#undef HAVE_STRINGS_H
47   -
48   -/* Define to 1 if you have the <string.h> header file. */
49   -#undef HAVE_STRING_H
50   -
51   -/* Define to 1 if you have the <sys/stat.h> header file. */
52   -#undef HAVE_SYS_STAT_H
53   -
54   -/* Define to 1 if you have the <sys/types.h> header file. */
55   -#undef HAVE_SYS_TYPES_H
56   -
57   -/* Whether struct tm has tm_gmtoff */
58   -#undef HAVE_TM_GMTOFF
59   -
60   -/* Define to 1 if you have the <unistd.h> header file. */
61   -#undef HAVE_UNISTD_H
  1 +/* options */
  2 +#cmakedefine AVOID_WINDOWS_HANDLE 1
  3 +#cmakedefine DEFAULT_CRYPTO "${DEFAULT_CRYPTO}"
  4 +#cmakedefine USE_CRYPTO_GNUTLS 1
  5 +#cmakedefine USE_CRYPTO_NATIVE 1
  6 +#cmakedefine USE_CRYPTO_OPENSSL 1
  7 +#cmakedefine USE_INSECURE_RANDOM 1
  8 +#cmakedefine SKIP_OS_SECURE_RANDOM 1
  9 +
  10 +/* large file support -- may be needed for 32-bit systems */
  11 +#cmakedefine _FILE_OFFSET_BITS ${_FILE_OFFSET_BITS}
  12 +
  13 +/* headers files */
  14 +#cmakedefine HAVE_INTTYPES_H 1
  15 +#cmakedefine HAVE_STDINT_H 1
  16 +
  17 +/* OS functions and symbols */
  18 +#cmakedefine HAVE_EXTERN_LONG_TIMEZONE 1
  19 +#cmakedefine HAVE_FSEEKO 1
  20 +#cmakedefine HAVE_FSEEKO64 1
  21 +#cmakedefine HAVE_LOCALTIME_R 1
  22 +#cmakedefine HAVE_RANDOM 1
  23 +#cmakedefine HAVE_TM_GMTOFF 1
62 24  
63 25 /* printf format for long long */
64   -#undef LL_FMT
65   -
66   -/* Define to the sub-directory where libtool stores uninstalled libraries. */
67   -#undef LT_OBJDIR
68   -
69   -/* Define to the address where bug reports for this package should be sent. */
70   -#undef PACKAGE_BUGREPORT
71   -
72   -/* Define to the full name of this package. */
73   -#undef PACKAGE_NAME
74   -
75   -/* Define to the full name and version of this package. */
76   -#undef PACKAGE_STRING
77   -
78   -/* Define to the one symbol short name of this package. */
79   -#undef PACKAGE_TARNAME
80   -
81   -/* Define to the home page for this package. */
82   -#undef PACKAGE_URL
83   -
84   -/* Define to the version of this package. */
85   -#undef PACKAGE_VERSION
86   -
87   -/* Define to the filename of the random device (and set HAVE_RANDOM_DEVICE) */
88   -#undef RANDOM_DEVICE
89   -
90   -/* The size of `size_t', as computed by sizeof. */
91   -#undef SIZEOF_SIZE_T
92   -
93   -/* Whether to suppress use of OS-provided secure random numbers */
94   -#undef SKIP_OS_SECURE_RANDOM
95   -
96   -/* Define to 1 if you have the ANSI C header files. */
97   -#undef STDC_HEADERS
98   -
99   -/* Whether to use the gnutls crypto provider */
100   -#undef USE_CRYPTO_GNUTLS
101   -
102   -/* Whether to use the native crypto provider */
103   -#undef USE_CRYPTO_NATIVE
104   -
105   -/* Whether to use the openssl crypto provider */
106   -#undef USE_CRYPTO_OPENSSL
107   -
108   -/* Whether to use insecure random numbers */
109   -#undef USE_INSECURE_RANDOM
110   -
111   -/* Enable large inode numbers on Mac OS X 10.5. */
112   -#ifndef _DARWIN_USE_64_BIT_INODE
113   -# define _DARWIN_USE_64_BIT_INODE 1
114   -#endif
115   -
116   -/* Number of bits in a file offset, on hosts where this is settable. */
117   -#undef _FILE_OFFSET_BITS
  26 +#cmakedefine LL_FMT "${LL_FMT}"
118 27  
119   -/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
120   -#undef _LARGEFILE_SOURCE
  28 +/* system random device (e.g. /dev/random) if any */
  29 +#cmakedefine RANDOM_DEVICE "${RANDOM_DEVICE}"
121 30  
122   -/* Define for large files, on AIX-style hosts. */
123   -#undef _LARGE_FILES
  31 +/* bytes in the size_t type */
  32 +#cmakedefine SIZEOF_SIZE_T ${SIZEOF_SIZE_T}
... ...