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

Re: svn commit: r20180 - in trunk: . build/generator

From: Kamesh Jayachandran <kamesh_at_collab.net>
Date: 2006-06-20 11:00:24 CEST

djh@tigris.org wrote:
> Author: djh
> Date: Mon Jun 19 17:37:55 2006
> New Revision: 20180
>
> Modified:
> trunk/build/generator/gen_win.py
> trunk/win-tests.py
>
> Log:
> Finish Apache 2.2/APR 1.x support on Win32.
>
> * win-tests.py
> (locate_libs): Use APR 1.x dll's if they are found, otherwise use the
> 0.9.x dll's.
>
> * build/generator/gen_win.py
> (parse_options): Assume there is no gen_uri_delims.dsp -- it was removed
> in newer versions of apr-util.
> (__init__): Look for the gen_uri_delims.dsp file in case we're on an
> older apr-util.
> (get_install_targets): If no gen_uri_delims.dsp project then drop it out
> of our targets list.
>
>
>
> Modified: trunk/build/generator/gen_win.py
> URL: http://svn.collab.net/viewvc/svn/trunk/build/generator/gen_win.py?pathrev=20180&r1=20179&r2=20180
> ==============================================================================
> --- trunk/build/generator/gen_win.py (original)
> +++ trunk/build/generator/gen_win.py Mon Jun 19 17:37:55 2006
> @@ -58,6 +58,7 @@
> self.instrument_apr_pools = None
> self.instrument_purify_quantify = None
> self.configure_apr_util = None
> + self.have_gen_uri = None
>
> # NLS options
> self.enable_nls = None
> @@ -146,6 +147,11 @@
> # Find neon version
> if self.neon_path:
> self._find_neon()
> +
> + # Check for gen_uri_delims project in apr-util
> + gen_uri_path = os.path.join(self.apr_util_path, "uri\\gen_uri_delims.dsp")
>
Is it not better to have

gen_uri_path = os.path.join(self.apr_util_path, 'uri', 'gen_uri_delims.dsp')

With regards
Kamesh Jayachandran

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Jun 20 11:03:42 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.