From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 25 01:30:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5A3A888B for ; Tue, 25 Dec 2012 01:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 2D8508FC0A for ; Tue, 25 Dec 2012 01:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id qBP1U0MH026815 for ; Tue, 25 Dec 2012 01:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id qBP1U0rl026811; Tue, 25 Dec 2012 01:30:00 GMT (envelope-from gnats) Resent-Date: Tue, 25 Dec 2012 01:30:00 GMT Resent-Message-Id: <201212250130.qBP1U0rl026811@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Raphael Kubo da Costa Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 764297D2; Tue, 25 Dec 2012 01:26:59 +0000 (UTC) (envelope-from kubito@gmail.com) Received: from mail-la0-f54.google.com (mail-la0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id B9FBB8FC14; Tue, 25 Dec 2012 01:26:58 +0000 (UTC) Received: by mail-la0-f54.google.com with SMTP id j13so9216463lah.13 for ; Mon, 24 Dec 2012 17:26:57 -0800 (PST) Received: from localhost (a91-154-115-217.elisa-laajakaista.fi. [91.154.115.217]) by mx.google.com with ESMTPS id lr20sm8318791lab.17.2012.12.24.17.26.55 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 24 Dec 2012 17:26:56 -0800 (PST) Message-Id: <50d900e0.747a980a.118b.690c@mx.google.com> Date: Mon, 24 Dec 2012 17:26:56 -0800 (PST) From: Raphael Kubo da Costa Sender: Raphael Kubo da Costa To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/174692: [PATCH] security/cyrus-sasl2: Add upstream commit to define size_t in sasl.h Cc: ume@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Dec 2012 01:30:01 -0000 >Number: 174692 >Category: ports >Synopsis: [PATCH] security/cyrus-sasl2: Add upstream commit to define size_t in sasl.h >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 25 01:30:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Raphael Kubo da Costa >Release: FreeBSD 9.1-PRERELEASE amd64 >Organization: FreeBSD Project >Environment: System: FreeBSD gibbon 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #60: Mon Dec 24 04:06:01 EET 2012 >Description: Upstream commit b4744a25ebc11687def101ebbef8c82d3241d2a5 [1], part of 2.1.26, has broken kdepimlibs' build here because the compiler (gcc 4.6) says size_t is not defined by the time sasl.h is included. This is later fixed by upstream commit 67a188693796a14e3a76ac603104807fbbfddfc4 [2], which would be good to have in ports. [1] http://git.cyrusimap.org/cyrus-sasl/commit/include/sasl.h?id=b4744a25ebc11687def101ebbef8c82d3241d2a5 [2] http://git.cyrusimap.org/cyrus-sasl/commit/include/sasl.h?id=67a188693796a14e3a76ac603104807fbbfddfc4 Added file(s): - files/patch-include::sasl.h Port maintainer (ume@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- cyrus-sasl-2.1.26_2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/security/cyrus-sasl2/Makefile ./Makefile --- /usr/ports/security/cyrus-sasl2/Makefile 2012-12-16 11:19:52.000000000 +0200 +++ ./Makefile 2012-12-25 02:58:03.000000000 +0200 @@ -2,7 +2,7 @@ PORTNAME= cyrus-sasl PORTVERSION= 2.1.26 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security ipv6 MASTER_SITES= ftp://ftp.cyrusimap.org/cyrus-sasl/ diff -ruN --exclude=CVS /usr/ports/security/cyrus-sasl2/files/patch-include::sasl.h ./files/patch-include::sasl.h --- /usr/ports/security/cyrus-sasl2/files/patch-include::sasl.h 1970-01-01 02:00:00.000000000 +0200 +++ ./files/patch-include::sasl.h 2012-12-25 02:55:21.000000000 +0200 @@ -0,0 +1,23 @@ +From 67a188693796a14e3a76ac603104807fbbfddfc4 Mon Sep 17 00:00:00 2001 +From: Ken Murchison +Date: Thu, 20 Dec 2012 23:14:50 +0000 +Subject: sasl.h: #include for size_t on NetBSD + +--- +(limited to 'include/sasl.h') + +diff --git a/include/sasl.h b/include/sasl.h +index fef4d51..8b8a63f 100755 +--- include/sasl.h ++++ include/sasl.h +@@ -121,6 +121,8 @@ + #ifndef SASL_H + #define SASL_H 1 + ++#include /* For size_t */ ++ + /* Keep in sync with win32/common.mak */ + #define SASL_VERSION_MAJOR 2 + #define SASL_VERSION_MINOR 1 +-- +cgit v0.9.0.2 --- cyrus-sasl-2.1.26_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: