C언어

Apache Portable Runtime 설치

고요한하늘... 2009. 1. 19. 20:18

cd APR-1.3.3_DIR

 

apr-1.3.3.tar.gz

 ./buildconf

./configure

make

make test

make install

 

apr-iconv-1.2.1.tar.gz

./buildconf --with-apr=APR-1.3.3_DIR
./configure --with-apr=APR-1.3.3_DIR

make

make install

 

apr-util-1.3.4.tar.gz

./buildconf --with-apr=APR-1.3.3_DIR
./configure --with-apr=APR-1.3.3_DIR

make

make install

 

gcc -g -o test1 test1.c   -I/usr/local/apr/include/apr-1 -L/usr/local/apr/lib -lapr-1 -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE

 

apr 공부중 곧 추가적인 포스팅 예정

'C언어' 카테고리의 다른 글

apache 코어 설정  (0) 2009.01.22
apr Makefile 만들기  (0) 2009.01.22
분산 처리( distributed processing )  (0) 2009.01.06
내가 해보고 싶은 분산 컴퓨팅  (0) 2008.12.12
cast from pointer to integer of different size  (0) 2008.08.19