From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]); by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id 9a5cb3f0; for ; Wed, 11 Mar 2015 08:16:14 -0500 (EST) Date: Wed, 11 Mar 2015 08:16:14 -0500 (EST) Message-Id: <874320191900478454.enqueue@fantadrom.bsd.lv> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: When manpath(1) is available, enable HAVE_MANPATH even when X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- When manpath(1) is available, enable HAVE_MANPATH even when building without database support. Required now that we have man(1) even without database support. Modified Files: -------------- mdocml: configure Revision Data ------------- Index: configure =================================================================== RCS file: /home/cvs/mdocml/mdocml/configure,v retrieving revision 1.20 retrieving revision 1.21 diff -Lconfigure -Lconfigure -u -p -r1.20 -r1.21 --- configure +++ configure @@ -237,9 +237,7 @@ elif [ -z "${DBLIB}" ]; then fi # --- manpath --- -if [ ${BUILD_DB} -eq 0 ]; then - HAVE_MANPATH=0 -elif ismanual manpath "${HAVE_MANPATH}"; then +if ismanual manpath "${HAVE_MANPATH}"; then : elif manpath 1>&3 2>&3; then echo "manpath: yes" 1>&2 -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv