mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
8ea6f41ec9
- We don't use them anywhere (heimdal has special rules) - They calculate the version at configure time and may contain the wrong git hash while building - If we really need them in future we should add them to version.h and not config.h, as the changing git hash will trigger a full rebuild if config.h changes. metze
45 lines
903 B
C
45 lines
903 B
C
/*
|
|
this is a replacement config.h for building the heimdal parts of the
|
|
Samba source tree
|
|
*/
|
|
|
|
#ifndef HAVE_HEIMDAL_CONFIG_H
|
|
#define HAVE_HEIMDAL_CONFIG_H
|
|
|
|
#include "include/config.h"
|
|
#include "../replace/replace.h"
|
|
|
|
#define VERSIONLIST {"Lorikeet-Heimdal, Modified for Samba4"}
|
|
|
|
#define VERSION "Samba"
|
|
|
|
#define PACKAGE VERSION
|
|
#define PACKAGE_BUGREPORT "https://bugzilla.samba.org/"
|
|
#define PACKAGE_VERSION VERSION
|
|
|
|
#define RCSID(msg) struct __rcsid { int __rcsdi; }
|
|
#define KRB5
|
|
|
|
/* This needs to be defined for roken too */
|
|
#ifdef VOID_RETSIGTYPE
|
|
#define SIGRETURN(x) return
|
|
#else
|
|
#define SIGRETURN(x) return (RETSIGTYPE)(x)
|
|
#endif
|
|
|
|
#define HDB_DB_DIR ""
|
|
|
|
#undef HAVE_KRB5_ENCRYPT_BLOCK
|
|
|
|
/* Because it can't be defined in roken.h */
|
|
#ifndef USE_HCRYPTO_IMATH
|
|
#define USE_HCRYPTO_IMATH
|
|
#endif
|
|
|
|
/*Workaround for heimdal define vs samba define*/
|
|
#ifdef HAVE_LIBINTL_H
|
|
#define LIBINTL
|
|
#endif
|
|
|
|
#endif
|