termux-packages/packages/krb5/dnsglue.h.patch
Vishal Biswas e38a1e2b8d add package krb5 (#588)
* add package krb5

* improve getpass handling

instead of bombarding every linking with getpass.o,
include it where necessary
2017-02-08 00:13:27 +01:00

16 lines
528 B
Diff

--- ./lib/krb5/os/dnsglue.h 2016-12-02 04:01:25.000000000 +0530
+++ ../dnsglue.h 2016-12-06 23:46:48.394430806 +0530
@@ -150,6 +150,12 @@
(ptr) += (incr); \
} while (0)
+/* Bionic has res_init() but it's not in any header */
+#ifdef __BIONIC__
+extern int res_init (void);
+extern int res_search (const char *dname, int class, int type,unsigned char *answer, int anslen);
+#endif
+
struct krb5int_dns_state;
int krb5int_dns_init(struct krb5int_dns_state **, char *, int, int);