From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 7 02:00:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D1DA1106567A for ; Mon, 7 May 2012 02:00:25 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 707C08FC18 for ; Mon, 7 May 2012 02:00:25 +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 q4720PaK026728 for ; Mon, 7 May 2012 02:00:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q4720Pa7026726; Mon, 7 May 2012 02:00:25 GMT (envelope-from gnats) Resent-Date: Mon, 7 May 2012 02:00:25 GMT Resent-Message-Id: <201205070200.q4720Pa7026726@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, Po-Chien Lin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 021B91065672 for ; Mon, 7 May 2012 01:58:15 +0000 (UTC) (envelope-from linpc@csvmnet67.cs.nctu.edu.tw) Received: from csvmnet67.cs.nctu.edu.tw (csvmnet67.cs.nctu.edu.tw [140.113.23.197]) by mx1.freebsd.org (Postfix) with ESMTP id A00078FC1A for ; Mon, 7 May 2012 01:58:14 +0000 (UTC) Received: from csvmnet67.cs.nctu.edu.tw (localhost [127.0.0.1]) by csvmnet67.cs.nctu.edu.tw (8.14.5/8.14.5) with ESMTP id q471wDS3002649 for ; Mon, 7 May 2012 09:58:13 +0800 (CST) (envelope-from linpc@csvmnet67.cs.nctu.edu.tw) Received: (from linpc@localhost) by csvmnet67.cs.nctu.edu.tw (8.14.5/8.14.5/Submit) id q471wDCx002648; Mon, 7 May 2012 09:58:13 +0800 (CST) (envelope-from linpc) Message-Id: <201205070158.q471wDCx002648@csvmnet67.cs.nctu.edu.tw> Date: Mon, 7 May 2012 09:58:13 +0800 (CST) From: Po-Chien Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/167663: [PATCH] textproc/openvanilla-modules: fix BROKEN port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 May 2012 02:00:25 -0000 >Number: 167663 >Category: ports >Synopsis: [PATCH] textproc/openvanilla-modules: fix BROKEN port >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: Mon May 07 02:00:23 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Po-Chien Lin >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD csvmnet67.cs.nctu.edu.tw 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: - The prototype of scandir(3) has changed, so we add EXTRA_PATCHES for FreeBSD $OSVERSION >= 800501. Added file(s): - files/extra-patch-Modules-SharedSource-OVCINInfo.cpp Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: suffix) >How-To-Repeat: >Fix: --- openvanilla-modules-0.7.2.20070514_3.patch begins here --- diff -ruN --exclude=CVS ../openvanilla-modules.orig/Makefile ./Makefile --- ../openvanilla-modules.orig/Makefile 2012-05-06 21:42:36.000000000 +0800 +++ ./Makefile 2012-05-07 09:52:04.000000000 +0800 @@ -37,8 +37,8 @@ .include -.if ${OSVERSION} >= 800501 -BROKEN= does not build +.if (${OSVERSION} >= 800501) +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-Modules-SharedSource-OVCINInfo.cpp .endif .if !defined(WITHOUT_OVIMArray) diff -ruN --exclude=CVS ../openvanilla-modules.orig/files/extra-patch-Modules-SharedSource-OVCINInfo.cpp ./files/extra-patch-Modules-SharedSource-OVCINInfo.cpp --- ../openvanilla-modules.orig/files/extra-patch-Modules-SharedSource-OVCINInfo.cpp 1970-01-01 08:00:00.000000000 +0800 +++ ./files/extra-patch-Modules-SharedSource-OVCINInfo.cpp 2012-05-07 09:52:04.000000000 +0800 @@ -0,0 +1,11 @@ +--- Modules/SharedSource/OVCINInfo.cpp.orig 2012-05-06 21:47:52.000000000 +0800 ++++ Modules/SharedSource/OVCINInfo.cpp 2012-05-06 22:02:40.000000000 +0800 +@@ -67,7 +67,7 @@ + } + + #ifndef WIN32 +- #ifdef __linux__ ++ #if defined (__linux__) || defined (__FreeBSD__) + int CLFileSelect(const struct dirent *entry) + #else + int CLFileSelect(struct dirent *entry) --- openvanilla-modules-0.7.2.20070514_3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: