summaryrefslogtreecommitdiffstats
path: root/package/sconeserver/sconeserver-fix-configure-operators.patch
blob: 504be455e16189514fb307da4aef1f93c7303962 (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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
configure: use the proper '=' POSIX shell operator

The '==' shell operator doesn't work in POSIX shells, so when sh is
symlinked to a POSIX shell such as dash and not a bash shell, the
configure tests that use this operator fail to work.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Index: sconeserver-211/configure.in
===================================================================
--- sconeserver-211.orig/configure.in	2013-05-14 12:00:19.000000000 +0200
+++ sconeserver-211/configure.in	2013-06-16 18:47:31.000000000 +0200
@@ -121,7 +121,7 @@
   [SSL="$withval"],
   [AC_CHECK_HEADER([openssl/ssl.h],[SSL="yes"],[SSL="no"])]
 )
-if test "x$SSL" == "xyes"; then
+if test "x$SSL" = "xyes"; then
   AC_CHECK_HEADER([openssl/ssl.h],,
     [AC_MSG_ERROR([header file <openssl/ssl.h> is required for OpenSSL, use --with-openssl-path=PATH])]
   )
@@ -179,7 +179,7 @@
 )
 
 # Check we have libxml2 if Sconesite is enabled
-if test "x$SCONESITE" == "xyes"; then
+if test "x$SCONESITE" = "xyes"; then
   if test "x$ac_cv_lib_xml2_xmlNewDoc" != "xyes"; then
     AC_MSG_ERROR([library 'libxml2' is required for Sconesite])
   fi
@@ -195,7 +195,7 @@
   [MAGICK_CONFIG="Magick++-config"]
 )
 AC_CHECK_PROG([MAGICK], ["$MAGICK_CONFIG"], [yes], [no])
-if test "x$MAGICK" == "xyes"; then
+if test "x$MAGICK" = "xyes"; then
   MAGICK_CFLAGS=`$MAGICK_CONFIG --cppflags`
   MAGICK_LDFLAGS=`$MAGICK_CONFIG --ldflags`
   MAGICK_LIBS=`$MAGICK_CONFIG --libs`
@@ -209,7 +209,7 @@
 )
 
 # Need ImageMagick for image
-if test "x$IMAGE" == "xyes"; then
+if test "x$IMAGE" = "xyes"; then
   if test "x$MAGICK" != "xyes"; then
     AC_MSG_ERROR([library 'Magick++' is required for image])
   fi
@@ -227,7 +227,7 @@
   [RSS="yes"]
 )
 # Need libxml2 library for rss
-if test "x$RSS" == "xyes"; then
+if test "x$RSS" = "xyes"; then
   if test "x$ac_cv_lib_xml2_xmlNewDoc" != "xyes"; then
     AC_MSG_ERROR([library 'libxml2' is required for the rss module])
   fi
@@ -249,7 +249,7 @@
   [AC_CHECK_HEADER([mysql/mysql.h],[MYSQL="yes"],[MYSQL="no"])]
 )
 # Need mysqlclient library for mysql
-if test "x$MYSQL" == "xyes"; then
+if test "x$MYSQL" = "xyes"; then
   AC_CHECK_LIB([mysqlclient],[mysql_init],
     [CXXFLAGS="$CXXFLAGS `$MYSQL_CONFIG --cflags`"
      MYSQL_LIBADD=`$MYSQL_CONFIG --libs`
@@ -266,7 +266,7 @@
   [AC_CHECK_HEADER([sqlite3.h],[SQLITE="yes"],[SQLITE="no"])]
 )
 # Need sqlite3 library for sqlite
-if test "x$SQLITE" == "xyes"; then
+if test "x$SQLITE" = "xyes"; then
   AC_CHECK_LIB([sqlite3],[sqlite3_open_v2],
     [SQLITE_LIBADD="-lsqlite3"
      AC_SUBST(SQLITE_LIBADD)],
@@ -283,7 +283,7 @@
   [AC_CHECK_HEADER([mpfr.h],[MATHS="yes"],[MATHS="no"])]
 )
 # Need libgmp and libmpfr library for maths
-if test "x$MATHS" == "xyes"; then
+if test "x$MATHS" = "xyes"; then
   AC_CHECK_LIB([mpfr],[mpfr_init],
     [MATHS_LIBADD="-lgmp -lmpfr"
      AC_SUBST(MATHS_LIBADD)],
@@ -300,7 +300,7 @@
   [AC_CHECK_HEADER([X11/Xlib.h],[UI="yes"],[UI="no"])]
 )
 # Need libX11 library for ui
-if test "x$UI" == "xyes"; then
+if test "x$UI" = "xyes"; then
   AC_CHECK_LIB([X11],[XOpenDisplay],
     [UI_LIBADD="-lX11"
      AC_SUBST(UI_LIBADD)],