mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 08:21:07 +02:00
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:
@@ -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 \
|
||||||
|
@@ -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 \
|
||||||
|
@@ -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
|
||||||
|
|
||||||
|
@@ -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 {
|
||||||
|
@@ -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 \
|
||||||
|
@@ -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"
|
||||||
|
@@ -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"
|
||||||
|
@@ -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;
|
||||||
|
@@ -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
|
||||||
|
@@ -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
|
||||||
|
@@ -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"
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user