In the latest beta version (1.3.6) and trunk, mysql compilation fails on fedora because the mysql libs are in /usr/lib/mysql and the "-L" is missing when compiling. I solved this by executing in the file "configure" the part containing
_full_libmysql_libs="`$MYSQL_CONFIG --libs`"
wether or not the enable_static flag is set.
Btw: 1.1.7 doesn't have this problem, since they set the include and lib dirs manually in the configure file, instead of using mysql_config for this.
Franky
_full_libmysql_libs="`$MYSQL_CONFIG --libs`"
wether or not the enable_static flag is set.
Btw: 1.1.7 doesn't have this problem, since they set the include and lib dirs manually in the configure file, instead of using mysql_config for this.
Franky
Comment