]> diplodocus.org Git - nmh/blobdiff - docs/contrib/build_nmh
Added port number to "Connecting to" message with -snoop.
[nmh] / docs / contrib / build_nmh
index f17b240fb1d2ffbc163190e1f4b8d7b4261fcb46..ef399f86be7e9ddc25480a333671fa6ddb81b72a 100755 (executable)
@@ -149,11 +149,11 @@ if install-mh -check >/dev/null 2>&1; then
     fi
   fi
 
-  if $ldd "$mhbin/inc" | grep sasl >/dev/null; then
+  if $ldd "`$mhbin/mhparam libdir`/post" | grep sasl >/dev/null; then
     config_sasl=y
   fi
 
-  if $ldd "$mhbin/inc" | grep ssl >/dev/null; then
+  if $ldd "`$mhbin/mhparam libdir`/post" | grep ssl >/dev/null; then
     config_tls=y
   fi
 fi
@@ -308,7 +308,10 @@ if [ $status -eq 0 ]; then
 fi
 
 grep 'Error' "$logfile"
-grep 'warn' "$logfile"
+#### Ignore the warning when sbr/dtimep.c is built with flex 2.5.36
+#### or 2.5.37.
+grep 'warn' "$logfile" | \
+  grep -v 'sbr/dtimep.c:.*comparison between signed and unsigned'
 if [ $status -ne 0 ]; then
   echo build failed!
   echo build log is in "$logfile"