summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-09-07 04:52:06 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:17:48 -0500
commit820492ba79aba44ab35dd7af7c0e8cafab61f114 (patch)
tree71151efb0c94a090cde55928e9b2ee4187942c2a
parent4262be2e45a6d8c52fec909daa4efc18551206fc (diff)
downloadsamba-820492ba79aba44ab35dd7af7c0e8cafab61f114.tar.gz
samba-820492ba79aba44ab35dd7af7c0e8cafab61f114.tar.xz
samba-820492ba79aba44ab35dd7af7c0e8cafab61f114.zip
r18203: rearranged the overrides in heimdal_build/*.h to avoid the use of
heimdal_build/config.h from interfering with libreplace This is a workaround for the fact that with the current CFLAGS and dependencies system, -Iheimdal_build is put at the front of the includes list, which means it overrides the normal config.h (This used to be commit 84335903ceaf2242e43a0c5464e33408daec44b4)
-rw-r--r--source4/heimdal_build/config.h35
-rw-r--r--source4/heimdal_build/krb5-types.h20
-rw-r--r--source4/heimdal_build/roken.h26
3 files changed, 33 insertions, 48 deletions
diff --git a/source4/heimdal_build/config.h b/source4/heimdal_build/config.h
index 35f7d3e017d..40c3e6d771f 100644
--- a/source4/heimdal_build/config.h
+++ b/source4/heimdal_build/config.h
@@ -4,41 +4,12 @@
*/
#ifndef HAVE_HEIMDAL_CONFIG_H
-#define HAVE_HEIMDAL_CONFIG_H 1
-
-#include "include/config.h"
-#include "replace.h"
+#define HAVE_HEIMDAL_CONFIG_H
#define RCSID(msg)
-
-#ifdef VOID_RETSIGTYPE
-#define SIGRETURN(x) return
-#else
-#define SIGRETURN(x) return (RETSIGTYPE)(x)
-#endif
-
-/* path to sysconf - should we force this to samba LIBDIR ? */
-#define SYSCONFDIR "/etc"
-
-/* HDB module dir - set to Samba LIBDIR/hdb ? */
-#define HDBDIR "/usr/heimdal/lib"
-
-/* Maximum values on all known systems */
-#define MaxHostNameLen (64+4)
-#define MaxPathLen (1024+4)
-
-#define VERSIONLIST {"Lorikeet-Heimdal, Modified for Samba4 0.7rc1"}
-
-#define VERSION "Samba"
-
-#define ROKEN_LIB_FUNCTION
-
-/* these should be done with configure tests */
#define KRB5
-#define GETHOSTBYADDR_PROTO_COMPATIBLE
-#define GETSERVBYNAME_PROTO_COMPATIBLE
-#define OPENLOG_PROTO_COMPATIBLE
-#define GETSOCKNAME_PROTO_COMPATIBLE
+#include "include/config.h"
+#include "replace.h"
#endif
diff --git a/source4/heimdal_build/krb5-types.h b/source4/heimdal_build/krb5-types.h
index 14c4be7974f..23bdf15b7f2 100644
--- a/source4/heimdal_build/krb5-types.h
+++ b/source4/heimdal_build/krb5-types.h
@@ -3,19 +3,9 @@
#ifndef __krb5_types_h__
#define __krb5_types_h__
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-#if HAVE_INTTYPES_H
-#include <inttypes.h>
-#endif
-#if HAVE_SYS_TYPES_H
-#include <sys/types.h>
-#endif
-#if HAVE_SYS_BITYPES_H
-#include <sys/bitypes.h>
-#endif
+#include "replace.h"
+
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
@@ -24,4 +14,10 @@
typedef socklen_t krb5_socklen_t;
typedef ssize_t krb5_ssize_t;
+#ifdef VOID_RETSIGTYPE
+#define SIGRETURN(x) return
+#else
+#define SIGRETURN(x) return (RETSIGTYPE)(x)
+#endif
+
#endif /* __krb5_types_h__ */
diff --git a/source4/heimdal_build/roken.h b/source4/heimdal_build/roken.h
index 2af82b9e1b5..00632c78352 100644
--- a/source4/heimdal_build/roken.h
+++ b/source4/heimdal_build/roken.h
@@ -1,9 +1,29 @@
/*
- a wrapper to avoid double inclusion of the real roken.h
+ a wrapper to override some of the defines that the heimdal roken system looks at
*/
#ifndef _ROKEN_H_
#define _ROKEN_H_
-#include "heimdal_build/config.h"
+
+/* path to sysconf - should we force this to samba LIBDIR ? */
+#define SYSCONFDIR "/etc"
+
+/* HDB module dir - set to Samba LIBDIR/hdb ? */
+#define HDBDIR "/usr/heimdal/lib"
+
+/* Maximum values on all known systems */
+#define MaxHostNameLen (64+4)
+#define MaxPathLen (1024+4)
+
+#define VERSIONLIST {"Lorikeet-Heimdal, Modified for Samba4 0.7rc1"}
+
+#define VERSION "Samba"
+
+#define ROKEN_LIB_FUNCTION
+
+#define GETHOSTBYADDR_PROTO_COMPATIBLE
+#define GETSERVBYNAME_PROTO_COMPATIBLE
+#define OPENLOG_PROTO_COMPATIBLE
+#define GETSOCKNAME_PROTO_COMPATIBLE
/* even if we do have dlopen, we don't want heimdal using it */
#undef HAVE_DLOPEN
@@ -28,7 +48,5 @@
#define HAVE_SSIZE_T
#endif
-
-
#include "heimdal/lib/roken/roken.h"
#endif