|
|
PHP 컴파일시 다음과같은 mysqli 에러가 발생 하였다.
checking for MySQLi support... yes checking whether to enable embedded MySQLi support... no checking for mysql_set_server_option in -lmysqlclient... no configure: error: wrong mysql library version or lib not found. Check config.log for more information.
컴파일 옵션은 아래와 같았는데 이 옵션을 아래와 같이 변경 해 준다.
./configure
....
.....
--with-mysqli=/설치디렉토리/mysql/bin/mysql_config - 삭제
--enable-embedded-mysqli=shared --- + 추가
...
.....
이렇게 해 주니 그 에러는 사라 졌다.