[Mono-list] Cross platform time zones

2009-09-25 Thread Neil Stalker
In windows the timezones have a descriptive name such as "Eastern Standard Time" but in linux the same timezone has the name "US/Eastern". Is there a cross platform way of running TimeZoneInfo.FindSystemTimeZoneById that can be used both in linux and windows, or would i have to add additional code

[Mono-list] VMWare Website Download

2009-09-25 Thread Lennie De Villiers
Hi, http://www.go-mono.com/mono-downloads/download.html I want to download the VMWare but it downloads from a FTP site, is there a website (none FTP) link? Kind Regards, Lennie De Villiers -- Lennie De Villiers Blog: http://lenniedevilliers.blogspot.com/ __

[Mono-list] xbuild: overriding targets doesn't work

2009-09-25 Thread Vlad Alexandru Ionescu
Hello, I've been trying to use the BeforeBuild target with xbuild, but apparently overriding it doesn't work at all (my custom BeforeBuild is simply ignored). A workaround for this problem is commenting out in Microsoft.Common.targets. But that requires that I define the BeforeBuild target i

Re: [Mono-list] VMWare Website Download

2009-09-25 Thread Jonathan Pobst
Assuming you are clicking the "via http" one, the protocol is http despite have ftp in the domain name: http://ftp.novell.com/pub/mono/appliance/2.4.2.3/Mono-2.4.2.3-vmx.zip Jonathan Lennie De Villiers wrote: > Hi, > > http://www.go-mono.com/mono-downloads/download.html > > I want to downloa

Re: [Mono-list] Problem loading ASP.NET page after Mono update

2009-09-25 Thread tyler
Moin Ferdinand! Ferdinand Funke schrieb am Freitag, den 25. September 2009: > Hello, > I recently updated my Mono version from 2.4 to 2.4.2.3. After updating I > was not able to load my main ASP.NET project any more. Here is the error: > Server Error in '/' Application > The classes in the modul

Re: [Mono-list] xbuild: overriding targets doesn't work

2009-09-25 Thread Vlad Alexandru Ionescu
Ankit, > Which ver of mono are you using? I'm using svn revision 139098. I think a colleague of mine was able to reproduce this with a more recent revision as well. Vlad. -- [][][] Vlad Alexandru Ionescu | Developer [][] LShift Ltd | Tel: +44 (0)20 7729 7060 [] [] www.lshif

Re: [Mono-list] xbuild: overriding targets doesn't work

2009-09-25 Thread Ankit Jain
Hi, Yes, this is a xbuild bug. I'm taking a look at it now. Which ver of mono are you using? -Ankit On Fri, Sep 25, 2009 at 9:43 PM, Vlad Alexandru Ionescu wrote: > > Hello, > > > I've been trying to use the BeforeBuild target with xbuild, but > apparently overriding it doesn't work at all (my

Re: [Mono-list] xbuild: overriding targets doesn't work

2009-09-25 Thread Ankit Jain
Fixed in svn r142654. -Ankit On Fri, Sep 25, 2009 at 10:08 PM, Vlad Alexandru Ionescu wrote: > Ankit, > >> Which ver of mono are you using? > > I'm using svn revision 139098. > I think a colleague of mine was able to reproduce this with a more recent > revision as well. > > Vlad. > > -- > > [][]

Re: [Mono-list] Service logging at boot

2009-09-25 Thread nzsaint
HJe wrote: > > What path is the service logging to? Is the service running as root? > I am logging to '/var/log/monotest.log' although I have tried other locations without success. I believe the service is running as 'root' although I am relatively new to Linux so it may be that I haven't conf

Re: [Mono-list] Service logging at boot

2009-09-25 Thread nzsaint
HJe wrote: > > What path is the service logging to? Is the service running as root? > I am logging to '/var/log/monotest.log' although I have tried other locations without success. I believe the service is running as 'root' although I am relatively new to Linux so it may be that I haven't conf

[Mono-list] How to convert _mm_cvttps_epi32 to Mono.Simd code

2009-09-25 Thread jetthink
Hi, I try to convert http://gruntthepeon.free.fr/ssemath/sse_mathfun.h to Mono. But it seems some sse command was missing in Mono.Simd. Just like follow 2 commands: v4si emm0 = _mm_cvttps_epi32(fx); v4sf tmp = _mm_cvtepi32_ps(emm0); Also I have try use "cast" Vector4f to Vector4i, but the