[mod-lisp-devel] APR Version

Takehiko Abe keke at gol.com
Thu Jun 29 06:30:12 UTC 2006


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.

<http://www.apache.org/dist/apr/CHANGES-APR-1.2>

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.





More information about the mod-lisp-devel mailing list