mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-22 04:41:21 +03:00
9830d7500f
space) all over the code, properly detect whether we have strcasestr() and only use nstristr() if we don't, and bump up CVS build requirements to account for setting _GNU_SOURCE when running the test programs for both git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1730 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
INSTRUCTIONS TO COMPILE AND INSTALL NANO CVS VERSIONS
|
|
-----------------------------------------------------
|
|
|
|
GNU nano is available from CVS, but building this needs a bit
|
|
more care than the official stable and unstable tarballs.
|
|
|
|
To successfully compile GNU nano from CVS, you'll need the
|
|
following packages:
|
|
|
|
- autoconf (version >= 2.54)
|
|
- automake (version >= 1.7)
|
|
- gettext (version >= 0.11.5)
|
|
- texinfo
|
|
- cvs
|
|
- glib (if your system doesn't have snprintf() and/or vsnprintf())
|
|
- make, gcc and the normal development libraries (ncurses, etc)
|
|
These should be available on your GNU mirror.
|
|
|
|
|
|
To download the CVS tree, execute the following command:
|
|
$ cvs -z3 -d:pserver:anoncvs@subversions.gnu.org:/cvsroot/nano login
|
|
and press enter at the password prompt.
|
|
Then, do
|
|
$ cvs -z3 -d:pserver:anoncvs@subversions.gnu.org:/cvsroot/nano checkout nano
|
|
and the nano tree will download.
|
|
If you want to checkout the stable CVS branch, append -r nano_1_0_branch:
|
|
$ cvs -z3 -d:pserver:anonymous@subversions.gnu.org:/cvsroot/nano checkout -r nano_1_0_branch nano
|
|
|
|
Once you have the sources in the "nano" directory, cd into it, and
|
|
execute the "autogen.sh" script in the top dir. This will setup a
|
|
configure script and Makefile.in, and you will be ready to compile with
|
|
$ ./configure [--add-options-here] && make
|
|
Once it's done compiling,
|
|
$ make install
|
|
(as root) should put the required files in their respective directories.
|
|
|
|
|
|
Please submit any bugs in the CVS branch to nano-devel@gnu.org.
|