I’ve installed firefox flash plugin on ubuntu as firefox asked me to install. But I found out that text is no displayed. After some hours and google searches i found out that the problem is gsfonts-x11 package which was not installed on my ubuntu distributon. As I did
sudo apt-get install gsfonts-x11
The text suddenly appeared in the flash movies displayed by firefox web browser.
You forgot to link libwrap if you get the following output compiling your application :
/usr/lib/libmysqld.a(lib_sql.o): In function "handle_connections_sockets":
: undefined reference to "request_init"
/usr/lib/libmysqld.a(lib_sql.o): In function "handle_connections_sockets":
: undefined reference to "sock_host"
/usr/lib/libmysqld.a(lib_sql.o): In function "handle_connections_sockets":
: undefined reference to "hosts_access"
/usr/lib/libmysqld.a(lib_sql.o): In function "handle_connections_sockets":
: undefined reference to "eval_client"
collect2: ld returned 1 exit status
You can link libwrap by adding /lib/libwrap.so.0 to your compilation (g++, gcc ) path.