2009-12-08 5 views

답변

2

--enable-xyz 이런 종류의, 또는 --with-xyz는 첫 번째 단계 인 configure 스크립트에 전달되는 (다운로드 후/분명히 소스를 압축 해제) 소스에서 PHP를 컴파일 할 때.

자세한 내용은 Installation on Unix System > Apache 2.x on Unix systems을 참조하십시오. 그리고, Especialy는, 일부는 configure 호출의 예를 제공한다 : 당신이 --enable-zip option와 PHP를 재 컴파일 할/필요합니다

10. Now, configure your PHP. This is where you customize your PHP 
    with various options, like which extensions will be enabled. Do a 
    ./configure --help for a list of available options. In our example 
    we'll do a simple configure with Apache 2 and MySQL support. Your 
    path to apxs may differ, in fact, the binary may even be named apxs2 on 
    your system. 

     ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql 

,이 명령에 바로 갈 수 있습니다.

관련 문제