• Home
  • History
  • Annotate
Name
Date
Size
#Lines
LOC

..--

build-aux/22-Nov-2023-16,17013,919

doc/22-Nov-2023-12,86610,770

lib/22-Nov-2023-31,47321,503

m4/22-Nov-2023-8,1907,623

po/22-Nov-2023-18,79615,567

sed/22-Nov-2023-6,7085,065

testsuite/22-Nov-2023-16,48614,328

ABOUT-NLSD22-Nov-202378.7 KiB1,1121,065

AUTHORSD22-Nov-2023205 64

BUGSD22-Nov-20235.8 KiB134101

COPYINGD22-Nov-202334.2 KiB677553

COPYING.DOCD22-Nov-202322.4 KiB452373

ChangeLogD22-Nov-2023109.2 KiB3,1862,267

INSTALLD22-Nov-20239.3 KiB237179

Makefile.amD22-Nov-20232 KiB6033

Makefile.inD22-Nov-202335.5 KiB1,062978

NEWSD22-Nov-202317.9 KiB503345

READMED22-Nov-2023447 149

README-alphaD22-Nov-2023196 96

README.bootD22-Nov-20231.2 KiB2420

THANKSD22-Nov-20231.9 KiB5553

aclocal.m4D22-Nov-202334 KiB958865

autobootD22-Nov-202318 KiB653469

basicdefs.hD22-Nov-20235.4 KiB17496

bootstrap.shD22-Nov-20234.2 KiB14896

bootstrap.sh.inD22-Nov-20234.2 KiB14896

config_h.inD22-Nov-202323.1 KiB809573

configureD22-Nov-2023755.8 KiB29,14323,990

configure.acD22-Nov-20235 KiB177155

README

1This is the GNU implementation of sed, the Unix stream editor.
2
3See the NEWS file for a brief summary and the ChangeLog for
4more detailed descriptions of changes.
5
6See the file INSTALL for generic compilation and installation
7instructions.
8
9See the file BUGS for instructions about reporting bugs.
10
11The file README.boot gives instructions for making a "bootstrap"
12version of sed on systems which lack any pre-existing and working
13version of sed.
14

README-alpha

1This is an alpha version of GNU sed.  Please try it on a wide
2range of scripts (especially configure scripts) and submit
3bug reports to bonzini@gnu.org.
4
5Thanks,
6
7Paolo Bonzini
8GNU sed maintainer
9

README.boot

1Because a working sed is a prerequisite for running the ``configure''
2script, I have provided the script ``bootstrap.sh'' which will attempt
3to build a version of sed adequate for running ``configure''.  If it
4fails, edit the ``config.h'' file that was created according to the
5comments found therein, and then try running ``bootstrap.sh'' again.
6
7The bootstrap build is quite likely to babble on and on with
8various compiler warnings.  You may want to tell bootstrap.sh
9how to invoke your compiler with warnings disabled.  For example,
10with a Bourne-like shell and gcc one could use:
11  $ CC='gcc -w' sh bootstrap.sh
12or with a csh-like shell, one could try:
13  % env CC='gcc -w' sh bootstrap.sh
14
15Once you get a working version of sed, temporarily install sed/sed
16somewhere in your $PATH, and then really re-build the normal way
17(starting with ``sh configure''); the bootstrap version is almost
18certainly more crippled than it needs to be on your machine.
19
20I don't much care to hear about any bugs in ``bootstrap'' versions
21of sed beyond those which actually keep the ``bootstrap'' version from
22building, or sed's configure script from running properly.  I am
23especially uninterested in compiler warnings from the bootstrap build.
24