Welcome to mirror list, hosted at ThFree Co, Russian Federation.

config.h.in « include « src « core - github.com/bareos/bareos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 93b4b58b954c5e7a8e1bdcca8b0d607d251c2dc5 (plain)
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
/*
   BAREOS® - Backup Archiving REcovery Open Sourced

   Copyright (C) 2012-2012 Free Software Foundation Europe e.V.
   Copyright (C) 2011-2012 Planets Communications B.V.
   Copyright (C) 2013-2022 Bareos GmbH & Co. KG

   This program is Free Software; you can redistribute it and/or
   modify it under the terms of version three of the GNU Affero General Public
   License as published by the Free Software Foundation and included
   in the file LICENSE.

   This program is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   Affero General Public License for more details.

   You should have received a copy of the GNU Affero General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
   02110-1301, USA.
*/

#ifndef BAREOS_INCLUDE_CONFIG_H_
#define BAREOS_INCLUDE_CONFIG_H_

// clang-format off

#define BAREOS "@BAREOS@"
#define FD_DEFAULT_PORT "@fd_port@"
#define SD_DEFAULT_PORT "@sd_port@"
#define DIR_DEFAULT_PORT "@dir_port@"
#define NDMP_DEFAULT_PORT "10000"

#if defined(HAVE_WIN32)
#  include "mingwconfig.h"
#define _POSIX_C_SOURCE 1
extern char win_os[];
#  define BAREOS_PLATFORM "Cross-compile"
#  if defined(_WIN64)
#    define DISTVER "Win64"
#  else
#    define DISTVER "Win32"
#  endif
#else

// Where are Bareos config files stored
#cmakedefine CONFDIR @CONFDIR@

// Define to 1 if you want the Developer mode enabled
#cmakedefine DEVELOPER @DEVELOPER@

/* Define to 1 if translation of program messages to the user's native
 * language is requested */
#cmakedefine ENABLE_NLS @ENABLE_NLS@

// Define to 1 for pthread_attr_get_np() instead of pthread_getattr_np()
#cmakedefine HAVE_PTHREAD_ATTR_GET_NP @HAVE_PTHREAD_ATTR_GET_NP@

// Define to 1 if pthread_*_np() are in a seperate header
#cmakedefine HAVE_PTHREAD_NP_H @HAVE_PTHREAD_NP_H@

// Define to 1 if you want Normal acl support
#cmakedefine HAVE_ACL @HAVE_ACL@

// Define to 1 if you want PAM support
#cmakedefine HAVE_PAM @HAVE_PAM@

// Defines if your system have the ACL_TYPE_DEFAULT_DIR acl type
#cmakedefine HAVE_ACL_TYPE_DEFAULT_DIR @HAVE_ACL_TYPE_DEFAULT_DIR@

// Defines if your system have the ACL_TYPE_EXTENDED acl type
#cmakedefine HAVE_ACL_TYPE_EXTENDED @HAVE_ACL_TYPE_EXTENDED@

// Defines if your system have the ACL_TYPE_NFS4 acl type
#cmakedefine HAVE_ACL_TYPE_NFS4 @HAVE_ACL_TYPE_NFS4@

// Define to 1 if you have the `add_proplist_entry' function
#cmakedefine HAVE_ADD_PROPLIST_ENTRY @HAVE_ADD_PROPLIST_ENTRY@

// Define to 1 if your system has AFS support
#cmakedefine HAVE_AFS @HAVE_AFS@

// Andrew FileSystem ACL support
// FIXME: this is used, but never configured
#cmakedefine HAVE_AFS_ACL @HAVE_AFS_ACL@

// Define to 1 if you have the <afs/afsint.h> header file
#cmakedefine HAVE_AFS_AFSINT_H @HAVE_AFS_AFSINT_H@

// Define to 1 if you have the <afs/venus.h> header file
#cmakedefine HAVE_AFS_VENUS_H @HAVE_AFS_VENUS_H@

// Define to 1 if you are running AIX
#cmakedefine HAVE_AIX_OS @HAVE_AIX_OS@

// Define to 1 if you have <alloca.h> and it should be used (not on Ultrix)
#cmakedefine HAVE_ALLOCA_H @HAVE_ALLOCA_H@

