ble_gatt_client
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
config.h
Go to the documentation of this file.
1 /* config.h. Generated from config.h.in by configure. */
2 /* config.h.in. Generated from configure.ac by autoheader. */
3 
4 /* Directory for the Android daemon storage files */
5 #define ANDROID_STORAGEDIR "/var/lib/bluetooth/android"
6 
7 /* Directory for the configuration files */
8 #define CONFIGDIR "/usr/local/etc/bluetooth"
9 
10 /* Define to 1 if you have the <dlfcn.h> header file. */
11 #define HAVE_DLFCN_H 1
12 
13 /* Define to 1 if you have the <inttypes.h> header file. */
14 #define HAVE_INTTYPES_H 1
15 
16 /* Define to 1 if you have the <linux/if_alg.h> header file. */
17 #define HAVE_LINUX_IF_ALG_H 1
18 
19 /* Define to 1 if you have the <linux/types.h> header file. */
20 #define HAVE_LINUX_TYPES_H 1
21 
22 /* Define to 1 if you have the <memory.h> header file. */
23 #define HAVE_MEMORY_H 1
24 
25 /* Define to 1 if you have the <readline/readline.h> header file. */
26 #define HAVE_READLINE_READLINE_H 1
27 
28 /* Define to 1 if you have the <stdint.h> header file. */
29 #define HAVE_STDINT_H 1
30 
31 /* Define to 1 if you have the <stdlib.h> header file. */
32 #define HAVE_STDLIB_H 1
33 
34 /* Define to 1 if you have the <strings.h> header file. */
35 #define HAVE_STRINGS_H 1
36 
37 /* Define to 1 if you have the <string.h> header file. */
38 #define HAVE_STRING_H 1
39 
40 /* Define to 1 if you have the <sys/stat.h> header file. */
41 #define HAVE_SYS_STAT_H 1
42 
43 /* Define to 1 if you have the <sys/types.h> header file. */
44 #define HAVE_SYS_TYPES_H 1
45 
46 /* Define to 1 if you have the udev_hwdb_new() function. */
47 #define HAVE_UDEV_HWDB_NEW 1
48 
49 /* Define to 1 if you have the <unistd.h> header file. */
50 #define HAVE_UNISTD_H 1
51 
52 /* Define to the sub-directory in which libtool stores uninstalled libraries.
53  */
54 #define LT_OBJDIR ".libs/"
55 
56 /* Define if threading support is required */
57 /* #undef NEED_THREADS */
58 
59 /* Name of package */
60 #define PACKAGE "bluez"
61 
62 /* Define to the address where bug reports for this package should be sent. */
63 #define PACKAGE_BUGREPORT ""
64 
65 /* Define to the full name of this package. */
66 #define PACKAGE_NAME "bluez"
67 
68 /* Define to the full name and version of this package. */
69 #define PACKAGE_STRING "bluez 5.31"
70 
71 /* Define to the one symbol short name of this package. */
72 #define PACKAGE_TARNAME "bluez"
73 
74 /* Define to the home page for this package. */
75 #define PACKAGE_URL ""
76 
77 /* Define to the version of this package. */
78 #define PACKAGE_VERSION "5.31"
79 
80 /* Define to 1 if you have the ANSI C header files. */
81 #define STDC_HEADERS 1
82 
83 /* Directory for the storage files */
84 #define STORAGEDIR "/var/lib/bluetooth"
85 
86 /* Enable extensions on AIX 3, Interix. */
87 #ifndef _ALL_SOURCE
88 # define _ALL_SOURCE 1
89 #endif
90 /* Enable GNU extensions on systems that have them. */
91 #ifndef _GNU_SOURCE
92 # define _GNU_SOURCE 1
93 #endif
94 /* Enable threading extensions on Solaris. */
95 #ifndef _POSIX_PTHREAD_SEMANTICS
96 # define _POSIX_PTHREAD_SEMANTICS 1
97 #endif
98 /* Enable extensions on HP NonStop. */
99 #ifndef _TANDEM_SOURCE
100 # define _TANDEM_SOURCE 1
101 #endif
102 /* Enable general extensions on Solaris. */
103 #ifndef __EXTENSIONS__
104 # define __EXTENSIONS__ 1
105 #endif
106 
107 
108 /* Version number of package */
109 #define VERSION "5.31"
110 
111 /* Define to 1 if on MINIX. */
112 /* #undef _MINIX */
113 
114 /* Define to 2 if the system does not provide POSIX.1 features except with
115  this defined. */
116 /* #undef _POSIX_1_SOURCE */
117 
118 /* Define to 1 if you need to in order for `stat' and other things to work. */
119 /* #undef _POSIX_SOURCE */
120 
121 /* Define to the equivalent of the C99 'restrict' keyword, or to
122  nothing if this is not supported. Do not define if restrict is
123  supported directly. */
124 #define restrict __restrict
125 /* Work around a bug in Sun C++: it does not support _Restrict or
126  __restrict__, even though the corresponding Sun C compiler ends up with
127  "#define restrict _Restrict" or "#define restrict __restrict__" in the
128  previous line. Perhaps some future version of Sun C++ will work with
129  restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
130 #if defined __SUNPRO_CC && !defined __RESTRICT
131 # define _Restrict
132 # define __restrict__
133 #endif