On Wednesday 09 of October 2013 20:33:25 you wrote:
> > Has anybody seen a similar issue or any idea what am I doing wrong when
> > compiling svn 1.8?
>
> Did you per chance build serf with a different build of apr & apr-util as
> you used for Subversion?
> Lieven
I build serf with the same version of apr & apr-util as I did with Subversion.
apr 1.4.8 and apr-util 1.5.2.
I also tried different versions of serf: 1.2.1, 1.3.1, 1.3.2 but still no
difference.
Just to note, I had to patch apr to make it building with lsbcc. This is the
diff I use for building apr:
--- network_io/unix/sockopt.c.orig 2013-09-18 15:06:37.013013121 -0700
+++ network_io/unix/sockopt.c 2013-09-18 15:05:31.133012157 -0700
@@ -18,6 +18,9 @@
#include "apr_strings.h"
+#define SIOCATMARK 0x8905
+
+
static apr_status_t soblock(int sd)
{
/* BeOS uses setsockopt at present for non blocking... */
Not sure if this matters or not.