-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathconfig.h.w32
86 lines (67 loc) · 2.61 KB
/
config.h.w32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* -*- c -*-
*
* This is a static, stripped-down version of config.h.in for Windows
* platforms. It's hand-tweaked to define the right symbols so that
* remctl will build properly on Windows. (This may include lying about
* certain features that don't matter on a Windows build.)
*
* Written by Matthew Loar
* Copyright 2020 Russ Allbery <[email protected]>
* Copyright 2008, 2011 Matthew Loar
* Copyright 2009 Jeffrey Altman
* Copyright 2008-2009, 2011
* The Board of Trustees of the Leland Stanford Junior University
*
* SPDX-License-Identifier: MIT
*/
/* Define to 1 if you have the declaration of `inet_ntoa', and to 0 if you
don't. */
#define HAVE_DECL_INET_NTOA 1
/* Define to 1 if you have the `getaddrinfo' function. */
/* Defined to empty in krb5 include files */
#undef HAVE_GETADDRINFO
#define HAVE_GETADDRINFO 1
/* Define to 1 if you have the `getnameinfo' function. */
/* Defined to empty in krb5 include files */
#undef HAVE_GETNAMEINFO
#define HAVE_GETNAMEINFO 1
/* Define if your system has a working inet_ntoa function. */
#define HAVE_INET_NTOA 1
/* Define to 1 if you have the `krb5_free_keytab_entry_contents' function. */
#define HAVE_KRB5_FREE_KEYTAB_ENTRY_CONTENTS 1
/* Define to 1 if the system has the type `krb5_realm'. */
#define HAVE_KRB5_REALM
/* Define to 1 if the system has <gssapi/gssapi.h>. */
#define HAVE_GSSAPI_GSSAPI_H
/* Define to 1 if the system has <gssapi/gssapi_krb5.h>. */
#define HAVE_GSSAPI_GSSAPI_KRB5_H
/* Define to 1 if the system has the type `long long'. */
#define HAVE_LONG_LONG
/* Define to 1 if you have the `setenv' function. */
#define HAVE_SETENV 1
/* Define if your system has a working snprintf function. */
#define HAVE_SNPRINTF 1
/* Define to 1 if you have the <string.h> header file. */
/* Defined in krb5 include files */
#ifndef HAVE_STRING_H
# define HAVE_STRING_H 1
#endif
/* Define to 1 if the system has the type `struct sockaddr_storage'. */
#define HAVE_STRUCT_SOCKADDR_STORAGE 1
/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1
/* Define to 1 if the GSS-API library uses RFC-compliant OIDs. */
#define HAVE_GSS_RFC_OIDS 1
/* Define to 1 if you have the declaration of `gss_mech_krb5', and to 0 if you
don't. */
#define HAVE_DECL_GSS_MECH_KRB5 1
#pragma warning( disable: 4068 ) /* unknown pragma */
#pragma warning( disable: 4996 ) /* POSIX strdup */
#ifndef RC_INVOKED
# include <sdkddkver.h>
# if (NTDDI_VERSION >= NTDDI_VISTA)
# error Your build environment is configured for Windows Vista or above. \
This will cause compilation to fail. \
Configure your build environment to target Windows XP.
# endif
#endif