1!if exist (..\..\..\windows\NTMakefile.version)
2!  include <..\..\..\windows\NTMakefile.version>
3!elseif exist (..\..\windows\NTMakefile.version)
4!  include <..\..\windows\NTMakefile.version>
5!elseif exist (..\windows\NTMakefile.version)
6!  include <..\windows\NTMakefile.version>
7!else
8!  include <windows\NTMakefile.version>
9!endif
10
11# ------------------------------------------------------------
12# Features
13#
14# For each feature enabled here, a corresponding line must exist in
15# the inline Perl script in include\NTMakefile.
16
17# Enable Kerberos v5 support in applications
18KRB5=1
19
20# Enable PKINIT
21PKINIT=1
22
23# Disable AFS support
24NO_AFS=1
25
26# OpenLDAP package is available
27# OPENLDAP=1
28
29# OpenLDAP include directory
30# OPENLDAP_INC=
31
32# OpenLDAP library to link against
33# OPENLDAP_LIB=
34
35# Support HDB LDAP module
36# OPENLDAP_MODULE=1
37
38# OTP support in applications
39OTP=1
40
41# Authentication support in telnet
42AUTHENTICATION=1
43
44# Enable diagnostics in telnet
45DIAGNOSTICS=1
46
47# Enable encryption support in telnet
48ENCRYPTION=1
49
50# Use the weak AFS string to key functions
51# ENABLE_AFS_STRING_TO_KEY=1
52
53!ifdef PTHREAD_INC
54!ifdef PTHREAD_LIB
55
56# We have <pthread.h>
57HAVE_PTHREAD_H=1
58
59# Make thread-safe libraries
60ENABLE_PTHREAD_SUPPORT=1
61
62!endif
63!endif
64
65# Support for broken ENV_{VAR,VAL} telnets
66# ENV_HACK=1
67
68# Use the Kerberos Credentials Manager
69# HAVE_KCM=1
70
71# Use the sqlite backend
72HAVE_SCC=1
73
74DIR_hdbdir=%{COMMON_APPDATA}/heimdal/hdb
75
76# Enable weak crypto
77WEAK_CRYPTO=1
78
79# Disable use of GSS LOCALNAME support
80NO_LOCALNAME=1
81
82# Disable build of installers
83!ifndef NO_INSTALLERS
84BUILD_INSTALLERS=1
85!endif
86