diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-12-08 12:06:08 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-12-08 12:06:08 +0000 |
commit | 09b01cdcbd7d3400bf88950684b17f9228595700 (patch) | |
tree | ded3d6558ac6d3e79083ca6346078a786a472b87 /source3/include | |
parent | 35eb6be4ea1b52e2f6028c979ead952a2f96f99d (diff) | |
download | samba-09b01cdcbd7d3400bf88950684b17f9228595700.tar.gz samba-09b01cdcbd7d3400bf88950684b17f9228595700.tar.bz2 samba-09b01cdcbd7d3400bf88950684b17f9228595700.zip |
check for gssapi_generic.h
(This used to be commit 838fbac7a086ff82498c3f0ba95b714123a7428c)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/config.h.in | 3 | ||||
-rw-r--r-- | source3/include/includes.h | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/source3/include/config.h.in b/source3/include/config.h.in index 7f6f4a82db..d00722c5bd 100644 --- a/source3/include/config.h.in +++ b/source3/include/config.h.in @@ -820,6 +820,9 @@ /* Define if you have the <gssapi/gssapi.h> header file. */ #undef HAVE_GSSAPI_GSSAPI_H +/* Define if you have the <gssapi/gssapi_generic.h> header file. */ +#undef HAVE_GSSAPI_GSSAPI_GENERIC_H + /* Define if you have the <history.h> header file. */ #undef HAVE_HISTORY_H diff --git a/source3/include/includes.h b/source3/include/includes.h index 6a44bf7aa8..ec4628e51f 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -391,6 +391,11 @@ #if HAVE_GSSAPI_GSSAPI_H #include <gssapi/gssapi.h> +#else +#undef HAVE_KRB5 +#endif + +#if HAVE_GSSAPI_GSSAPI_GENERIC_H #include <gssapi/gssapi_generic.h> #else #undef HAVE_KRB5 |