From 9191dc5c33e8e1b7dff4839af222ac02b984b1bc Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Fri, 30 May 2008 15:26:42 +0000 Subject: [PATCH] Brad House fixed a missing header file inclusion in adig sample program --- CHANGES | 4 ++++ RELEASE-NOTES | 17 +++-------------- adig.c | 3 +++ 3 files changed, 10 insertions(+), 14 deletions(-) diff --git a/CHANGES b/CHANGES index 01a4383..af7e57e 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,9 @@ Changelog for the c-ares project +* May 30 2008 (Yang Tse) + +- Brad House fixed a missing header file inclusion in adig sample program. + Version 1.5.2 (May 29, 2008) * May 13 2008 (Daniel Stenberg) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index c7b321e..4b2eff9 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,21 +1,10 @@ -This is what's new and changed in the c-ares 1.5.2 release: +This is what's new and changed in the c-ares 1.5.3 release: - o code refactoring in ares_gethostbyaddr - o improved checking of /dev/urandom in configure script - o new sample application, acountry - o improved MSVC6 dsp files - o adig sample application supports NAPTR records - o improved file seeding randomizer - o improved parsing of resolver configuration files - o updated configure script to remove autoconf 2.62 warnings - o use monotonic time source if available - o return all PTR-records when doing reverse lookups - o millisecond resolution support for the timeout option + o adig sample application compilation failure on some systems Thanks go to these friendly people for their efforts and contributions: - Erik Kline, Brad Spencer, Gisle Vanem, Alexey Simak, Eino Tuominen, - Eino Tuominen, Yang Tse, Doug Goldstein, Sebastianbasti79.de, + Brad House and obviously Daniel Stenberg Have fun! diff --git a/adig.c b/adig.c index 59325fe..707fc80 100644 --- a/adig.c +++ b/adig.c @@ -27,6 +27,9 @@ #include #include #include +#ifdef HAVE_ARPA_NAMESER_COMPAT_H +#include +#endif #ifdef HAVE_UNISTD_H #include #endif -- 2.7.4