Hi. Perhaps I found a small error in OpenSuse10.3 Installer.
When configure nss-mysql I get an error on OpenSuse 10.3 64.
/usr/lib/mysql/libmysqlclient.a not found. Yes I have only the 64bit version in /usr/lib64/mysql/libmysqlclient.a. So I change the script follow:
Maybe you find it usefull.
When configure nss-mysql I get an error on OpenSuse 10.3 64.
/usr/lib/mysql/libmysqlclient.a not found. Yes I have only the 64bit version in /usr/lib64/mysql/libmysqlclient.a. So I change the script follow:
Code:
echo "Compiling source dependencies (nss-mysql)..." tar -C /usr/src -xf /tmp/hyperion-install/src/nss-mysql.tar cd /usr/src/nss-mysql-1.0 if [ ! -e /usr/lib/mysql/libmysqlclient.a ]; then echo "libmysqlclient.a 32bit has not been installed. Checking for 64bit." if [ ! -e /usr/lib64/mysql/libmysqlclient.a ]; then echo "libmysqlclient.a has not been installed. Aborting installation." echo "" exit 0 else echo "libmysqlclient.a 64bit found." export NSS_MYSQL_LIB="--with-mysql-lib=/usr/lib64/mysql/" fi fi ./configure $NSS_MYSQL_LIB make make install
Comment