On Sun, Oct 29, 2006 at 11:39:04AM -0600, Albert Chin wrote:
> On Thu, Oct 05, 2006 at 08:50:01PM +0100, Joe Orton wrote:
> > I've put up a snapshot of the 0.26.x branch:
> > 
> > http://www.webdav.org/neon/snapshots/neon-r1091.tar.gz
> > 
> > [n.b.: this is not a release. it is a snapshot of the SVN branch]
> > 
> > Matthias, could you check whether I've merged all the MinGW patches OK?  
> > Peter/Albert - I've added a change which should fix the issue with HP-UX 
> > 10.x, could you test that out?
> 
> I just checked out HEAD and compiled it. With the attached patch, neon
> builds on the following platforms:
>   AIX 4.3.3, 5.1, 5.2, 5.3
>   HP-UX 10.20, 11.00, 11.11, 11.23/PA, 11.23/IA
>   IRIX 6.5
>   Redhat Linux 7.1, 9
>   RHEL 2.1/x86, 3/x86, 3/amd64, 4/x86, 4/amd64
>   Solaris 2.6, 7, 8, 9, 10/SPARC, 10/Intel
>   Tru64 UNIX 4.0D, 5.1

Forgot the patch.

-- 
albert chin ([EMAIL PROTECTED])
Index: macros/neon.m4
===================================================================
--- macros/neon.m4      (revision 1095)
+++ macros/neon.m4      (working copy)
@@ -416,13 +416,6 @@
     ac_cv_func_poll=no
   fi
 fi
-
-# Use _XOPEN_SOURCE_EXTENDED=1 if similar not already set, on HP-UX
-case "${ne_cv_os_uname}--${CPPFLAGS}" in
-HP-UX*--*_XOPEN_SOURCE*) ;;
-HP-UX*) CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED=1" ;;
-esac
-
 ])
 
 AC_DEFUN([NEON_COMMON_CHECKS], [
Index: src/ne_socket.c
===================================================================
--- src/ne_socket.c     (revision 1095)
+++ src/ne_socket.c     (working copy)
@@ -772,7 +772,7 @@
 #define INADDR_NONE ((in_addr_t) -1)
 #endif
 
-#if !defined(USE_GETADDRINFO) && !defined(HAVE_DECL_H_ERRNO) && !defined(WIN32)
+#if !defined(USE_GETADDRINFO) && !HAVE_DECL_H_ERRNO && !defined(WIN32)
 /* Ancient versions of netdb.h don't export h_errno. */
 extern int h_errno;
 #endif
Index: src/ne_session.h
===================================================================
--- src/ne_session.h    (revision 1095)
+++ src/ne_session.h    (working copy)
@@ -93,7 +93,7 @@
     ne_status_connecting, /* connecting to host */
     ne_status_connected, /* connected to host */
     ne_status_sending, /* sending a request */
-    ne_status_recving, /* receiving a response */
+    ne_status_recving /* receiving a response */
 } ne_session_status;
 
 /* Status event information union; the relevant structure within
_______________________________________________
neon mailing list
[email protected]
http://mailman.webdav.org/mailman/listinfo/neon

Reply via email to