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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
$NetBSD: patch-aa,v 1.10 2009/04/16 19:35:29 drochner Exp $
--- configure.orig 2009-04-12 16:12:49.000000000 +0200
+++ configure
@@ -19198,7 +19198,7 @@ fi
{ $as_echo "$as_me:$LINENO: checking build test tools, unit tests, and -Werror" >&5
$as_echo_n "checking build test tools, unit tests, and -Werror... " >&6; }
-if test "$enable_tests" == "yes"; then
+if test "$enable_tests" = "yes"; then
cat >>confdefs.h <<_ACEOF
#define WITH_TESTS 1
@@ -19214,7 +19214,7 @@ $as_echo "no" >&6; }
tests_status="no"
fi
- if test "$enable_tests" == "yes"; then
+ if test "$enable_tests" = "yes"; then
WITH_TESTS_TRUE=
WITH_TESTS_FALSE='#'
else
@@ -19229,7 +19229,7 @@ if test "${enable_coverage+set}" = set;
fi
-if test "$enable_coverage" == "yes"; then
+if test "$enable_coverage" = "yes"; then
CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
LDFLAGS="$LDFLAGS -fprofile-arcs -ftest-coverage"
fi
@@ -19247,7 +19247,7 @@ fi
$as_echo_n "checking valgrind... " >&6; }
valgrind_status="yes"
- if test "$enable_valgrind" == "run"; then
+ if test "$enable_valgrind" = "run"; then
WITH_VALGRIND_TRUE=
WITH_VALGRIND_FALSE='#'
else
@@ -19257,7 +19257,7 @@ fi
# Run gnome-keyring-daemon under valgrind as default
-if test "$enable_valgrind" == "run"; then
+if test "$enable_valgrind" = "run"; then
# Extract the first word of "valgrind", so it can be a program name with args.
set dummy valgrind; ac_word=$2
{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
@@ -19328,7 +19328,7 @@ fi
# Build valgrind support into code
-if test "$enable_valgrind" == "yes"; then
+if test "$enable_valgrind" = "yes"; then
if test "${ac_cv_header_valgrind_valgrind_h+set}" = set; then
{ $as_echo "$as_me:$LINENO: checking for valgrind/valgrind.h" >&5
$as_echo_n "checking for valgrind/valgrind.h... " >&6; }
@@ -19463,7 +19463,7 @@ else
fi
- if test "$have_valgrind" == "no"; then
+ if test "$have_valgrind" = "no"; then
{ { $as_echo "$as_me:$LINENO: error: The valgrind headers are missing" >&5
$as_echo "$as_me: error: The valgrind headers are missing" >&2;}
{ (exit 1); exit 1; }; }
|