source: trunk/third/nmh/configure.athena @ 13070

Revision 13070, 629 bytes checked in by ghudson, 25 years ago (diff)
Use emacs as the default editor.
  • Property svn:executable set to *
Line 
1# $Id: configure.athena,v 1.5 1999-05-19 19:43:51 ghudson Exp $
2
3./configure --enable-nmh-pop --enable-nmh-debug \
4        --with-krb4=$ATHTOOLROOT/usr/athena \
5        --with-hesiod=$ATHTOOLROOT/usr/athena \
6        --with-mts=sendmail --with-editor=emacs
7
8# nmh requires that one edit the config.h by hand.  argh.  so do that
9# here.
10
11rm -f configtmp
12cp config.h configtmp
13
14case $HOSTTYPE in
15"sun4" | "sgi")
16        sed -e 's/\/\*.*SYS5.*/#define SYS5     1/' \
17            -e 's/\/\*.*SVR4.*/#define SVR4     1/' \
18            < configtmp > config.h
19        ;;
20"linux")
21        sed -e 's/\/\*.*LINUX_STDIO.*/#define LINUX_STDIO       1/' \
22            < configtmp > config.h
23        ;;
24esac
25
26rm -f configtmp
27       
Note: See TracBrowser for help on using the repository browser.