config.h.in generated by autoheader. It is needed because
config.h.in has some thing we don't want to leak, like renaming of
missing libc functions.
* .cvsignore: Twiddle to reflect current reality.
* db-int.h: #include config.h since db.h includes db-config.h
which is not quite the same now.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12504
dc483132-0cff-0310-8789-
dd5450dbe970
-db-config.h.in
-stamp-h.in
+config.h.in
+stamp-h2.in
+2000-07-01 Tom Yu <tlyu@mit.edu>
+
+ * db-config.h.in: New file; contains useful tidbits from
+ config.h.in generated by autoheader. It is needed because
+ config.h.in has some thing we don't want to leak, like renaming of
+ missing libc functions.
+
+ * .cvsignore: Twiddle to reflect current reality.
+
+ * db-int.h: #include config.h since db.h includes db-config.h
+ which is not quite the same now.
+
2000-06-30 Tom Yu <tlyu@mit.edu>
* db-int.h: Remove renaming for memmove, strerror, mkstemp since
--- /dev/null
+/* include/db-config.h.in. Derived from autoconf-generated config.h.in. */
+
+/* Define to empty if the keyword does not work. */
+#undef const
+
+/* Define to `unsigned' if <sys/types.h> doesn't define. */
+#undef size_t
+
+/* Define if your processor stores words with the most significant
+ byte first (like Motorola and SPARC, unlike Intel and VAX). */
+#undef WORDS_BIGENDIAN
+
+#undef ssize_t
+
+#undef u_char
+#undef u_short
+#undef u_int
+#undef u_long
+
+#undef int8_t
+#undef u_int8_t
+#undef int16_t
+#undef u_int16_t
+#undef int32_t
+#undef u_int32_t
+
+/* The number of bytes in a int. */
+#undef SIZEOF_INT
#ifndef _DB_INT_H_
#define _DB_INT_H_
+#include "config.h"
#include "db.h"
-/* deal with autoconf-based stuff (db.h includes db-config.h) */
+/* deal with autoconf-based stuff */
#define DB_LITTLE_ENDIAN 1234
#define DB_BIG_ENDIAN 4321