-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* configure.ac (AC_INIT): Set version to 0.5. (AC_REVISION): Remove. * NEWS: Finalize changes for 0.5. * INSTALL: Update. * INSTALL-cross: Likewise. * README.CVS: Delete, but move some content... * README: ... here. Update.
- Loading branch information
Showing
6 changed files
with
74 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ Cross-compiling the GNU Hurd -*- Outline -*- | |
|
||
The procedure described below -- albeit not completely obsolete, of course -- | ||
is outdated a bit. If you attempt to build a cross compiler, have a look at | ||
<http://www.bddebian.com/~wiki/hurd/building/cross-compiling/> for now. | ||
<http://www.gnu.org/software/hurd/toolchain/cross-gnu.html> for now. | ||
|
||
Last update 1998-06-01 Gordon Matzigkeit <[email protected]>. | ||
Previous update 1996-04-11 Thomas Bushnell, n/BSG <[email protected]>. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,25 @@ | ||
-*- Text -*- | ||
GNU Hurd version 0.2. | ||
This is the GNU Hurd, <http://www.gnu.org/software/hurd/>. Welcome. | ||
|
||
GNU Hurd runs on 32-bit x86 machines. A version running on 64-bit x86 | ||
(x86_64) machines is in progress. Volunteers interested in ports to | ||
other architectures are sought; please contact us (see below) if you'd | ||
like to help. | ||
|
||
This is the Hurd. Welcome. | ||
To compile the Hurd, you need a toolchain configured to target i?86-gnu; | ||
you cannot use a toolchain targeting GNU/Linux. Also note that you | ||
cannot run the Hurd "in isolation": you'll need to add further components | ||
such as the GNU C Library (glibc), to turn it into a runnable system. | ||
|
||
This version of the GNU Hurd runs on various ix86 machines, including | ||
i386, i486, i586 (pentium), i686 (hexium [pentium pro]). | ||
Recent versions of Mach, MIG, glibc, and GCC are required. Optionally, a Sun | ||
RPC implementation is needed to build the NFS translator and daemon: | ||
|
||
glibc Configured with --enable-obsolete-rpc. | ||
TI-RPC Currently fails to build on GNU, see | ||
<http://lists.debian.org/debian-hurd/2010/12/msg00007.html>. | ||
|
||
Obviously, you also need somewhat recent versions of binutils, make, | ||
bash and some other tools. No hard requirements are currently known | ||
for these, though. | ||
|
||
For instructions on compiling and installing the GNU Hurd from an | ||
already running Hurd system, see the file `INSTALL'. | ||
|
@@ -24,16 +38,15 @@ Please note that this directory also contains a fair amount of | |
not-yet-working code. By default, the makefiles build only the | ||
working code. | ||
|
||
Bug reports for the GNU Hurd should be sent to the mailing list | ||
`[email protected]'. Please do not send requests for | ||
assistance in installing or using the software to that address. | ||
Instead, send requests for assistance to the mailing list | ||
`[email protected]'. You can join these lists by sending a | ||
request to `[email protected]' or | ||
`[email protected]' respectively. | ||
|
||
The GNU Hurd is free software. All of it, including the libraries in | ||
this distribution, is covered by the GNU General Public License, found | ||
in the file COPYING. | ||
|
||
|
||
Please read the FAQ at <http://www.gnu.org/software/hurd/faq.html>. | ||
Bug reports should be sent to <[email protected]> or filed on | ||
<http://savannah.gnu.org/bugs/?group=hurd>. Requests for assistance | ||
should be sent to <[email protected]> or filed on | ||
<http://savannah.gnu.org/support/?group=hurd>. You can also find us on | ||
the Freenode IRC network in the #hurd channel. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
dnl Process this file with autoconf to produce a configure script. | ||
AC_REVISION([$Id: configure.in,v 1.38 2008/11/17 11:34:18 tschwinge Exp $]) | ||
AC_PREREQ(2.54) dnl Minimum Autoconf version required. | ||
AC_INIT([GNU Hurd], [0.3], [[email protected]]) | ||
AC_INIT([GNU Hurd], [0.5], [[email protected]]) | ||
AC_CONFIG_SRCDIR([hurd/hurd_types.h]) dnl File to look for in srcdir. | ||
|
||
AC_PREFIX_DEFAULT() dnl Default to empty prefix, not /usr/local. | ||
|