1
0
mirror of https://github.com/stefanocasazza/ULib.git synced 2025-10-26 19:57:22 +08:00

fix bug on partial response (final)

This commit is contained in:
stefanocasazza
2015-02-19 20:11:27 +01:00
parent 02cd2ad53c
commit 646b44cc26
139 changed files with 14461 additions and 11754 deletions

View File

@@ -9,6 +9,11 @@ config NODOG_DEBUG
depends on DEVEL && PACKAGE_nodog
default n
config NODOG_MEMPOOL
bool "Enable compilation of memory pool features"
depends on DEVEL && PACKAGE_nodog
default n
#config NODOG_OPENSSL
# bool "Enable use of openssl features"
# depends on DEVEL && PACKAGE_libopenssl

View File

@@ -44,10 +44,12 @@ endef
NODOG_OPTIONS:= --with-ssl --with-libz \
--without-expat --without-magic --without-pcre \
--disable-static --disable-new-ldflags --disable-zip --disable-LFS \
--enable-log --enable-captive-portal --enable-static-server-plugin="nocat http" \
--disable-stdcpp --disable-gcc-optimized --disable-thread --disable-HCRS --disable-HPRS \
--disable-memory-pool --disable-static --disable-new-ldflags --disable-zip --disable-LFS \
$(if $(CONFIG_NODOG_UUID),--with-libuuid,--without-libuuid) $(if $(CONFIG_NODOG_DEBUG),--enable-debug)
$(if $(CONFIG_NODOG_DEBUG),--enable-debug) \
$(if $(CONFIG_NODOG_UUID),--with-libuuid,--without-libuuid) \
$(if $(CONFIG_NODOG_MEMPOOL),--enable-memory-pool,--disable-memory-pool)
define Build/Configure
$(call Build/Configure/Default, \