From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (schwarze@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.5/8.14.5) with ESMTP id s7A2j4Xo011208 for ; Sat, 9 Aug 2014 22:45:04 -0400 (EDT) Received: (from schwarze@localhost) by krisdoz.my.domain (8.14.5/8.14.3/Submit) id s7A2j43t012722; Sat, 9 Aug 2014 22:45:04 -0400 (EDT) Date: Sat, 9 Aug 2014 22:45:04 -0400 (EDT) Message-Id: <201408100245.s7A2j43t012722@krisdoz.my.domain> 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: Clarifications in comments and standard output suggested by Paul X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Clarifications in comments and standard output suggested by Paul Onyschuk (Alpine Linux) Modified Files: -------------- mdocml: Makefile configure Revision Data ------------- Index: configure =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/configure,v retrieving revision 1.7 retrieving revision 1.8 diff -Lconfigure -Lconfigure -u -p -r1.7 -r1.8 --- configure +++ configure @@ -14,6 +14,8 @@ # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +echo "/* RUNNING ./CONFIGURE - SHOULD BE USED ONLY VIA MAKE, READ INSTALL */" + set -e exec > config.h 2> config.log Index: Makefile =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/Makefile,v retrieving revision 1.434 retrieving revision 1.435 diff -LMakefile -LMakefile -u -p -r1.434 -r1.435 --- Makefile +++ Makefile @@ -52,9 +52,10 @@ INSTALL_MAN = $(INSTALL_DATA) # --- user settings related to database support ------------------------ -# If you want to build without database support, for example to avoid -# the dependency on SQLite3, comment the following line. -# However, you won't get apropos(1) and makewhatis(8) in that case. +# Building apropos(1) and makewhatis(8) requires both SQLite3 and fts(3). +# To avoid those dependencies, comment the following line. +# Be careful: the fts(3) implementation in glibc is broken on 32bit +# machines, see: https://sourceware.org/bugzilla/show_bug.cgi?id=15838 # BUILD_TARGETS += db-build -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv