1
0
Fork 0
mirror of https://github.com/yarrick/iodine.git synced 2025-04-04 05:43:33 +03:00

fixed build on OS X 10.11

This commit is contained in:
Frekk van Blagh 2017-10-02 15:28:43 +02:00
parent 95d20a2a11
commit 62e3437c6e
2 changed files with 10 additions and 2 deletions

View file

@ -150,7 +150,7 @@ AS_CASE([${enable_selinux}],
# won't even *compile* there is probably a better solution than just
# turning them off, and build time is minimal.
PKG_CHECK_MODULES(CHECK,[check],
PKG_CHECK_MODULES([CHECK], [check],
AC_MSG_RESULT([enabled: unit testing]),
AC_MSG_RESULT([disabled: unit testing]))
@ -207,7 +207,7 @@ AC_TYPE_UINT8_T
AC_FUNC_FORK
AC_FUNC_MALLOC
AC_CHECK_FUNCS([alarm dup2 inet_ntoa memset select socket strcasecmp strchr strdup strerror strrchr strstr])
AC_CHECK_FUNCS([alarm dup2 inet_ntoa memset select socket strcasecmp strchr strdup strerror strrchr strstr bzero strtol gettimeofday])
# Epilogue

View file

@ -25,6 +25,14 @@ typedef enum {
QR_ANSWER = 1
} qr_t;
#ifndef T_A6
#define T_A6 38
#endif
#ifndef T_DNAME
#define T_DNAME 39
#endif
extern int dnsc_use_edns0;
int dns_encode(char *, size_t, struct query *, qr_t, char *, size_t);