[Mono-dev] problem compiling mono

2013-08-02 Thread alex ninos
Hi I get this message what should i do? make[2]: Entering directory `/home/alexandros/mono/runtime' if test -w /home/alexandros/mono/mcs; then :; else chmod -R +w /home/alexandros/mono/mcs; fi cd /home/alexandros/mono/mcs make --no-print-directory -s NO_DIR_CHECK=1 PROFILES=' net_2_0 net_3_5

[Mono-dev] problem compiling mono

2013-08-02 Thread alex ninos
Hi I get this message what should i do? make[2]: Entering directory `/home/alexandros/mono/runtime' if test -w /home/alexandros/mono/mcs; then :; else chmod -R +w /home/alexandros/mono/mcs; fi cd /home/alexandros/mono/mcs make --no-print-directory -s NO_DIR_CHECK=1 PROFILES=' net_2_0 net_3_5

[Mono-dev] error executing the compiled EXE edited Mono Inside Windows Environment

2013-08-02 Thread bpescarolli
I created a HelloWord.exe (application interface gtk 2.0) in Mono within my Lubuntu 13.04 I caught this one Release executable tried run it on a machine with Win XP .. just curious, with. NET installed. and returns an error like Unable to start HelloWord.exe ... how do I create an application

Re: [Mono-dev] problem compiling mono

2013-08-02 Thread Greg Najda
*** You need Mono version 2.4 or better installed to build MCS *** Check mono README for information on how to bootstrap a Mono installation. As the message says, you need a working mono installed. On Wed, Jul 31, 2013 at 6:03 PM, alex ninos ninosa...@yahoo.com wrote: Hi I get this message

Re: [Mono-list] Latest Mono and MonoDevelop packages for CentOS, Fedora, Debian and Ubuntu on OBS

2013-08-02 Thread Timotheus Pokorra
Hello Mark, thanks for contacting me on this. It was my mistake: I did reorganize the packages yesterday, and forgot to add the dependancy for mono-opt-devel to the monodevelop-opt package. I have fixed it on OBS, it will be part of the next release. I saw the same problems you had, but this

Re: [Mono-list] Where is the source of libgdiplus-3.0.tar.gz

2013-08-02 Thread Miljenko Cvjetko
Hi On 2013.08.01 19:01, TheColonel26 wrote: Where would I find this pmono? http://inorton.wordpress.com/pmono-parallel-mono-debian-pacakges/ http://void.printf.net/~bredroll/pmono/pmono/ http://void.printf.net/%7Ebredroll/pmono/pmono/ Does it support ASP.net MVC 4? 2nd link: mono 3.0.6 =

[Mono-list] FtpWebRequest works targeting .net, fails in mono 2.10.9

2013-08-02 Thread MikeN
I have a simple FTP binary file upload, the code works fine in VS and Xamarin Studio if I target .net, but fails when I target mono 2.10.9 (or 2.6.7). [note: I have obscured the user credentials and IP address] FtpWebRequest request =

Re: [Mono-list] Can't get a simple shared object to be used - DllNotFoundException

2013-08-02 Thread thomasw234
Thanks for all of your replies. Unfortunately I've already tried most of what was suggested, except modifying LD_LIBRARY_PATH. The only resource that my shared object is using is stdio.h, do I need to add the path of that? I've managed to take a screenshot from the machine which hopefully shows

[Mono-list] How do I uninstall a partial install of 3.06 on ubuntu?

2013-08-02 Thread TheColonel26
I've been screwing around with various tutorials trying to mono 3.2 installed so I can run ASP.net MVC4. I seemed to have a partial install of 3.0.6 but I can't figure out how to uninstall it. I'm pretty sure it was built and installed from source. -- View this message in context:

Re: [Mono-list] Can't get a simple shared object to be used - DllNotFoundException

2013-08-02 Thread thomasw234
Also, running with MONO_DEBUG_LEVEL=debug outputs a lot, but this seems like the relevant part: Somehow it's looking right at the file and deciding that it's not there, which is what led me to believe that it might be a platform problem, but as I said, compiling the shared object to 32bit

[Mono-list] Can't get a simple shared object to be used - DllNotFoundException

2013-08-02 Thread thomasw234
Hi, I'm trying to get my head around making use of Linux shared object files. I have created a basic C-based shared object which prints (Shared Object Called) when main() is called. Compiled it in gcc with -fPIC and got libshared.so as an output. Go into C#, add [DllImport(libshared.so)] public

Re: [Mono-list] FtpWebRequest works targeting .net, fails in mono 2.10.9

2013-08-02 Thread Aaron Oneal
When and in what way does it fail? Do you receive an exception? On Jul 30, 2013, at 6:31 AM, MikeN mniem...@oowidgets.com wrote: I have a simple FTP binary file upload, the code works fine in VS and Xamarin Studio if I target .net, but fails when I target mono 2.10.9 (or 2.6.7). [note: I have

Re: [Mono-list] FtpWebRequest works targeting .net, fails in mono 2.10.9

2013-08-02 Thread Aaron Oneal
It's under different conditions, but it might help to know I ran this test here with Mono 3.2.0 on Mountain Lion against a Mountain Lion Server and it worked. On Aug 2, 2013, at 10:33 AM, Aaron Oneal aaron.on...@spicypixel.com wrote: When and in what way does it fail? Do you receive an

[Mono-list] Request For Novell C# LDAP Library Bugs

2013-08-02 Thread Johnnie Odom
Hello Everyone, I am currently discussing with Novell the possibility of improving their C# LDAP libraries. I know that some of you have concrete examples of issues with these libraries, and I would appreciate any input (and sample code) you might offer for me to use in my discussions. My goal

Re: [Mono-list] FtpWebRequest works targeting .net, fails in mono 2.10.9

2013-08-02 Thread Jonathan Pryor
On Jul 30, 2013, at 9:31 AM, MikeN mniem...@oowidgets.com wrote: I have a simple FTP binary file upload, the code works fine in VS and Xamarin As Aaron Oneal asked, what's the error? If it's a UriFormatException, it could be this: https://bugzilla.xamarin.com/show_bug.cgi?id=13343 -

[Mono-list] embeded mono segfaults without calling managed code

2013-08-02 Thread snacktime
I'm embedding mono using C, which I'm calling from java. I'm loading the mono runtime in the main thread. That all works fine, until I load the rest of my app, at which point it segfaults. It does this even when the only thing I do is call mono_jit_init(). My c method that calls that returns