views:

242

answers:

1

I have used event.h in on of my project but the server it has to run on does not support it. Moreover I can not install it also. Is there a way I can run my project with minimum modifications.

It has to be compiled statically linked in but how do I do that?

+2  A: 

What do you mean the server it has to run on does not support it? If a shared library is not installed, you can just build your project with the library statically linked in.

Michael Dillon