building apr-util 1.5.4 fails tests using VS2010SP1

2015-04-24 Thread Stefan Hett
Hi, I just tried to build APR-util 1.5.4 and got two failing tests: testxlate (Line 63: expected 0, but saw 22) testreslist (Line 255: expected 10, but saw 20) Looking in the dev-apr-mailing archive, I found this thread from 2013:

Re: minor APR 1.5.2 build error on Windows

2015-06-22 Thread Stefan Hett
Hi Gregg, On 6/22/2015 2:49 AM, Stefan Hett wrote: Hi, I just tested building APR 1.5.2 from source on windows, following the instructions from the readme file. compiling (aka: nmake -f Makefile.win) succeeded without problems, but the following install command (aka: nmake -f Makefile.win

minor APR 1.5.2 build error on Windows

2015-06-22 Thread Stefan Hett
Hi, I just tested building APR 1.5.2 from source on windows, following the instructions from the readme file. compiling (aka: nmake -f Makefile.win) succeeded without problems, but the following install command (aka: nmake -f Makefile.win PREFIX=FOO install) failed with return code 0x1:

Re: minor APR 1.5.2 build error on Windows

2015-06-25 Thread Stefan Hett
Hi Gregg, On 6/22/2015 3:58 AM, Stefan Hett wrote: Hi Gregg, On 6/22/2015 2:49 AM, Stefan Hett wrote: Hi, I just tested building APR 1.5.2 from source on windows, following the instructions from the readme file. compiling (aka: nmake -f Makefile.win) succeeded without problems

Re: minor APR 1.5.2 build error on Windows

2015-06-26 Thread Stefan Hett
On 6/26/2015 4:55 AM, Gregg Smith wrote: On 6/25/2015 10:51 AM, Stefan Hett wrote: Hi Gregg, On 6/22/2015 3:58 AM, Stefan Hett wrote: Hi Gregg, On 6/22/2015 2:49 AM, Stefan Hett wrote: Hi, I just tested building APR 1.5.2 from source on windows, following the instructions from the readme

Re: Build APR with Visual Studio 2015

2015-08-18 Thread Stefan Hett
Hi, On 17.08.2015 17:10, Stefan Hett wrote: Hi Tomi, [...] APR doesn't build out of the box with VS 2015. Yes it does. Just use the CMake build and it works fine; I built the latest 1.5 with no problems. Haven't tried 2.0 or 1.6, but I don't expect any issues there, either. -- Brane

Re: Build APR with Visual Studio 2015

2015-08-17 Thread Stefan Hett
Hi Tomi, Hi, I'm not sure if non-developers are supposed to even try to build APR themselves, so that they can build Apache HTTPD and Apache Subversion, but I tried to do so with the free Visual Studio 2015 Community edition (Windows 7 Ultimate SP1) and I'm not sure if I succeeded. Here's what

expat upgrade to 2.1.0

2015-09-08 Thread Stefan Hett
Hi, a while ago I've been pointed by Bert to the fact that APRUtil 1.5.4 includes Expat 1.95.7 which is rather old (from October 2003). According tohttp://www.libexpat.org/ there has been another 1.95 release with mostly bugfixes (1.95.8 in July 2004) and the latest one is 2.1.0 (from March

[PATCH] fix double free in misc/win32/apr_app.c and start.c

2016-06-15 Thread Stefan Hett
of the putenv-approach is that this is more portable for future VS versions, especially since the _environ/_wenviron variables have been deprecated since VS 2005 and hence might get dropped in some future version (https://msdn.microsoft.com/en-us/library/stxk41x1(v=vs.80).aspx). -- Regards, S

Re: [PATCH] deadlocking condition with APR_HAS_THREADS

2017-02-02 Thread Stefan Hett
ted/terminated threads (while apr_join_thread's return value actually indicates that to the caller. Hence the most reasonable solution to this problem seemed to be the proposed patch. -- Regards, Stefan Hett

Re: [PATCH] deadlocking condition with APR_HAS_THREADS

2017-02-02 Thread Stefan Hett
On 2/2/2017 1:24 PM, Branko Čibej wrote: On 02.02.2017 12:49, Stefan Hett wrote: On 2/2/2017 12:04 PM, Nick Kew wrote: On Wed, 2017-02-01 at 00:23 +0100, Stefan wrote: Hi, the issue was discovered as part of tracing down a deadlock condition in an SVN test [1]. As far as I understand

Re: [PATCH] deadlocking condition with APR_HAS_THREADS

2017-02-02 Thread Stefan Hett
_pool_func() function) the process' main function returns. Hope this makes a bit more sense now. :-) Of cause you are absolutely correct that the process itself is still running at that point. -- Regards, Stefan Hett, Developer/Administrator EGOSOFT GmbH, Heidestrasse 4, 52146 Würselen, German

Re: [PATCH] deadlocking condition with APR_HAS_THREADS

2017-02-02 Thread Stefan Hett
On 2/2/2017 1:25 PM, Branko Čibej wrote: On 02.02.2017 13:14, Stefan Hett wrote: On 2/2/2017 12:52 PM, Branko Čibej wrote: On 01.02.2017 00:23, Stefan wrote: Hi, the issue was discovered as part of tracing down a deadlock condition in an SVN test [1]. [...] In this particular case we