luci-0.9: merge r4843, r4844

This commit is contained in:
Jo-Philipp Wich 2009-06-15 19:21:36 +00:00
parent db4a419f9d
commit 64c972454f
2 changed files with 11 additions and 2 deletions

View file

@ -37,9 +37,9 @@ define Package/libcyassl-luci/description
CyaSSL is an SSL library optimized for small footprint, both on disk and for memory use. CyaSSL is an SSL library optimized for small footprint, both on disk and for memory use.
endef endef
TARGET_CFLAGS += $(FPIC) -DTFM_NO_ASM TARGET_CFLAGS += $(FPIC)
CONFIGURE_ARGS += --without-zlib --enable-fastmath CONFIGURE_ARGS += --without-zlib
define Build/InstallDev define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include/ctaocrypt $(INSTALL_DIR) $(1)/usr/include/ctaocrypt

View file

@ -59,6 +59,15 @@ ssize_t splice(int __fdin, __off64_t *__offin, int __fdout,
return -1; return -1;
#endif #endif
} }
#undef SPLICE_F_MOVE
#undef SPLICE_F_NONBLOCK
#undef SPLICE_F_MORE
#define SPLICE_F_MOVE 1
#define SPLICE_F_NONBLOCK 2
#define SPLICE_F_MORE 4
#endif /* __UCLIBC__ */ #endif /* __UCLIBC__ */
/** /**