+2005-04-07 Tom Yu <tlyu@mit.edu>
+
+ * configure.in: Use awk to work around Makefile quoting problems.
+
2005-02-08 Ken Raeburn <raeburn@mit.edu>
* Makefile.in (LIBINITFUNC, LIBFINIFUNC): Define.
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
AC_CHECK_HEADER(stdint.h,[
- include_stdint="\\#include <stdint.h>"], )
+ include_stdint='awk '\''END{printf("%cinclude <stdint.h>\n", 35);}'\'' < /dev/null'],
+ include_stdint='echo "/* no stdint.h */"')
AC_SUBST(include_stdint)
AC_CHECK_HEADER(xom.h,[
- include_xom="\\#include <xom.h>"],[
- include_xom="/* no xom.h */"])
+ include_xom='awk '\''END{printf("%cinclude <xom.h>\n", 35);}'\'' < /dev/null'], [
+ include_xom='echo "/* no xom.h */"'])
AC_SUBST(include_xom)
KRB5_BUILD_LIBOBJS
KRB5_BUILD_LIBRARY_WITH_DEPS
+2005-04-07 Tom Yu <tlyu@mit.edu>
+
+ * Makefile.in (gssapi.h): Use awk hack to work around quoting
+ problem.
+
2005-02-02 Ken Raeburn <raeburn@mit.edu>
* Makefile.in (gssapi.h): Change SIZEOF symbols to start with GSS_
(echo "/* This is the gssapi.h prologue. */"; \
echo "/* It contains some choice pieces of autoconf.h */"; \
sed -n "/SIZEOF/s//GSS_&/p" < $(BUILDTOP)/include/krb5/autoconf.h; \
- echo "$(include_xom)"; \
+ $(include_xom); \
echo "/* End of gssapi.h prologue. */"; \
cat $(srcdir)/gssapi.hin )> $$h && \
(set -x; $(MV) $$h $@) ; e=$$?; $(RM) $$h; exit $$e
+2005-04-07 Tom Yu <tlyu@mit.edu>
+
+ * Makefile.in (gssapi_krb5.h): Use awk hack to work around quoting
+ problem.
+
2005-01-13 Jeffrey Altman <jaltman@mit.edu>
* init_sec_context.c, acquire_cred.c: fix calls to
@echo "Creating gssapi.h" ; \
h=gss$$$$; $(RM) $$h; \
(echo "/* This is the gssapi_krb5.h prologue. */"; \
- echo "$(include_stdint)" ; \
+ $(include_stdint) ; \
echo "/* End of gssapi_krb5.h prologue. */"; \
cat $(srcdir)/gssapi_krb5.hin )> $$h && \
(set -x; $(MV) $$h $@) ; e=$$?; $(RM) $$h; exit $$e