I'm working with MySql lib, when I'm compiling, although the compilation it's ok, I have this warning:
g++: -lmysqlclient: linker input file unused because linking not done
I'm using automake, and I had to add -lmysqlclient in configure.ac, so I guess that the linker gives me that warning in every file that the link is not necesary.
My question is, how can I hide that specific warning?
Thanks!