I was able to hack around it by configuring on linux and then
modifying the RLOG_DECL definition:
#ifdef _WIN32
#ifdef RLOG_EXPORT
#define RLOG_DECL __declspec(dllexport)
#else
#define RLOG_DECL __declspec(dllimport)
#endif
#else
#define RLOG_DECL
#endif
Adding the RLOG_EXPORT define to the preprocessor settings when
compiling the dll.
I was also wondering if it's possible to obtain RLog under a different
license that would allow static linking. Perhaps a CMake-based build
system would be a reasonable trade for this?
Valient
--
You received this message because you are subscribed to the Google Groups "rlog-users" group.
To post to this group, send email to rlog-...@googlegroups.com.
To unsubscribe from this group, send email to rlog-users+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rlog-users?hl=en.