ftp.nice.ch/pub/next/text/tex/teTeX/distrib/sources/teTeX-src-0.4.tar.gz#/teTeX-src-0.4/dialog-0.5/ncurses-1.9.9e/include/edit_cfg.sh

This is edit_cfg.sh in view mode; [Download] [Up]

#!/bin/sh
# Edit the default value of the term.h file based on the autoconf-generated
# values:
#
#	$1 = config.h
#	$2 = term.h
#
for name in \
	HAVE_TERMIOS_H \
	BROKEN_LINKER
do
	mv $2 $2.bak
	if ( grep "[ 	]$name[ 	]" $1 2>&1 >/dev/null )
	then
		sed -e 's/define '$name'.*$/define '$name' 1/' $2.bak >$2
	else
		sed -e 's/define '$name'.*$/define '$name' 0/' $2.bak >$2
	fi
	if (cmp -s $2 $2.bak)
	then
		echo '** same: '$name
		mv $2.bak $2
	else
		echo '** edit: '$name
		rm -f $2.bak
	fi
done

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.