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

oops, problem with the find_apr.m4 patch

From: Karl Fogel <kfogel_at_newton.ch.collab.net>
Date: 2001-12-21 17:02:21 CET

Hey, Justin, after I committed rev 703 (the APR_FIND_APR change),
people started having build failures:

   libtool: link: cannot find the library `apr/libapr.la'

I backed out the change; can you figure out what the problem was? You
should have no trouble reproducing the problem, as it was happening to
everyone (at least, to every svn developer on irc.openprojects.net
this morning :-) ).

If you haven't already seen it, there's an email from me in the
HACKING file that might be relevant. Here is what it says:

   From: Karl Fogel <kfogel@collab.net>
   To: dev@subversion.tigris.org
   Subject: when changing build/config stuff, always do this first
   Date: Wed 28 Nov 2001

   Yo everyone: if you change part of the configuration/build system,
   please make sure to clean out any old installed Subversion libs
   *before* you try building with your changes. If you don't do this,
   your changes may appear to work fine, when in fact they would fail if
   run on a truly pristine system.
   
   This script demonstrates what I mean by "clean out". This is
   `/usr/local/cleanup.sh' on my system. It cleans out the Subversion
   libs (and the installed httpd-2.0 libs, since I'm often reinstalling
   that too):
   
      #!/bin/sh
      
      # Take care of libs
      cd /usr/local/lib
      rm -f APRVARS
      rm -f libapr*
      rm -f libexpat*
      rm -f libneon*
      rm -f libsvn*
      
      # Take care of headers
      cd /usr/local/include
      rm -f apr*
      rm -f svn*
      rm -f neon/*
      
      # Take care of headers
      cd /usr/local/apache2/lib
      rm -f *
   
   When someone reports a configuration bug and you're trying to
   reproduce it, run this first. :-)
   
   The voice of experience,
   -Karl

Thanks,
-K

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Oct 21 14:36:53 2006

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.