[Mono-dev] Parallella Epiphany III

2014-08-30 Thread Paul Johnson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Hi,

I've just ordered one of these development boards from RS Components
in the UK
(http://uk.rs-online.com/web/p/processor-microcontroller-development-kits/8194709/).
It's similar to the RPi in many ways, but has the far more powerful
ARM Cortex 9 processor on it.

I know the RPi has a version of Mono for it and that Mono is available
for ARM in general. Is there anything I should be looking out for when
building Mono for the Parallella with an ARM 9 or should it be
straight forward.

The board uses the gcc toolchain and a bog standard Linux distro (not
sure which flavour though).

TIA

Paul
- -- 
Out now from Packt Publishing - Xamarin Mobile Application
Development for iOS - my first book
http://www.packtpub.com/xamarin-mobile-application-development-for-ios/book
-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
Comment: GPGTools - https://gpgtools.org

iQEcBAEBCgAGBQJUAZphAAoJEK7ghbJZxtwjvdAH/2MFYPK7gYKPLhgWIFpI/PXY
YFGt/qUCDs+TnbmrHR0he3Qic75wSw9ArCW4OVrmv7il5iVFbZw1h7/G4KmMyMFf
x62hOlaESIMC1FxHH7mfWKgVYyxyGj8KhbMCAtbRtr4Lh0rAXsHxjcWOLKCEmzIc
5GNrFU7yjvMlHd8WS0jNsYGPDhd4BKLzsJLeYEoWIi8p1a6YpqpQxVnnTLOQVAJL
OqbTY5tk1pVnNbIPjPP4G7lt8Ei+LTY/atPaNVkatl2GlDf/7U41/MOyWvPlq0Vd
jdVol0oJrvLXBDRl5JW0LOBDDOtvIyqZ5tvbeop0XGDoEpbR9NZVFGh48Oi9qcQ=
=qx+X
-END PGP SIGNATURE-
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Mono 3.0 release

2012-11-26 Thread Paul Johnson

Hi,

I've noticed mono 3.0 is out in beta for Apple - is there a date set yet 
for it to be out of beta? When I install it, monodevelop moans and 
offers to reinstall 2.10.8


Paul
--
Space, it says, is big. Really big. You just won't believe how 
vastly, hugely, mindbogglingly big it is. I mean, you may think it's a 
long way down the road to the chemist's, but that's just peanuts to 
space, listen...

Hitch Hikers Guide to the Galaxy, a truly remarkable book!

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Internet code which is fine under .NET, but dies on mono

2011-03-11 Thread Paul Johnson
Hi,

I have a bit of a problem with some come which works and builds fine under
VS2010 (targetting .NET 2) but returns a problem under mono on my linux box
(using 2.10.1) - here is the code

--
private void btnTranslate_Click(object sender, EventArgs e)
{
string result = string.Empty;
string url = string.Format(
https://www.googleapis.com/language/translate/v2?key={0}q={1}source={2}target={3}
,
key, txtTranslate.Text, data.from, data.to);
try
{
WebRequest req = HttpWebRequest.Create(url);
if (data.useproxy == true)
{
WebProxy myproxy = new WebProxy(data.proxyval,
data.proxyPort);
myproxy.BypassProxyOnLocal = false;
req.Proxy = myproxy;
}
req.Method = GET;

using (WebResponse res = req.GetResponse())
{
using (StreamReader sr = new
StreamReader(res.GetResponseStream(), Encoding.UTF8))
{
result = sr.ReadToEnd();
}
}
}
catch (Exception er)
{
MessageBox.Show(er.Message, Network error,
MessageBoxButtons.OK);
return;
}
--

The code will fire up fine under mono, but fails to communicate with the
google service complaining that it was able decode the returned string or
the end of the string has been found,

Any ideas or do I need to put this into the mono BZ?

The binary can be found at http://www.all-the-johnsons.co.uk/translate.exe

TTFN

Paul
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] gtkhtml-sharp

2011-03-09 Thread Paul Johnson
Hi,

Not sure why, but gtkhtml-sharp seems to be missing from gtk-sharp-2.12.10

Has it been moved elsewhere or is there a missed dependency somewhere that
the config file is not picking up on?

Paul
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Unknown build error on Fedora x86_64

2011-03-07 Thread Paul Johnson
Hi,

First, I'm getting further with the build for Mono on Fedora! However, I've
hit this which I've never seen before. It seems to hit Fedora 14 as well as
rawhide. Any ideas?

*** ERROR: No build ID note found in
/home/paul/rpmbuild/BUILDROOT/mono-2.10.1-1.fc16.x86_64/usr/lib64/mono/2.0/
mcs.exe.so
error: Bad exit status from /var/tmp/rpm-tmp.1YSSNm (%install)

TTFN

Paul
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Problem with PPC/PPC64 and disabling builds against the static libs

2009-04-14 Thread Paul Johnson
Hi,

-- 
Paul F. Johnson
Lecturer in Chemistry, Biology and IT
FoundatiON Campus
 Zoltan Varga var...@gmail.com 14/04/09 3:43 PM 
  Building with --disable-static, in addition to producing a slower
runtime,  is not tested by us so no wonder its not working. Why is this
needed on fedora ?


Fedora ships with dynamic libs and frowns upon static ones (unless they're 
really needed). I know I'll get asked this, but why are the static libs needed 
and is it likely that x86/x86_64 will break in future releases without the 
static libs?

TTFN

Paul
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] ..mscorlib.dll was not found compiling mono from sources

