either remove include config.h or covered it in HAVE_CONFIG_H
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@733 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
parent
b46fa4497b
commit
b4d9d061c8
|
@ -2,7 +2,9 @@
|
|||
#define ARRAY_H
|
||||
|
||||
#include <stdlib.h>
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
#ifdef HAVE_PCRE_H
|
||||
# include <pcre.h>
|
||||
#endif
|
||||
|
|
|
@ -5,7 +5,9 @@
|
|||
#include <sys/time.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <limits.h>
|
||||
#ifdef HAVE_STDINT_H
|
||||
|
|
|
@ -6,7 +6,9 @@
|
|||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
#include "configfile.h"
|
||||
#include "buffer.h"
|
||||
#include "array.h"
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
#ifndef _FDEVENT_H_
|
||||
#define _FDEVENT_H_
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
#include "settings.h"
|
||||
#include "bitset.h"
|
||||
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_CRYPT_H
|
||||
# include <crypt.h>
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#include <string.h>
|
||||
#include "http_auth_digest.h"
|
||||
|
||||
#include "config.h"
|
||||
#include "buffer.h"
|
||||
|
||||
#ifndef USE_OPENSSL
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
#ifndef _DIGCALC_H_
|
||||
#define _DIGCALC_H_
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#define HASHLEN 16
|
||||
typedef unsigned char HASH[HASHLEN];
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
#ifndef _KEY_VALUE_H_
|
||||
#define _KEY_VALUE_H_
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_PCRE_H
|
||||
# include <pcre.h>
|
||||
|
|
|
@ -12,7 +12,9 @@
|
|||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_SYSLOG_H
|
||||
#include <syslog.h>
|
||||
|
|
|
@ -23,7 +23,9 @@ These notices must be retained in any copies of any part of this
|
|||
documentation and/or software.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#ifndef USE_OPENSSL
|
||||
#include <string.h>
|
||||
|
|
|
@ -8,8 +8,6 @@
|
|||
|
||||
#include "plugin.h"
|
||||
|
||||
#include "config.h"
|
||||
|
||||
typedef struct {
|
||||
array *access_deny;
|
||||
} plugin_config;
|
||||
|
|
|
@ -9,9 +9,6 @@
|
|||
|
||||
#include "plugin.h"
|
||||
|
||||
#include "config.h"
|
||||
|
||||
|
||||
/* plugin config for all request/connections */
|
||||
typedef struct {
|
||||
array *alias;
|
||||
|
|
|
@ -20,8 +20,6 @@
|
|||
#include "crc32.h"
|
||||
#include "etag.h"
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#if defined HAVE_ZLIB_H && defined HAVE_LIBZ
|
||||
# define USE_ZLIB
|
||||
# include <zlib.h>
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
|
||||
#include "plugin.h"
|
||||
|
||||
#include "config.h"
|
||||
#include "response.h"
|
||||
#include "stat_cache.h"
|
||||
#include "stream.h"
|
||||
|
|
|
@ -11,8 +11,6 @@
|
|||
#include "plugin.h"
|
||||
#include "stat_cache.h"
|
||||
|
||||
#include "config.h"
|
||||
|
||||
/**
|
||||
* this is a expire module for a lighttpd
|
||||
*
|
||||
|
|
|
@ -12,8 +12,6 @@
|
|||
|
||||
#include "stat_cache.h"
|
||||
|
||||
#include "config.h"
|
||||
|
||||
/* plugin config for all request/connections */
|
||||
|
||||
typedef struct {
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
#include <strings.h>
|
||||
|
||||
#include "plugin.h"
|
||||
#include "config.h"
|
||||
#include "log.h"
|
||||
|
||||
#include "stat_cache.h"
|
||||
|
|
|
@ -7,8 +7,6 @@
|
|||
|
||||
#include "plugin.h"
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "response.h"
|
||||
|
||||
/* plugin config for all request/connections */
|
||||
|
|
|
@ -2,8 +2,6 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
|
||||
|
||||
#include "base.h"
|
||||
#include "log.h"
|
||||
#include "buffer.h"
|
||||
|
@ -12,8 +10,6 @@
|
|||
#include "response.h"
|
||||
#include "inet_ntop_cache.h"
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#if defined(HAVE_GDBM_H)
|
||||
#include <gdbm.h>
|
||||
#endif
|
||||
|
|
|
@ -11,8 +11,6 @@
|
|||
|
||||
#include "plugin.h"
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#ifdef HAVE_PWD_H
|
||||
#include <pwd.h>
|
||||
#endif
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
#ifndef _NETWORK_BACKENDS_H_
|
||||
#define _NETWORK_BACKENDS_H_
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,9 @@
|
|||
|
||||
#include "plugin.h"
|
||||
#include "log.h"
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_VALGRIND_VALGRIND_H
|
||||
#include <valgrind/valgrind.h>
|
||||
|
|
|
@ -5,7 +5,9 @@
|
|||
#include <fcntl.h>
|
||||
|
||||
#include "stream.h"
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "sys-mmap.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue