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

Revision 19074, 612 bytes checked in by ghudson, 22 years ago (diff)
Remove ATHTOOLROOT support.
  • Property svn:executable set to *
RevLine 
[19074]1# $Id: configure.athena,v 1.7 2003-03-23 01:16:04 ghudson Exp $
[12530]2
3./configure --enable-nmh-pop --enable-nmh-debug \
[19074]4        --with-krb4=/usr/athena \
5        --with-hesiod=/usr/athena \
[13070]6        --with-mts=sendmail --with-editor=emacs
[12924]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
[15942]14case $ATHENA_HOSTTYPE in
[12924]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.