Release 6.99.1 (beta)
[heimdal.git] / windows / NTMakefile.config
blobcea260ace5cf0ddb81fc3bf7b410c480335cc8a5
1 !if exist (..\..\..\thirdparty\NTMakefile.version)
2 !  include <..\..\..\thirdparty\NTMakefile.version>
3 !elseif exist (..\..\thirdparty\NTMakefile.version)
4 !  include <..\..\thirdparty\NTMakefile.version>
5 !elseif exist (..\thirdparty\NTMakefile.version)
6 !  include <..\thirdparty\NTMakefile.version>
7 !elseif exist (thirdparty\NTMakefile.version)
8 !  include <thirdparty\NTMakefile.version>
9 !elseif exist (..\..\..\windows\NTMakefile.version)
10 !  include <..\..\..\windows\NTMakefile.version>
11 !elseif exist (..\..\windows\NTMakefile.version)
12 !  include <..\..\windows\NTMakefile.version>
13 !elseif exist (..\windows\NTMakefile.version)
14 !  include <..\windows\NTMakefile.version>
15 !else
16 !  include <windows\NTMakefile.version>
17 !endif
19 !if [ $(PERL) $(SRC)\cf\w32-detect-vc-version.pl $(CC) ]==16
20 HAVE_STDINT_H=1
21 HAVE_INT64_T=1
22 !endif
27 # ------------------------------------------------------------
28 # Features
30 # For each feature enabled here, a corresponding line must exist in
31 # the inline Perl script in include\NTMakefile.
33 # Enable Kerberos v5 support in applications
34 KRB5=1
36 # Enable PKINIT
37 PKINIT=1
39 # Disable AFS support
40 NO_AFS=1
42 # OpenSSL (mostly not needed on Windows, but should work)
43 # INCLUDE_openssl_crypto=
44 # LIB_openssl_crypto=
46 # OpenLDAP package is available
47 # OPENLDAP=1
49 # OpenLDAP include directory
50 # OPENLDAP_INC=
52 # OpenLDAP library to link against
53 # OPENLDAP_LIB=
55 # Support HDB LDAP module
56 # OPENLDAP_MODULE=1
58 # OTP support in applications
59 OTP=1
61 # Authentication support in telnet
62 AUTHENTICATION=1
64 # Enable diagnostics in telnet
65 DIAGNOSTICS=1
67 # Enable encryption support in telnet
68 ENCRYPTION=1
70 # Use the weak AFS string to key functions
71 # ENABLE_AFS_STRING_TO_KEY=1
73 !ifdef PTHREAD_INC
74 !ifdef PTHREAD_LIB
76 # We have <pthread.h>
77 HAVE_PTHREAD_H=1
79 # Make thread-safe libraries
80 ENABLE_PTHREAD_SUPPORT=1
82 !endif
83 !endif
85 # Support for broken ENV_{VAR,VAL} telnets
86 # ENV_HACK=1
88 # Use the Kerberos Credentials Manager
89 # HAVE_KCM=1
91 # Use the sqlite backend
92 HAVE_SCC=1
94 DIR_hdbdir=%{COMMON_APPDATA}/heimdal/hdb
96 # Disable weak crypto
97 WEAK_CRYPTO=0
99 # Enable hcrypt fallback mechanisms
100 HCRYPTO_FALLBACK=1
102 # Disable use of GSS LOCALNAME support
103 NO_LOCALNAME=1
105 # Windows CRT mkdir does not have the mode parameter
106 MKDIR_DOES_NOT_HAVE_MODE=1
108 # Windows CRT rename does not unlink the target
109 RENAME_DOES_NOT_UNLINK=1
111 # Disable build of installers
112 !ifndef NO_INSTALLERS
113 BUILD_INSTALLERS=1
114 !endif