f9ca125c15
changes: * Fixed a potentially fatal problem when parsing an HTTP request header which fails to provide a request method. Also add a patch from CVS to fix a core dump when giftd tries to scan files with non printable names when building a share index. Patch by Kailash Sethuraman
22 lines
779 B
Text
22 lines
779 B
Text
$NetBSD: patch-aa,v 1.2 2004/07/27 15:39:21 recht Exp $
|
|
|
|
--- configure.orig 2004-05-08 04:24:24.000000000 +0200
|
|
+++ configure 2004-07-27 17:32:35.000000000 +0200
|
|
@@ -20100,7 +20100,7 @@
|
|
LIBS="$LIBS -l$dbname"
|
|
echo "$as_me:$LINENO: checking for libdb (-l$dbname)" >&5
|
|
echo $ECHO_N "checking for libdb (-l$dbname)... $ECHO_C" >&6
|
|
-if test "${found_libdb+set}" = set; then
|
|
+if test "${found_libdb}+set" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
@@ -20179,7 +20179,7 @@
|
|
echo "${ECHO_T}$found_libdb" >&6
|
|
CFLAGS="$ac_save_CFLAGS"
|
|
LIBS="$ac_save_LIBS"
|
|
- if test x$found_libdb == xyes; then break; fi
|
|
+ if test x$found_libdb = xyes; then break; fi
|
|
done
|
|
use_libdb=$found_libdb
|
|
else
|