diff options
author | Roman Bogorodskiy <novel@FreeBSD.org> | 2013-03-12 16:40:13 +0000 |
---|---|---|
committer | Roman Bogorodskiy <novel@FreeBSD.org> | 2013-03-12 16:40:13 +0000 |
commit | 1a087dd8f7fb00f8be565e3eef59d02b1e4cb020 (patch) | |
tree | 6edc79fc16869f3d5069e7099b4a2ab547c6c717 /audio/mpg123 | |
parent | c78b4e83a2bc9bb5d4fd529440f9ac3bb167c034 (diff) | |
download | ports-1a087dd8f7fb00f8be565e3eef59d02b1e4cb020.tar.gz ports-1a087dd8f7fb00f8be565e3eef59d02b1e4cb020.zip |
Notes
Diffstat (limited to 'audio/mpg123')
-rw-r--r-- | audio/mpg123/files/patch-configure | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/audio/mpg123/files/patch-configure b/audio/mpg123/files/patch-configure new file mode 100644 index 000000000000..d286a3b4de2e --- /dev/null +++ b/audio/mpg123/files/patch-configure @@ -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 + |