svn commit: r313983 - head/audio/mpg123/files
Roman Bogorodskiy
novel at FreeBSD.org
Tue Mar 12 16:40:14 UTC 2013
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
+
More information about the svn-ports-all
mailing list