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

(-)strings/apr_strings.c (-4 lines)
Lines 55-64 Link Here
55
#define APR_WANT_STRFUNC
55
#define APR_WANT_STRFUNC
56
#include "apr_want.h"
56
#include "apr_want.h"
57
57
58
#ifdef HAVE_STDDEF_H
59
#include <stddef.h> /* NULL */
60
#endif
61
62
#ifdef HAVE_STDLIB_H
58
#ifdef HAVE_STDLIB_H
63
#include <stdlib.h> /* strtol and strtoll */
59
#include <stdlib.h> /* strtol and strtoll */
64
#endif
60
#endif
(-)include/apr.h.in (+1 lines)
Lines 87-92 Link Here
87
#define APR_HAVE_SEMAPHORE_H     @semaphoreh@
87
#define APR_HAVE_SEMAPHORE_H     @semaphoreh@
88
#define APR_HAVE_SIGNAL_H        @signalh@
88
#define APR_HAVE_SIGNAL_H        @signalh@
89
#define APR_HAVE_STDARG_H        @stdargh@
89
#define APR_HAVE_STDARG_H        @stdargh@
90
#define APR_HAVE_STDDEF_H        @stddefh@
90
#define APR_HAVE_STDINT_H        @stdint@
91
#define APR_HAVE_STDINT_H        @stdint@
91
#define APR_HAVE_STDIO_H         @stdioh@
92
#define APR_HAVE_STDIO_H         @stdioh@
92
#define APR_HAVE_STDLIB_H        @stdlibh@
93
#define APR_HAVE_STDLIB_H        @stdlibh@
(-)include/apr_strings.h (+4 lines)
Lines 51-56 Link Here
51
#define APR_WANT_IOVEC
51
#define APR_WANT_IOVEC
52
#include "apr_want.h"
52
#include "apr_want.h"
53
53
54
#if APR_HAVE_STDDEF_H
55
#include <stddef.h> /* NULL */
56
#endif
57
54
#if APR_HAVE_STDARG_H
58
#if APR_HAVE_STDARG_H
55
#include <stdarg.h>
59
#include <stdarg.h>
56
#endif
60
#endif
(-)include/apr_tables.h (+4 lines)
Lines 25-30 Link Here
25
#include "apr.h"
25
#include "apr.h"
26
#include "apr_pools.h"
26
#include "apr_pools.h"
27
27
28
#if APR_HAVE_STDDEF_H
29
#include <stddef.h> /* NULL */
30
#endif
31
28
#if APR_HAVE_STDARG_H
32
#if APR_HAVE_STDARG_H
29
#include <stdarg.h>     /* for va_list */
33
#include <stdarg.h>     /* for va_list */
30
#endif
34
#endif
(-)configure.in (+1 lines)
Lines 1223-1228 Link Here
1223
AC_SUBST(netinet_sctp_uioh)
1223
AC_SUBST(netinet_sctp_uioh)
1224
AC_SUBST(netinet_tcph)
1224
AC_SUBST(netinet_tcph)
1225
AC_SUBST(stdargh)
1225
AC_SUBST(stdargh)
1226
AC_SUBST(stddefh)
1226
AC_SUBST(stdioh)
1227
AC_SUBST(stdioh)
1227
AC_SUBST(stdlibh)
1228
AC_SUBST(stdlibh)
1228
AC_SUBST(stringh)
1229
AC_SUBST(stringh)

Return to bug 47191