Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Mar 2013 16:40:14 +0000 (UTC)
From:      Roman Bogorodskiy <novel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r313983 - head/audio/mpg123/files
Message-ID:  <201303121640.r2CGeERY049169@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303121640.r2CGeERY049169>