From owner-cvs-all@FreeBSD.ORG Thu Sep 20 21:37:29 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DDF7116A419; Thu, 20 Sep 2007 21:37:29 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D27B013C45D; Thu, 20 Sep 2007 21:37:29 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8KLbTQZ001044; Thu, 20 Sep 2007 21:37:29 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8KLbTDJ001043; Thu, 20 Sep 2007 21:37:29 GMT (envelope-from edwin) Message-Id: <200709202137.l8KLbTDJ001043@repoman.freebsd.org> From: Edwin Groothuis Date: Thu, 20 Sep 2007 21:37:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/gnu/usr.bin/man/man man.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Sep 2007 21:37:30 -0000 edwin 2007-09-20 21:37:29 UTC FreeBSD src repository Modified files: gnu/usr.bin/man/man man.c Log: man(1) can't handle compressed included files. Some ports will install with compressed manpages. man handles this by looking for the .gz version of a man source file. It is also common to include other files with the .so directive where commands or functions share a man page. Traditionally ports have had to handle this by either not compressing the manpages, or using the _MLINKS macro in the port makefile to create symlinks to the actual source file, rather than using .so versions. Notably, the current version of Xorg port breaks. See ports/113096 and ports/115845. PR: bin/115850 Submitted by: Callum Gibson Approved by: re@ (ken smith), grog@ (mentor) MFC after: 1 week Revision Changes Path 1.64 +15 -0 src/gnu/usr.bin/man/man/man.c