mirror of
https://git.freebsd.org/ports.git
synced 2025-06-19 03:30:32 -04:00
51 lines
1.3 KiB
Text
51 lines
1.3 KiB
Text
--- configure.orig 2009-06-01 08:32:47.000000000 +0800
|
|
+++ configure 2009-06-03 09:18:16.000000000 +0800
|
|
@@ -22077,7 +22077,7 @@
|
|
fi
|
|
|
|
|
|
-if test "x$POD2MAN" == "xno"; then
|
|
+if test "x$POD2MAN" = "xno"; then
|
|
{ { $as_echo "$as_me:$LINENO: error: \"Could not find pod2man anywhere in path\"" >&5
|
|
$as_echo "$as_me: error: \"Could not find pod2man anywhere in path\"" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
@@ -22325,7 +22325,7 @@
|
|
|
|
{ $as_echo "$as_me:$LINENO: result: $have_htoll" >&5
|
|
$as_echo "$have_htoll" >&6; }
|
|
- if test "x$have_htoll" == "xno"; then
|
|
+ if test "x$have_htoll" = "xno"; then
|
|
BUILD_BYTEORDER_TRUE=
|
|
BUILD_BYTEORDER_FALSE='#'
|
|
else
|
|
@@ -22669,14 +22669,14 @@
|
|
MEMC_BINARY="$withval"
|
|
fi
|
|
|
|
- if test x$withval == xyes
|
|
+ if test $withval = yes
|
|
then
|
|
MEMC_BINARY=memcached
|
|
fi
|
|
|
|
# just ignore the user if --without-memcached is passed.. it is
|
|
# only used by make test
|
|
- if test x$withval == xno
|
|
+ if test $withval = no
|
|
then
|
|
MEMC_BINARY=memcached
|
|
fi
|
|
@@ -22728,11 +22728,10 @@
|
|
fi
|
|
|
|
|
|
-if test x$MEMC_BINARY == "xno"
|
|
+if test $MEMC_BINARY = "no"
|
|
then
|
|
{ { $as_echo "$as_me:$LINENO: error: \"could not find memcached binary\"" >&5
|
|
-$as_echo "$as_me: error: \"could not find memcached binary\"" >&2;}
|
|
- { (exit 1); exit 1; }; }
|
|
+$as_echo "$as_me: error: \"could not find memcached binary\"" >&2;} }
|
|
fi
|
|
|
|
|