build_config.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * wpa_supplicant/hostapd - Build time configuration defines
  3. * Copyright (c) 2005-2006, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. *
  8. * This header file can be used to define configuration defines that were
  9. * originally defined in Makefile. This is mainly meant for IDE use or for
  10. * systems that do not have suitable 'make' tool. In these cases, it may be
  11. * easier to have a single place for defining all the needed C pre-processor
  12. * defines.
  13. */
  14. #ifndef BUILD_CONFIG_H
  15. #define BUILD_CONFIG_H
  16. /* Insert configuration defines, e.g., #define EAP_MD5, here, if needed. */
  17. #ifdef CONFIG_WIN32_DEFAULTS
  18. #define CONFIG_NATIVE_WINDOWS
  19. #define CONFIG_ANSI_C_EXTRA
  20. #define CONFIG_WINPCAP
  21. #define IEEE8021X_EAPOL
  22. #define PKCS12_FUNCS
  23. #define PCSC_FUNCS
  24. #define CONFIG_CTRL_IFACE
  25. #define CONFIG_CTRL_IFACE_NAMED_PIPE
  26. #define CONFIG_DRIVER_NDIS
  27. #define CONFIG_NDIS_EVENTS_INTEGRATED
  28. #define CONFIG_DEBUG_FILE
  29. #define EAP_MD5
  30. #define EAP_TLS
  31. #define EAP_MSCHAPv2
  32. #define EAP_PEAP
  33. #define EAP_TTLS
  34. #define EAP_GTC
  35. #define EAP_OTP
  36. #define EAP_LEAP
  37. #define EAP_TNC
  38. #define _CRT_SECURE_NO_DEPRECATE
  39. #ifdef USE_INTERNAL_CRYPTO
  40. #define CONFIG_TLS_INTERNAL_CLIENT
  41. #define CONFIG_INTERNAL_LIBTOMMATH
  42. #define CONFIG_CRYPTO_INTERNAL
  43. #endif /* USE_INTERNAL_CRYPTO */
  44. #endif /* CONFIG_WIN32_DEFAULTS */
  45. #endif /* BUILD_CONFIG_H */