2009-04-14 Thread Paul Johnson
Hi,

-- 
Paul F. Johnson
Lecturer in Chemistry, Biology and IT
FoundatiON Campus
 buhochil...@gmail.com buhochil...@gmail.com 14/04/09 3:36 PM 
Hi guys:

I'm desperately trying to compile mono from last svn sources (Revision: 
131666) and I'm getting:


Why not use the rpms for mono from rawhide (currently at 2.4RC1 due to problems 
building on PPC/PPC64 with the full 2.4 release)?


I'm trying desperately to use the MD debugger addin on my Fedora 10, MD 
compilation work using  mono RPM's but then the debugger service claims 
about a invalid mono excutable...now trying to compile also mono is 
claiming this, plase a little help!!!


Have you built the 2.0 version of MD? IIRC, you need them for the the likes of 
the MD debugger to work. mono-debugger works fine from rawhide.

TTFN

Paul
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Updating mono/monodevelop from fedora 10 repos problems...

2009-03-18 Thread Paul Johnson
Hi,
 
-- 
Paul F. Johnson
Lecturer in Science and IT
FoundatiONCampus


 buhochil...@gmail.com buhochil...@gmail.com 18/03/2009 16:32  ( 
 mailto:buhochil...@gmail.com )
Trying to update monodevelop on fedora 10 using fedora 11 rawhide repos 
I get this kind of errors:

file /usr/bin/mod from install of mono-core-2.4-9.RC1.fc11.i586 
conflicts with file from package monodoc-2.0-5.fc10.i386

Also installing dependencies this  kind of errors...:
Updating   : gtk-sharp2  
1/17
Error unpacking rpm package gtk-sharp2-2.12.7-4.fc11.i586
error: unpacking of archive failed on file 
/usr/lib/libatksharpglue-2.so;49c107f3: cpio: MD5 sum mismatch

 
monodoc will conflict as there is a problem with it being removed from koji 
currently. I'm not sure why gtk-sharp2 is failing, all I can think of is that 
there is some form of interuption on your connection which corrupted the file.
 
As for everything else, well there isn't much that can be done. What may be of 
more use is to download the mono family srpms from rawhide and build them from 
scratch.
 
Just a suggestion
 
TTFN
 
Paul
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-devel-list] Monoupdater script updated

2005-06-03 Thread Paul Johnson
Hi,

Just a heads up to say I've updated my mono-compiling page and uploaded
version 0.9b of my updater script.

http://www.all-the-johnsons.co.uk/mono/mono-compiling.html

At the bottom, you'll notice some ideas I have for the updater which
will include packaging builds. My problem is that I don't know how
debian, osx or win32 would do this. rpm is rpm is rpm (as long as you
have the correct spec file!), so FC, Mandriva, Slackware, SuSE and many
other distros are covered.

If anyone can point me to some howtos for .deb, osx and win32, I'd
appreciate it - that way, the script really can be a one-stop process.

TTFN

Paul
(at work and somewhat bored!)
-- 
He's not the Messiah, he's a very naughty boy
- Life of Brian, Monty Python

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list