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
68
69
70
71
72
73
74
75
76
|
$NetBSD: patch-ac,v 1.4 2007/11/03 16:32:49 drochner Exp $
--- configure.orig 2007-09-19 12:00:40.000000000 +0200
+++ configure
@@ -6419,7 +6419,7 @@ else
enable_cddbslave=yes
fi
-if test "x$enable_cddbslave" == "xyes"; then
+if test "x$enable_cddbslave" = "xyes"; then
pkg_failed=no
{ echo "$as_me:$LINENO: checking for CDDBSLAVE" >&5
@@ -7314,7 +7314,7 @@ else
enable_profiles=yes
fi
-if test "x$enable_profiles" == "xyes"; then
+if test "x$enable_profiles" = "xyes"; then
pkg_failed=no
{ echo "$as_me:$LINENO: checking for GMP" >&5
@@ -7535,7 +7535,7 @@ echo "$as_me: WARNING: Grecord will be
PROGRAMS_GRECORD_ERROR=" gnome media profiles is disabled"
fi
-if test "x$HAVE_GST" = "xyes" && test "x$enable_grecord" == "xyes"; then
+if test "x$HAVE_GST" = "xyes" && test "x$enable_grecord" = "xyes"; then
PROGRAMS_GRECORD="grecord"
gst010_toolsdir=`$PKG_CONFIG --variable=toolsdir gstreamer-0.10`
@@ -25100,7 +25100,7 @@ else
enable_vumeter=yes
fi
-if test -n "$we_have_esd" && test "x$enable_vumeter" == "xyes"; then
+if test -n "$we_have_esd" && test "x$enable_vumeter" = "xyes"; then
pkg_failed=no
{ echo "$as_me:$LINENO: checking for VUMETER" >&5
@@ -25220,7 +25220,7 @@ else
enable_gnomecd=yes
fi
-if test "x$enable_gnomecd" == "xyes"; then
+if test "x$enable_gnomecd" = "xyes"; then
pkg_failed=no
{ echo "$as_me:$LINENO: checking for GNOMECD" >&5
@@ -25564,7 +25564,7 @@ fi
-if test "x$HAVE_GNOMECD" = "xyes" && test "x$enable_gnomecd" == "xyes" ; then
+if test "x$HAVE_GNOMECD" = "xyes" && test "x$enable_gnomecd" = "xyes" ; then
cdrom_header=""
for ac_header in linux/cdrom.h
@@ -26392,7 +26392,7 @@ else
enable_gstprops=yes
fi
-if test "x$HAVE_GST" = "xyes" && test "x$enable_gstprops" == "xyes";
+if test "x$HAVE_GST" = "xyes" && test "x$enable_gstprops" = "xyes";
then
COMMON_MODULES="gconf-2.0 libgnomeui-2.0 libglade-2.0 >= 1.99.12 gstreamer-$GST_MAJORMINOR gstreamer-plugins-base-$GST_MAJORMINOR >= $GSTPB_REQ"
@@ -26555,7 +26555,7 @@ else
enable_gstmix=yes
fi
-if test "x$HAVE_GST" = "xyes" && test "x$enable_gstmix" == "xyes";
+if test "x$HAVE_GST" = "xyes" && test "x$enable_gstmix" = "xyes";
then
pkg_failed=no
|