config.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /* config.h. Generated from config.h.in by configure. */
  2. /* config.h.in. Generated from configure.ac by autoheader. */
  3. /* Directory for the Android daemon storage files */
  4. #define ANDROID_STORAGEDIR "/var/lib/bluetooth/android"
  5. /* Directory for the configuration files */
  6. #define CONFIGDIR "/etc/bluetooth"
  7. /* Define to 1 if you have the backtrace support. */
  8. /* #undef HAVE_BACKTRACE_SUPPORT */
  9. /* Define to 1 if you have the <dlfcn.h> header file. */
  10. #define HAVE_DLFCN_H 1
  11. /* Define to 1 if you have the `explicit_bzero' function. */
  12. #define HAVE_EXPLICIT_BZERO 1
  13. /* Define to 1 if you have the <inttypes.h> header file. */
  14. #define HAVE_INTTYPES_H 1
  15. /* Define to 1 if you have the <linux/if_alg.h> header file. */
  16. #define HAVE_LINUX_IF_ALG_H 1
  17. /* Define to 1 if you have the <linux/types.h> header file. */
  18. #define HAVE_LINUX_TYPES_H 1
  19. /* Define to 1 if you have the <memory.h> header file. */
  20. #define HAVE_MEMORY_H 1
  21. /* Define to 1 if you have the `rawmemchr' function. */
  22. #define HAVE_RAWMEMCHR 1
  23. /* Define to 1 if you have the <readline/readline.h> header file. */
  24. #define HAVE_READLINE_READLINE_H 1
  25. /* Define to 1 if you have the <stdint.h> header file. */
  26. #define HAVE_STDINT_H 1
  27. /* Define to 1 if you have the <stdlib.h> header file. */
  28. #define HAVE_STDLIB_H 1
  29. /* Define to 1 if you have the <strings.h> header file. */
  30. #define HAVE_STRINGS_H 1
  31. /* Define to 1 if you have the <string.h> header file. */
  32. #define HAVE_STRING_H 1
  33. /* Define to 1 if you have the <sys/stat.h> header file. */
  34. #define HAVE_SYS_STAT_H 1
  35. /* Define to 1 if you have the <sys/types.h> header file. */
  36. #define HAVE_SYS_TYPES_H 1
  37. /* Define to 1 if you have the udev_hwdb_new() function. */
  38. #define HAVE_UDEV_HWDB_NEW 1
  39. /* Define to 1 if you have the <unistd.h> header file. */
  40. #define HAVE_UNISTD_H 1
  41. /* Define to 1 if you have the <valgrind/memcheck.h> header file. */
  42. /* #undef HAVE_VALGRIND_MEMCHECK_H */
  43. /* Define to the sub-directory where libtool stores uninstalled libraries. */
  44. #define LT_OBJDIR ".libs/"
  45. /* Directory for the mesh daemon storage files */
  46. #define MESH_STORAGEDIR "/var/lib/bluetooth/mesh"
  47. /* Define if threading support is required */
  48. /* #undef NEED_THREADS */
  49. /* Name of package */
  50. #define PACKAGE "bluez"
  51. /* Define to the address where bug reports for this package should be sent. */
  52. #define PACKAGE_BUGREPORT ""
  53. /* Define to the full name of this package. */
  54. #define PACKAGE_NAME "bluez"
  55. /* Define to the full name and version of this package. */
  56. #define PACKAGE_STRING "bluez 5.62"
  57. /* Define to the one symbol short name of this package. */
  58. #define PACKAGE_TARNAME "bluez"
  59. /* Define to the home page for this package. */
  60. #define PACKAGE_URL ""
  61. /* Define to the version of this package. */
  62. #define PACKAGE_VERSION "5.62"
  63. /* Define to 1 if you have the ANSI C header files. */
  64. #define STDC_HEADERS 1
  65. /* Directory for the storage files */
  66. #define STORAGEDIR "/var/lib/bluetooth"
  67. /* Version number of package */
  68. #define VERSION "5.62"
  69. /* Define to the equivalent of the C99 'restrict' keyword, or to
  70. nothing if this is not supported. Do not define if restrict is
  71. supported directly. */
  72. #define restrict __restrict
  73. /* Work around a bug in Sun C++: it does not support _Restrict or
  74. __restrict__, even though the corresponding Sun C compiler ends up with
  75. "#define restrict _Restrict" or "#define restrict __restrict__" in the
  76. previous line. Perhaps some future version of Sun C++ will work with
  77. restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
  78. #if defined __SUNPRO_CC && !defined __RESTRICT
  79. # define _Restrict
  80. # define __restrict__
  81. #endif