2013-09-26 17:14:40 +02:00

43 lines
1.3 KiB
Plaintext

$NetBSD: patch-aa,v 1.1.1.1 2010/08/08 01:05:04 obache Exp $
portability fix.
--- configure.orig 2008-07-11 04:17:12.000000000 +0000
+++ configure
@@ -20602,7 +20602,7 @@ fi
# define PYTHOPN_CFLAGS & PYTHON_LIBS
-PYTHON_CONFIG=`type -p python$PYTHON_VERSION-config`
+PYTHON_CONFIG="python$PYTHON_VERSION-config"
if test "$PYTHON_CONFIG" != ""; then
PYTHON_CFLAGS=`$PYTHON_CONFIG --includes`
PYTHON_LIBS=`$PYTHON_CONFIG --libs`
@@ -20660,7 +20660,7 @@ if test "${enable_english_writer+set}" =
fi
-if test "$enable_english_writer" == "force"; then
+if test "$enable_english_writer" = "force"; then
if true; then
ENABLE_ENGLISH_WRITER_TRUE=
ENABLE_ENGLISH_WRITER_FALSE='#'
@@ -20669,7 +20669,7 @@ else
ENABLE_ENGLISH_WRITER_FALSE=
fi
-elif test "$enable_english_writer" == "no"; then
+elif test "$enable_english_writer" = "no"; then
if false; then
ENABLE_ENGLISH_WRITER_TRUE=
ENABLE_ENGLISH_WRITER_FALSE='#'
@@ -20679,7 +20679,7 @@ else
fi
else
- if test "$have_python_enchant" == "no"; then
+ if test "$have_python_enchant" = "no"; then
{ { echo "$as_me:$LINENO: error:
Your system does not have python-enchant, please install it or run \"./configure --disable-english-writer\".
You may also use \"./configure --enable-english-writer=force\" to foce build this english engine." >&5