[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: maddening tarball problems.

From: Edward S. Marshall <esm_at_logic.net>
Date: 2002-10-30 05:47:26 CET

On Tue, 2002-10-29 at 22:18, Ben Collins-Sussman wrote:
> I don't think the answer is to simply put 'std' first in the list
> again, but rather to fix the logic further down. If 'std' is first in
> the list, then everything breaks on FreeBSD. As the comment says, we
> end up finding /usr/include/db.h, which is db2, and pairing it with
> /usr/local/lib/libdb.so, which is newer.

We were talking about this on IRC last night, and I noticed the
following little buglet which might account for at least a few problems.
Patch attached.

-- 
Edward S. Marshall <esm@logic.net>
http://esm.logic.net/
* ac-helpers/berkeley-db.m4 (SVN_LIB_BERKELEY_DB): Fix a typo that
  caused the loop through $places to terminate early.
Index: ac-helpers/berkeley-db.m4
===================================================================
--- ac-helpers/berkeley-db.m4
+++ ac-helpers/berkeley-db.m4	2002-10-29 22:43:41.000000000 -0600
@@ -182,7 +182,7 @@
           break
         fi
       done
-        test "found" != "not" && break
+        test "$found" != "not" && break
     done
 
     # Restore the original values of the flags we tweak.

Received on Wed Oct 30 07:18:16 2002

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.