nhttpd: fix compile after include change.

Origin commit data
------------------
Branch: ni/coolstream
Commit: cfea9b493f
Author: [CST] Bas <bas@coolstreamtech.com>
Date: 2012-03-04 (Sun, 04 Mar 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Bas
2012-03-04 15:51:56 +08:00
parent 0494f47426
commit 5451b4c30e
11 changed files with 17 additions and 13 deletions

View File

@@ -3,6 +3,8 @@ SUBDIRS = yhttpd_core yhttpd_mods tuxboxapi web
AM_CPPFLAGS = -fno-rtti -fno-exceptions
INCLUDES = \
-I$(srcdir) \
-I$(top_srcdir) \
-I$(top_srcdir)/lib \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/zapit/include \

View File

@@ -1,6 +1,7 @@
AM_CPPFLAGS = -fno-rtti -fno-exceptions
INCLUDES = \
-I$(top_srcdir) \
-I$(top_srcdir)/lib \
-I$(top_srcdir)/src/zapit/include \
-I$(top_srcdir)/src \

View File

@@ -14,12 +14,12 @@
// yhttpd
#include "yconfig.h"
#include "ylogging.h"
#include "ylanguage.h"
#include "yhook.h"
#include <ylogging.h>
#include <ylanguage.h>
#include <yhook.h>
#ifdef Y_CONFIG_USE_YPARSER
#include "mod_yparser.h"
#include <mod_yparser.h>
static CyParser yParser;
#endif

View File

@@ -15,8 +15,8 @@
#include <stdlib.h>
// yhttpd
#include "yconfig.h"
#include "ytypes_globals.h"
#include "ywebserver.h"
//#include <ytypes_globals.h>
#include <ywebserver.h>
//-----------------------------------------------------------------------------
class Cyhttpd {

View File

@@ -1,4 +1,5 @@
INCLUDES = \
-I$(srcdir) \
-I$(top_srcdir)/lib \
-I$(top_srcdir)/src/zapit/include \
-I$(top_srcdir)/src \

View File

@@ -9,8 +9,8 @@
#include <cstdlib>
// yhttpd
#include "yconfig.h"
#include "yhttpd.h"
#include <yconfig.h>
#include <yhttpd.h>
#include "ytypes_globals.h"
#include "ylanguage.h"
#include "yconnection.h"

View File

@@ -9,7 +9,7 @@
#include <cstdlib>
// yhttpd
#include "yconfig.h"
#include <yconfig.h>
#include "ytypes_globals.h"
#include "ylogging.h"
#include "yconnection.h"

View File

@@ -8,7 +8,7 @@
// system
#include <pthread.h>
// yhttpd
#include "yconfig.h"
#include <yconfig.h>
// forward declaration
class CWebserverConnection;

View File

@@ -11,7 +11,7 @@
#include <map>
// yhttpd
#include "yconfig.h"
#include <yconfig.h>
#include "ytypes_globals.h"
// forward declaration

View File

@@ -13,7 +13,7 @@
#include <netinet/tcp.h>
#include <sys/socket.h>
#include "yconfig.h"
#include <yconfig.h>
#include "ytypes_globals.h"
#ifdef Y_CONFIG_USE_OPEN_SSL

View File

@@ -20,7 +20,7 @@
#include <arpa/inet.h>
// yhttpd
#include "yconfig.h"
#include <yconfig.h>
#include "ytypes_globals.h"
#include "ysocket.h"