build_config.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * wpa_supplicant/hostapd - Build time configuration defines
  3. * Copyright (c) 2005-2006, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. *
  14. * This header file can be used to define configuration defines that were
  15. * originally defined in Makefile. This is mainly meant for IDE use or for
  16. * systems that do not have suitable 'make' tool. In these cases, it may be
  17. * easier to have a single place for defining all the needed C pre-processor
  18. * defines.
  19. */
  20. #ifndef BUILD_CONFIG_H
  21. #define BUILD_CONFIG_H
  22. /* Insert configuration defines, e.g., #define EAP_MD5, here, if needed. */
  23. #ifdef CONFIG_WIN32_DEFAULTS
  24. #define CONFIG_NATIVE_WINDOWS
  25. #define CONFIG_ANSI_C_EXTRA
  26. #define CONFIG_WINPCAP
  27. #define IEEE8021X_EAPOL
  28. #define EAP_TLS_FUNCS
  29. #define PKCS12_FUNCS
  30. #define PCSC_FUNCS
  31. #define CONFIG_CTRL_IFACE
  32. #define CONFIG_CTRL_IFACE_NAMED_PIPE
  33. #define CONFIG_DRIVER_NDIS
  34. #define CONFIG_NDIS_EVENTS_INTEGRATED
  35. #define CONFIG_DEBUG_FILE
  36. #define EAP_MD5
  37. #define EAP_TLS
  38. #define EAP_MSCHAPv2
  39. #define EAP_PEAP
  40. #define EAP_TTLS
  41. #define EAP_GTC
  42. #define EAP_OTP
  43. #define EAP_LEAP
  44. #define EAP_TNC
  45. #define _CRT_SECURE_NO_DEPRECATE
  46. #ifdef USE_INTERNAL_CRYPTO
  47. #define CONFIG_TLS_INTERNAL
  48. #define CONFIG_TLS_INTERNAL_CLIENT
  49. #define CONFIG_INTERNAL_LIBTOMMATH
  50. #define INTERNAL_AES
  51. #define INTERNAL_SHA256
  52. #define INTERNAL_MD5
  53. #define INTERNAL_MD4
  54. #define INTERNAL_DES
  55. #define CONFIG_INTERNAL_X509
  56. #define CONFIG_CRYPTO_INTERNAL
  57. #endif /* USE_INTERNAL_CRYPTO */
  58. #endif /* CONFIG_WIN32_DEFAULTS */
  59. #ifdef __SYMBIAN32__
  60. #define OS_NO_C_LIB_DEFINES
  61. #define CONFIG_ANSI_C_EXTRA
  62. #define CONFIG_NO_WPA_MSG
  63. #define CONFIG_NO_HOSTAPD_LOGGER
  64. #define CONFIG_NO_STDOUT_DEBUG
  65. #define CONFIG_BACKEND_FILE
  66. #define INTERNAL_AES
  67. #define INTERNAL_MD5
  68. #define INTERNAL_MD4
  69. #define INTERNAL_DES
  70. #define CONFIG_INTERNAL_LIBTOMMATH
  71. #define CONFIG_INTERNAL_X509
  72. #define EAP_TLS_FUNCS
  73. #define CONFIG_TLS_INTERNAL
  74. #define CONFIG_CRYPTO_INTERNAL
  75. #define IEEE8021X_EAPOL
  76. #define PKCS12_FUNCS
  77. #define EAP_MD5
  78. #define EAP_TLS
  79. #define EAP_MSCHAPv2
  80. #define EAP_PEAP
  81. #define EAP_TTLS
  82. #define EAP_GTC
  83. #define EAP_OTP
  84. #define EAP_LEAP
  85. #define EAP_FAST
  86. #endif /* __SYMBIAN32__ */
  87. #endif /* BUILD_CONFIG_H */