// Define to 1 if you have the <arpa/nameser.h> header file
#cmakedefine HAVE_ARPA_NAMESER_H @HAVE_ARPA_NAMESER_H@

// Define to 1 if you have the <attr.h> header file
#cmakedefine HAVE_ATTR_H @HAVE_ATTR_H@

// Define to 1 if you have the `backtrace' function
#cmakedefine HAVE_BACKTRACE @HAVE_BACKTRACE@

// Define to 1 if you have the `backtrace_symbols' function
#cmakedefine HAVE_BACKTRACE_SYMBOLS @HAVE_BACKTRACE_SYMBOLS@

// Big Endian
#cmakedefine HAVE_BIG_ENDIAN @HAVE_BIG_ENDIAN@

// Define to 1 if you have the `chflags' function
#cmakedefine HAVE_CHFLAGS @HAVE_CHFLAGS@

// Define to 1 if you have the `closefrom' function
#cmakedefine HAVE_CLOSEFROM @HAVE_CLOSEFROM@

// Define to 1 if you have compressBound
#cmakedefine HAVE_COMPRESS_BOUND @HAVE_COMPRESS_BOUND@

// Define to 1 if cplus_demangle exists in libdemangle
#cmakedefine HAVE_CPLUS_DEMANGLE @HAVE_CPLUS_DEMANGLE@

// Define to 1 if encryption support should be enabled
#cmakedefine HAVE_CRYPTO @HAVE_CRYPTO@

// Define to 1 if you have the <cxxabi.h> header file
#cmakedefine HAVE_CXXABI_H @HAVE_CXXABI_H@

// Define to 1 if you are running OSX
#cmakedefine HAVE_DARWIN_OS @HAVE_DARWIN_OS@

// Define to 1 if you have the <demangle.h> header file
#cmakedefine HAVE_DEMANGLE_H @HAVE_DEMANGLE_H@

// Define to 1 if dynamic loading of catalog backends is enabled
#cmakedefine HAVE_DYNAMIC_CATS_BACKENDS @HAVE_DYNAMIC_CATS_BACKENDS@

// Define to 1 if dynamic loading of storage backends is enabled
#cmakedefine HAVE_DYNAMIC_SD_BACKENDS @HAVE_DYNAMIC_SD_BACKENDS@

// Define to 1 if OpenSSL library has ENGINE_load_pk11 available
#cmakedefine HAVE_ENGINE_LOAD_PK11 @HAVE_ENGINE_LOAD_PK11@

// Define to 1 if you have the <execinfo.h> header file
#cmakedefine HAVE_EXECINFO_H @HAVE_EXECINFO_H@

// Define to 1 if you have the `extattr_get_file' function
#cmakedefine HAVE_EXTATTR_GET_FILE @HAVE_EXTATTR_GET_FILE@

// Define to 1 if you have the `extattr_get_link' function
#cmakedefine HAVE_EXTATTR_GET_LINK @HAVE_EXTATTR_GET_LINK@

// Define to 1 if you have the `extattr_list_file' function
#cmakedefine HAVE_EXTATTR_LIST_FILE @HAVE_EXTATTR_LIST_FILE@

// Define to 1 if you have the `extattr_list_link' function
#cmakedefine HAVE_EXTATTR_LIST_LINK @HAVE_EXTATTR_LIST_LINK@

// Define to 1 if you have the `extattr_namespace_to_string' function
#cmakedefine HAVE_EXTATTR_NAMESPACE_TO_STRING @HAVE_EXTATTR_NAMESPACE_TO_STRING@

// Define to 1 if you have the `extattr_set_file' function
#cmakedefine HAVE_EXTATTR_SET_FILE @HAVE_EXTATTR_SET_FILE@

// Define to 1 if you have the `extattr_set_link' function
#cmakedefine HAVE_EXTATTR_SET_LINK @HAVE_EXTATTR_SET_LINK@

// Define to 1 if you have the `extattr_string_to_namespace' function
#cmakedefine HAVE_EXTATTR_STRING_TO_NAMESPACE @HAVE_EXTATTR_STRING_TO_NAMESPACE@

// Define to 1 if you want Extended acl support
#cmakedefine HAVE_EXTENDED_ACL @HAVE_EXTENDED_ACL@

// Define to 1 if you have the `fchmod' function
#cmakedefine HAVE_FCHMOD @HAVE_FCHMOD@

