serf_get.c currently won't build against a current apr-util because it's using a deprecated function that was recently removed. the trivial patch to fix this is included.

-garrett

Index: test/serf_get.c
===================================================================
--- test/serf_get.c     (revision 132)
+++ test/serf_get.c     (working copy)
@@ -365,7 +365,7 @@

     apr_uri_parse(pool, raw_url, &url);
     if (!url.port) {
-        url.port = apr_uri_default_port_for_scheme(url.scheme);
+        url.port = apr_uri_port_of_scheme(url.scheme);
     }
 #if SERF_HAS_OPENSSL
     if (strcasecmp(url.scheme, "https") == 0) {



Reply via email to