/ Modules / GSS.modulemap
GSS.modulemap
 1  framework module GSS [extern_c] {
 2    export *
 3    header "gssapi.h"
 4    // The headers below are all included from gssapi.h
 5    // and aren't standalone (depend on defs from gssapi.h).
 6    // Include them textually and re-export general content
 7    // in the matching submodules.
 8    textual header "gssapi_oid.h"
 9    textual header "gssapi_protos.h"
10    textual header "gssapi_apple.h"
11  
12    module apple {
13      export GSS
14    }
15    
16    explicit module krb5 {
17      header "gssapi_krb5.h"
18      export *
19    }
20  
21    module oid {
22      header "gssapi_oid.h"
23      export *
24    }
25  
26    module protos {
27      header "gssapi_protos.h"
28      export *
29    }
30  
31    module spnego {
32      header "gssapi_spnego.h"
33      export *
34    }
35  }
36