Files
macports-ports/www/mod_python/files/patch-src-connobject.c.diff
Markus W. Weißmann 71a79dc632 fix build on 10.5:
-correct call to APR_BRIGADE_SENTINEL  (https://trac.macports.org/ticket/15791, https://issues.apache.org/jira/browse/MODPYTHON-249);
-add CC variable to dist/Makefile (will not find compiler otherwise)

git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@38757 d073be05-634f-4543-b044-5fe20cf6d1d6
2008-07-30 11:08:30 +00:00

12 lines
390 B
Diff

--- src/connobject.c 2006-12-03 05:36:37.000000000 +0100
+++ src/connobject.c 2008-07-30 12:30:10.000000000 +0200
@@ -139,7 +139,7 @@
bytes_read = 0;
while ((bytes_read < len || len == 0) &&
- !(b == APR_BRIGADE_SENTINEL(b) ||
+ !(b == APR_BRIGADE_SENTINEL(bb) ||
APR_BUCKET_IS_EOS(b) || APR_BUCKET_IS_FLUSH(b))) {
const char *data;