blob: 054caf86d1c262a4296bdc8a74901b4c4b9cdb28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
$NetBSD: patch-configure,v 1.1 2022/05/07 06:00:17 wiz Exp $
Fix unportable test(1) operator.
--- configure.orig 2016-04-23 17:48:01.000000000 +0000
+++ configure
@@ -3596,7 +3596,7 @@ if test "${with_alsa+set}" = set; then :
withval=$with_alsa;
fi
-if test "x$with_alsa" == "xno"; then :
+if test "x$with_alsa" = "xno"; then :
use_alsa=0
@@ -3619,7 +3619,7 @@ if test "${with_pulseaudio+set}" = set;
withval=$with_pulseaudio;
fi
-if test "x$with_pulseaudio" == "xno"; then :
+if test "x$with_pulseaudio" = "xno"; then :
use_pulseaudio=0
@@ -3642,7 +3642,7 @@ if test "${with_sndfile+set}" = set; the
withval=$with_sndfile;
fi
-if test "x$with_sndfile" == "xno"; then :
+if test "x$with_sndfile" = "xno"; then :
use_sndfile=0
@@ -3665,7 +3665,7 @@ if test "${with_benchmarks+set}" = set;
withval=$with_benchmarks;
fi
-if test "x$with_benchmarks" == "xno"; then :
+if test "x$with_benchmarks" = "xno"; then :
use_benchmarks=0
|