source: vendor/current/lib/replace/system/gssapi.h

Last change on this file was 988, checked in by Silvan Scherrer, 9 years ago

Samba Server: update vendor to version 4.4.3

File size: 1.4 KB
Line 
1#ifndef _system_gssapi_h
2#define _system_gssapi_h
3
4/*
5 Unix SMB/CIFS implementation.
6
7 GSSAPI system include wrappers
8
9 Copyright (C) Andrew Tridgell 2004
10
11 ** NOTE! The following LGPL license applies to the replace
12 ** library. This does NOT imply that all of Samba is released
13 ** under the LGPL
14
15 This library is free software; you can redistribute it and/or
16 modify it under the terms of the GNU Lesser General Public
17 License as published by the Free Software Foundation; either
18 version 3 of the License, or (at your option) any later version.
19
20 This library is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 Lesser General Public License for more details.
24
25 You should have received a copy of the GNU Lesser General Public
26 License along with this library; if not, see <http://www.gnu.org/licenses/>.
27
28*/
29
30#ifdef HAVE_GSSAPI
31
32#ifdef HAVE_GSSAPI_GSSAPI_EXT_H
33#include <gssapi/gssapi_ext.h>
34#elif HAVE_GSSAPI_GSSAPI_H
35#include <gssapi/gssapi.h>
36#elif HAVE_GSSAPI_GSSAPI_GENERIC_H
37#include <gssapi/gssapi_generic.h>
38#elif HAVE_GSSAPI_H
39#include <gssapi.h>
40#endif
41
42#if HAVE_GSSAPI_GSSAPI_KRB5_H
43#include <gssapi/gssapi_krb5.h>
44#endif
45
46#if HAVE_GSSAPI_GSSAPI_SPNEGO_H
47#include <gssapi/gssapi_spnego.h>
48#elif HAVE_GSSAPI_SPNEGO_H
49#include <gssapi_spnego.h>
50#endif
51
52#endif
53#endif
Note: See TracBrowser for help on using the repository browser.