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 AM_CPPFLAGS = -fno-rtti -fno-exceptions
INCLUDES = \ INCLUDES = \
-I$(srcdir) \
-I$(top_srcdir) \
-I$(top_srcdir)/lib \ -I$(top_srcdir)/lib \
-I$(top_srcdir)/src \ -I$(top_srcdir)/src \
-I$(top_srcdir)/src/zapit/include \ -I$(top_srcdir)/src/zapit/include \

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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