forked from Lainports/freebsd-ports
patch-src_test_plugintest.c: fix a failing test. Christian Grothoff confirmed that the test program should be fixed, rather than the library. patch-configure: fix ``if test "foo" == "bar"'' (the double eq sign is not supported by /bin/sh).
29 lines
538 B
Text
29 lines
538 B
Text
--- configure.orig Mon Apr 30 22:07:59 2007
|
|
+++ configure Mon Apr 30 22:08:34 2007
|
|
@@ -4415,7 +4415,7 @@
|
|
|
|
|
|
|
|
-if test "x$HAVE_CXX" == "xyes"; then
|
|
+if test "x$HAVE_CXX" = "xyes"; then
|
|
HAVE_CXX_TRUE=
|
|
HAVE_CXX_FALSE='#'
|
|
else
|
|
@@ -29082,7 +29082,7 @@
|
|
|
|
if test x$without_glib != xtrue
|
|
then
|
|
- if test $with_gnu_ld == yes
|
|
+ if test $with_gnu_ld = yes
|
|
then
|
|
# We need both GNU LD and GLIB here!
|
|
|
|
@@ -29488,7 +29488,7 @@
|
|
xpdf=0
|
|
exiv2=0
|
|
|
|
-if test "x$HAVE_CXX" == "xyes"
|
|
+if test "x$HAVE_CXX" = "xyes"
|
|
then
|
|
|
|
# check for Qt 4
|