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

Revision 15942, 636 bytes checked in by ghudson, 23 years ago (diff)
Rename HOSTTYPE to ATHENA_HOSTTYPE in the build system, because bash 2.04 (/bin/sh on Red Hat 7) stomps on HOSTTYPE.
  • Property svn:executable set to *
RevLine 
[15942]1# $Id: configure.athena,v 1.6 2001-04-03 16:06:49 ghudson Exp $
[12530]2
3./configure --enable-nmh-pop --enable-nmh-debug \
[12543]4        --with-krb4=$ATHTOOLROOT/usr/athena \
[12700]5        --with-hesiod=$ATHTOOLROOT/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.