From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from scc-mailout.scc.kit.edu (scc-mailout.scc.kit.edu [129.13.185.202]) by krisdoz.my.domain (8.14.3/8.14.3) with ESMTP id pAS9seXF018643 for ; Mon, 28 Nov 2011 04:54:40 -0500 (EST) Received: from hekate.usta.de (asta-nat.asta.uni-karlsruhe.de [172.22.63.82]) by scc-mailout-02.scc.kit.edu with esmtp (Exim 4.72 #1) id 1RUxv5-0005p3-5v; Mon, 28 Nov 2011 10:54:39 +0100 Received: from donnerwolke.usta.de ([172.24.96.3]) by hekate.usta.de with esmtp (Exim 4.72) (envelope-from ) id 1RUxv5-0000jV-5D for tech@mdocml.bsd.lv; Mon, 28 Nov 2011 10:54:39 +0100 Received: from iris.usta.de ([172.24.96.5] helo=usta.de) by donnerwolke.usta.de with esmtp (Exim 4.72) (envelope-from ) id 1RUxv5-0007kW-3f for tech@mdocml.bsd.lv; Mon, 28 Nov 2011 10:54:39 +0100 Received: from schwarze by usta.de with local (Exim 4.72) (envelope-from ) id 1RUxv4-0007K5-UA for tech@mdocml.bsd.lv; Mon, 28 Nov 2011 10:54:38 +0100 Date: Mon, 28 Nov 2011 10:54:38 +0100 From: Ingo Schwarze To: tech@mdocml.bsd.lv Subject: Makefile tweak Message-ID: <20111128095438.GA17736@iris.usta.de> X-Mailinglist: mdocml-tech Reply-To: tech@mdocml.bsd.lv MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Hi, recently, the commenting of USE_MANPATH got lost, and given that almost all active developers use OpenBSD and NetBSD, i'd like to put it back. Besides, hopefully, operating systems that don't support static binaries are expected to be a bit rare. Then again, working on Linux, you wonder... :-D OK? Ingo schwarze@donnerwolke:~$ ldd /bin/true linux-gate.so.1 => (0xb782d000) libc.so.6 => /lib/i686/cmov/libc.so.6 (0xb76da000) /lib/ld-linux.so.2 (0xb782e000) schwarze@donnerwolke:~$ /bin/true --version true (GNU coreutils) 8.5 Copyright (C) 2010 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later . This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Jim Meyering. schwarze@donnerwolke:~$ Index: Makefile =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/Makefile,v retrieving revision 1.383 diff -u -r1.383 Makefile --- Makefile 27 Nov 2011 11:46:44 -0000 1.383 +++ Makefile 28 Nov 2011 09:44:42 -0000 @@ -27,9 +27,9 @@ # system that's not OpenBSD or NetBSD. If uncommented, apropos(1), # mandocdb(8), and man.cgi will popen(3) manpath(1) to get the MANPATH # variable. -CFLAGS += -DUSE_MANPATH +#CFLAGS += -DUSE_MANPATH -# If your system doesn't support static binaries, comment this. +# If your system supports static binaries only, uncomment this. #STATIC = -static CFLAGS += -g -DHAVE_CONFIG_H -DVERSION="\"$(VERSION)\"" -- To unsubscribe send an email to tech+unsubscribe@mdocml.bsd.lv