From owner-freebsd-tcltk@FreeBSD.ORG Sat Jul 6 12:38:53 2013 Return-Path: Delivered-To: tcltk@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8E9549A2 for ; Sat, 6 Jul 2013 12:38:53 +0000 (UTC) (envelope-from olgeni@olgeni.com) Received: from olgeni.olgeni.com (olgeni.olgeni.com [31.171.246.156]) by mx1.freebsd.org (Postfix) with ESMTP id 50BF0169D for ; Sat, 6 Jul 2013 12:38:52 +0000 (UTC) Received: by olgeni.olgeni.com (Postfix, from userid 58) id A59E9174584; Sat, 6 Jul 2013 14:30:41 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on olgeni.olgeni.com X-Spam-Level: X-Spam-Status: No, score=-0.6 required=5.0 tests=ALL_TRUSTED,NO_DNS_FOR_FROM shortcircuit=no autolearn=no version=3.3.2 Received: from olgeni.olgeni (vpn-olgeni [10.2.0.2]) by olgeni.olgeni.com (Postfix) with ESMTP id 8D6C017449C; Sat, 6 Jul 2013 14:30:35 +0200 (CEST) Received: from olgeni.olgeni (localhost [127.0.0.1]) by olgeni.olgeni (8.14.7/8.14.7) with ESMTP id r66CUZSi033696; Sat, 6 Jul 2013 14:30:35 +0200 (CEST) (envelope-from olgeni@olgeni.olgeni) Received: (from olgeni@localhost) by olgeni.olgeni (8.14.7/8.14.7/Submit) id r66CUZxf033695; Sat, 6 Jul 2013 14:30:35 +0200 (CEST) (envelope-from olgeni) Date: Sat, 6 Jul 2013 14:30:35 +0200 (CEST) Message-Id: <201307061230.r66CUZxf033695@olgeni.olgeni> To: FreeBSD-gnats-submit@freebsd.org Subject: lang/tcl84: patch to fix build of lang/expect From: Jimmy Olgeni X-send-pr-version: 3.114 X-GNATS-Notify: Cc: tcltk@FreeBSD.org X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Jimmy Olgeni List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Jul 2013 12:38:53 -0000 >Submitter-Id: current-users >Originator: Jimmy Olgeni >Organization: >Confidential: no >Synopsis: lang/tcl84: patch to fix build of lang/expect >Severity: serious >Priority: medium >Category: ports >Class: sw-bug >Release: FreeBSD 9.1-STABLE amd64 >Environment: System: FreeBSD olgeni 9.1-STABLE FreeBSD 9.1-STABLE #1 r249688: Sat Apr 20 13:28:27 CEST 2013 root@olgeni:/usr/obj/usr/src/sys/RELENG_9.amd64 amd64 >Description: lang/tcl84 needs patch-generic-tclPort.h, which already exists in tcl85 and tcl86. Without it, the lang/expect port fails to build in redports. >How-To-Repeat: >Fix: Index: Makefile =================================================================== --- Makefile (revision 322388) +++ Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= tcl DISTVERSION= 8.4.20 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= lang tcl MASTER_SITES= ${MASTER_SITE_TCLTK} \ Index: files/patch-generic-tclPort.h =================================================================== --- files/patch-generic-tclPort.h (revision 0) +++ files/patch-generic-tclPort.h (working copy) @@ -0,0 +1,11 @@ +--- ../generic/tclPort.h.orig 2013-04-03 16:57:25.000000000 +0200 ++++ ../generic/tclPort.h 2013-04-03 16:57:35.000000000 +0200 +@@ -20,7 +20,7 @@ + #if defined(_WIN32) + # include "tclWinPort.h" + #else +-# include "tclUnixPort.h" ++# include "../unix/tclUnixPort.h" + #endif + #include "tcl.h" +