View | Details | Raw Unified | Return to bug 119794
Collapse All | Expand All

(-)config.h.in 22 Jan 2008 19:24:50 -0000 (-1 / +6 lines)
Lines 1-4 Link Here
1
2
/* Define to the version of this package. */
1
/* Define to the version of this package. */
3
/* Conflicts with defintions from Apache */
2
/* Conflicts with defintions from Apache */
4
/* #undef PACKAGE_VERSION */
3
/* #undef PACKAGE_VERSION */
Lines 17-19 Link Here
17
16
18
/* Define if your GSSAPI library supports handling SPNEGO tokens */
17
/* Define if your GSSAPI library supports handling SPNEGO tokens */
19
#undef GSSAPI_SUPPORTS_SPNEGO
18
#undef GSSAPI_SUPPORTS_SPNEGO
19
20
/* Define to 1 if you have the <unistd.h> header file. */
21
#undef HAVE_UNISTD_H
22
23
/* Define to 1 if you have the <sys/types.h> header file. */
24
#undef HAVE_SYS_TYPES_H
(-)configure.in 22 Jan 2008 19:24:50 -0000 (-1 / +3 lines)
Lines 17-23 Link Here
17
17
18
# Checks for header files.
18
# Checks for header files.
19
AC_HEADER_STDC
19
AC_HEADER_STDC
20
AC_CHECK_HEADERS([limits.h netdb.h stddef.h stdlib.h string.h unistd.h])
20
AC_CHECK_HEADERS([limits.h netdb.h stddef.h stdlib.h string.h])
21
AC_CHECK_HEADERS([unistd.h])
22
AC_CHECK_HEADERS([sys/types.h])
21
23
22
# Checks for typedefs, structures, and compiler characteristics.
24
# Checks for typedefs, structures, and compiler characteristics.
23
#AC_C_CONST
25
#AC_C_CONST
(-)spnegokrb5/spnegokrb5_locl.h 22 Jan 2008 19:24:50 -0000 (+4 lines)
Lines 4-9 Link Here
4
4
5
#include "config.h"
5
#include "config.h"
6
6
7
#if HAVE_SYS_TYPES_H
8
#include <sys/types.h>
9
#endif
10
7
#ifdef HEIMDAL
11
#ifdef HEIMDAL
8
#  include <gssapi.h>
12
#  include <gssapi.h>
9
#else
13
#else
(-)src/mod_auth_kerb.c 22 Jan 2008 19:24:51 -0000 (-2 / +1 lines)
Lines 113-120 Link Here
113
#include <netdb.h> /* gethostbyname() */
113
#include <netdb.h> /* gethostbyname() */
114
#endif /* KRB4 */
114
#endif /* KRB4 */
115
115
116
#ifndef _WIN32
116
#if HAVE_UNISTD_H
117
/* should be HAVE_UNISTD_H instead */
118
#include <unistd.h>
117
#include <unistd.h>
119
#endif
118
#endif
120
119

Return to bug 119794