From 130e21cb2b4e1725ccdd9c18bed032bbd0ec9095 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Thu, 7 Sep 2006 22:16:45 +0000 Subject: [PATCH] * Makefile.in (krb5/krb5.h): Wrap the content in macro test for multiple-inclusion protection. ticket: 3522 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18571 dc483132-0cff-0310-8789-dd5450dbe970 --- src/include/Makefile.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/include/Makefile.in b/src/include/Makefile.in index d1c6b4251..02e7b5e9f 100644 --- a/src/include/Makefile.in +++ b/src/include/Makefile.in @@ -79,8 +79,11 @@ krb5/krb5.h: $(srcdir)/krb5/krb5.hin krb5_err.h kdb5_err.h kv5m_err.h krb524_err if cmp -s krb5.h $(srcdir)/krb5.h; then :; else rm -f krb5.h; fi; \ else :; fi echo "/* This file is generated, please don't edit it directly. */" > krb5/krb5.h + echo "#ifndef KRB5_KRB5_H_INCLUDED" >> krb5/krb5.h + echo "#define KRB5_KRB5_H_INCLUDED" >> krb5/krb5.h cat $(srcdir)/krb5/krb5.hin krb5_err.h kdb5_err.h kv5m_err.h krb524_err.h \ asn1_err.h >> krb5/krb5.h + echo "#endif /* KRB5_KRB5_H_INCLUDED */" >> krb5/krb5.h verify-calling-conventions-krb5: krb5/krb5.h $(PERL) -w $(SRCTOP)/util/def-check.pl krb5/krb5.h $(SRCTOP)/lib/krb5_32.def -- 2.26.2