libcli/security: implement object_in_list()
[Samba/gebeck_regimport.git] / source4 / heimdal_build / config.h
blobbd5a1b86bbe44e05e4cfe2ac5376a40b068c4ce9
1 /*
2 this is a replacement config.h for building the heimdal parts of the
3 Samba source tree
4 */
6 #ifndef HAVE_HEIMDAL_CONFIG_H
7 #define HAVE_HEIMDAL_CONFIG_H
9 #include "include/config.h"
10 #include "../replace/replace.h"
11 #include "../lib/util/attr.h"
12 #define HEIMDAL_NORETURN_ATTRIBUTE _NORETURN_
13 #define HEIMDAL_PRINTF_ATTRIBUTE(x) FORMAT_ATTRIBUTE(x)
14 #define HEIMDAL_UNUSED_ATTRIBUTE _UNUSED_
16 #define VERSIONLIST {"Lorikeet-Heimdal, Modified for Samba4"}
18 #define VERSION "Samba"
20 #define PACKAGE VERSION
21 #define PACKAGE_BUGREPORT "https://bugzilla.samba.org/"
22 #define PACKAGE_VERSION VERSION
24 #define RCSID(msg) struct __rcsid { int __rcsdi; }
25 #define KRB5
27 /* This needs to be defined for roken too */
28 #ifdef VOID_RETSIGTYPE
29 #define SIGRETURN(x) return
30 #else
31 #define SIGRETURN(x) return (RETSIGTYPE)(x)
32 #endif
34 #define HDB_DB_DIR ""
36 #undef HAVE_KRB5_ENCRYPT_BLOCK
38 /* Because it can't be defined in roken.h */
39 #ifndef USE_HCRYPTO_IMATH
40 #define USE_HCRYPTO_IMATH
41 #endif
43 /*Workaround for heimdal define vs samba define*/
44 #ifdef HAVE_LIBINTL_H
45 #define LIBINTL
46 #endif
48 /* heimdal now wants some atomic ops - ask for the non-atomic ones for Samba */
49 #define HEIM_BASE_NON_ATOMIC 1
51 #endif