// Define to 1 if you have the `fchown' function
#cmakedefine HAVE_FCHOWN @HAVE_FCHOWN@

// Define to 1 if you have the `fchownat' function
#cmakedefine HAVE_FCHOWNAT @HAVE_FCHOWNAT@

// Define to 1 if you have the fcntl F_CLOSEM flag
#cmakedefine HAVE_FCNTL_F_CLOSEM @HAVE_FCNTL_F_CLOSEM@

// Define to 1 if you have the `fdatasync' function
#cmakedefine HAVE_FDATASYNC @HAVE_FDATASYNC@

// Define to 1 if you are running FreeBSD
#cmakedefine HAVE_FREEBSD_OS @HAVE_FREEBSD_OS@

// Define to 1 if you have the `fseeko' function
#cmakedefine HAVE_FSEEKO @HAVE_FSEEKO@

// Define to 1 if you have the `futimens' function
#cmakedefine HAVE_FUTIMENS @HAVE_FUTIMENS@

// Define to 1 if you have the `futimes' function
#cmakedefine HAVE_FUTIMES @HAVE_FUTIMES@

// Define to 1 if you have the `futimesat' function
#cmakedefine HAVE_FUTIMESAT @HAVE_FUTIMESAT@

// Define to 1 if you use gcc
#cmakedefine HAVE_GCC @HAVE_GCC@

// Define to 1 if you have the `getaddrinfo' function
#cmakedefine HAVE_GETADDRINFO @HAVE_GETADDRINFO@

// Define to 1 if you have the `getea' function
#cmakedefine HAVE_GETEA @HAVE_GETEA@

// Define to 1 if you have the `gethostbyname2' function
#cmakedefine HAVE_GETHOSTBYNAME2 @HAVE_GETHOSTBYNAME2@

// Define to 1 if you have the `getmntent' function
#cmakedefine HAVE_GETMNTENT @HAVE_GETMNTENT@

// Define to 1 if you have the `getmntinfo' function
#cmakedefine HAVE_GETMNTINFO @HAVE_GETMNTINFO@

// Define to 1 if you have the `getpagesize' function
#cmakedefine HAVE_GETPAGESIZE @HAVE_GETPAGESIZE@

// Define to 1 if you have the `getproplist' function
#cmakedefine HAVE_GETPROPLIST @HAVE_GETPROPLIST@

// Define to 1 if you have the `getxattr' function
#cmakedefine HAVE_GETXATTR @HAVE_GETXATTR@

// Define to 1 if you have the `get_proplist_entry' function
#cmakedefine HAVE_GET_PROPLIST_ENTRY @HAVE_GET_PROPLIST_ENTRY@

// Define to 1 if you have gfapi lib
#cmakedefine HAVE_GFAPI @HAVE_GFAPI@

// Define to 1 if the `glfs_ftruncate' function has four arguments
#cmakedefine GLFS_FTRUNCATE_HAS_FOUR_ARGS @GLFS_FTRUNCATE_HAS_FOUR_ARGS@

// Define to 1 if you have the `glfs_readdirplus' function
#cmakedefine HAVE_GLFS_READDIRPLUS @HAVE_GLFS_READDIRPLUS@

// Define to 1 if you have the `glob' function
#cmakedefine HAVE_GLOB @HAVE_GLOB@

// Define to 1 if you have the <grp.h> header file
#cmakedefine HAVE_GRP_H @HAVE_GRP_H@

// Define to 1 if you are running HPUX
#cmakedefine HAVE_HPUX_OS @HAVE_HPUX_OS@

// Define to 1 if you are running GNU Hurd
#cmakedefine HAVE_HURD_OS @HAVE_HURD_OS@

// Define to 1 if you have the `inet_ntop' function
#cmakedefine HAVE_INET_NTOP @HAVE_INET_NTOP@

// Define to 1 if ioctl request is unsigned long int
#cmakedefine HAVE_IOCTL_ULINT_REQUEST @HAVE_IOCTL_ULINT_REQUEST@

// Define to 1 if you are running IRIX
#cmakedefine HAVE_IRIX_OS @HAVE_IRIX_OS@

// Define HAVE_IS_TRIVIALLY_COPYABLE if compiler has type trait is_trivially_copyable
#cmakedefine HAVE_IS_TRIVIALLY_COPYABLE

