OS: redhat5.2-x86_64
When I run configure command: configure --enable-server --with-mysql,the output are:
checking for the version of libcurl... 7.15.5
checking for libcurl >= version 7.13.1... yes
checking for main in -lcurl... no
configure: error: Not found libcurl library
I check the curl package, they are already installed(x86_64):
curl-devel-7.15.5-2.el5
curl-7.15.5-2.el5
If I run configure like this : configure --enable-server --with-mysql --enable-static, the output are:
checking for libcurl >= version 7.13.1... yes
checking for main in -lgssapi_krb5 ... yes
checking for main in -lkrb5 ... yes
checking for main in -lk5crypto ... yes
checking for main in -lcom_err ... no
configure: error: Not found com_err library
And I check the /lib64 and found the libcomm_err.so library.
How shoud I do to resolve the problem?
Thank you !
When I run configure command: configure --enable-server --with-mysql,the output are:
checking for the version of libcurl... 7.15.5
checking for libcurl >= version 7.13.1... yes
checking for main in -lcurl... no
configure: error: Not found libcurl library
I check the curl package, they are already installed(x86_64):
curl-devel-7.15.5-2.el5
curl-7.15.5-2.el5
If I run configure like this : configure --enable-server --with-mysql --enable-static, the output are:
checking for libcurl >= version 7.13.1... yes
checking for main in -lgssapi_krb5 ... yes
checking for main in -lkrb5 ... yes
checking for main in -lk5crypto ... yes
checking for main in -lcom_err ... no
configure: error: Not found com_err library
And I check the /lib64 and found the libcomm_err.so library.
How shoud I do to resolve the problem?
Thank you !
Comment