diff --git a/CHANGES b/CHANGES index 90638bf43e..5b2c2c158c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +3179. [port] kfreebsd: build issues. [RT #26273] + 3175. [bug] Fix how DNSSEC positive wildcard responses from a NSEC3 signed zone are validated. Stop sending a unnecessary NSEC3 record when generating such diff --git a/config.h.in b/config.h.in index 259fefed13..b4de6f45f3 100644 --- a/config.h.in +++ b/config.h.in @@ -16,7 +16,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: config.h.in,v 1.106.40.26 2011/07/20 00:33:29 ckb Exp $ */ +/* $Id: config.h.in,v 1.106.40.27 2011/10/25 21:27:40 marka Exp $ */ /*! \file */ diff --git a/configure b/configure index d0d5a422c1..35bc5a4ce1 100755 --- a/configure +++ b/configure @@ -14,7 +14,7 @@ # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. # -# $Id: configure,v 1.443.26.33 2011/09/02 22:31:45 tbox Exp $ +# $Id: configure,v 1.443.26.34 2011/10/25 21:27:40 marka Exp $ # # Portions of this code release fall under one or more of the # following Copyright notices. Please see individual source @@ -517,7 +517,7 @@ # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED # OF THE POSSIBILITY OF SUCH DAMAGE. # -# From configure.in Revision. +# From configure.in Revision: 1.457.26.39 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.67. # @@ -20239,7 +20239,7 @@ case "$host" in # as it breaks how the two halves (Basic and Advanced) of the IPv6 # Socket API were designed to be used but we have to live with it. # Define _GNU_SOURCE to pull in the IPv6 Advanced Socket API. - *-linux*) + *-linux* | *-kfreebsd*-gnu) STD_CDEFINES="$STD_CDEFINES -D_GNU_SOURCE" CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" ;; diff --git a/configure.in b/configure.in index 50564c4895..b5d4dc8afb 100644 --- a/configure.in +++ b/configure.in @@ -18,7 +18,7 @@ AC_DIVERT_PUSH(1)dnl esyscmd([sed "s/^/# /" COPYRIGHT])dnl AC_DIVERT_POP()dnl -AC_REVISION($Revision: 1.457.26.38 $) +AC_REVISION($Revision: 1.457.26.39 $) AC_INIT(lib/dns/name.c) AC_PREREQ(2.59) @@ -261,7 +261,7 @@ case "$host" in # as it breaks how the two halves (Basic and Advanced) of the IPv6 # Socket API were designed to be used but we have to live with it. # Define _GNU_SOURCE to pull in the IPv6 Advanced Socket API. - *-linux*) + *-linux* | *-kfreebsd*-gnu) STD_CDEFINES="$STD_CDEFINES -D_GNU_SOURCE" CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" ;;