Author: billbarker Date: Sun Jan 4 17:45:12 2009 New Revision: 731405 URL: http://svn.apache.org/viewvc?rev=731405&view=rev Log: Only include Mac-specific files if compiling for Mac.
Still don't know what I'm doing, but trusting that I have enough testers to tell me. At least this should fix the Gump build. Modified: commons/proper/daemon/trunk/src/native/unix/native/dso.h Modified: commons/proper/daemon/trunk/src/native/unix/native/dso.h URL: http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/dso.h?rev=731405&r1=731404&r2=731405&view=diff ============================================================================== --- commons/proper/daemon/trunk/src/native/unix/native/dso.h (original) +++ commons/proper/daemon/trunk/src/native/unix/native/dso.h Sun Jan 4 17:45:12 2009 @@ -20,7 +20,7 @@ /** * A library handle represents a unique pointer to its location in memory. */ -#ifdef DSO_DLFCN +#ifdef OS_DARWIN #include <mach-o/dyld.h> #endif typedef void *dso_handle;