Depending on both, GnuTLS and OpenSSL doesn't make sense, we should use either TLS implementation but not both. Use GnuTLS for now and get rid of OpenSSL dependency by explicitely telling the package's build-system to do so using CONFIGURE_ARGS. If future uses of libmicrohttpd require OpenSSL, it probably makes most sense to build several variants of the package, i.e. libmicrohttpd-openssl as well as libmicrohttpd-gnutls. As with most packages making use of any TLS implementation, these are build-time decissions resulting in conflicting variants of the same package which cannot be installed simultanously. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
61 lines
1.5 KiB
Makefile
61 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2010-2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libmicrohttpd
|
|
PKG_VERSION:=0.9.42
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=@GNU/libmicrohttpd
|
|
PKG_MD5SUM:=3b9cf0b67fc8ebc9e69f53c6bc84a88d
|
|
|
|
PKG_MAINTAINER:=Martijn Zilverschoon <martijn@friedzombie.com>
|
|
|
|
PKG_LICENSE:=LGPL-2.1
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/libmicrohttpd
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=GNU libmicrohttpd is a library that runs an HTTP server.
|
|
URL:=http://www.gnu.org/software/libmicrohttpd/
|
|
DEPENDS:=+libpthread +libgcrypt +libgnutls +libgpg-error
|
|
endef
|
|
|
|
define Package/libmicrohttpd/description
|
|
GNU libmicrohttpd is a small C library that is supposed to make it easy
|
|
to run an HTTP server as part of another application.
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--enable-https \
|
|
--with-gnutls \
|
|
--disable-curl \
|
|
--disable-spdy \
|
|
--without-openssl
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include/
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
|
|
$(INSTALL_DIR) $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} $(1)/usr/lib/
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig/
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig/
|
|
endef
|
|
|
|
define Package/libmicrohttpd/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so* $(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libmicrohttpd))
|