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

Re: Neon does not build on windows?

From: Branko Čibej <brane_at_xbc.nu>
Date: 2003-09-26 01:03:02 CEST

Barry Scott wrote:

> Which neon do I use on Windows?
>
> 1 is in the SVN tar ball in neon/
> 2 is the one that the windows instructions tells me install in
> neon/ from the neon 0.24.2 tar.gz

These two should be the same.

> I've just spotted a bug in my build script I used:
>
> I have the same question for apr and apr-util. Use the one in the
> SVN tar ball or use the code from httpd ZIP?

I use HEAD of apr, apr-util and apr-iconv for development builds; I use
those from hrrpd-2.0.47 for the release binary packages.

I use the following script to make junctions to apr*, neon and BDB
binaries in the source tree:

[brane@silmaril repo]$ cat ../tools/mkjunk.sh
#!/bin/sh

BDB_VER="4.0.14"
HTTPD_VER="2.0.47"
NEON_VER="0.24.2"

if [ "$1" = "--httpd-apr" ]
then
    APR_DIR="../httpd-${HTTPD_VER}/srclib"
else
    APR_DIR="../common"
fi

junction apr "${APR_DIR}/apr"
junction apr-iconv "${APR_DIR}/apr-iconv"
junction apr-util "${APR_DIR}/apr-util"
junction db4-win32 "../common/db4-win32-${BDB_VER}"
junction neon "../common/neon-${NEON_VER}"

and this one to create the .dsp files:

[brane@silmaril repo]$ cat ../tools/configure.sh
#!/bin/sh

python gen-make.py -t dsp \
    --with-httpd=../httpd-2.0.47 \
    --with-zlib=../common/zlib114 \
    --with-openssl=../common/openssl \
    "$@"

Then I just open subversion-msvc.dsp in the MSVC6.0 IDE and compile the
__ALL_TESTS__ project.

It's possible I'm not seeing any problems with neon builds because I
always build with ZLib and OpenSSL.

-- 
Brane Čibej   <brane_at_xbc.nu>   http://www.xbc.nu/brane/
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri Sep 26 01:06:48 2003

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.