blob: 3c98f644fa9f523e01ef9f98b6444d9bf1de4ead (
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
|
$NetBSD: patch-ae,v 1.3 2008/02/21 17:34:08 adam Exp $
--- configure.orig 2008-02-20 06:49:48.000000000 +0100
+++ configure
@@ -7245,7 +7245,7 @@ fi
-if test x$with_advanced_dns == xyes ; then
+if test x$with_advanced_dns = xyes ; then
LIB_RESOLV=""
HAVE_RES_NQUERY=""
@@ -10604,8 +10604,8 @@ fi
if test "Z$ac_cv_gethostbyaddr_args" != "Z"; then
echo "Function gethostbyaddr_r takes $ac_cv_gethostbyaddr_args arguments"
echo -n "First argument for gethostbyaddr_r is "
- if test "Z$ac_cv_gethostbyaddr_first_arg" == "Zcharptr"; then echo "const char *"
- elif test "Z$ac_cv_gethostbyaddr_first_arg" == "Zvoidptr"; then echo "const void *"
+ if test "Z$ac_cv_gethostbyaddr_first_arg" = "Zcharptr"; then echo "const char *"
+ elif test "Z$ac_cv_gethostbyaddr_first_arg" = "Zvoidptr"; then echo "const void *"
else echo
fi
else
|