ldns: fix hardcoded paths to 'resolv.conf' and 'hosts'
This commit is contained in:
parent
3fe92dd117
commit
7b4a5e5b10
@ -2,7 +2,7 @@ TERMUX_PKG_HOMEPAGE=https://www.nlnetlabs.nl/projects/ldns/
|
||||
TERMUX_PKG_DESCRIPTION="Library for simplifying DNS programming and supporting recent and experimental RFCs"
|
||||
TERMUX_PKG_DEPENDS="openssl"
|
||||
TERMUX_PKG_VERSION=1.7.0
|
||||
TERMUX_PKG_REVISION=2
|
||||
TERMUX_PKG_REVISION=3
|
||||
TERMUX_PKG_SRCURL=https://www.nlnetlabs.nl/downloads/ldns/ldns-${TERMUX_PKG_VERSION}.tar.gz
|
||||
TERMUX_PKG_SHA256=c19f5b1b4fb374cfe34f4845ea11b1e0551ddc67803bd6ddd5d2a20f0997a6cc
|
||||
# --disable-dane-verify needed until openssl 1.1.0:
|
||||
|
15
packages/ldns/fix-hardcoded-paths.patch
Normal file
15
packages/ldns/fix-hardcoded-paths.patch
Normal file
@ -0,0 +1,15 @@
|
||||
diff -uNr ldns-1.7.0/ldns/resolver.h ldns-1.7.0.mod/ldns/resolver.h
|
||||
--- ldns-1.7.0/ldns/resolver.h 2016-12-20 12:48:22.000000000 +0200
|
||||
+++ ldns-1.7.0.mod/ldns/resolver.h 2017-09-12 12:05:37.802990331 +0300
|
||||
@@ -33,9 +33,9 @@
|
||||
#endif
|
||||
|
||||
/** Default location of the resolv.conf file */
|
||||
-#define LDNS_RESOLV_CONF "/etc/resolv.conf"
|
||||
+#define LDNS_RESOLV_CONF "@TERMUX_PREFIX@/etc/resolv.conf"
|
||||
/** Default location of the hosts file */
|
||||
-#define LDNS_RESOLV_HOSTS "/etc/hosts"
|
||||
+#define LDNS_RESOLV_HOSTS "@TERMUX_PREFIX@/etc/hosts"
|
||||
|
||||
#define LDNS_RESOLV_KEYWORD -1
|
||||
#define LDNS_RESOLV_DEFDOMAIN 0
|
Loading…
Reference in New Issue
Block a user