Im trying to compile my c program that uses mysql. I have to link with -lcrypto even though I don't need SSL or encryption and on NetBSD 7.0 I simply cannot compile my program, I get this error:
warning: RC5 is a patented algorithm; link against libcrypto_rc5
Does this mean I can no longer write c programs (for non commercial usage) that uses mysql?
How should I link my program? I used $(mysql_config --libs) and the line -lcrypto is causing the problem.
Any help would be appriciated.