mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
7055827b8f
This makes it clearer that we always want to do heimdal changes via the lorikeet-heimdal repository. Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Joseph Sutton <josephsutton@catalyst.net.nz> Autobuild-User(master): Joseph Sutton <jsutton@samba.org> Autobuild-Date(master): Wed Jan 19 21:41:59 UTC 2022 on sn-devel-184
115 lines
2.3 KiB
Plaintext
115 lines
2.3 KiB
Plaintext
!if exist (..\..\..\thirdparty\NTMakefile.version)
|
|
! include <..\..\..\thirdparty\NTMakefile.version>
|
|
!elseif exist (..\..\thirdparty\NTMakefile.version)
|
|
! include <..\..\thirdparty\NTMakefile.version>
|
|
!elseif exist (..\thirdparty\NTMakefile.version)
|
|
! include <..\thirdparty\NTMakefile.version>
|
|
!elseif exist (thirdparty\NTMakefile.version)
|
|
! include <thirdparty\NTMakefile.version>
|
|
!elseif exist (..\..\..\windows\NTMakefile.version)
|
|
! include <..\..\..\windows\NTMakefile.version>
|
|
!elseif exist (..\..\windows\NTMakefile.version)
|
|
! include <..\..\windows\NTMakefile.version>
|
|
!elseif exist (..\windows\NTMakefile.version)
|
|
! include <..\windows\NTMakefile.version>
|
|
!else
|
|
! include <windows\NTMakefile.version>
|
|
!endif
|
|
|
|
!if [ $(PERL) $(SRC)\cf\w32-detect-vc-version.pl $(CC) ]==16
|
|
HAVE_STDINT_H=1
|
|
HAVE_INT64_T=1
|
|
!endif
|
|
|
|
|
|
|
|
|
|
# ------------------------------------------------------------
|
|
# Features
|
|
#
|
|
# For each feature enabled here, a corresponding line must exist in
|
|
# the inline Perl script in include\NTMakefile.
|
|
|
|
# Enable Kerberos v5 support in applications
|
|
KRB5=1
|
|
|
|
# Enable KX509 support in the KDC
|
|
KX509=1
|
|
|
|
# Enable PKINIT
|
|
PKINIT=1
|
|
|
|
# Disable AFS support
|
|
NO_AFS=1
|
|
|
|
# OpenSSL (mostly not needed on Windows, but should work)
|
|
# INCLUDE_openssl_crypto=
|
|
# LIB_openssl_crypto=
|
|
|
|
# OpenLDAP package is available
|
|
# OPENLDAP=1
|
|
|
|
# OpenLDAP include directory
|
|
# OPENLDAP_INC=
|
|
|
|
# OpenLDAP library to link against
|
|
# OPENLDAP_LIB=
|
|
|
|
# Support HDB LDAP module
|
|
# OPENLDAP_MODULE=1
|
|
|
|
# OTP support in applications
|
|
OTP=1
|
|
|
|
# Authentication support in telnet
|
|
AUTHENTICATION=1
|
|
|
|
# Enable diagnostics in telnet
|
|
DIAGNOSTICS=1
|
|
|
|
# Enable encryption support in telnet
|
|
ENCRYPTION=1
|
|
|
|
# Use the weak AFS string to key functions
|
|
# ENABLE_AFS_STRING_TO_KEY=1
|
|
|
|
!ifdef PTHREAD_INC
|
|
!ifdef PTHREAD_LIB
|
|
|
|
# We have <pthread.h>
|
|
HAVE_PTHREAD_H=1
|
|
|
|
# Make thread-safe libraries
|
|
ENABLE_PTHREAD_SUPPORT=1
|
|
|
|
!endif
|
|
!endif
|
|
|
|
# Support for broken ENV_{VAR,VAL} telnets
|
|
# ENV_HACK=1
|
|
|
|
# Use the Kerberos Credentials Manager
|
|
# HAVE_KCM=1
|
|
|
|
# Use the sqlite backend
|
|
HAVE_SCC=1
|
|
|
|
DIR_hdbdir=%{COMMON_APPDATA}/heimdal/hdb
|
|
|
|
# Disable weak crypto
|
|
WEAK_CRYPTO=0
|
|
|
|
# Enable hcrypt fallback mechanisms
|
|
HCRYPTO_FALLBACK=1
|
|
|
|
# Disable use of GSS LOCALNAME support
|
|
NO_LOCALNAME=1
|
|
|
|
# Windows CRT rename does not unlink the target
|
|
RENAME_DOES_NOT_UNLINK=1
|
|
|
|
# Disable build of installers
|
|
!ifndef NO_INSTALLERS
|
|
BUILD_INSTALLERS=1
|
|
!endif
|