[Fwd: Re: [MonoDevelop] Problem getting monodevelop to load combines]

Todd Berman tberman@off.net
Tue, 30 Nov 2004 01:09:29 -0800


This patch wont work.

1) You aren't using #if MONO_POSIX_OEE so you will break the build for
everyone who is using any released version of mono.
2) Stylistically you should follow what was used above with a using
FilePermissions = Mono.Unix.FilePermissions. However, I believe that
using existed to distinguish between Sys.IO.FileMode and
Mono.Posix.FileMode, so you most likely dont need it at all, and
changing the first #if sequence to:

#if MONO_POSIX_OEE
using Mono.Unix;
#else
using Mono.Posix;
using FileMode = Mono.Posix.FileMode;
#endif

would be the best bet.

--Todd