// Define to 1 if you have jansson lib
#cmakedefine HAVE_JANSSON @HAVE_JANSSON@

// Define to 1 if you have the `lchmod' function
#cmakedefine HAVE_LCHMOD @HAVE_LCHMOD@

// Define to 1 if you have the `lchown' function
#cmakedefine HAVE_LCHOWN @HAVE_LCHOWN@

// Define to 1 if you have the `lgetea' function
#cmakedefine HAVE_LGETEA @HAVE_LGETEA@

// Define to 1 if you have the `lgetxattr' function
#cmakedefine HAVE_LGETXATTR @HAVE_LGETXATTR@

// Define to 1 if you have libcap
#cmakedefine HAVE_LIBCAP @HAVE_LIBCAP@

// Define to 1 if you have the `util' library (-lutil)
#cmakedefine HAVE_LIBUTIL @HAVE_LIBUTIL@

// Define to 1 if you have the <libutil.h> header file
#cmakedefine HAVE_LIBUTIL_H @HAVE_LIBUTIL_H@

// Define to 1 if you have zlib
#cmakedefine HAVE_LIBZ @HAVE_LIBZ@

// Define to 1 if you are running Linux
#cmakedefine HAVE_LINUX_OS @HAVE_LINUX_OS@

// Define to 1 if you have the `listea' function
#cmakedefine HAVE_LISTEA @HAVE_LISTEA@

// Define to 1 if you have the `listxattr' function
#cmakedefine HAVE_LISTXATTR @HAVE_LISTXATTR@

// Define to 1 if you have the `llistea' function
#cmakedefine HAVE_LLISTEA @HAVE_LLISTEA@

// Define to 1 if you have the `llistxattr' function
#cmakedefine HAVE_LLISTXATTR @HAVE_LLISTXATTR@

// Define to 1 if LMDB support should be enabled
#cmakedefine HAVE_LMDB @HAVE_LMDB@

// Define to 1 if you have the `localtime_r' function
#cmakedefine HAVE_LOCALTIME_R @HAVE_LOCALTIME_R@

// Define if you have the 'long double' type
#cmakedefine HAVE_LONG_DOUBLE @HAVE_LONG_DOUBLE@

// Low level SCSI Interface support
#cmakedefine HAVE_LOWLEVEL_SCSI_INTERFACE @HAVE_LOWLEVEL_SCSI_INTERFACE@

// Define to 1 if you have the `lsetea' function
#cmakedefine HAVE_LSETEA @HAVE_LSETEA@

// Define to 1 if you have the `lsetxattr' function
#cmakedefine HAVE_LSETXATTR @HAVE_LSETXATTR@

// Define to 1 if you have the `lutimes' function
#cmakedefine HAVE_LUTIMES @HAVE_LUTIMES@

// Define to 1 if you have lzo lib
#cmakedefine HAVE_LZO @HAVE_LZO@

// Define to 1 if you have the <mtio.h> header file
#cmakedefine HAVE_MTIO_H @HAVE_MTIO_H@

// Set if you have an MySQL Database
#cmakedefine HAVE_MYSQL @HAVE_MYSQL@

// Set if have mysql_thread_safe
#cmakedefine HAVE_MYSQL_THREAD_SAFE @HAVE_MYSQL_THREAD_SAFE@

// Define to 1 if you have the `nanosleep' function
#cmakedefine HAVE_NANOSLEEP @HAVE_NANOSLEEP@

// Define to 1 if NDMP support should be enabled
#cmakedefine HAVE_NDMP @HAVE_NDMP@

// Define to 1 if you are running NetBSD
#cmakedefine HAVE_NETBSD_OS @HAVE_NETBSD_OS@

// Define to 1 to when walkcontext does not work
#cmakedefine HAVE_NON_WORKING_WALKCONTEXT @HAVE_NON_WORKING_WALKCONTEXT@

// Define to 1 to use the old sockopt option
#cmakedefine HAVE_OLD_SOCKOPT @HAVE_OLD_SOCKOPT@

// Define to 1 if you have the `openat' function
#cmakedefine HAVE_OPENAT @HAVE_OPENAT@

// Define to 1 if you are running OpenBSD
#cmakedefine HAVE_OPENBSD_OS @HAVE_OPENBSD_OS@

