....

mod_python 3.3.1 설치중 컴파일 오류날 경우 본문

Linux

mod_python 3.3.1 설치중 컴파일 오류날 경우

idkook 2013. 8. 10. 20:31

CentOS 6.4에 순정으로 설치된 아파치에 mod_python을 컴파일 설치하려고 할 때 생긴 일.


> connobject.c: In function '_conn_read':
> connobject.c:142: error: request for member 'next' in something not a
> structure or union
> apxs:Error: Command failed with rc=65536

 

[출처]

http://www.modpython.org/pipermail/mod_python/2008-October/025724.html

 

mod_python-3.3.1/src/connobject.c 

 

while ((bytes_read < len || len == 0) &&
           !(b == APR_BRIGADE_SENTINEL(bb) ||
             APR_BUCKET_IS_EOS(b) || APR_BUCKET_IS_FLUSH(b))) {


b를 bb로 수정한다.

Comments