File: kdbconfig.h.in

package info (click to toggle)
elektra 0.8.7-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 7,468 kB
  • ctags: 8,138
  • sloc: ansic: 30,701; cpp: 23,734; python: 2,077; sh: 1,904; xml: 1,035; makefile: 208; tcl: 32; java: 16
file content (97 lines) | stat: -rw-r--r-- 3,145 bytes parent folder | download
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
/***************************************************************************
      kdbconfig.h  -  Build system configuration

                           -------------------
    begin                : Apr 22 2010
    copyright            : (C) 2010 by Markus Raab
    email                : elektra@markus-raab.org
 ***************************************************************************/

@DISCLAMER@

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the BSD License (revised).                      *
 *                                                                         *
 ***************************************************************************/

#ifndef KDBCONFIG_H
#define KDBCONFIG_H

/**Below this directory the system configuration (system/) will be searched.*/
#define KDB_DB_SYSTEM            "@KDB_DB_SYSTEM@"

/** Depending on the resolver this might be the
  * postfix to search for user configuration. */
#define KDB_DB_USER              "@KDB_DB_USER@"

/** Depending on the resolver this might be the root 
  * to search for user configuration. */
#define KDB_DB_HOME              "@KDB_DB_HOME@"

/** Declares a parameter as unused. */
#define ELEKTRA_UNUSED           @ELEKTRA_UNUSED@

/** Declares an API as deprecated. */
#define ELEKTRA_DEPRECATED       @ELEKTRA_DEPRECATED@

#define BUILTIN_EXEC_FOLDER      "@BUILTIN_EXEC_FOLDER@"

#define BUILTIN_DATA_FOLDER      "@BUILTIN_DATA_FOLDER@"

#define SIZEOF_INT               @SIZEOF_INT@
#define SIZEOF_LONG              @SIZEOF_LONG@
#define SIZEOF_MODE_T            @SIZEOF_MODE_T@

#cmakedefine HAVE_SIZEOF_LONG_LONG
#ifdef HAVE_SIZEOF_LONG_LONG
# define SIZEOF_LONG_LONG         @SIZEOF_LONG_LONG@
#endif

#cmakedefine HAVE_SIZEOF_LONG_DOUBLE
#ifdef HAVE_SIZEOF_LONG_DOUBLE
# define SIZEOF_LONG_DOUBLE       @SIZEOF_LONG_DOUBLE@
#endif

/* disable debug output messages */
#define DEBUG @DEBUG@

#ifndef DEBUG
# define NDEBUG
#endif

/* disable verbose output messages */
#define VERBOSE @VERBOSE@

/* Define to 1 if you have the `clearenv' function. */
#define HAVE_CLEARENV @HAVE_CLEARENV@

/* Define to 1 if you have the <ctype.h> header file. */
#define HAVE_CTYPE_H @HAVE_CTYPE_H@

/* Define to 1 if you have the <errno.h> header file. */
#define HAVE_ERRNO_H @HAVE_ERRNO_H@

/* Define to 1 if you have the <locale.h> header file. */
#define HAVE_LOCALE_H @HAVE_LOCALE_H@

/* Define to 1 if you have the `setenv' function. */
#define HAVE_SETENV @HAVE_SETENV@

/* Define to 1 if you have the <stdio.h> header file. */
#define HAVE_STDIO_H @HAVE_STDIO_H@

/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H @HAVE_STDLIB_H@

/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H @HAVE_STRING_H@

/* Define to 1 if you have the <time.h> header file. */
#define HAVE_TIME_H @HAVE_TIME_H@

/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H @HAVE_UNISTD_H@

#endif