// Define to 1 if OpenSSL library is available
#cmakedefine HAVE_OPENSSL @HAVE_OPENSSL@

// Define to 1 if you are running Tru64
#cmakedefine HAVE_OSF1_OS @HAVE_OSF1_OS@

// Define to 1 if you have the `poll' function
#cmakedefine HAVE_POLL @HAVE_POLL@

// Define to 1 if you have the <poll.h> header file
#cmakedefine HAVE_POLL_H @HAVE_POLL_H@

// Define to 1 if you have the `posix_fadvise' function
#cmakedefine HAVE_POSIX_FADVISE @HAVE_POSIX_FADVISE@

// Set if you have an PostgreSQL Database
#cmakedefine HAVE_POSTGRESQL @HAVE_POSTGRESQL@

// Set if PostgreSQL DB batch insert code enabled
#cmakedefine HAVE_POSTGRESQL_BATCH_FILE_INSERT @HAVE_POSTGRESQL_BATCH_FILE_INSERT@

// Set if have PQisthreadsafe
#cmakedefine HAVE_PQISTHREADSAFE @HAVE_PQISTHREADSAFE@

// Define to 1 if you have the `prctl' function
#cmakedefine HAVE_PRCTL @HAVE_PRCTL@

// Define to 1 if you have the <pwd.h> header file
#cmakedefine HAVE_PWD_H @HAVE_PWD_H@

// Define to 1 if python support should be enabled
#cmakedefine HAVE_PYTHON @HAVE_PYTHON@

// Define to 1 if you have the `readdir_r' function
#cmakedefine HAVE_READDIR_R @HAVE_READDIR_R@

// Define to 1 if you have the <regex.h> header file
#cmakedefine HAVE_REGEX_H @HAVE_REGEX_H@

// Define to 1 if you have the `setea' function
#cmakedefine HAVE_SETEA @HAVE_SETEA@

// Define to 1 if you have the `setproplist' function
#cmakedefine HAVE_SETPROPLIST @HAVE_SETPROPLIST@

// Define to 1 if you have the `setreuid' function
#cmakedefine HAVE_SETREUID @HAVE_SETREUID@

// Define to 1 if you have the `setxattr' function
#cmakedefine HAVE_SETXATTR @HAVE_SETXATTR@

// Define to 1 if the SHA-2 family of digest algorithms is available
#cmakedefine HAVE_SHA2 @HAVE_SHA2@

// Define to 1 if you have the `sizeof_proplist_entry' function
#cmakedefine HAVE_SIZEOF_PROPLIST_ENTRY @HAVE_SIZEOF_PROPLIST_ENTRY@

// Set if you have an SQLite3 Database
#cmakedefine HAVE_SQLITE3 @HAVE_SQLITE3@

// Define to 1 if you have the `sqlite3_threadsafe' function
#cmakedefine HAVE_SQLITE3_THREADSAFE @HAVE_SQLITE3_THREADSAFE@

// Define to 1 if you are running Solaris
#cmakedefine HAVE_SUN_OS @HAVE_SUN_OS@

// Define to 1 if systemd support should be enabled
#cmakedefine HAVE_SYSTEMD @HAVE_SYSTEMD@

// Define to 1 if you have the <sys/acl.h> header file
#cmakedefine HAVE_SYS_ACL_H @HAVE_SYS_ACL_H@

// Define to 1 if you have the <sys/attr.h> header file
#cmakedefine HAVE_SYS_ATTR_H @HAVE_SYS_ATTR_H@

// Define to 1 if you have the <sys/bitypes.h> header file
#cmakedefine HAVE_SYS_BITYPES_H @HAVE_SYS_BITYPES_H@

// Define to 1 if you have the <sys/capability.h> header file
#cmakedefine HAVE_SYS_CAPABILITY_H @HAVE_SYS_CAPABILITY_H@

// Define if you want to use cap_* functions
#cmakedefine ENABLE_CAPABILITY

// Define to 1 if you have the <sys/ea.h> header file
#cmakedefine HAVE_SYS_EA_H @HAVE_SYS_EA_H@

// Define to 1 if you have the <sys/extattr.h> header file
#cmakedefine HAVE_SYS_EXTATTR_H @HAVE_SYS_EXTATTR_H@

