3 # Configures and builds nmh.
4 # * This script must be invoked from an nmh source directory.
5 # * This script retrieves configuration from the first existing nmh
6 # installation on your $PATH, if any, as well as any $EDITOR/$VISUAL
7 # and $PAGER environment variable settings.
8 # * Unless the -y option is provided, this script then interactively
9 # walks you through confirmation of common configuration settings.
12 # The first time you invoke this script, use the -i option to install
13 # nmh in the specified location. The script will walk you through the
14 # common nmh configuration settings. The -v option will cause display
15 # of brief progress indicators. Be sure to add the bin directory of
16 # the install location to your $PATH, if not already there.
17 # Subsequently, invoke this script with the -y option, to use the
18 # relevant configuration settings from the installed nmh without
24 # -v to display progress
25 # Subsequent uses, assuming installed nmh bin directory is on $PATH:
26 # -y to accept all configuration options without confirmation
28 # -l <logfile name>, default 'build_nmh.log'
29 # Advanced/developer use:
30 # -c to run 'make distcheck' instead of 'make check'
31 # -d to build nmh with debug enabled
32 # -s to use 'make superclean': requires recent autoconf and automake,
33 # see docs/README.developers
36 # On Fedora, at least these rpms must be installed:
39 # cyrus-sasl-devel, if using sasl
40 # openssl-devel, if using TLS
41 # autoconf and automake, with -s (see docs/README.developers for versions)
46 #### OS-specific setup.
52 os=${OSTYPE:-`uname -s`}
53 #### It'd be nice to have configure decide what locking style to use.
54 #### In the meantime, select it manually. To determine what style
55 #### locking your system uses by default, try something like this,
56 #### assuming that strace is installed:
57 #### $ echo test | strace -o /tmp/mail.strace mail -s test $LOGNAME
58 #### Then look in /tmp/mail.strace for fcntl, flock, and lockf system
59 #### calls and opens of dot files in the mail spool.
60 #### These might help but are old:
61 #### https://bugzilla.mozilla.org/show_bug.cgi?id=239013#c9
62 #### http://www.jwz.org/doc/movemail.html
65 freebsd*) locking=flock ;;
66 linux* ) locking=fcntl ;;
71 #### Interpret command arguments.
82 [-c to run 'make distcheck' instead of 'make check']
83 [-d to build nmh with debug enabled]
85 [-l <logfile name>, default '$logfile']
87 [-s to use 'make superclean': requires recent autoconf and automake]
88 [-v to display progress]
89 [-y to accept all configuration options without confirmation]"
91 while getopts 'cdil:rsvy?' arg; do
93 c ) check=distcheck ;;
96 l ) logfile=$OPTARG ;;
101 '?') echo "$usage"; exit 0 ;;
104 shift `expr $OPTIND - 1`
106 #### No command line arguments are supported.
107 if [ $# -gt 0 ]; then
112 #### Check to see that we're in a nmh source directory.
113 if grep 'the authors of nmh' COPYRIGHT >/dev/null; then
116 echo "$0: not in nmh source directory"
121 #### Set up configure options. Handle options that can have embedded
122 #### spaces (currently just smtpservers) specially.
125 #### dotlocking, the usual default, requires chgrp and chmod of inc.
127 if [ $install -ge 1 -a `id -u` -ne 0 -a "$OSTYPE" != cygwin ]; then
128 if [ "x$locking" = x -o "$locking" = dot ]; then
129 echo "$0: "'install requires chgrp and chmod 2755'
130 echo 'so will sudo to install. Terminate with Ctrl-C if unacceptable.'
136 #### Here are the config options that we will try to detect, then
137 #### confirm, and finally set.
138 config_prefix=/usr/local/nmh
139 config_locking="$locking"
141 config_smtpservers=localhost
145 for i in more less most cat; do
146 if which $i >/dev/null 2>&1; then
153 if install-mh -check >/dev/null 2>&1; then
154 # Determine config options from installed nmh.
155 mhparam=`which mhparam`
156 mhbin=`dirname "$mhparam"`
158 config_prefix=`cd $mhbin/.. && pwd`
160 mtsconf=`dirname "$mhbin"`/etc/mts.conf
161 if [ -f "$mtsconf" ]; then
162 mts_entry=`grep '^mts:' $mtsconf`
163 if [ "mts_entry" ]; then
164 mts=`echo $mts_entry | sed -e 's/^mts: *//'`
165 if [ "$mts" -a "$mts" != smtp ]; then
170 mtsconfservers=`grep '^servers:' $mtsconf`
171 if [ "$mtsconfservers" ]; then
172 servers=`echo $mtsconfservers | sed -e 's/^servers: *//' -e 's/ /\\\ /g'`
173 [ "$servers" ] && config_smtpservers="$servers"
177 if $ldd $mhbin/inc | grep sasl >/dev/null; then
181 if $ldd $mhbin/inc | grep ssl >/dev/null; then
186 if [ "$EDITOR" ]; then
187 config_editor="$EDITOR"
188 elif [ "$VISUAL" ]; then
189 config_editor="$VISUAL"
192 [ "$PAGER" ] && config_pager="$PAGER"
194 [ $debug -ge 1 ] && config_debug=y
196 if [ $yes -eq 0 ]; then
197 #### Confirm each config setting with user.
198 printf 'Install prefix [%s]: ' $config_prefix
200 [ "$prefix" ] && config_prefix="$prefix"
202 printf 'Locking type (dot|fcntl|flock|lockf) [%s]: ' $config_locking
204 [ "$locking" ] && config_locking="$locking"
206 printf 'MTS (smtp|sendmail) [%s]: ' $config_mts
208 [ "$mts" ] && config_mts="$mts"
210 if [ "$mts" -o "$mts" = smtp ]; then
213 printf 'SMTP server(s), space separated [%s]: ' $config_smtpservers
215 servers=`echo $response | sed -e 's/ /\\\ /g'`
216 [ "$servers" ] && config_smtpservers="$servers"
219 printf 'Cyrus SASL support [%s]: ' $config_sasl
221 if [ "$response" = y -o "$response" = Y ]; then
223 elif [ "$response" = n -o "$response" = N ]; then
227 printf 'TLS support [%s]: ' $config_tls
229 if [ "$response" = y -o "$response" = Y ]; then
231 elif [ "$response" = n -o "$response" = N ]; then
235 printf 'Default editor [%s]: ' $config_editor
237 [ "$editor" ] && config_editor=$editor
239 printf 'Pager [%s]: ' $config_pager
241 [ "$pager" ] && config_pager=$pager
243 #### Don't confirm debug here: obey the -d option to this script.
247 config_opts="--prefix=$config_prefix"
249 [ "$config_locking" ] && \
250 config_opts="$config_opts --with-locking=$config_locking"
251 [ "$config_mts" -a "$config_mts" != smtp ] && \
252 config_opts="$config_opts --with-mts=$config_mts"
253 [ "$config_smtpservers" -a "$config_smtpservers" != localhost ] && \
254 smtpservers="--with-smtpservers=$config_smtpservers"
255 [ "$config_sasl" = y ] && \
256 config_opts="$config_opts --with-cyrus-sasl"
257 [ "$config_tls" = y ] && \
258 config_opts="$config_opts --with-tls"
259 [ "$config_editor" ] && \
260 config_opts="$config_opts --with-editor=$config_editor"
261 [ "$config_pager" ] && \
262 config_opts="$config_opts --with-pager=$config_pager"
263 [ $config_debug = y ] && \
264 config_opts="$config_opts --enable-debug"
268 #### Clean up, and set up with autoconfig if necessary.
270 if [ -f Makefile ]; then
271 [ $verbose -ge 1 ] && echo cleaning . . .
272 if [ $superclean -ge 1 ]; then
273 make superclean >/dev/null
275 make distclean >/dev/null
280 if [ -f configure -a -f Makefile.in ]; then
283 [ $verbose -ge 1 ] && echo autoconfiguring . . .
284 ./autogen.sh >>$logfile 2>&1
291 [ $verbose -ge 1 ] && echo configuring . . .
292 echo ./configure $config_opts ${smtpservers:+"$smtpservers"} >>$logfile 2>&1
293 ./configure $config_opts ${smtpservers:+"$smtpservers"} >>$logfile 2>&1
296 if [ $status -eq 0 ]; then
297 [ $verbose -ge 1 ] && echo building . . .
301 if [ $status -eq 0 ]; then
302 [ $verbose -ge 1 ] && echo testing . . .
303 checkoutput=`make $check 2>>$logfile`
306 tests_summary=`echo "$checkoutput" | grep tests`
307 if [ "$tests_summary" ]; then
308 echo '===================' >>$logfile
309 echo $tests_summary >>$logfile
310 echo '===================' >>$logfile
311 [ "$check" = distcheck ] && \
312 echo "$checkoutput" | tail -n 4 >>$logfile
315 if [ $status -eq 0 ]; then
316 if [ $install -ge 1 ]; then
317 [ $verbose -ge 1 ] && echo installing . . .
318 ($installpriv make install) >/dev/null 2>>$logfile
322 if [ $status -eq 0 -a $build_rpm -ge 1 ]; then
323 [ $verbose -ge 1 ] && echo building rpm . . .
324 make rpm >/dev/null 2>>$logfile
331 grep 'Error' $logfile
333 [ $status -ne 0 ] && echo build failed!
334 [ $status -eq 0 -a $verbose -ge 1 ] && echo build completed successfully