blob: 75016a356fcbe41c5776ea3cb4f08774ee0fa5e5 (
plain) (
blame)
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
|
--- configure.orig 2008-07-22 21:14:15.000000000 -0400
+++ configure 2008-07-22 21:14:35.000000000 -0400
@@ -25963,7 +25963,7 @@ fi
dbus_status=$DBUS_VERSION
fi
- if test "$enable_dbus" == "yes"; then
+ if test "$enable_dbus" = "yes"; then
WITH_DBUS_TRUE=
WITH_DBUS_FALSE='#'
else
@@ -27001,7 +27001,7 @@ if test "${enable_tests+set}" = set; the
fi
-if test "$enable_tests" == "yes"; then
+if test "$enable_tests" = "yes"; then
echo "building tests and unit tests"
cat >>confdefs.h <<_ACEOF
@@ -27014,7 +27014,7 @@ else
tests_status="no"
fi
- if test "$enable_tests" == "yes"; then
+ if test "$enable_tests" = "yes"; then
WITH_TESTS_TRUE=
WITH_TESTS_FALSE='#'
else
@@ -27029,7 +27029,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
|