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.
7 # * Unless the -y option is provided, this script then interactively
8 # walks you through confirmation of common configuration settings.
11 # The first time you invoke this script, use the -i option to install
12 # nmh in the specified location. The script will walk you through the
13 # common nmh configuration settings. The -v option will cause display
14 # of brief progress indicators. Be sure to add the bin directory of
15 # the install location to your $PATH, if not already there.
16 # Subsequently, invoke this script with the -y option, to use the
17 # relevant configuration settings from the installed nmh without
23 # -v to display progress
24 # Subsequent uses, assuming installed nmh bin directory is on $PATH:
25 # -y to accept all configuration options without confirmation
27 # -l <logfile name>, default 'build_nmh.log'
28 # Advanced/developer use:
29 # -c to run 'make distcheck' instead of 'make check'
30 # -d to build nmh with debug enabled
31 # -s to use 'make superclean': requires recent autoconf and automake,
32 # see docs/README.developers
35 # On Fedora, at least these rpms must be installed:
38 # cyrus-sasl-devel, if using sasl
39 # openssl-devel, if using TLS
40 # autoconf and automake, with -s (see docs/README.developers for versions)
45 #### Interpret command arguments.
56 [-c to run 'make distcheck' instead of 'make check']
57 [-d to build nmh with debug enabled]
59 [-l <logfile name>, default '$logfile']
61 [-s to use 'make superclean': requires recent autoconf and automake]
62 [-v to display progress]
63 [-y to accept all configuration options without confirmation]"
65 while getopts 'cdil:rsvy?' arg
; do
67 c
) check
=distcheck
;;
70 l
) logfile
=$OPTARG ;;
75 '?') echo "$usage"; exit 0 ;;
78 shift `expr $OPTIND - 1`
80 #### No command line arguments are supported.
86 #### Check to see that we're in a nmh source directory.
87 if grep 'the authors of nmh' COPYRIGHT
>/dev
/null
; then
90 echo "$0: not in nmh source directory"
95 #### Set up configure options. Handle options that can have embedded
96 #### spaces (currently just smtpservers) specially.
99 #### Here are the config options that we will try to detect, then
100 #### confirm, and finally set.
101 config_prefix
=/usr
/local
/nmh
104 config_smtpservers
=localhost
110 #### Find location of a program. Bourne shell just puts the name in
111 #### $0 if it's found from the PATH, so search that if necessary.
117 [ -f "${d:=.}/$1" -a -x "$d/$1" ] && printf %s
"$d" && break
122 #### Figure out whether or not to use -n with tail.
123 case `printf 'OK\n' | tail -n 1 2>&1` in
124 OK
) tail='tail -n ' ;;
128 if install-mh -check >/dev
/null
2>&1; then
129 # Determine config options from installed nmh.
130 mhbin
=`finddir install-mh`
132 config_prefix
=`cd $mhbin/.. && pwd`
134 mtsconf
=`mhparam etcdir`/mts.conf
135 if [ -f "$mtsconf" ]; then
136 mts_entry
=`grep '^mts:' "$mtsconf"`
137 if [ "$mts_entry" ]; then
138 mts
=`echo "$mts_entry" | sed -e 's/^mts: *//'`
139 if [ "$mts" -a "$mts" != smtp
]; then
144 mtsconfservers
=`grep '^servers:' "$mtsconf"`
145 if [ "$mtsconfservers" ]; then
146 servers
=`echo "$mtsconfservers" | \
147 sed -e 's/^servers: *//' -e 's/ /\\\ /g'`
148 [ "$servers" ] && config_smtpservers
="$servers"
152 if test -x "$mhbin/mhparam"; then
153 if mhparam sasl
>/dev
/null
; then
154 case `$mhbin/mhparam sasl` in
155 *sasl
*) config_sasl
=y
;;
158 case `$mhbin/mhparam tls` in
159 *tls
*) config_tls
=y
;;
163 echo "$0: SASL and TLS detection not supported with current nmh"
164 [ $yes -eq 1 ] && echo "will not configure either one in"
170 [ $debug -ge 1 ] && config_debug
=y
172 if [ $yes -eq 0 ]; then
173 #### Confirm each config setting with user.
174 printf 'Install prefix [%s]: ' $config_prefix
176 [ "$prefix" ] && config_prefix
="$prefix"
178 printf 'Locking type (dot|fcntl|flock|lockf) [determined by configure]: '
180 [ "$locking" ] && config_locking
="$locking"
182 printf 'MTS (smtp|sendmail/smtp|sendmail/pipe) [%s]: ' $config_mts
184 [ "$mts" ] && config_mts
="$mts"
186 if [ "$config_mts" = smtp
]; then
187 printf 'SMTP server(s), space separated [%s]: ' $config_smtpservers
189 servers
=`echo $response | sed -e 's/ /\\\ /g'`
190 [ "$servers" ] && config_smtpservers
="$servers"
193 printf 'Cyrus SASL support [%s]: ' $config_sasl
195 if [ "$response" = y
-o "$response" = Y
]; then
197 elif [ "$response" = n
-o "$response" = N
]; then
201 printf 'TLS support [%s]: ' $config_tls
203 if [ "$response" = y
-o "$response" = Y
]; then
205 elif [ "$response" = n
-o "$response" = N
]; then
209 #### Don't confirm debug here: obey the -d option to this script.
213 config_opts
="--prefix=$config_prefix"
215 [ "$config_locking" ] && \
216 config_opts
="$config_opts --with-locking=$config_locking"
217 [ "$config_mts" -a "$config_mts" != smtp
] && \
218 config_opts
="$config_opts --with-mts=$config_mts"
219 [ "$config_smtpservers" -a "$config_smtpservers" != localhost
] && \
220 smtpservers
="--with-smtpservers=$config_smtpservers"
221 [ "$config_sasl" = y
] && \
222 config_opts
="$config_opts --with-cyrus-sasl"
223 [ "$config_tls" = y
] && \
224 config_opts
="$config_opts --with-tls"
225 [ $config_debug = y
] && \
226 config_opts
="$config_opts --enable-debug --enable-assert"
229 #### dotlocking, the usual default, requires chgrp and chmod of inc.
231 if [ $install -ge 1 -a `id -u` -ne 0 ]; then
232 if [ "$config_locking" = dot
]; then
233 echo "$0: "'install requires chgrp and chmod 2755'
234 echo 'so will sudo to install. Terminate with Ctrl-C if unacceptable.'
241 #### Clean up, and set up with autoconfig if necessary.
243 if [ -f Makefile
]; then
244 [ $verbose -ge 1 ] && echo cleaning . . .
245 if [ $superclean -ge 1 ]; then
246 make superclean
>/dev
/null
248 make distclean
>/dev
/null
252 /bin
/rm -f "$logfile"
253 if [ -f configure
-a -f Makefile.
in ]; then
256 [ $verbose -ge 1 ] && echo autoconfiguring . . .
257 .
/autogen.sh
>>"$logfile" 2>&1
264 [ $verbose -ge 1 ] && echo configuring . . .
265 echo .
/configure
$config_opts ${smtpservers:+"$smtpservers"} >>"$logfile" 2>&1
266 .
/configure
$config_opts ${smtpservers:+"$smtpservers"} >>"$logfile" 2>&1
269 if [ $status -eq 0 ]; then
270 [ $verbose -ge 1 ] && echo building . . .
271 make >>"$logfile" 2>&1
274 if [ $status -eq 0 ]; then
275 if [ "$TESTS_SHELL"x
= x
]; then
276 #### Bonus: use heirloom shell to test, if available, and if
277 #### TESTS_SHELL hadn't already been set.
278 heirloom_shell
=/usr
/lib
/heirloom
/5bin
/sh
279 if [ -x "$heirloom_shell" ]; then
280 TESTS_SHELL
="$heirloom_shell"; export TESTS_SHELL
284 [ $verbose -ge 1 ] && echo testing . . .
285 checkoutput
=`make $check AM_COLOR_TESTS=always 2>>"$logfile"`
288 tests_summary
=`echo "$checkoutput" | grep tests`
289 #### If multiple tests not run, that line will be caught by the
290 #### "grep tests" above.
291 test_not_run
=`echo "$checkoutput" | grep 'test was not run'`
292 fails
=`echo "$checkoutput" | grep FAIL`
293 if [ "$tests_summary" ]; then
294 echo '===================' >>"$logfile"
295 [ "$test_not_run" ] && echo "$test_not_run" >>"$logfile"
296 [ "$fails" ] && echo "$fails" >>"$logfile"
297 echo "$tests_summary" >>"$logfile"
298 echo '===================' >>"$logfile"
299 [ "$check" = distcheck
] && \
300 echo "$checkoutput" | ${tail}4 >>"$logfile"
303 if [ $status -eq 0 ]; then
304 if [ $install -ge 1 ]; then
305 [ $verbose -ge 1 ] && echo installing . . .
306 ($installpriv make install) >/dev
/null
2>>"$logfile"
310 if [ $status -eq 0 -a $build_rpm -ge 1 ]; then
311 [ $verbose -ge 1 ] && echo building rpm . . .
312 make rpm
>/dev
/null
2>>"$logfile"
319 grep Error
"$logfile"
322 if [ $status -eq 0 ]; then
323 [ $verbose -ge 1 ] && echo build completed successfully
326 echo build log is
in "$logfile"