1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
case $CONFIG in
'')
if test ! -f config.sh; then
ln ../config.sh . || \
ln ../../config.sh . || \
ln ../../../config.sh . || \
(echo "Can't find config.sh."; exit 1)
echo "Using config.sh from above..."
fi
. ./config.sh
;;
esac
case "$0" in
*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
esac
echo "Extracting sysdefs.h (with variable substitutions)"
sed <<!GROK!THIS! >sysdefs.h -e 's!^#undef!/\*#undef!'
#define mailhome "$mailhome"
#define sendmail "$sendmail"
#define smflags "-oi -oem" /* ignore dots and mail back errors */
#define smflagsv "-oi -oem -v" /* Verbose voyuer mode */
#define smflagmt " -om" /* metoo copy to sender */
#define submitmail "$submit"
#define submitflags "-mlrnvxto,cc*"
#define submitflags_s "-mlrnv"
#define mailer "$mailer"
#define remove_cmd "$rm -f" /* how to remove a file */
#define cat "$cat" /* how to display files */
#define sed_cmd "$sed" /* how to access sed */
#define move_cmd "$mv" /* how to access sed */
#define uuname "$uuname" /* how to get a uuname */
#define MSG_SEPARATOR "\001\001\001\001\n" /* mmdf message seperator */
#ifdef CRAY
/* avoid conflict with typedef'd word */
#define word wrd
#endif /* CRAY */
#ifndef STRSTR
char *strstr();
#endif
!GROK!THIS!
|