* configure.in: Check for xom.h. Set include_xom to a C include directive or
authorKen Raeburn <raeburn@mit.edu>
Thu, 3 Feb 2005 00:26:17 +0000 (00:26 +0000)
committerKen Raeburn <raeburn@mit.edu>
Thu, 3 Feb 2005 00:26:17 +0000 (00:26 +0000)
comment, and substitute it in the Makefiles.

ticket: 2910
status: open

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

src/lib/gssapi/ChangeLog
src/lib/gssapi/configure.in

index af50c5e46dea5d08d9cd2619925807c46390bb8a..db3cc07dc3faae7fb9babb39c934c70a2b6b174c 100644 (file)
@@ -1,3 +1,8 @@
+2005-02-02  Ken Raeburn  <raeburn@mit.edu>
+
+       * configure.in: Check for xom.h.  Set include_xom to a C include
+       directive or comment, and substitute it in the Makefiles.
+
 2005-01-17  Jeffrey Altman <jaltman@mit.edu>
 
         * gss_libinit.c: implement cleanup of mutexes, static vars, etc for Windows
index 72ab7983ad8cc17e489b6c6f00240de9cde75c42..1a4f1755e5d51c869886595a8bb408adb201f0c5 100644 (file)
@@ -9,6 +9,10 @@ AC_CHECK_SIZEOF(long)
 AC_CHECK_HEADER(stdint.h,[
        include_stdint="\\#include <stdint.h>"], )
 AC_SUBST(include_stdint)
+AC_CHECK_HEADER(xom.h,[
+       include_xom="\\#include <xom.h>"],[
+       include_xom="/* no xom.h */"])
+AC_SUBST(include_xom)
 KRB5_BUILD_LIBOBJS
 KRB5_BUILD_LIBRARY_WITH_DEPS
 V5_AC_OUTPUT_MAKEFILE(. generic krb5)