added aio files. some file restructuring in progress
This commit is contained in:
@ -33,6 +33,6 @@ libqsehttp_la_SOURCES = \
|
||||
upxd.c
|
||||
|
||||
libqsehttp_la_CPPFLAGS = $(CPPFLAGS_ALL_COMMON) $(CPPFLAGS_HTTPD_MOD) $(LTDLINCL)
|
||||
libqsehttp_la_LDFLAGS = -L../sys -L../cmn -version-info 1:0:0 -no-undefined
|
||||
libqsehttp_la_LIBADD = -lqsesys -lqsecmn $(SOCKET_LIBS) $(SENDFILE_LIBS) $(SSL_LIBS) $(LIBLTDL)
|
||||
libqsehttp_la_LDFLAGS = -L../sys -L../cmn -L../io -version-info 1:0:0 -no-undefined
|
||||
libqsehttp_la_LIBADD = -lqsesys -lqsecmn -lqseio $(SOCKET_LIBS) $(SENDFILE_LIBS) $(SSL_LIBS) $(LIBLTDL)
|
||||
|
||||
|
@ -410,8 +410,8 @@ libqsehttp_la_SOURCES = \
|
||||
upxd.c
|
||||
|
||||
libqsehttp_la_CPPFLAGS = $(CPPFLAGS_ALL_COMMON) $(CPPFLAGS_HTTPD_MOD) $(LTDLINCL)
|
||||
libqsehttp_la_LDFLAGS = -L../sys -L../cmn -version-info 1:0:0 -no-undefined
|
||||
libqsehttp_la_LIBADD = -lqsesys -lqsecmn $(SOCKET_LIBS) $(SENDFILE_LIBS) $(SSL_LIBS) $(LIBLTDL)
|
||||
libqsehttp_la_LDFLAGS = -L../sys -L../cmn -L../io -version-info 1:0:0 -no-undefined
|
||||
libqsehttp_la_LIBADD = -lqsesys -lqsecmn -lqseio $(SOCKET_LIBS) $(SENDFILE_LIBS) $(SSL_LIBS) $(LIBLTDL)
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include "httpd.h"
|
||||
#include "../cmn/mem.h"
|
||||
#include <qse/cmn/str.h>
|
||||
#include <qse/cmn/pio.h>
|
||||
#include <qse/io/pio.h>
|
||||
#include <qse/cmn/fmt.h>
|
||||
#include <qse/cmn/path.h>
|
||||
|
||||
|
@ -36,8 +36,8 @@
|
||||
#include <qse/cmn/fmt.h>
|
||||
#include <qse/cmn/path.h>
|
||||
#include <qse/cmn/dir.h>
|
||||
#include <qse/cmn/fio.h>
|
||||
#include <qse/cmn/sio.h>
|
||||
#include <qse/io/fio.h>
|
||||
#include <qse/io/sio.h>
|
||||
#include <qse/cmn/sck.h>
|
||||
#include <qse/sys/mux.h>
|
||||
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include <qse/cmn/chr.h>
|
||||
#include <qse/cmn/str.h>
|
||||
#include <qse/cmn/mbwc.h>
|
||||
#include <qse/cmn/sio.h>
|
||||
#include <qse/io/sio.h>
|
||||
|
||||
|
||||
#if !defined(QSE_HTTPD_DEFAULT_MODPREFIX)
|
||||
|
@ -41,7 +41,7 @@
|
||||
#endif
|
||||
|
||||
#if defined(QSE_HTTPD_DEBUG)
|
||||
# include <qse/cmn/sio.h>
|
||||
# include <qse/io/sio.h>
|
||||
# include <qse/cmn/path.h>
|
||||
# define HTTPD_DBGOUT0(fmt) qse_putmbsf("%06d %-20hs " fmt, (int)__LINE__, qse_mbsbasename(__FILE__))
|
||||
# define HTTPD_DBGOUT1(fmt,a1) qse_putmbsf("%06d %-20hs " fmt, (int)__LINE__, qse_mbsbasename(__FILE__), (a1))
|
||||
|
Reference in New Issue
Block a user