From owner-svn-ports-head@FreeBSD.ORG Tue Mar 12 16:40:14 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D315B123; Tue, 12 Mar 2013 16:40:14 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id C5427CDF; Tue, 12 Mar 2013 16:40:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2CGeECA049170; Tue, 12 Mar 2013 16:40:14 GMT (envelope-from novel@svn.freebsd.org) Received: (from novel@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2CGeERY049169; Tue, 12 Mar 2013 16:40:14 GMT (envelope-from novel@svn.freebsd.org) Message-Id: <201303121640.r2CGeERY049169@svn.freebsd.org> From: Roman Bogorodskiy Date: Tue, 12 Mar 2013 16:40:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313983 - head/audio/mpg123/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.14 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: Tue, 12 Mar 2013 16:40:14 -0000 Author: novel Date: Tue Mar 12 16:40:13 2013 New Revision: 313983 URL: http://svnweb.freebsd.org/changeset/ports/313983 Log: Fix build on i386. Reported by: Tsurutani Naoki in ports/176743 Submitted by: olli Added: head/audio/mpg123/files/ head/audio/mpg123/files/patch-configure (contents, props changed) Added: head/audio/mpg123/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/mpg123/files/patch-configure Tue Mar 12 16:40:13 2013 (r313983) @@ -0,0 +1,29 @@ +--- configure.orig 2013-02-23 21:58:36.000000000 +0100 ++++ configure 2013-03-11 15:39:07.000000000 +0100 +@@ -15895,7 +15895,7 @@ + # Is local not POSIX sh? + for given_word in "$@" + do +- if test "x$word" == "x$given_word"; then ++ if test "x$word" = "x$given_word"; then + return 0 + fi + done +@@ -16097,7 +16097,7 @@ + # QSA and ALSA are not distinguishable in these tests, need to block + # each other and play with test order depending on platform. + alsa) +- if test "x$HAVE_QSA" == xyes; then ++ if test "x$HAVE_QSA" = xyes; then + HAVE_ALSA=no + else + +@@ -16160,7 +16160,7 @@ + fi # HAVE_QSA + ;; + qsa) +- if test "x$HAVE_ALSA" == xyes; then ++ if test "x$HAVE_ALSA" = xyes; then + HAVE_QSA=no + else +