renamed qse_httpd_addserver() to qse_httpd_attachserver(). added qse_httpd_detachserver(). added the predetach field to qse_httpd_server_t. added qse_httpd_cbstd_t and changed qse_htpd_loopstd() to accept this cbstd. enhanced server uri parsing to include 'docroot'. enhanced qse_httpd_entasktext() and added qse_httpd_entask_text() for internal use. added nwif functions like qse_nwifindextombs(). added qse_env_insertmbsa()/qse_env_insertwcsa()/qse_env_inserta(). enhanced TPROXY handling
28 lines
482 B
Makefile
28 lines
482 B
Makefile
AUTOMAKE_OPTIONS = nostdinc
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_builddir)/include \
|
|
-I$(top_srcdir)/include \
|
|
-I$(includedir)
|
|
|
|
lib_LTLIBRARIES = libqsenet.la
|
|
libqsenet_la_SOURCES = \
|
|
httpd.h \
|
|
upxd.h \
|
|
http.c \
|
|
htre.c \
|
|
htrd.c \
|
|
httpd.c \
|
|
httpd-cgi.c \
|
|
httpd-dir.c \
|
|
httpd-file.c \
|
|
httpd-proxy.c \
|
|
httpd-resol.c \
|
|
httpd-std.c \
|
|
httpd-task.c \
|
|
httpd-text.c \
|
|
upxd.c
|
|
|
|
libqsenet_la_LDFLAGS = -version-info 1:0:0 -no-undefined -L../cmn -L$(libdir)
|
|
libqsenet_la_LIBADD = -lqsecmn
|