From owner-svn-ports-head@FreeBSD.ORG Fri Jan 2 16:55:27 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9EBCB6C1; Fri, 2 Jan 2015 16:55:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 711C71D82; Fri, 2 Jan 2015 16:55:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t02GtRkZ009591; Fri, 2 Jan 2015 16:55:27 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t02GtRXw009589; Fri, 2 Jan 2015 16:55:27 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201501021655.t02GtRXw009589@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Fri, 2 Jan 2015 16:55:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r376054 - in head/dns/noip: . 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-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2015 16:55:27 -0000 Author: adamw Date: Fri Jan 2 16:55:26 2015 New Revision: 376054 URL: https://svnweb.freebsd.org/changeset/ports/376054 QAT: https://qat.redports.org/buildarchive/r376054/ Log: Remove portions of patch relying upon faith(4) that are no longer necessary. PR: 195002 Submitted by: Stanislaw Halik (maintainer) Patch by: Ben Woods Approved by: maintainer Modified: head/dns/noip/Makefile head/dns/noip/files/patch-noip2.c Modified: head/dns/noip/Makefile ============================================================================== --- head/dns/noip/Makefile Fri Jan 2 15:45:02 2015 (r376053) +++ head/dns/noip/Makefile Fri Jan 2 16:55:26 2015 (r376054) @@ -3,7 +3,7 @@ PORTNAME= noip PORTVERSION= 2.1.9 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= dns MASTER_SITES= http://www.no-ip.com/client/linux/ \ CRITICAL Modified: head/dns/noip/files/patch-noip2.c ============================================================================== --- head/dns/noip/files/patch-noip2.c Fri Jan 2 15:45:02 2015 (r376053) +++ head/dns/noip/files/patch-noip2.c Fri Jan 2 16:55:26 2015 (r376054) @@ -27,28 +27,3 @@ fprintf(stderr, "Options: -C create configuration data\n"); fprintf(stderr, " -F force NAT off\n"); fprintf(stderr, " -Y select all hosts/groups\n"); -@@ -2316,17 +2316,14 @@ - dq = (unsigned char *)devs; // point at name list - for (ifa = ifap; ifa; ifa = ifa->ifa_next) { - if (ifa->ifa_addr->sa_family == AF_LINK) { --// FreeBSD doesn't define some of these! --#ifdef IFT_PFLOG - struct if_data *ifd = (struct if_data *) ifa->ifa_data; -- if (ifd->ifi_type == IFT_PFLOG -- || ifd->ifi_type == IFT_PFSYNC -- || ifd->ifi_type == IFT_ENC -- || ifd->ifi_type == IFT_BRIDGE -- || ifd->ifi_type == IFT_OTHER -- || ifd->ifi_type == IFT_GIF) -- continue; --#endif -+ -+ if (ifd->ifi_type == IFT_OTHER -+ || ifd->ifi_type == IFT_GIF -+ || ifd->ifi_type == IFT_LOOP -+ || ifd->ifi_type == IFT_FAITH) -+ continue; -+ - q = dq; // add new name into list - p = ifa->ifa_name; - devnum++;