~ubuntu-branches/ubuntu/gutsy/wpasupplicant/gutsy

« back to all changes in this revision

Viewing changes to src/utils/build_config.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler, Alexander Sack
  • Date: 2007-08-26 16:06:57 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20070826160657-2m8pxoweuxe8f93t
Tags: 0.6.0+0.5.8-0ubuntu1
* New upstream release
* remove patch 11_erroneous_manpage_ref, applied upstream
* remove patch 25_wpas_dbus_unregister_iface_fix, applied upstream

[ Alexander Sack ]
* bumping upstream version to replace development version 0.6.0 with
  this package from stable release branch.
* attempt to fix wierd timeout and high latency issues by going
  back to stable upstream version (0.5.9) (LP: #140763,
  LP: #141233).

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
 
21
 
#ifndef BUILD_CONFIG_H
22
 
#define BUILD_CONFIG_H
23
 
 
24
 
/* Insert configuration defines, e.g., #define EAP_MD5, here, if needed. */
25
 
 
26
 
#ifdef CONFIG_WIN32_DEFAULTS
27
 
#define CONFIG_NATIVE_WINDOWS
28
 
#define CONFIG_ANSI_C_EXTRA
29
 
#define CONFIG_WINPCAP
30
 
#define IEEE8021X_EAPOL
31
 
#define EAP_TLS_FUNCS
32
 
#define PKCS12_FUNCS
33
 
#define PCSC_FUNCS
34
 
#define CONFIG_CTRL_IFACE
35
 
#define CONFIG_CTRL_IFACE_NAMED_PIPE
36
 
#define CONFIG_DRIVER_NDIS
37
 
#define CONFIG_NDIS_EVENTS_INTEGRATED
38
 
#define CONFIG_DEBUG_FILE
39
 
#define EAP_MD5
40
 
#define EAP_TLS
41
 
#define EAP_MSCHAPv2
42
 
#define EAP_PEAP
43
 
#define EAP_TTLS
44
 
#define EAP_GTC
45
 
#define EAP_OTP
46
 
#define EAP_LEAP
47
 
#define EAP_TNC
48
 
#define _CRT_SECURE_NO_DEPRECATE
49
 
#endif /* CONFIG_WIN32_DEFAULTS */
50
 
 
51
 
#ifdef __SYMBIAN32__
52
 
#define OS_NO_C_LIB_DEFINES
53
 
#define CONFIG_ANSI_C_EXTRA
54
 
#define CONFIG_NO_WPA_MSG
55
 
#define CONFIG_NO_HOSTAPD_LOGGER
56
 
#define CONFIG_NO_STDOUT_DEBUG
57
 
#define CONFIG_BACKEND_FILE
58
 
#define INTERNAL_AES
59
 
#define INTERNAL_SHA1
60
 
#define INTERNAL_MD5
61
 
#define INTERNAL_MD4
62
 
#define INTERNAL_DES
63
 
#define CONFIG_INTERNAL_LIBTOMMATH
64
 
#define CONFIG_INTERNAL_X509
65
 
#define EAP_TLS_FUNCS
66
 
#define CONFIG_TLS_INTERNAL
67
 
#define CONFIG_CRYPTO_INTERNAL
68
 
#define IEEE8021X_EAPOL
69
 
#define PKCS12_FUNCS
70
 
#define EAP_MD5
71
 
#define EAP_TLS
72
 
#define EAP_MSCHAPv2
73
 
#define EAP_PEAP
74
 
#define EAP_TTLS
75
 
#define EAP_GTC
76
 
#define EAP_OTP
77
 
#define EAP_LEAP
78
 
#define EAP_FAST
79
 
#endif /* __SYMBIAN32__ */
80
 
 
81
 
#endif /* BUILD_CONFIG_H */