From keke at gol.com Thu Jun 29 06:30:12 2006 From: keke at gol.com (Takehiko Abe) Date: Thu, 29 Jun 2006 15:30:12 +0900 Subject: [mod-lisp-devel] APR Version Message-ID: <20060629063012.1341@roaming.gol.com:25> mod_lisp2.c contains the following: ;; /* Work out the version of the apache portable runtime (APR) we're ;; * compiling against... with version 1.2.2 some of the interfaces ;; * changed a bit. */ ;; #if (APR_MAJOR_VERSION==1 && APR_MINOR_VERSION==2 && APR_PATCH_VERSION==2) ;; #define HAVE_APR_1_2_2 1 ;; #endif It specifies 1.2.2, but the changelog of APR states that the changes were made with APR 1.0. Removed: apr_connect apr_recv apr_send Modified: apr_socket_create So, I think using APR_MAJOR_VERSION==1 in place of HAVE_APR_1_2_2 should work fine.