r8424: bring in some more of heimdals m4 macros, and remove the hard-coding of severa...
[ira/wip.git] / source4 / heimdal_build / config.h
1 /*
2   this is a replacement config.h for building the heimdal parts of the
3   Samba source tree
4 */
5
6 /* bring in the samba4 config.h */
7 #include "include/config.h"
8
9 #ifdef HAVE_KRB5
10
11 #define RCSID(msg) \
12 static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
13
14 #ifdef VOID_RETSIGTYPE
15 #define SIGRETURN(x) return
16 #else
17 #define SIGRETURN(x) return (RETSIGTYPE)(x)
18 #endif
19
20 /* path to sysconf - should we force this to samba LIBDIR ? */
21 #define SYSCONFDIR "/etc"
22
23
24 /* Maximum values on all known systems */
25 #define MaxHostNameLen (64+4)
26 #define MaxPathLen (1024+4)
27
28 #define VERSIONLIST {"Lorikeet-Heimdal, Modified for Samba4 0.7rc1"}
29
30 /* even if we do have dlopen, we don't want heimdal using it */
31 #undef HAVE_DLOPEN
32
33 #define VERSION "Samba"
34
35 #define ROKEN_LIB_FUNCTION
36
37 /* these should be done with configure tests */
38 #define KRB5
39 #define HAVE_LONG_LONG
40
41 #include <sys/types.h>
42 #include <stdarg.h>
43 #include "lib/replace/replace.h"
44 #endif