Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 지름신
- Java
- Find
- 3.5
- eclipse
- tagx
- tomcat
- netstate
- Galileo
- 파워목업
- yum
- 이클립스
- 삽질
- CentOS6
- SSL
- 갈릴레오
- 보드
- 권한변경
- Apache
- Powermockup
- NEXUS
- trac
- Babel
- 연동
- CentOS
- svn
- subversion
- resin
- egrep
- linux
Archives
- Today
- Total
....
mod_python 3.3.1 설치중 컴파일 오류날 경우 본문
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