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:
@@ -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
|
||||
|
||||
@@ -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, \
|
||||
|
||||
Reference in New Issue
Block a user