Firefox flash plugin on ubuntu linux displays no text

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 [...]

undefined reference to eval_client, hosts_access, sock_host, request_init

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 [...]

Shell script i use to compile boinc server side daemon

# /home/aurimas/boinc is a path where boinc is located # prepare_.cpp is my boinc server daemon g++ -I/home/aurimas/boinc/lib -I/home/aurimas/boinc/tools -I/home/aurimas/boinc/sched -I/home/aurimas/boinc/db -I/usr/include/mysql -I/home/aurimas/boinc/api -include /home/aurimas/boinc/config.h -c prepare_.cpp -o prepare_.o g++ -I/usr/local/include -o prepare_ prepare_.o -I/usr/local/mysql/include -L/home/aurimas/boinc/lib -lsched -lboinc -pthread -lmysqld -lssl -lcrypt -lz -L/usr/lib -L/lib -lrt /lib/libwrap.so.0