Fwd: About merging the Hurd homepage and the Hurd wiki
> On Tue, Nov 4, 2008 at 3:31 PM, Thomas Schwinge <[EMAIL PROTECTED]> > wrote: > It has been my plan for a long time, but needed to much work effort to be > done immediatelly. So I postponed it. Has now perhaps the time come to > revisit this topic, in context of just having lost http (port 80) access > to the machine hosting the Hurd wiki? > ...SNIP > Comments? I think its will be good. The Hurd homepage is stagnant anyway, it needs some new information and Wiki will be good idea. I am in favor of that. I agree with Marcus though that GNU style and policies have changed by now. Hence our new web pages need to be designed according to the same. -- http://uttre.wordpress.com/2008/05/14/the-lost-love-of-mine/ -- http://uttre.wordpress.com/2008/05/14/the-lost-love-of-mine/
Re: [PATCH] ipc/mach_port.c compiler warning fix.
Hi, Sorry, sent wrong second patch (still trying to get working on git). Take this one: 2008-11-05 Shakthi Kannan <[EMAIL PROTECTED]> ipc/mach_port.c (mach_port_insert_right): Fix 'ipc_object_copyout_name' type compiler warning. --- diff --git a/ipc/mach_port.c b/ipc/mach_port.c index 63c25dc..ea863f4 100644 --- a/ipc/mach_port.c +++ b/ipc/mach_port.c @@ -1290,7 +1290,8 @@ mach_port_insert_right( if (!IO_VALID((ipc_object_t)poly)) return KERN_INVALID_CAPABILITY; - return ipc_object_copyout_name(space, poly, polyPoly, FALSE, name); + return ipc_object_copyout_name(space, (ipc_object_t) poly, + polyPoly, FALSE, name); } /* -- 1.5.6
Hurd does not want to build
Hello, I have a problem building the Hurd. I checkout the sources using the command: cvs -d:pserver:[EMAIL PROTECTED]:/sources/hurd co hurd as it is said here: http://www.gnu.org/software/hurd/hacking-guide/hhg.html. Then I do cd hurd/; make which dies with the following error message: ar: creating libshouldbeinlibc.a libshouldbeinlibc.a make[1]: libshouldbeinlibc.a: Command not found make[1]: *** [libshouldbeinlibc.a] Error 127 make[1]: Leaving directory `/tmp/hurd/libshouldbeinlibc' make: *** [libshouldbeinlibc] Error 2 The full build log is attached. I tried googling for this error, but nothing showed up. Could you please tell me what I am doing wrong?.. In summer, I tried the same thing and it worked differently, IIRC. Regards, scolobb build_log Description: Binary data
Fwd: Gentoo GNU/Hurd thread in Gentoo Forums
Hello, On Tue, Nov 4, 2008 at 9:22 AM, Arne Babenhauserheide <[EMAIL PROTECTED]>wrote: > I just wanted to tell you that the Gentoo GNU/Hurd thread in Gentoo forums > might be on its way to become active again: > Could you please tell me what Gentoo GNU/Hurd is exactly? Is it something similar to Debian GNU/Hurd, with the difference that it will have portage, while Debian GNU/Hurd has apt? Sorry if the questions look senseless, I'm just trying to figure out what could be the goal of developing Gentoo GNU/Hurd. Regards, scolobb
Re: Fwd: Gentoo GNU/Hurd thread in Gentoo Forums
Am Mittwoch 05 November 2008 21:38:09 schrieb Sergiu Ivanov: > Could you please tell me what Gentoo GNU/Hurd is exactly? Is it > something similar to Debian GNU/Hurd, with the difference that it will > have portage, while Debian GNU/Hurd has apt? Gentoo GNU/Hurd was/is a try at creating a Hurd System which uses the Gentoo package manager (portage) instead of Debian. Gentoo is source-based and extremely configurable (and it's the system I've been using for almost 5 years, now). > Sorry if the questions look senseless, I'm just trying to figure out > what could be the goal of developing Gentoo GNU/Hurd. Gentoo folks tend to like dabbling with the more complex stuff - mainly the current purpose is tinkering, I think, but on the long run Gentoo offers the advantage of a very easy to maintain package repository built around "ebuilds", which are a kind of meta-build-scripts which contain dependencies, build instructions and similar. And since ebuilds are very easy to maintain, it's far easier to keep a system current with them. Generally: If someone from the Gentoo community does a Gentoo GNU/Hurd, that's great (new contributors), but if someone would ask "should I develop a Gentoo GNU/Hurd or hack the Hurd itself", I'd currently say "hacking the Hurd seems to be priority at the moment to get the reference (debian) distribution usable for general desktop usage". Best wishes, Arne -- -- My stuff: http://draketo.de - stories, songs, poems, programs and stuff :) -- Infinite Hands: http://infinite-hands.draketo.de - singing a part of the history of free software. -- Ein Würfel System: http://1w6.org - einfach saubere (Rollenspiel-) Regeln. -- PGP/GnuPG: http://draketo.de/inhalt/ich/pubkey.txt signature.asc Description: This is a digitally signed message part.
Re: Hurd does not want to build
On Wed, Nov 05, 2008 at 10:33:30PM +0200, Sergiu Ivanov wrote: > cd hurd/; make > > which dies with the following error message: > > ar: creating libshouldbeinlibc.a > libshouldbeinlibc.a > make[1]: libshouldbeinlibc.a: Command not found > make[1]: *** [libshouldbeinlibc.a] Error 127 > make[1]: Leaving directory `/tmp/hurd/libshouldbeinlibc' > make: *** [libshouldbeinlibc] Error 2 Sounds like the ranlib executable is missing, do you have binutils installed? "grep RANLIB config.make" probably returns an empty "RANLIB="? Michael