Re: [Mono-dev] RPM build

2014-08-19 Thread Timotheus Pokorra
Hello Gabriel, The RPM for CentOS 6 doesn't seem to include the /opt/mono/lib/pkgconfig directory (the package for Ubuntu does). Is this a bug? If not, what's the reasoning behind that decision? Please run: yum install mono-opt-devel explanation: I first built mono-opt for Ubuntu and CentOS,

Re: [Mono-dev] RPM build

2014-08-19 Thread Gabriel Acevedo
Please run: yum install mono-opt-devel There are more mono related packages available, please browse http://download.opensuse.org/repositories/home:/tpokorra:/mono/CentOS_CentOS-6/x86_64/ Thank you! -- Gabriel Acevedo http://linkedin.com/in/gabrielacevedo

Re: [Mono-dev] RPM build

2014-08-19 Thread Timotheus Pokorra
Hello Neale, Are you interested in packages for Linux on System z (aka s390x)? I can only speak for myself: No I just found: http://www.mono-project.com/docs/about-mono/supported-platforms/s390/ mentioning your name :) Timotheus ___ Mono-devel-list

[Mono-dev] libapache2-mod-mono available from mono-project.com ?

2014-08-19 Thread Vladimir Dimitrov
Are there any plans on adding the libapache2-mod-mono package in the repository hosted by the mono-project website? The last working version shipped in Ubuntu is 2.10 which is pretty old and buggy and the new Ubuntu 14.4 cannot even install that package. So having that package available

Re: [Mono-dev] RPM build

2014-08-19 Thread Neale Ferguson
Not personally, but as part of your build process to make a download of the s390x RPM available publicly. On Aug 19, 2014, at 2:29 AM, Timotheus Pokorra timotheus.poko...@solidcharity.com wrote: Hello Neale, Are you interested in packages for Linux on System z (aka s390x)? I can only

Re: [Mono-dev] RPM build

2014-08-19 Thread Timotheus Pokorra
On 19 August 2014 15:01, Neale Ferguson nealefergu...@verizon.net wrote: Not personally, but as part of your build process to make a download of the s390x RPM available publicly. I am using the build platform at https://build.opensuse.org/ and unfortunately there is no support for s390x build

Re: [Mono-dev] libapache2-mod-mono available from mono-project.com ?

2014-08-19 Thread Miguel de Icaza
Why not build from source code? Mguel On Tue, Aug 19, 2014 at 8:15 AM, Vladimir Dimitrov vlad.dimit...@gmail.com wrote: Are there any plans on adding the libapache2-mod-mono package in the repository hosted by the mono-project website? The last working version shipped in Ubuntu is 2.10

Re: [Mono-dev] libapache2-mod-mono available from mono-project.com ?

2014-08-19 Thread Timotheus Pokorra
Hello Vladimir, the OBS repository that you are mentioning is linked by the mono-project website, but it is a community project. You are probably looking for the package called modmono-opt see also http://download.opensuse.org/repositories/home:/tpokorra:/mono/xUbuntu_14.04/amd64/ for the

Re: [Mono-dev] libapache2-mod-mono available from mono-project.com ?

2014-08-19 Thread Timotheus Pokorra
Why not build from source code? I personally try not to build on production servers. And it is so much faster to just install it from somewhere instead of building yourself. Obviously you need to trust the source... But by using the OBS platform, all changes are visible, and no hidden code could

Re: [Mono-dev] RPM build

2014-08-19 Thread Neale Ferguson
I can provide a buildbot environment or whatever you use to create packages at the same time the x86[_64] ones are built. On Aug 19, 2014, at 10:45 AM, Timotheus Pokorra timotheus.poko...@solidcharity.com wrote: On 19 August 2014 15:01, Neale Ferguson nealefergu...@verizon.net wrote: Not

Re: [Mono-dev] libapache2-mod-mono available from mono-project.com ?

2014-08-19 Thread Vladimir Dimitrov
Hello Timotheus, I had in mind this one: http://download.mono-project.com/repo/debian/ I also try not to build myself something from code for production use as I have no guarantee of a stability nor I trust that I will be doing the build correctly. Instead I believe that there are package

Re: [Mono-dev] libapache2-mod-mono available from mono-project.com ?

2014-08-19 Thread Vladimir Dimitrov
Hmm looks like the mod mono version there is the old one (2.10) :( On 19.8.2014 г. 19:36 ч., Vladimir Dimitrov wrote: Hello Timotheus, I had in mind this one: http://download.mono-project.com/repo/debian/ I also try not to build myself something from code for production use as I have no

[Mono-dev] thread6 test

2014-08-19 Thread Neale Ferguson
What should the output of thread6 test look like (apart from caught instead of cought)? Here's what I'm getting at the moment - Thread 1 started Count: 0 cought exception level 3 cought exception level 2 STATETEST System.Threading.ThreadAbortException: Thread was being aborted at

Re: [Mono-dev] thread6 test

2014-08-19 Thread Rodrigo Kumpera
Thread 1 started Count: 0 cought exception level 3 cought exception level 2 STATETEST System.Threading.ThreadAbortException: Thread was being aborted at Tests.ThreadStart1 () [0x00087] in /Users/kumpera/src/mono/mono/tests/thread6.cs:51 cought exception level 1

Re: [Mono-dev] thread6 test

2014-08-19 Thread Neale Ferguson
Thanks, my test times out but the output looks like it should. On Aug 19, 2014, at 4:17 PM, Rodrigo Kumpera kump...@gmail.com wrote: Thread 1 started Count: 0 cought exception level 3 cought exception level 2 STATETEST System.Threading.ThreadAbortException: Thread was being

[Mono-dev] Linux ComImport

2014-08-19 Thread Keithen
Hi, I'm trying to make a Windows.Net(c#) application run on Linux(Raspbian). The application is trying to use some COM-stuff, causing the App to crash. Since I dont need the content of the COM-Object, I wanted to rewrite just the libraries/parts necessary for not crashing the App. I have written

[Mono-dev] PSeq.reduce does not seem to work under Mono

2014-08-19 Thread mono user
The following tiny bit of F# does not seem to work under Mono 3.6.0. It's fine under .net. PSeq is a thin wrapper implemented using parallel Linq (see the stacktrace). I am afraid I don't know if it's meant to work yet. let res = Microsoft.FSharp.Collections.PSeq.reduce (+) [0..100] printf Result