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:
Jan Kneschke 2005-09-24 12:06:04 +00:00
parent b46fa4497b
commit b4d9d061c8
23 changed files with 24 additions and 22 deletions

View File

@ -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

View File

@ -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

View File

@ -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"

View File

@ -1,7 +1,9 @@
#ifndef _FDEVENT_H_
#define _FDEVENT_H_
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "settings.h"
#include "bitset.h"

View File

@ -1,4 +1,6 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef HAVE_CRYPT_H
# include <crypt.h>

View File

@ -1,7 +1,6 @@
#include <string.h>
#include "http_auth_digest.h"
#include "config.h"
#include "buffer.h"
#ifndef USE_OPENSSL

View File

@ -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];

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -8,8 +8,6 @@
#include "plugin.h"
#include "config.h"
typedef struct {
array *access_deny;
} plugin_config;

View File

@ -9,9 +9,6 @@
#include "plugin.h"
#include "config.h"
/* plugin config for all request/connections */
typedef struct {
array *alias;

View File

@ -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>

View File

@ -14,7 +14,6 @@
#include "plugin.h"
#include "config.h"
#include "response.h"
#include "stat_cache.h"
#include "stream.h"

View File

@ -11,8 +11,6 @@
#include "plugin.h"
#include "stat_cache.h"
#include "config.h"
/**
* this is a expire module for a lighttpd
*

View File

@ -12,8 +12,6 @@
#include "stat_cache.h"
#include "config.h"
/* plugin config for all request/connections */
typedef struct {

View File

@ -5,7 +5,6 @@
#include <strings.h>
#include "plugin.h"
#include "config.h"
#include "log.h"
#include "stat_cache.h"

View File

@ -7,8 +7,6 @@
#include "plugin.h"
#include "config.h"
#include "response.h"
/* plugin config for all request/connections */

View File

@ -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

View File

@ -11,8 +11,6 @@
#include "plugin.h"
#include "config.h"
#ifdef HAVE_PWD_H
#include <pwd.h>
#endif

View File

@ -1,7 +1,9 @@
#ifndef _NETWORK_BACKENDS_H_
#define _NETWORK_BACKENDS_H_
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>

View File

@ -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>

View File

@ -5,7 +5,9 @@
#include <fcntl.h>
#include "stream.h"
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "sys-mmap.h"