From owner-svn-ports-head@FreeBSD.ORG Mon May 4 18:26:56 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 6519EB79; Mon, 4 May 2015 18:26:56 +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 52FF9127E; Mon, 4 May 2015 18:26:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t44IQugZ062832; Mon, 4 May 2015 18:26:56 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t44IQuiJ062831; Mon, 4 May 2015 18:26:56 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201505041826.t44IQuiJ062831@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 4 May 2015 18:26:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385423 - head/x11-toolkits/ocaml-labltk/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.20 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: Mon, 04 May 2015 18:26:56 -0000 Author: madpilot Date: Mon May 4 18:26:55 2015 New Revision: 385423 URL: https://svnweb.freebsd.org/changeset/ports/385423 Log: Fix build on 10.1 i386. This slipped by me in the previous commit. Modified: head/x11-toolkits/ocaml-labltk/files/patch-configure (contents, props changed) Modified: head/x11-toolkits/ocaml-labltk/files/patch-configure ============================================================================== --- head/x11-toolkits/ocaml-labltk/files/patch-configure Mon May 4 18:08:45 2015 (r385422) +++ head/x11-toolkits/ocaml-labltk/files/patch-configure Mon May 4 18:26:55 2015 (r385423) @@ -11,11 +11,12 @@ while : ; do case "$1" in "") break;; -@@ -222,6 +218,7 @@ if test $has_tk = true && test -z "$tk_l +@@ -222,6 +218,8 @@ if test $has_tk = true && test -z "$tk_l esac if test -n "$tklibdir"; then case "$system" in + freebsd) tk_libs="-L$tklibdir" ;; ++ bsd_elf) tk_libs="-L$tklibdir" ;; *bsd*) tk_libs="-R$tklibdir -L$tklibdir" ;; *) tk_libs="-L$tklibdir" ;; esac