mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-10 13:03:41 -04:00
25 lines
968 B
Plaintext
25 lines
968 B
Plaintext
$NetBSD: patch-ab,v 1.2 2012/03/19 09:40:08 markd Exp $
|
|
|
|
Fix unportable test(1) construct.
|
|
|
|
--- configure.orig 2011-12-04 02:43:29.000000000 +0000
|
|
+++ configure
|
|
@@ -13916,7 +13916,7 @@ fi
|
|
rm -f core conftest.err conftest.$ac_objext \
|
|
conftest$ac_exeext conftest.$ac_ext
|
|
|
|
- if test "$have_bdb_open_7_args" == Xno; then
|
|
+ if test "$have_bdb_open_7_args" = Xno; then
|
|
# Cannot have 6 args if 7 args worked
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BDB V4.0 DB->open with 6 arguments" >&5
|
|
$as_echo_n "checking for BDB V4.0 DB->open with 6 arguments... " >&6; }
|
|
@@ -14780,7 +14780,7 @@ if test "${with_module_path+set}" = set;
|
|
withval=$with_module_path; REDLAND_MODULE_PATH="$witheval"
|
|
fi
|
|
|
|
-if test "x$REDLAND_MODULE_PATH" == "x"; then
|
|
+if test "x$REDLAND_MODULE_PATH" = "x"; then
|
|
REDLAND_MODULE_PATH=$libdir"/redland"
|
|
if test "x$prefix" != "xNONE"; then
|
|
REDLAND_MODULE_PATH="/usr/local/lib/redland:"$REDLAND_MODULE_PATH
|