
19 Jan
2010
19 Jan
'10
1:13 p.m.
On Fri, Jan 15, 2010 at 11:36 PM, Bryan O'Sullivan
...I have to export everything in the module (because its contents vary depending on where I compile it)...
You could of course conditionally export symbols using CPP: module System.Event.EPoll ( #if defined(HAVE_EPOLL) ... #endif ) where #if defined(HAVE_EPOLL) ... #endif Bas