ngircd-tor/doc/README-AUX.txt

68 lines
2.3 KiB
Plaintext
Raw Normal View History

2002-02-25 15:02:32 +01:00
ngIRCd - Next Generation IRC Server
2002-02-25 15:02:32 +01:00
2005-06-24 22:59:13 +02:00
(c)2001-2005 Alexander Barton,
alex@barton.de, http://www.barton.de/
2002-02-25 15:02:32 +01:00
ngIRCd is free software and published under the
terms of the GNU General Public License.
2002-02-25 15:02:32 +01:00
-- README-AUX.txt --
2002-02-25 15:02:32 +01:00
Since version 0.2.2-pre Apple's A/UX belongs to the officially supported
platforms. It is not restricted in any way.
Since version 0.5.0 ngIRCd's source compiles with the native A/UX c
compiler. GNU C isn't a must-have anymore.
2002-02-25 15:02:32 +01:00
The following software packages are needed:
2002-02-25 15:02:32 +01:00
- GNU sed
2003-04-21 23:59:34 +02:00
Source:
http://www.rezepte-im-web.de/appleux/sed-3.02.tar.gz
http://arthur.barton.de/pub/unix/aux/tools/sed-3.02.tar.gz
2002-02-25 15:02:32 +01:00
2003-04-21 23:59:34 +02:00
A/UX comes with /bin/sed which isn't supporting all functions needed
by GNU automake/autoconf.
2002-02-25 15:02:32 +01:00
2003-04-21 23:59:34 +02:00
Warning: When installing GNU sed please make sure that A/UX doesn't
use the old one anymore which means set the $PATH or replace /bin/sed
at all.
2002-04-09 23:23:20 +02:00
- libUTIL.a
2003-04-21 23:59:34 +02:00
Source:
2005-06-24 22:59:13 +02:00
ftp://ftp.mayn.de/pub/really_old_stuff/apple/apple_unix/Sys_stuff/libUTIL-2.1.tar.gz>
http://arthur.barton.de/pub/unix/aux/libraries/libUTIL-2.1.tar.gz
2002-02-25 15:02:32 +01:00
2003-04-21 23:59:34 +02:00
This library contains functions that are common on other UNIX
2009-01-01 17:56:42 +01:00
systems but not on A/UX e.g. memmove(), strerror() and strdup().
2002-02-25 15:02:32 +01:00
After installation of these packages just do a "./configure" and "make" to
compile ngIRCd on A/UX.
2002-02-25 15:02:32 +01:00
2002-04-09 23:23:20 +02:00
A few hints in case of errors:
2002-04-09 23:23:20 +02:00
- Either there's an 'install' on your system which is completely broken
2003-04-21 23:59:34 +02:00
(so 'configure' uses its own shell script) or use a fully functionable one.
There's at least one binary "out there" causing problems. The one
of the GNU fileutils works fine:
http://arthur.barton.de/pub/unix/aux/tools/fileutils-4.0.tar.gz
2002-04-09 23:23:20 +02:00
- The precompiled binary of the old 'bash' shouldn't be installed within
2003-04-21 23:59:34 +02:00
/bin (better do this in /usr/local/bin) because 'configure' would
choose it as its shell which wouldn't work.
2002-02-25 15:02:32 +01:00
- Because of limitations of /bin/sh on A/UX it can't be used to create
2003-04-21 23:59:34 +02:00
the 'config.status' script. Better rename /bin/sh to /bin/sh.AUX and
replace it by a symbolic link to /bin/ksh (ln -s /bin/ksh /bin/sh as
root).
2009-01-01 17:56:42 +01:00
These procedure shouldn't cause you into problems and is recommended
2003-04-21 23:59:34 +02:00
even if you don't use ngIRCd.
2002-02-25 15:02:32 +01:00
--
2006-07-23 14:19:57 +02:00
$Id: README-AUX.txt,v 1.10 2006/07/23 12:19:57 alex Exp $