* configure.in: Put #undef for the PACKAGE_* symbols at the start of
autoconf.h. Use a leading comment to hide the #undef from the autoconf
substitutions.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17228
dc483132-0cff-0310-8789-
dd5450dbe970
+2005-06-06 Ken Raeburn <raeburn@mit.edu>
+
+ * configure.in: Put #undef for the PACKAGE_* symbols at the start
+ of autoconf.h. Use a leading comment to hide the #undef from the
+ autoconf substitutions.
+
2005-06-01 Ken Raeburn <raeburn@mit.edu>
* configure.in: Identify package in AC_INIT call.
AC_C_INLINE
AH_TOP([
#ifndef KRB5_AUTOCONF_H
+/* Leading comment stops autoconf/config.status from turning these
+ into #define statements. But the preprocessor will still pay
+ attention to them. (Comment removal is in translation phase 3;
+ processing of #undef is phase 4.) */
+/*x*/#undef PACKAGE_NAME
+/*x*/#undef PACKAGE_VERSION
+/*x*/#undef PACKAGE_BUGREPORT
+/*x*/#undef PACKAGE_STRING
+/*x*/#undef PACKAGE_TARNAME
])
AH_BOTTOM([
#if defined(__GNUC__) && !defined(inline)