// Define to 1 if you have the <sys/mman.h> header file
#undef HAVE_SYS_MMAN_H

// Define to 1 if you have the <sys/mtio.h> header file
#cmakedefine HAVE_SYS_MTIO_H @HAVE_SYS_MTIO_H@

// Define to 1 if you have the <sys/nvpair.h> header file
#cmakedefine HAVE_SYS_NVPAIR_H @HAVE_SYS_NVPAIR_H@

// Define to 1 if you have the <sys/poll.h> header file
#cmakedefine HAVE_SYS_POLL_H @HAVE_SYS_POLL_H@

// Define to 1 if you have the <sys/prctl.h> header file
#cmakedefine HAVE_SYS_PRCTL_H @HAVE_SYS_PRCTL_H@

// Define to 1 if you have the <sys/proplist.h> header file
#cmakedefine HAVE_SYS_PROPLIST_H @HAVE_SYS_PROPLIST_H@

// Define to 1 if you have the <sys/statvfs.h> header file
#cmakedefine HAVE_SYS_STATVFS_H @HAVE_SYS_STATVFS_H@

// Define to 1 if you have the <sys/tape.h> header file
#cmakedefine HAVE_SYS_TAPE_H @HAVE_SYS_TAPE_H@

// Define to 1 if you have the <sys/time.h> header file
#cmakedefine HAVE_SYS_TIME_H @HAVE_SYS_TIME_H@

// Define to 1 if you have the <sys/xattr.h> header file
#cmakedefine HAVE_SYS_XATTR_H @HAVE_SYS_XATTR_H@

// Define to 1 if TLS support should be enabled
#cmakedefine HAVE_TLS @HAVE_TLS@

// Define to 1 if compiler has typeof
#cmakedefine HAVE_TYPEOF @HAVE_TYPEOF@

// Define to 1 if you have the <ucontext.h> header file
#cmakedefine HAVE_UCONTEXT_H @HAVE_UCONTEXT_H@

// Define to 1 if you have the <umem.h> header file
#cmakedefine HAVE_UMEM_H @HAVE_UMEM_H@

// Define to 1 if you have the `unlinkat' function
#cmakedefine HAVE_UNLINKAT @HAVE_UNLINKAT@

// Define to 1 if you have the `utimes' function
#cmakedefine HAVE_UTIMES @HAVE_UTIMES@

// Extended Attributes support
#cmakedefine HAVE_XATTR @HAVE_XATTR@

// Define to 1 if you have the <zlib.h> header file
#cmakedefine HAVE_ZLIB_H @HAVE_ZLIB_H@

// Where are shared libs stored
#cmakedefine LIBDIR @LIBDIR@

// Where are locale files stored
#cmakedefine LOCALEDIR @LOCALEDIR@

// Define to the full name of this package
#cmakedefine PACKAGE_NAME @PACKAGE_NAME@

// Where are system config files stored
#cmakedefine SYSCONFDIR @SYSCONFDIR@

// Define to 1 if you can safely include both <sys/time.h> and <time.h>
#cmakedefine TIME_WITH_SYS_TIME @TIME_WITH_SYS_TIME@

// Define to 1 if DB batch insert code enabled
#cmakedefine USE_BATCH_FILE_INSERT @USE_BATCH_FILE_INSERT@

// Number of bits in a file offset, on hosts where this is settable
#cmakedefine _FILE_OFFSET_BITS @_FILE_OFFSET_BITS@

// Define to make fseeko etc. visible, on some hosts
#cmakedefine _LARGEFILE_SOURCE @_LARGEFILE_SOURCE@

// Define for large files, on AIX-style hosts
#cmakedefine _LARGE_FILES @_LARGE_FILES@

// Directory for backend files
#cmakedefine PATH_BAREOS_BACKENDDIR @PATH_BAREOS_BACKENDDIR@

// Directory for daemon files
#cmakedefine PATH_BAREOS_WORKINGDIR @PATH_BAREOS_WORKINGDIR@

// Default path for Bareos Python modules
#cmakedefine PYTHON_MODULE_PATH "@PYTHON_MODULE_PATH@"

#define BAREOS_PLATFORM "@PLATFORM@"
#define DISTVER "@DISTVER@"

#endif /* defined(WIN32) */
// clang-format on

#endif  // BAREOS_INCLUDE_CONFIG_H_