libmicrohttpd: New package.

libmicrohttpd is a library that allows embedding an HTTP server into
an application with a small code and memory footprint.

Signed-off-by: Will Newton <will.newton@gmail.com>
This commit is contained in:
Will Newton 2009-09-15 13:37:54 +01:00
parent 51173980cd
commit 1a9015f5d5
3 changed files with 22 additions and 0 deletions

View File

@ -158,6 +158,7 @@ source "package/libcgicc/Config.in"
source "package/libcurl/Config.in"
source "package/libdnet/Config.in"
source "package/libeXosip2/Config.in"
source "package/libmicrohttpd/Config.in"
source "package/libnl/Config.in"
source "package/libosip2/Config.in"
source "package/libpcap/Config.in"

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_LIBMICROHTTPD
bool "libmicrohttpd"
select BR2_PACKAGE_LIBGCRYPT
default n
help
GNU libmicrohttpd is a small C library that makes it easy to
run an HTTP server as part of another application.

View File

@ -0,0 +1,14 @@
#############################################################
#
# libmicrohttpd
#
#############################################################
LIBMICROHTTPD_VERSION:=0.4.2
LIBMICROHTTPD_SOURCE:=libmicrohttpd-$(LIBMICROHTTPD_VERSION).tar.gz
LIBMICROHTTPD_SITE:=$(BR2_GNU_MIRROR)/libmicrohttpd
LIBMICROHTTPD_LIBTOOL_PATCH = NO
LIBMICROHTTPD_INSTALL_STAGING = YES
LIBMICROHTTPD_DEPENDENCIES = libgcrypt
$(eval $(call AUTOTARGETS,package,libmicrohttpd))