Install gssapi.h in includedir that includes gssapi/gssapi.h so that either
authorRuss Allbery <rra@stanford.edu>
Thu, 9 Nov 2006 22:56:39 +0000 (22:56 +0000)
committerRuss Allbery <rra@stanford.edu>
Thu, 9 Nov 2006 22:56:39 +0000 (22:56 +0000)
form of #include will work.  Provides better compatibility with Heimdal.

ticket: 2240
Component: krb5-libs
Version_Reported: 1.3.2
Target_Version: 1.6
Tags: pullup

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18791 dc483132-0cff-0310-8789-dd5450dbe970

src/include/Makefile.in
src/include/gssapi.h [new file with mode: 0644]

index 02e7b5e9f4cf0f327a14bf2ed8b684feebe1532a..47bdce823d8fd68d449fbb3fd17ada2d7dc9526f 100644 (file)
@@ -126,3 +126,4 @@ install-headers-unix install:: krb5/krb5.h profile.h
        $(INSTALL_DATA) krb5/krb5.h $(DESTDIR)$(KRB5_INCDIR)$(S)krb5$(S)krb5.h
        $(INSTALL_DATA) $(srcdir)/krb5/locate_plugin.h $(DESTDIR)$(KRB5_INCDIR)$(S)krb5$(S)locate_plugin.h
        $(INSTALL_DATA) profile.h $(DESTDIR)$(KRB5_INCDIR)$(S)profile.h
+       $(INSTALL_DATA) $(srcdir)/gssapi.h $(DESTDIR)$(KRB5_INCDIR)$(S)gssapi.h
diff --git a/src/include/gssapi.h b/src/include/gssapi.h
new file mode 100644 (file)
index 0000000..f557681
--- /dev/null
@@ -0,0 +1,5 @@
+/* 
+ * Wrapper so that #include <gssapi.h> will work without special include
+ * paths.
+ */
+#include <gssapi/gssapi.h>