apr-1.6.5 설치 오류 - 1

configure: error: in `/home/bongho/apr-1.6.5':

configure: error: no acceptable C compiler found in $PATH

See `config.log' for more details


-> 해결방안

의존성 파일 설치

apt-get install gcc


apr-1.6.5 설치 오류 - 2

rm: cannot remove 'libtoolT': No such file or directory


-> 해결방안

cp libtool libtoolT


*make 명령이 없습니다


-> 해결방안

apt-get install make


make && make install


apr-util-1.6.1 설치 오류 - 1

xml/apr_xml.c:35:10: fatal error: expat.h: 그런 파일이나 디렉터리가 없습니다


->해결방안

sudo apt-get install libexpat1-dev


-> 설치

sudo ./configure --prefix=/usr/local/apr-util  --with-apr=/usr/local/apr


make && make install



pcre-8.39 설치 오류 - 1

configure: error: You need a C++ compiler for C++ support.


->해결방안

apt-get install g++


pcre.8.39 설치 오류 - 2

'aclocal-1.15' is missing on your system.


->해결방안

apt-get install automake



sudo ./configure --prefix=/usr/local/apache24 --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-pcre=/usr/local/pcre --enable-mods-shared=most --enable-module=so --enable-rewrite

+ Recent posts