
How to build sed 2.05
---------------------

- Sources : sed205 tar file

- Unpack all c files into the c dir

- Unpack all h files into the h dir

- Add config.h from my Gawk 3.0.3 port

- In sed.c comment out 'extent char *sys_errlist[]'

- In sed.c add (at start)
  ---------------------------------------------------------------------------------------------
	#ifdef HAVE_CONFIG_H
	#include "config.h"
	#endif
  ---------------------------------------------------------------------------------------------

- In sed.c add (at start)
  ---------------------------------------------------------------------------------------------
	const char* __dynamic_da_name = "sed";
	int __riscosify_control;
	#define __RISCOSIFY_NO_PROCESS 0x0040;
  ---------------------------------------------------------------------------------------------

- In sed.c add (at start of main())
  ---------------------------------------------------------------------------------------------
	__riscosify_control |= __RISCOSIFY_NO_PROCESS;
  ---------------------------------------------------------------------------------------------

