From owner-svn-ports-all@freebsd.org Sun Jan 22 15:22:19 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 733A7CBCA98; Sun, 22 Jan 2017 15:22:19 +0000 (UTC) (envelope-from melifaro@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 165FBC9B; Sun, 22 Jan 2017 15:22:19 +0000 (UTC) (envelope-from melifaro@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0MFMIXg083269; Sun, 22 Jan 2017 15:22:18 GMT (envelope-from melifaro@FreeBSD.org) Received: (from melifaro@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0MFMHLN083265; Sun, 22 Jan 2017 15:22:17 GMT (envelope-from melifaro@FreeBSD.org) Message-Id: <201701221522.v0MFMHLN083265@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: melifaro set sender to melifaro@FreeBSD.org using -f From: "Alexander V. Chernikov" Date: Sun, 22 Jan 2017 15:22:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r432152 - in head/net/bird: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Jan 2017 15:22:19 -0000 Author: melifaro (src committer) Date: Sun Jan 22 15:22:17 2017 New Revision: 432152 URL: https://svnweb.freebsd.org/changeset/ports/432152 Log: Update to 1.6.3. Approved by: az(implicit) Added: head/net/bird/files/sysdep-bsd-sysio.h (contents, props changed) Deleted: head/net/bird/files/patch-bsd-sysdep.h head/net/bird/files/patch-proto-bgp-attrs.c head/net/bird/files/patch-sysdep-unix-io.c Modified: head/net/bird/Makefile head/net/bird/distinfo Modified: head/net/bird/Makefile ============================================================================== --- head/net/bird/Makefile Sun Jan 22 15:08:31 2017 (r432151) +++ head/net/bird/Makefile Sun Jan 22 15:22:17 2017 (r432152) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME?= bird -PORTVERSION= 1.6.0 -PORTREVISION= 1 +PORTVERSION= 1.6.3 CATEGORIES= net MASTER_SITES= ftp://bird.network.cz/pub/bird/ \ http://bird.mpls.in/distfiles/bird/ Modified: head/net/bird/distinfo ============================================================================== --- head/net/bird/distinfo Sun Jan 22 15:08:31 2017 (r432151) +++ head/net/bird/distinfo Sun Jan 22 15:22:17 2017 (r432152) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469633743 -SHA256 (bird-1.6.0.tar.gz) = db3dfe37deac73b38b7d6966e577985f7b8e23f246760cb095ad13b0d8010e13 -SIZE (bird-1.6.0.tar.gz) = 1273899 +TIMESTAMP = 1485093974 +SHA256 (bird-1.6.3.tar.gz) = 39c51cf57c3ba8b5978b2a657ffa2f647ec7f3ae643e91cf42ee5cb070cf7e7c +SIZE (bird-1.6.3.tar.gz) = 1337198 Added: head/net/bird/files/sysdep-bsd-sysio.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/bird/files/sysdep-bsd-sysio.h Sun Jan 22 15:22:17 2017 (r432152) @@ -0,0 +1,23 @@ +diff --git sysdep/bsd/sysio.h sysdep/bsd/sysio.h +index 2610a47..9b10e6e 100644 +--- sysdep/bsd/sysio.h ++++ sysdep/bsd/sysio.h +@@ -9,6 +9,7 @@ + #include + #include // Workaround for some BSDs + #include ++#include + + + #ifdef __NetBSD__ +@@ -179,8 +180,8 @@ sk_prepare_ip_header(sock *s, void *hdr, int dlen) + ip->ip_src = ipa_to_in4(s->saddr); + ip->ip_dst = ipa_to_in4(s->daddr); + +-#ifdef __OpenBSD__ +- /* OpenBSD expects ip_len in network order, other BSDs expect host order */ ++#if (defined __OpenBSD__) || (defined __DragonFly__) || (defined __FreeBSD__ && (__FreeBSD_version >= 1100030)) ++ /* Different BSDs have different expectations of ip_len endianity */ + ip->ip_len = htons(ip->ip_len); + #endif + }