Merge pull request #5762 from iamperson347/getdns1.4
gettdns: Bump to 1.4.1 plus fixes
This commit is contained in:
commit
c802e89d6c
2 changed files with 9 additions and 7 deletions
|
@ -7,8 +7,8 @@ config GETDNS_ENABLE_STUB_ONLY
|
||||||
getdns can be configured for stub resolution mode only. (Removes libunbound dependency)
|
getdns can be configured for stub resolution mode only. (Removes libunbound dependency)
|
||||||
default y
|
default y
|
||||||
|
|
||||||
config GETDNS_ENABLE_IDN
|
config GETDNS_ENABLE_IDN_LIBIDN
|
||||||
bool "GETDNS_ENABLE_IDN"
|
bool "GETDNS_ENABLE_IDN_LIBIDN"
|
||||||
help
|
help
|
||||||
getdns can be configured with some IDN Support. (Requires libidn dependency)
|
getdns can be configured with some IDN Support. (Requires libidn dependency)
|
||||||
default n
|
default n
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=getdns
|
PKG_NAME:=getdns
|
||||||
PKG_VERSION:=1.3.0
|
PKG_VERSION:=1.4.1
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_LICENSE:=BSD-3-Clause
|
PKG_LICENSE:=BSD-3-Clause
|
||||||
|
@ -14,7 +14,7 @@ PKG_MAINTAINER:=David Mora <iamperson347+public@gmail.com>
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://getdnsapi.net/dist/
|
PKG_SOURCE_URL:=https://getdnsapi.net/dist/
|
||||||
PKG_HASH:=920fa2e07c72fd0e5854db1820fa777108009fc5cb702f9aa5155ef58b12adb1
|
PKG_HASH:=245233dc780f615b6ab1472f2b9cdcd957a451a736f3036717d0da466ab1c51e
|
||||||
|
|
||||||
PKG_FIXUP:=autoreconf
|
PKG_FIXUP:=autoreconf
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ PKG_INSTALL:=1
|
||||||
|
|
||||||
PKG_CONFIG_DEPENDS:= \
|
PKG_CONFIG_DEPENDS:= \
|
||||||
CONFIG_GETDNS_ENABLE_STUB_ONLY \
|
CONFIG_GETDNS_ENABLE_STUB_ONLY \
|
||||||
CONFIG_GETDNS_ENABLE_IDN
|
CONFIG_GETDNS_ENABLE_IDN_LIBIDN
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ define Package/getdns
|
||||||
SECTION:=libs
|
SECTION:=libs
|
||||||
CATEGORY:=Libraries
|
CATEGORY:=Libraries
|
||||||
TITLE+= (library)
|
TITLE+= (library)
|
||||||
DEPENDS+= +libopenssl +!GETDNS_ENABLE_STUB_ONLY:libunbound +GETDNS_ENABLE_IDN:libidn
|
DEPENDS+= +libopenssl +!GETDNS_ENABLE_STUB_ONLY:libunbound +GETDNS_ENABLE_IDN_LIBIDN:libidn
|
||||||
MENU:=1
|
MENU:=1
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
@ -51,7 +51,9 @@ endef
|
||||||
|
|
||||||
CONFIGURE_ARGS += \
|
CONFIGURE_ARGS += \
|
||||||
$(if $(CONFIG_GETDNS_ENABLE_STUB_ONLY), --enable-stub-only, ) \
|
$(if $(CONFIG_GETDNS_ENABLE_STUB_ONLY), --enable-stub-only, ) \
|
||||||
$(if $(CONFIG_GETDNS_ENABLE_IDN), , --without-libidn )
|
$(if $(CONFIG_GETDNS_ENABLE_IDN_LIBIDN), , --without-libidn ) \
|
||||||
|
--without-libidn2 \
|
||||||
|
--with-ssl="$(STAGING_DIR)/usr" \
|
||||||
|
|
||||||
define Build/InstallDev
|
define Build/InstallDev
|
||||||
$(INSTALL_DIR) $(1)/usr/include/getdns/
|
$(INSTALL_DIR) $(1)/usr/include/getdns/
|
||||||
|
|
Loading…
Reference in a new issue