So this should be merged with mono-beta?
Search Criteria
Package Details: mono-beta 3.2.1-1
Package Actions
- View PKGBUILD
- Download tarball
- Search wiki
- Flagged out-of-date (2014-04-28)
| Package Base: | mono-beta |
|---|---|
| Description: | "Free implementation of the .NET platform including runtime and |
| Upstream URL: | http://www.mono-project.com/ |
| Category: | lib |
| Licenses: | |
| Submitter: | CDF-H |
| Maintainer: | CDF-H |
| Last Packager: | None |
| Votes: | 5 |
| First Submitted: | 2013-02-18 23:49 |
| Last Updated: | 2013-08-21 00:56 |
Latest Comments
Comment by Scimmia
Comment by CDF-H
Updated to latest which is a stable release so it will be my last realease until the next beta 3.x or 4.x series.
Comment by Schala
Oops, sorry... I just read that...
Comment by CDF-H
I searched google and a dev was pretty much like "build from git until this is fixed" so I just rolled back to the last functioning update here. If you want to can try mono-git but I'll just wait untill 3.0.11
Comment by CDF-H
Sorry this update is so late my computer broke, I just got it back.
Comment by PerfectGentleman
3.0.10 is out
Comment by CDF-H
Cool. Glad you got it sorted out. :)
Anonymous comment
My /tmp wasn't big enough for compiling. "size=4G" in mount options did the job.
Comment by CDF-H
What errors are you getting? Did you edit the PKGBUILD at all? x86_64 or i686? It's really strange, I just recompiled it to test and am getting no errors.
Anonymous comment
It is not compiling as for me
Comment by CDF-H
Working as of now, but I'm disowning it...as said in previous comments mono-beta would be a better name. Use mono-beta package if possible!
Comment by jlebleu
I succeed to build 3.0.3 version, here is the PKGBUILD I used:
https://gist.github.com/4967827
Comment by timebomb
patch:
https://gist.github.com/4576761
and pkgbuild:
https://gist.github.com/4576768
Comment by CDF-H
Sorry I can't get to this until Thursday
Comment by giniu
They fixed it in git, you can use patch from https://github.com/mono/mono/commit/2646f8b18289e4ef5fe8193ed376dd475af786f6
Comment by giniu
After fixing first error, I noticed one more:
configure.in:365: error: 'AM_PROG_CC_STDC': this macro is obsolete.
You should simply use the 'AC_PROG_CC' macro instead.
Also, your code should no longer depend upon 'am_cv_prog_cc_stdc',
but upon 'ac_cv_prog_cc_stdc'.
runtime/Makefile.am:2: error: support for Cygnus-style trees has been removed
Again, configure.in issue seems to be solvable by simple replace, and automake issue seems to be solvable by commenting that line (they added it as a workaround for building testcases as it seems, so it seems to be acceptable to comment it for simple builds).
I opened upstream ticket for those issues: https://bugzilla.xamarin.com/show_bug.cgi?id=9324
Comment by giniu
oh, and you should also quote pkgdir and srcdir variables. There is also no need for return 1 anymore. Finally, maybe mono-beta would be better name for this package, that way when 3.1 is released stable and for example 4.x enters beta stage, you wouldn't have to create new package, just bump the version. Thanks for packaging this btw :)
Comment by giniu
This currently fails:
Running aclocal -I m4 -I . ...
configure.in:17: error: 'AM_CONFIG_HEADER': this macro is obsolete.
You should use the 'AC_CONFIG_HEADERS' macro instead.
/usr/share/aclocal-1.13/obsolete-err.m4:12: AM_CONFIG_HEADER is expanded from...
configure.in:17: the top level
you should patch it for newer version of toolchain. Just apply what the message says and it should be OK.