1
2Currently Solaris does not handle the "__attribute__ ((constructor))"
3entries in C files as it seems, so in your programs on Solaris you will
4have to call GWEN_Init() yourself before doing anything else...
5
6If programs linked against libgwenhywfar complain about unavailable libraries
7upon start (most likely they mention OpenSSL) you should try this:
8LD_LIBRARY_PATH="/usr/local/ssl/lib:/usr/local/lib" YOURPROGRAM
9
10The LD_LIBRARY_PATH variable tells the Solaris linker where to search for
11libraries in addition to the system folders.
12
13