Imported Upstream version 2.7.6 upstream/2.7.6
authorDongHun Kwak <dh0128.kwak@samsung.com>
Mon, 3 Jan 2022 06:16:18 +0000 (15:16 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Mon, 3 Jan 2022 06:16:18 +0000 (15:16 +0900)
119 files changed:
.gitignore
Makefile.am
Makefile.in
NEWS
README
aclocal.m4
build-aux/config.guess
build-aux/config.sub
build-aux/ltmain.sh
config.h.in
configure
configure.ac
docs/Makefile.in
docs/man-db.lsm
gnulib/lib/Makefile.in
gnulib/m4/libtool.m4
gnulib/m4/ltoptions.m4
gnulib/m4/ltsugar.m4
gnulib/m4/ltversion.m4
gnulib/m4/lt~obsolete.m4
init/Makefile.in
init/systemd/Makefile.in
init/systemd/man-db.conf
lib/Makefile.am
lib/Makefile.in
lib/cleanup.c
lib/cleanup.h
lib/security.c
lib/xchown.c [new file with mode: 0644]
lib/xchown.h [new file with mode: 0644]
libdb/Makefile.in
libdb/db_btree.c
libdb/mydbm.h
m4/man-arg-cache-owner.m4 [new file with mode: 0644]
m4/man-arg-setuid.m4
man/LINGUAS.po4a
man/Makefile.am
man/Makefile.in
man/THANKS
man/da/Makefile.in
man/de/Makefile.in
man/es/Makefile.in
man/es/man8/mandb.man8
man/fr/Makefile.in
man/id/Makefile.in
man/it/Makefile.in
man/it/man8/mandb.man8
man/ja/Makefile.in
man/man1/man.man1
man/man8/mandb.man8
man/nl/Makefile.in
man/pl/Makefile.in
man/po4a/Locale/Po4a/Manext.pm
man/po4a/Makefile.am
man/po4a/Makefile.in
man/po4a/po/da.po
man/po4a/po/de.po
man/po4a/po/fr.po
man/po4a/po/id.po
man/po4a/po/ja.po
man/po4a/po/man-db-manpages.pot
man/po4a/po/nl.po
man/po4a/po/pl.po
man/po4a/po/ru.po
man/po4a/po/sv.po [new file with mode: 0644]
man/po4a/po/zh_CN.po
man/po4a/po4a.cfg
man/ru/Makefile.in
man/sv/Makefile.am [new file with mode: 0644]
man/sv/Makefile.in [new file with mode: 0644]
man/sv/translator.add [new file with mode: 0644]
man/zh_CN/Makefile.in
manual/Makefile.in
manual/intro.me
manual/misc.me
po/POTFILES.in
po/ca.po
po/cs.po
po/da.po
po/de.po
po/eo.po
po/es.po
po/fi.po
po/fr.po
po/id.po
po/it.po
po/ja.po
po/man-db.pot
po/nl.po
po/pl.po
po/pt_BR.po
po/ro.po
po/ru.po
po/sr.po
po/sv.po
po/vi.po
po/zh_CN.po
src/Makefile.am
src/Makefile.in
src/catman.c
src/check_mandirs.c
src/check_mandirs.h
src/man.c
src/mandb.c
src/manp.c
src/tests/Makefile.am
src/tests/Makefile.in
src/tests/man-1
src/tests/man-11 [new file with mode: 0755]
src/tests/man-3
src/tests/man-4
src/tests/man-5
src/tests/man-8
src/tests/man-9
src/tests/mandb-7
src/tests/testlib.sh
src/tests/zsoelim-1
src/whatis.c
tools/Makefile.in

index fddc45c..4d491f8 100644 (file)
@@ -96,6 +96,9 @@ man/pl/man8
 man/ru/man1
 man/ru/man5
 man/ru/man8
+man/sv/man1
+man/sv/man5
+man/sv/man8
 man/zh_CN/man1
 man/zh_CN/man5
 man/zh_CN/man8
index 61a64d1..ba87b7b 100644 (file)
@@ -53,9 +53,12 @@ EXTRA_DIST += \
        gnulib/m4/uintmax_t.m4 \
        gnulib/m4/visibility.m4
 
+# Installing in --enable-setuid mode (the default) requires root; disable
+# this so that distcheck can be run as non-root.
 # The default for systemdtmpfilesdir is intentionally not prefix-sensitive,
 # but we need to adjust it in order for distcheck to pass.
 AM_DISTCHECK_CONFIGURE_FLAGS = \
+       --disable-setuid \
        --with-systemdtmpfilesdir=\$${prefix}/lib/tmpfiles.d
 
 # We deliberately leave the configuration file in place on uninstall, since
index 30d86ea..69c99ce 100644 (file)
@@ -91,6 +91,7 @@ subdir = .
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -377,7 +378,7 @@ am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \
        $(top_srcdir)/include/comp_src.h.in \
        $(top_srcdir)/include/manconfig.h.in ABOUT-NLS NEWS README \
        build-aux/ar-lib build-aux/compile build-aux/config.guess \
-       build-aux/config.rpath build-aux/config.sub build-aux/depcomp \
+       build-aux/config.rpath build-aux/config.sub \
        build-aux/install-sh build-aux/ltmain.sh build-aux/missing \
        build-aux/ylwrap
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -1030,6 +1031,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
@@ -1426,9 +1428,12 @@ EXTRA_DIST = .gitignore ChangeLog-2013 autogen.sh \
        gnulib/m4/printf-posix.m4 gnulib/m4/sockpfaf.m4 \
        gnulib/m4/uintmax_t.m4 gnulib/m4/visibility.m4
 
+# Installing in --enable-setuid mode (the default) requires root; disable
+# this so that distcheck can be run as non-root.
 # The default for systemdtmpfilesdir is intentionally not prefix-sensitive,
 # but we need to adjust it in order for distcheck to pass.
 AM_DISTCHECK_CONFIGURE_FLAGS = \
+       --disable-setuid \
        --with-systemdtmpfilesdir=\$${prefix}/lib/tmpfiles.d
 
 
diff --git a/NEWS b/NEWS
index 468cfac..c5eb5a6 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,54 @@
-man-db 2.7.5
-============
+man-db 2.7.6 (11 December 2016)
+===============================
+
+Major changes since man-db 2.7.5:
+
+       Fixes:
+       ------
+
+       o Fix build warnings with Perl 5.22.
+
+       o Document that 'man -K' searches page source, not rendered text.
+
+       o Fix a long-standing bug in man-db's internal cleanup stack
+         mechanism: if a cleanup function was pushed unexpectedly between a
+         push/pop pair, then popping the stack would remove the wrong
+         cleanup function and chaos could ensue.  Avoid this by being more
+         precise about which cleanup function should be popped.
+
+       o SECURITY: Eliminate dangerous setgid-root directories.  In the
+         default configuration, cache files and directories are now owned
+         by man:man rather than man:root; man and mandb are now setgid man
+         as well as setuid man (except in the --disable-setuid case).  This
+         is a much simpler and safer solution to the original problem that
+         caused my predecessor to make directories setgid root, and doesn't
+         introduce any interesting new privilege since the man group's only
+         real purpose is to be the man user's primary group and nothing in
+         cache directories is group-writeable.
+
+         Maintainers of distribution packagers should take care to review
+         their installation rules in light of this change.
+
+         As far as I know this has no CVE ID, but it is described here:
+
+           http://www.halfdog.net/Security/2015/SetgidDirectoryPrivilegeEscalation/
+
+       o Fix manual page translation infrastructure to render tables
+         correctly with po4a 0.47.
+
+       Improvements:
+       -------------
+
+       o man now understands the <page>.<section> form on its command line,
+         so for example 'man chmod.2' is now the same as 'man 2 chmod'.
+         (Contributed by Mihail Konev.)
+
+       o The owner of cache files is now configured separately from whether
+         man and mandb are installed setuid, using the
+         --enable-cache-owner[=USER] option.
+
+man-db 2.7.5 (6 November 2015)
+==============================
 
 Major changes since man-db 2.7.4:
 
diff --git a/README b/README
index b8bf957..561631c 100644 (file)
--- a/README
+++ b/README
@@ -84,14 +84,18 @@ options is extracted from the man-db manual.  It is strongly recommended
 that relevant sections of the manual are read if any of these options are
 used.
 
---enable-setuid[=ARG]
-     By default, man will be installed as a setuid program to user man.  Use
-     this option with an argument to change the setuid owner.
+--enable-cache-owner[=ARG]
+     By default, system-wide cache files will be owned by user man.  Use this
+     option with an argument to change the cache file owner.
+
+--disable-cache-owner
+     Use this option to leave the ownership of system-wide cache files
+     unconstrained.  Users will be allowed to modify them.
 
 --disable-setuid
-     Use this option to install man as a non-setuid program and to change the
-     default cat and database files' access flags to allow users to modify
-     them.
+     By default, man will be installed as a setuid program to the user that
+     owns the system-wide cache files.  Use this option to install man as a
+     non-setuid program instead.
 
 --enable-mandirs=OS
      By default, man-db supports manual page directories in any of several
index 09b82f7..4e89b4e 100644 (file)
@@ -20,32 +20,63 @@ You have another version of autoconf.  It may work, but is not guaranteed to.
 If you have problems, you may need to regenerate the build system entirely.
 To do so, use the procedure documented by the package, typically 'autoreconf'.])])
 
-# pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
-# serial 1 (pkg-config-0.24)
-# 
-# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-#
-# As a special exception to the GNU General Public License, if you
-# distribute this file as part of a program that contains a
-# configuration script generated by Autoconf, you may include it under
-# the same distribution terms that you use for the rest of that program.
-
-# PKG_PROG_PKG_CONFIG([MIN-VERSION])
-# ----------------------------------
+dnl pkg.m4 - Macros to locate and utilise pkg-config.   -*- Autoconf -*-
+dnl serial 11 (pkg-config-0.29)
+dnl
+dnl Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
+dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com>
+dnl
+dnl This program is free software; you can redistribute it and/or modify
+dnl it under the terms of the GNU General Public License as published by
+dnl the Free Software Foundation; either version 2 of the License, or
+dnl (at your option) any later version.
+dnl
+dnl This program is distributed in the hope that it will be useful, but
+dnl WITHOUT ANY WARRANTY; without even the implied warranty of
+dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+dnl General Public License for more details.
+dnl
+dnl You should have received a copy of the GNU General Public License
+dnl along with this program; if not, write to the Free Software
+dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+dnl 02111-1307, USA.
+dnl
+dnl As a special exception to the GNU General Public License, if you
+dnl distribute this file as part of a program that contains a
+dnl configuration script generated by Autoconf, you may include it under
+dnl the same distribution terms that you use for the rest of that
+dnl program.
+
+dnl PKG_PREREQ(MIN-VERSION)
+dnl -----------------------
+dnl Since: 0.29
+dnl
+dnl Verify that the version of the pkg-config macros are at least
+dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's
+dnl installed version of pkg-config, this checks the developer's version
+dnl of pkg.m4 when generating configure.
+dnl
+dnl To ensure that this macro is defined, also add:
+dnl m4_ifndef([PKG_PREREQ],
+dnl     [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])])
+dnl
+dnl See the "Since" comment for each macro you use to see what version
+dnl of the macros you require.
+m4_defun([PKG_PREREQ],
+[m4_define([PKG_MACROS_VERSION], [0.29])
+m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
+    [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])])
+])dnl PKG_PREREQ
+
+dnl PKG_PROG_PKG_CONFIG([MIN-VERSION])
+dnl ----------------------------------
+dnl Since: 0.16
+dnl
+dnl Search for the pkg-config tool and set the PKG_CONFIG variable to
+dnl first found in the path. Checks that the version of pkg-config found
+dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is
+dnl used since that's the first version where most current features of
+dnl pkg-config existed.
 AC_DEFUN([PKG_PROG_PKG_CONFIG],
 [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
 m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
@@ -67,18 +98,19 @@ if test -n "$PKG_CONFIG"; then
                PKG_CONFIG=""
        fi
 fi[]dnl
-])# PKG_PROG_PKG_CONFIG
+])dnl PKG_PROG_PKG_CONFIG
 
-# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
-#
-# Check to see whether a particular set of modules exists.  Similar
-# to PKG_CHECK_MODULES(), but does not set variables or print errors.
-#
-# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
-# only at the first occurence in configure.ac, so if the first place
-# it's called might be skipped (such as if it is within an "if", you
-# have to call PKG_CHECK_EXISTS manually
-# --------------------------------------------------------------
+dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
+dnl -------------------------------------------------------------------
+dnl Since: 0.18
+dnl
+dnl Check to see whether a particular set of modules exists. Similar to
+dnl PKG_CHECK_MODULES(), but does not set variables or print errors.
+dnl
+dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
+dnl only at the first occurence in configure.ac, so if the first place
+dnl it's called might be skipped (such as if it is within an "if", you
+dnl have to call PKG_CHECK_EXISTS manually
 AC_DEFUN([PKG_CHECK_EXISTS],
 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
 if test -n "$PKG_CONFIG" && \
@@ -88,8 +120,10 @@ m4_ifvaln([$3], [else
   $3])dnl
 fi])
 
-# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
-# ---------------------------------------------
+dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
+dnl ---------------------------------------------
+dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting
+dnl pkg_failed based on the result.
 m4_define([_PKG_CONFIG],
 [if test -n "$$1"; then
     pkg_cv_[]$1="$$1"
@@ -101,10 +135,11 @@ m4_define([_PKG_CONFIG],
  else
     pkg_failed=untried
 fi[]dnl
-])# _PKG_CONFIG
+])dnl _PKG_CONFIG
 
-# _PKG_SHORT_ERRORS_SUPPORTED
-# -----------------------------
+dnl _PKG_SHORT_ERRORS_SUPPORTED
+dnl ---------------------------
+dnl Internal check to see if pkg-config supports short errors.
 AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])
 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
@@ -112,19 +147,17 @@ if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 else
         _pkg_short_errors_supported=no
 fi[]dnl
-])# _PKG_SHORT_ERRORS_SUPPORTED
+])dnl _PKG_SHORT_ERRORS_SUPPORTED
 
 
-# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
-# [ACTION-IF-NOT-FOUND])
-#
-#
-# Note that if there is a possibility the first call to
-# PKG_CHECK_MODULES might not happen, you should be sure to include an
-# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
-#
-#
-# --------------------------------------------------------------
+dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
+dnl   [ACTION-IF-NOT-FOUND])
+dnl --------------------------------------------------------------
+dnl Since: 0.4.0
+dnl
+dnl Note that if there is a possibility the first call to
+dnl PKG_CHECK_MODULES might not happen, you should be sure to include an
+dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
 AC_DEFUN([PKG_CHECK_MODULES],
 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
 AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
@@ -178,16 +211,40 @@ else
         AC_MSG_RESULT([yes])
        $3
 fi[]dnl
-])# PKG_CHECK_MODULES
+])dnl PKG_CHECK_MODULES
 
 
-# PKG_INSTALLDIR(DIRECTORY)
-# -------------------------
-# Substitutes the variable pkgconfigdir as the location where a module
-# should install pkg-config .pc files. By default the directory is
-# $libdir/pkgconfig, but the default can be changed by passing
-# DIRECTORY. The user can override through the --with-pkgconfigdir
-# parameter.
+dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
+dnl   [ACTION-IF-NOT-FOUND])
+dnl ---------------------------------------------------------------------
+dnl Since: 0.29
+dnl
+dnl Checks for existence of MODULES and gathers its build flags with
+dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags
+dnl and VARIABLE-PREFIX_LIBS from --libs.
+dnl
+dnl Note that if there is a possibility the first call to
+dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to
+dnl include an explicit call to PKG_PROG_PKG_CONFIG in your
+dnl configure.ac.
+AC_DEFUN([PKG_CHECK_MODULES_STATIC],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+_save_PKG_CONFIG=$PKG_CONFIG
+PKG_CONFIG="$PKG_CONFIG --static"
+PKG_CHECK_MODULES($@)
+PKG_CONFIG=$_save_PKG_CONFIG[]dnl
+])dnl PKG_CHECK_MODULES_STATIC
+
+
+dnl PKG_INSTALLDIR([DIRECTORY])
+dnl -------------------------
+dnl Since: 0.27
+dnl
+dnl Substitutes the variable pkgconfigdir as the location where a module
+dnl should install pkg-config .pc files. By default the directory is
+dnl $libdir/pkgconfig, but the default can be changed by passing
+dnl DIRECTORY. The user can override through the --with-pkgconfigdir
+dnl parameter.
 AC_DEFUN([PKG_INSTALLDIR],
 [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
 m4_pushdef([pkg_description],
@@ -198,16 +255,18 @@ AC_ARG_WITH([pkgconfigdir],
 AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
 m4_popdef([pkg_default])
 m4_popdef([pkg_description])
-]) dnl PKG_INSTALLDIR
+])dnl PKG_INSTALLDIR
 
 
-# PKG_NOARCH_INSTALLDIR(DIRECTORY)
-# -------------------------
-# Substitutes the variable noarch_pkgconfigdir as the location where a
-# module should install arch-independent pkg-config .pc files. By
-# default the directory is $datadir/pkgconfig, but the default can be
-# changed by passing DIRECTORY. The user can override through the
-# --with-noarch-pkgconfigdir parameter.
+dnl PKG_NOARCH_INSTALLDIR([DIRECTORY])
+dnl --------------------------------
+dnl Since: 0.27
+dnl
+dnl Substitutes the variable noarch_pkgconfigdir as the location where a
+dnl module should install arch-independent pkg-config .pc files. By
+dnl default the directory is $datadir/pkgconfig, but the default can be
+dnl changed by passing DIRECTORY. The user can override through the
+dnl --with-noarch-pkgconfigdir parameter.
 AC_DEFUN([PKG_NOARCH_INSTALLDIR],
 [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
 m4_pushdef([pkg_description],
@@ -218,13 +277,15 @@ AC_ARG_WITH([noarch-pkgconfigdir],
 AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
 m4_popdef([pkg_default])
 m4_popdef([pkg_description])
-]) dnl PKG_NOARCH_INSTALLDIR
+])dnl PKG_NOARCH_INSTALLDIR
 
 
-# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
-# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
-# -------------------------------------------
-# Retrieves the value of the pkg-config variable for the given module.
+dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
+dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
+dnl -------------------------------------------
+dnl Since: 0.28
+dnl
+dnl Retrieves the value of the pkg-config variable for the given module.
 AC_DEFUN([PKG_CHECK_VAR],
 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
 AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
@@ -233,7 +294,7 @@ _PKG_CONFIG([$1], [variable="][$3]["], [$2])
 AS_VAR_COPY([$1], [pkg_cv_][$1])
 
 AS_VAR_IF([$1], [""], [$5], [$4])dnl
-])# PKG_CHECK_VAR
+])dnl PKG_CHECK_VAR
 
 # Copyright (C) 2002-2014 Free Software Foundation, Inc.
 #
@@ -1463,6 +1524,7 @@ AC_SUBST([am__untar])
 
 m4_include([m4/man-arg-automatic-create.m4])
 m4_include([m4/man-arg-automatic-update.m4])
+m4_include([m4/man-arg-cache-owner.m4])
 m4_include([m4/man-arg-cats.m4])
 m4_include([m4/man-arg-config-file.m4])
 m4_include([m4/man-arg-db.m4])
index 1659250..2e9ad7f 100755 (executable)
@@ -1,8 +1,8 @@
 #! /bin/sh
 # Attempt to guess a canonical system name.
-#   Copyright 1992-2015 Free Software Foundation, Inc.
+#   Copyright 1992-2016 Free Software Foundation, Inc.
 
-timestamp='2015-08-20'
+timestamp='2016-10-02'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -27,7 +27,7 @@ timestamp='2015-08-20'
 # Originally written by Per Bothner; maintained since 2000 by Ben Elliston.
 #
 # You can get the latest version of this script from:
-# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
+# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
 #
 # Please send patches to <config-patches@gnu.org>.
 
@@ -50,7 +50,7 @@ version="\
 GNU config.guess ($timestamp)
 
 Originally written by Per Bothner.
-Copyright 1992-2015 Free Software Foundation, Inc.
+Copyright 1992-2016 Free Software Foundation, Inc.
 
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -186,9 +186,12 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
            *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
        esac
        # The Operating System including object format, if it has switched
-       # to ELF recently, or will in the future.
+       # to ELF recently (or will in the future) and ABI.
        case "${UNAME_MACHINE_ARCH}" in
-           arm*|earm*|i386|m68k|ns32k|sh3*|sparc|vax)
+           earm*)
+               os=netbsdelf
+               ;;
+           arm*|i386|m68k|ns32k|sh3*|sparc|vax)
                eval $set_cc_for_build
                if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
                        | grep -q __ELF__
@@ -237,6 +240,10 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
        UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
        echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
        exit ;;
+    *:LibertyBSD:*:*)
+       UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'`
+       echo ${UNAME_MACHINE_ARCH}-unknown-libertybsd${UNAME_RELEASE}
+       exit ;;
     *:ekkoBSD:*:*)
        echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
        exit ;;
@@ -268,42 +275,42 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
        ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1`
        case "$ALPHA_CPU_TYPE" in
            "EV4 (21064)")
-               UNAME_MACHINE="alpha" ;;
+               UNAME_MACHINE=alpha ;;
            "EV4.5 (21064)")
-               UNAME_MACHINE="alpha" ;;
+               UNAME_MACHINE=alpha ;;
            "LCA4 (21066/21068)")
-               UNAME_MACHINE="alpha" ;;
+               UNAME_MACHINE=alpha ;;
            "EV5 (21164)")
-               UNAME_MACHINE="alphaev5" ;;
+               UNAME_MACHINE=alphaev5 ;;
            "EV5.6 (21164A)")
-               UNAME_MACHINE="alphaev56" ;;
+               UNAME_MACHINE=alphaev56 ;;
            "EV5.6 (21164PC)")
-               UNAME_MACHINE="alphapca56" ;;
+               UNAME_MACHINE=alphapca56 ;;
            "EV5.7 (21164PC)")
-               UNAME_MACHINE="alphapca57" ;;
+               UNAME_MACHINE=alphapca57 ;;
            "EV6 (21264)")
-               UNAME_MACHINE="alphaev6" ;;
+               UNAME_MACHINE=alphaev6 ;;
            "EV6.7 (21264A)")
-               UNAME_MACHINE="alphaev67" ;;
+               UNAME_MACHINE=alphaev67 ;;
            "EV6.8CB (21264C)")
-               UNAME_MACHINE="alphaev68" ;;
+               UNAME_MACHINE=alphaev68 ;;
            "EV6.8AL (21264B)")
-               UNAME_MACHINE="alphaev68" ;;
+               UNAME_MACHINE=alphaev68 ;;
            "EV6.8CX (21264D)")
-               UNAME_MACHINE="alphaev68" ;;
+               UNAME_MACHINE=alphaev68 ;;
            "EV6.9A (21264/EV69A)")
-               UNAME_MACHINE="alphaev69" ;;
+               UNAME_MACHINE=alphaev69 ;;
            "EV7 (21364)")
-               UNAME_MACHINE="alphaev7" ;;
+               UNAME_MACHINE=alphaev7 ;;
            "EV7.9 (21364A)")
-               UNAME_MACHINE="alphaev79" ;;
+               UNAME_MACHINE=alphaev79 ;;
        esac
        # A Pn.n version is a patched version.
        # A Vn.n version is a released version.
        # A Tn.n version is a released field test version.
        # A Xn.n version is an unreleased experimental baselevel.
        # 1.2 uses "1.2" for uname -r.
-       echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
+       echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
        # Reset EXIT trap before exiting to avoid spurious non-zero exit code.
        exitcode=$?
        trap '' 0
@@ -376,16 +383,16 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
        exit ;;
     i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
        eval $set_cc_for_build
-       SUN_ARCH="i386"
+       SUN_ARCH=i386
        # If there is a compiler, see if it is configured for 64-bit objects.
        # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
        # This test works for both compilers.
-       if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
+       if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
            if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
-               (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
+               (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
                grep IS_64BIT_ARCH >/dev/null
            then
-               SUN_ARCH="x86_64"
+               SUN_ARCH=x86_64
            fi
        fi
        echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
@@ -410,7 +417,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
        exit ;;
     sun*:*:4.2BSD:*)
        UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
-       test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
+       test "x${UNAME_RELEASE}" = x && UNAME_RELEASE=3
        case "`/bin/arch`" in
            sun3)
                echo m68k-sun-sunos${UNAME_RELEASE}
@@ -635,13 +642,13 @@ EOF
                    sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
                    sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
                    case "${sc_cpu_version}" in
-                     523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0
-                     528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1
+                     523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0
+                     528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1
                      532)                      # CPU_PA_RISC2_0
                        case "${sc_kernel_bits}" in
-                         32) HP_ARCH="hppa2.0n" ;;
-                         64) HP_ARCH="hppa2.0w" ;;
-                         '') HP_ARCH="hppa2.0" ;;   # HP-UX 10.20
+                         32) HP_ARCH=hppa2.0n ;;
+                         64) HP_ARCH=hppa2.0w ;;
+                         '') HP_ARCH=hppa2.0 ;;   # HP-UX 10.20
                        esac ;;
                    esac
                fi
@@ -680,11 +687,11 @@ EOF
                    exit (0);
                }
 EOF
-                   (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
+                   (CCOPTS="" $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
                    test -z "$HP_ARCH" && HP_ARCH=hppa
                fi ;;
        esac
-       if [ ${HP_ARCH} = "hppa2.0w" ]
+       if [ ${HP_ARCH} = hppa2.0w ]
        then
            eval $set_cc_for_build
 
@@ -697,12 +704,12 @@ EOF
            # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess
            # => hppa64-hp-hpux11.23
 
-           if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) |
+           if echo __LP64__ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) |
                grep -q __LP64__
            then
-               HP_ARCH="hppa2.0w"
+               HP_ARCH=hppa2.0w
            else
-               HP_ARCH="hppa64"
+               HP_ARCH=hppa64
            fi
        fi
        echo ${HP_ARCH}-hp-hpux${HPUX_REV}
@@ -807,14 +814,14 @@ EOF
        echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
        exit ;;
     F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
-       FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
-       FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
+       FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
+       FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
        FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
        echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
        exit ;;
     5000:UNIX_System_V:4.*:*)
-       FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
-       FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'`
+       FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
+       FUJITSU_REL=`echo ${UNAME_RELEASE} | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
        echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
        exit ;;
     i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
@@ -896,7 +903,7 @@ EOF
        exit ;;
     *:GNU/*:*:*)
        # other systems with GNU libc and userland
-       echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}
+       echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}
        exit ;;
     i*86:Minix:*:*)
        echo ${UNAME_MACHINE}-pc-minix
@@ -919,7 +926,7 @@ EOF
          EV68*) UNAME_MACHINE=alphaev68 ;;
        esac
        objdump --private-headers /bin/sh | grep -q ld.so.1
-       if test "$?" = 0 ; then LIBC="gnulibc1" ; fi
+       if test "$?" = 0 ; then LIBC=gnulibc1 ; fi
        echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
        exit ;;
     arc:Linux:*:* | arceb:Linux:*:*)
@@ -965,6 +972,9 @@ EOF
     ia64:Linux:*:*)
        echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
        exit ;;
+    k1om:Linux:*:*)
+       echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
+       exit ;;
     m32r*:Linux:*:*)
        echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
        exit ;;
@@ -990,6 +1000,9 @@ EOF
        eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
        test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
        ;;
+    mips64el:Linux:*:*)
+       echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
+       exit ;;
     openrisc*:Linux:*:*)
        echo or1k-unknown-linux-${LIBC}
        exit ;;
@@ -1022,6 +1035,9 @@ EOF
     ppcle:Linux:*:*)
        echo powerpcle-unknown-linux-${LIBC}
        exit ;;
+    riscv32:Linux:*:* | riscv64:Linux:*:*)
+       echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
+       exit ;;
     s390:Linux:*:* | s390x:Linux:*:*)
        echo ${UNAME_MACHINE}-ibm-linux-${LIBC}
        exit ;;
@@ -1120,7 +1136,7 @@ EOF
        # uname -m prints for DJGPP always 'pc', but it prints nothing about
        # the processor, so we play safe by assuming i586.
        # Note: whatever this is, it MUST be the same as what config.sub
-       # prints for the "djgpp" host, or else GDB configury will decide that
+       # prints for the "djgpp" host, or else GDB configure will decide that
        # this is a cross-build.
        echo i586-pc-msdosdjgpp
        exit ;;
@@ -1269,6 +1285,9 @@ EOF
     SX-8R:SUPER-UX:*:*)
        echo sx8r-nec-superux${UNAME_RELEASE}
        exit ;;
+    SX-ACE:SUPER-UX:*:*)
+       echo sxace-nec-superux${UNAME_RELEASE}
+       exit ;;
     Power*:Rhapsody:*:*)
        echo powerpc-apple-rhapsody${UNAME_RELEASE}
        exit ;;
@@ -1282,9 +1301,9 @@ EOF
            UNAME_PROCESSOR=powerpc
        fi
        if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then
-           if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
+           if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
                if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
-                   (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
+                   (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
                    grep IS_64BIT_ARCH >/dev/null
                then
                    case $UNAME_PROCESSOR in
@@ -1306,7 +1325,7 @@ EOF
        exit ;;
     *:procnto*:*:* | *:QNX:[0123456789]*:*)
        UNAME_PROCESSOR=`uname -p`
-       if test "$UNAME_PROCESSOR" = "x86"; then
+       if test "$UNAME_PROCESSOR" = x86; then
                UNAME_PROCESSOR=i386
                UNAME_MACHINE=pc
        fi
@@ -1337,7 +1356,7 @@ EOF
        # "uname -m" is not consistent, so use $cputype instead. 386
        # is converted to i386 for consistency with other x86
        # operating systems.
-       if test "$cputype" = "386"; then
+       if test "$cputype" = 386; then
            UNAME_MACHINE=i386
        else
            UNAME_MACHINE="$cputype"
@@ -1379,7 +1398,7 @@ EOF
        echo i386-pc-xenix
        exit ;;
     i*86:skyos:*:*)
-       echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
+       echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE} | sed -e 's/ .*$//'`
        exit ;;
     i*86:rdos:*:*)
        echo ${UNAME_MACHINE}-pc-rdos
@@ -1390,23 +1409,25 @@ EOF
     x86_64:VMkernel:*:*)
        echo ${UNAME_MACHINE}-unknown-esx
        exit ;;
+    amd64:Isilon\ OneFS:*:*)
+       echo x86_64-unknown-onefs
+       exit ;;
 esac
 
 cat >&2 <<EOF
 $0: unable to guess system type
 
-This script, last modified $timestamp, has failed to recognize
-the operating system you are using. It is advised that you
-download the most up to date version of the config scripts from
+This script (version $timestamp), has failed to recognize the
+operating system you are using. If your script is old, overwrite
+config.guess and config.sub with the latest versions from:
 
-  http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
+  http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
 and
-  http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
+  http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
 
-If the version you run ($0) is already up to date, please
-send the following data and any information you think might be
-pertinent to <config-patches@gnu.org> in order to provide the needed
-information to handle your system.
+If $0 has already been updated, send the following data and any
+information you think might be pertinent to config-patches@gnu.org to
+provide the necessary information to handle your system.
 
 config.guess timestamp = $timestamp
 
index 1acc966..dd2ca93 100755 (executable)
@@ -1,8 +1,8 @@
 #! /bin/sh
 # Configuration validation subroutine script.
-#   Copyright 1992-2015 Free Software Foundation, Inc.
+#   Copyright 1992-2016 Free Software Foundation, Inc.
 
-timestamp='2015-08-20'
+timestamp='2016-11-04'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -33,7 +33,7 @@ timestamp='2015-08-20'
 # Otherwise, we print the canonical config type on stdout and succeed.
 
 # You can get the latest version of this script from:
-# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
+# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
 
 # This file is supposed to be the same for all GNU packages
 # and recognize all the CPU types, system types and aliases
@@ -53,8 +53,7 @@ timestamp='2015-08-20'
 me=`echo "$0" | sed -e 's,.*/,,'`
 
 usage="\
-Usage: $0 [OPTION] CPU-MFR-OPSYS
-       $0 [OPTION] ALIAS
+Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS
 
 Canonicalize a configuration name.
 
@@ -68,7 +67,7 @@ Report bugs and patches to <config-patches@gnu.org>."
 version="\
 GNU config.sub ($timestamp)
 
-Copyright 1992-2015 Free Software Foundation, Inc.
+Copyright 1992-2016 Free Software Foundation, Inc.
 
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -118,7 +117,7 @@ case $maybe_os in
   nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
   linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
   knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \
-  kopensolaris*-gnu* | \
+  kopensolaris*-gnu* | cloudabi*-eabi* | \
   storm-chaos* | os2-emx* | rtmk-nova*)
     os=-$maybe_os
     basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
@@ -302,6 +301,7 @@ case $basic_machine in
        | open8 | or1k | or1knd | or32 \
        | pdp10 | pdp11 | pj | pjl \
        | powerpc | powerpc64 | powerpc64le | powerpcle \
+       | pru \
        | pyramid \
        | riscv32 | riscv64 \
        | rl78 | rx \
@@ -429,6 +429,7 @@ case $basic_machine in
        | orion-* \
        | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
        | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
+       | pru-* \
        | pyramid-* \
        | riscv32-* | riscv64-* \
        | rl78-* | romp-* | rs6000-* | rx-* \
@@ -521,7 +522,7 @@ case $basic_machine in
                basic_machine=i386-pc
                os=-aros
                ;;
-        asmjs)
+       asmjs)
                basic_machine=asmjs-unknown
                ;;
        aux)
@@ -644,6 +645,14 @@ case $basic_machine in
                basic_machine=m68k-bull
                os=-sysv3
                ;;
+       e500v[12])
+               basic_machine=powerpc-unknown
+               os=$os"spe"
+               ;;
+       e500v[12]-*)
+               basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
+               os=$os"spe"
+               ;;
        ebmon29k)
                basic_machine=a29k-amd
                os=-ebmon
@@ -1023,7 +1032,7 @@ case $basic_machine in
        ppc-* | ppcbe-*)
                basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
                ;;
-       ppcle | powerpclittle | ppc-le | powerpc-little)
+       ppcle | powerpclittle)
                basic_machine=powerpcle-unknown
                ;;
        ppcle-* | powerpclittle-*)
@@ -1033,7 +1042,7 @@ case $basic_machine in
                ;;
        ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
                ;;
-       ppc64le | powerpc64little | ppc64-le | powerpc64-little)
+       ppc64le | powerpc64little)
                basic_machine=powerpc64le-unknown
                ;;
        ppc64le-* | powerpc64little-*)
@@ -1383,14 +1392,14 @@ case $os in
              | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
              | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
              | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
-             | -bitrig* | -openbsd* | -solidbsd* \
+             | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \
              | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
              | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
              | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
              | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
              | -chorusos* | -chorusrdb* | -cegcc* \
              | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
-             | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \
+             | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \
              | -linux-newlib* | -linux-musl* | -linux-uclibc* \
              | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \
              | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
@@ -1399,7 +1408,8 @@ case $os in
              | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
              | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
              | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
-             | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* | -tirtos*)
+             | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \
+             | -onefs* | -tirtos* | -phoenix* | -fuchsia*)
        # Remember, each alternative MUST END IN *, to match a version number.
                ;;
        -qnx*)
@@ -1531,6 +1541,8 @@ case $os in
                ;;
        -nacl*)
                ;;
+       -ios)
+               ;;
        -none)
                ;;
        *)
index bffda54..a736cf9 100644 (file)
@@ -1,9 +1,12 @@
+#! /bin/sh
+## DO NOT EDIT - This file generated from ./build-aux/ltmain.in
+##               by inline-source v2014-01-03.01
 
-# libtool (GNU libtool) 2.4.2
+# libtool (GNU libtool) 2.4.6
+# Provide generalized library-building support services.
 # Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
 
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006,
-# 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
+# Copyright (C) 1996-2015 Free Software Foundation, Inc.
 # This is free software; see the source for copying conditions.  There is NO
 # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
 # General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with GNU Libtool; see the file COPYING.  If not, a copy
-# can be downloaded from http://www.gnu.org/licenses/gpl.html,
-# or obtained by writing to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-# Usage: $progname [OPTION]... [MODE-ARG]...
-#
-# Provide generalized library-building support services.
-#
-#       --config             show all configuration variables
-#       --debug              enable verbose shell tracing
-#   -n, --dry-run            display commands without modifying any files
-#       --features           display basic configuration information and exit
-#       --mode=MODE          use operation mode MODE
-#       --preserve-dup-deps  don't remove duplicate dependency libraries
-#       --quiet, --silent    don't print informational messages
-#       --no-quiet, --no-silent
-#                            print informational messages (default)
-#       --no-warn            don't display warning messages
-#       --tag=TAG            use configuration variables from tag TAG
-#   -v, --verbose            print more informational messages than default
-#       --no-verbose         don't print the extra informational messages
-#       --version            print version information
-#   -h, --help, --help-all   print short, long, or detailed help message
-#
-# MODE must be one of the following:
-#
-#         clean              remove files from the build directory
-#         compile            compile a source file into a libtool object
-#         execute            automatically set library path, then run a program
-#         finish             complete the installation of libtool libraries
-#         install            install libraries or executables
-#         link               create a library or an executable
-#         uninstall          remove libraries from an installed directory
-#
-# MODE-ARGS vary depending on the MODE.  When passed as first option,
-# `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that.
-# Try `$progname --help --mode=MODE' for a more detailed description of MODE.
-#
-# When reporting a bug, please describe a test case to reproduce it and
-# include the following information:
-#
-#         host-triplet:        $host
-#         shell:               $SHELL
-#         compiler:            $LTCC
-#         compiler flags:              $LTCFLAGS
-#         linker:              $LD (gnu? $with_gnu_ld)
-#         $progname:   (GNU libtool) 2.4.2 Debian-2.4.2-1.11
-#         automake:    $automake_version
-#         autoconf:    $autoconf_version
-#
-# Report bugs to <bug-libtool@gnu.org>.
-# GNU libtool home page: <http://www.gnu.org/software/libtool/>.
-# General help using GNU software: <http://www.gnu.org/gethelp/>.
 
 PROGRAM=libtool
 PACKAGE=libtool
-VERSION="2.4.2 Debian-2.4.2-1.11"
-TIMESTAMP=""
-package_revision=1.3337
+VERSION="2.4.6 Debian-2.4.6-2"
+package_revision=2.4.6
 
-# Be Bourne compatible
-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+
+## ------ ##
+## Usage. ##
+## ------ ##
+
+# Run './libtool --help' for help with using this script from the
+# command line.
+
+
+## ------------------------------- ##
+## User overridable command paths. ##
+## ------------------------------- ##
+
+# After configure completes, it has a better idea of some of the
+# shell tools we need than the defaults used by the functions shared
+# with bootstrap, so set those here where they can still be over-
+# ridden by the user, but otherwise take precedence.
+
+: ${AUTOCONF="autoconf"}
+: ${AUTOMAKE="automake"}
+
+
+## -------------------------- ##
+## Source external libraries. ##
+## -------------------------- ##
+
+# Much of our low-level functionality needs to be sourced from external
+# libraries, which are installed to $pkgauxdir.
+
+# Set a version string for this script.
+scriptversion=2015-01-20.17; # UTC
+
+# General shell script boiler plate, and helper functions.
+# Written by Gary V. Vaughan, 2004
+
+# Copyright (C) 2004-2015 Free Software Foundation, Inc.
+# This is free software; see the source for copying conditions.  There is NO
+# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+
+# As a special exception to the GNU General Public License, if you distribute
+# this file as part of a program or library that is built using GNU Libtool,
+# you may include this file under the same distribution terms that you use
+# for the rest of that program.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU
+# General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+# Please report bugs or propose patches to gary@gnu.org.
+
+
+## ------ ##
+## Usage. ##
+## ------ ##
+
+# Evaluate this file near the top of your script to gain access to
+# the functions and variables defined here:
+#
+#   . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh
+#
+# If you need to override any of the default environment variable
+# settings, do that before evaluating this file.
+
+
+## -------------------- ##
+## Shell normalisation. ##
+## -------------------- ##
+
+# Some shells need a little help to be as Bourne compatible as possible.
+# Before doing anything else, make sure all that help has been provided!
+
+DUALCASE=1; export DUALCASE # for MKS sh
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
   emulate sh
   NULLCMD=:
-  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
   # is contrary to our usage.  Disable this feature.
   alias -g '${1+"$@"}'='"$@"'
   setopt NO_GLOB_SUBST
 else
-  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+  case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac
 fi
-BIN_SH=xpg4; export BIN_SH # for Tru64
-DUALCASE=1; export DUALCASE # for MKS sh
-
-# A function that is used when there is no print builtin or printf.
-func_fallback_echo ()
-{
-  eval 'cat <<_LTECHO_EOF
-$1
-_LTECHO_EOF'
-}
 
-# NLS nuisances: We save the old values to restore during execute mode.
-lt_user_locale=
-lt_safe_locale=
-for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
+# NLS nuisances: We save the old values in case they are required later.
+_G_user_locale=
+_G_safe_locale=
+for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
 do
-  eval "if test \"\${$lt_var+set}\" = set; then
-          save_$lt_var=\$$lt_var
-          $lt_var=C
-         export $lt_var
-         lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\"
-         lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\"
+  eval "if test set = \"\${$_G_var+set}\"; then
+          save_$_G_var=\$$_G_var
+          $_G_var=C
+         export $_G_var
+         _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\"
+         _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\"
        fi"
 done
-LC_ALL=C
-LANGUAGE=C
-export LANGUAGE LC_ALL
 
-$lt_unset CDPATH
+# CDPATH.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
+# Make sure IFS has a sensible default
+sp=' '
+nl='
+'
+IFS="$sp       $nl"
+
+# There are apparently some retarded systems that use ';' as a PATH separator!
+if test "${PATH_SEPARATOR+set}" != set; then
+  PATH_SEPARATOR=:
+  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
+    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
+      PATH_SEPARATOR=';'
+  }
+fi
 
-# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
-# is ksh but when the shell is invoked as "sh" and the current value of
-# the _XPG environment variable is not equal to 1 (one), the special
-# positional parameter $0, within a function call, is the name of the
-# function.
-progpath="$0"
 
 
+## ------------------------- ##
+## Locate command utilities. ##
+## ------------------------- ##
+
+
+# func_executable_p FILE
+# ----------------------
+# Check that FILE is an executable regular file.
+func_executable_p ()
+{
+    test -f "$1" && test -x "$1"
+}
+
+
+# func_path_progs PROGS_LIST CHECK_FUNC [PATH]
+# --------------------------------------------
+# Search for either a program that responds to --version with output
+# containing "GNU", or else returned by CHECK_FUNC otherwise, by
+# trying all the directories in PATH with each of the elements of
+# PROGS_LIST.
+#
+# CHECK_FUNC should accept the path to a candidate program, and
+# set $func_check_prog_result if it truncates its output less than
+# $_G_path_prog_max characters.
+func_path_progs ()
+{
+    _G_progs_list=$1
+    _G_check_func=$2
+    _G_PATH=${3-"$PATH"}
+
+    _G_path_prog_max=0
+    _G_path_prog_found=false
+    _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:}
+    for _G_dir in $_G_PATH; do
+      IFS=$_G_save_IFS
+      test -z "$_G_dir" && _G_dir=.
+      for _G_prog_name in $_G_progs_list; do
+        for _exeext in '' .EXE; do
+          _G_path_prog=$_G_dir/$_G_prog_name$_exeext
+          func_executable_p "$_G_path_prog" || continue
+          case `"$_G_path_prog" --version 2>&1` in
+            *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;;
+            *)     $_G_check_func $_G_path_prog
+                  func_path_progs_result=$func_check_prog_result
+                  ;;
+          esac
+          $_G_path_prog_found && break 3
+        done
+      done
+    done
+    IFS=$_G_save_IFS
+    test -z "$func_path_progs_result" && {
+      echo "no acceptable sed could be found in \$PATH" >&2
+      exit 1
+    }
+}
+
+
+# We want to be able to use the functions in this file before configure
+# has figured out where the best binaries are kept, which means we have
+# to search for them ourselves - except when the results are already set
+# where we skip the searches.
+
+# Unless the user overrides by setting SED, search the path for either GNU
+# sed, or the sed that truncates its output the least.
+test -z "$SED" && {
+  _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/
+  for _G_i in 1 2 3 4 5 6 7; do
+    _G_sed_script=$_G_sed_script$nl$_G_sed_script
+  done
+  echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed
+  _G_sed_script=
+
+  func_check_prog_sed ()
+  {
+    _G_path_prog=$1
+
+    _G_count=0
+    printf 0123456789 >conftest.in
+    while :
+    do
+      cat conftest.in conftest.in >conftest.tmp
+      mv conftest.tmp conftest.in
+      cp conftest.in conftest.nl
+      echo '' >> conftest.nl
+      "$_G_path_prog" -f conftest.sed <conftest.nl >conftest.out 2>/dev/null || break
+      diff conftest.out conftest.nl >/dev/null 2>&1 || break
+      _G_count=`expr $_G_count + 1`
+      if test "$_G_count" -gt "$_G_path_prog_max"; then
+        # Best one so far, save it but keep looking for a better one
+        func_check_prog_result=$_G_path_prog
+        _G_path_prog_max=$_G_count
+      fi
+      # 10*(2^10) chars as input seems more than enough
+      test 10 -lt "$_G_count" && break
+    done
+    rm -f conftest.in conftest.tmp conftest.nl conftest.out
+  }
+
+  func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin
+  rm -f conftest.sed
+  SED=$func_path_progs_result
+}
+
+
+# Unless the user overrides by setting GREP, search the path for either GNU
+# grep, or the grep that truncates its output the least.
+test -z "$GREP" && {
+  func_check_prog_grep ()
+  {
+    _G_path_prog=$1
+
+    _G_count=0
+    _G_path_prog_max=0
+    printf 0123456789 >conftest.in
+    while :
+    do
+      cat conftest.in conftest.in >conftest.tmp
+      mv conftest.tmp conftest.in
+      cp conftest.in conftest.nl
+      echo 'GREP' >> conftest.nl
+      "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' <conftest.nl >conftest.out 2>/dev/null || break
+      diff conftest.out conftest.nl >/dev/null 2>&1 || break
+      _G_count=`expr $_G_count + 1`
+      if test "$_G_count" -gt "$_G_path_prog_max"; then
+        # Best one so far, save it but keep looking for a better one
+        func_check_prog_result=$_G_path_prog
+        _G_path_prog_max=$_G_count
+      fi
+      # 10*(2^10) chars as input seems more than enough
+      test 10 -lt "$_G_count" && break
+    done
+    rm -f conftest.in conftest.tmp conftest.nl conftest.out
+  }
+
+  func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin
+  GREP=$func_path_progs_result
+}
+
+
+## ------------------------------- ##
+## User overridable command paths. ##
+## ------------------------------- ##
+
+# All uppercase variable names are used for environment variables.  These
+# variables can be overridden by the user before calling a script that
+# uses them if a suitable command of that name is not already available
+# in the command search PATH.
 
 : ${CP="cp -f"}
-test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'}
+: ${ECHO="printf %s\n"}
+: ${EGREP="$GREP -E"}
+: ${FGREP="$GREP -F"}
+: ${LN_S="ln -s"}
 : ${MAKE="make"}
 : ${MKDIR="mkdir"}
 : ${MV="mv -f"}
 : ${RM="rm -f"}
 : ${SHELL="${CONFIG_SHELL-/bin/sh}"}
-: ${Xsed="$SED -e 1s/^X//"}
-
-# Global variables:
-EXIT_SUCCESS=0
-EXIT_FAILURE=1
-EXIT_MISMATCH=63  # $? = 63 is used to indicate version mismatch to missing.
-EXIT_SKIP=77     # $? = 77 is used to indicate a skipped test to automake.
-
-exit_status=$EXIT_SUCCESS
-
-# Make sure IFS has a sensible default
-lt_nl='
-'
-IFS="  $lt_nl"
 
-dirname="s,/[^/]*$,,"
-basename="s,^.*/,,"
 
-# func_dirname file append nondir_replacement
-# Compute the dirname of FILE.  If nonempty, add APPEND to the result,
-# otherwise set result to NONDIR_REPLACEMENT.
-func_dirname ()
-{
-    func_dirname_result=`$ECHO "${1}" | $SED "$dirname"`
-    if test "X$func_dirname_result" = "X${1}"; then
-      func_dirname_result="${3}"
-    else
-      func_dirname_result="$func_dirname_result${2}"
-    fi
-} # func_dirname may be replaced by extended shell implementation
+## -------------------- ##
+## Useful sed snippets. ##
+## -------------------- ##
 
+sed_dirname='s|/[^/]*$||'
+sed_basename='s|^.*/||'
 
-# func_basename file
-func_basename ()
-{
-    func_basename_result=`$ECHO "${1}" | $SED "$basename"`
-} # func_basename may be replaced by extended shell implementation
+# Sed substitution that helps us do robust quoting.  It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
 
+# Same as above, but do not quote variable references.
+sed_double_quote_subst='s/\(["`\\]\)/\\\1/g'
 
-# func_dirname_and_basename file append nondir_replacement
-# perform func_basename and func_dirname in a single function
-# call:
-#   dirname:  Compute the dirname of FILE.  If nonempty,
-#             add APPEND to the result, otherwise set result
-#             to NONDIR_REPLACEMENT.
-#             value returned in "$func_dirname_result"
-#   basename: Compute filename of FILE.
-#             value retuned in "$func_basename_result"
-# Implementation must be kept synchronized with func_dirname
-# and func_basename. For efficiency, we do not delegate to
-# those functions but instead duplicate the functionality here.
-func_dirname_and_basename ()
-{
-    # Extract subdirectory from the argument.
-    func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"`
-    if test "X$func_dirname_result" = "X${1}"; then
-      func_dirname_result="${3}"
-    else
-      func_dirname_result="$func_dirname_result${2}"
-    fi
-    func_basename_result=`$ECHO "${1}" | $SED -e "$basename"`
-} # func_dirname_and_basename may be replaced by extended shell implementation
+# Sed substitution that turns a string into a regex matching for the
+# string literally.
+sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g'
 
+# Sed substitution that converts a w32 file name or path
+# that contains forward slashes, into one that contains
+# (escaped) backslashes.  A very naive implementation.
+sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g'
+
+# Re-'\' parameter expansions in output of sed_double_quote_subst that
+# were '\'-ed in input to the same.  If an odd number of '\' preceded a
+# '$' in input to sed_double_quote_subst, that '$' was protected from
+# expansion.  Since each input '\' is now two '\'s, look for any number
+# of runs of four '\'s followed by two '\'s and then a '$'.  '\' that '$'.
+_G_bs='\\'
+_G_bs2='\\\\'
+_G_bs4='\\\\\\\\'
+_G_dollar='\$'
+sed_double_backslash="\
+  s/$_G_bs4/&\\
+/g
+  s/^$_G_bs2$_G_dollar/$_G_bs&/
+  s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g
+  s/\n//g"
 
-# func_stripname prefix suffix name
-# strip PREFIX and SUFFIX off of NAME.
-# PREFIX and SUFFIX must not contain globbing or regex special
-# characters, hashes, percent signs, but SUFFIX may contain a leading
-# dot (in which case that matches only a dot).
-# func_strip_suffix prefix name
-func_stripname ()
-{
-    case ${2} in
-      .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;;
-      *)  func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;;
-    esac
-} # func_stripname may be replaced by extended shell implementation
 
+## ----------------- ##
+## Global variables. ##
+## ----------------- ##
 
-# These SED scripts presuppose an absolute path with a trailing slash.
-pathcar='s,^/\([^/]*\).*$,\1,'
-pathcdr='s,^/[^/]*,,'
-removedotparts=':dotsl
-               s@/\./@/@g
-               t dotsl
-               s,/\.$,/,'
-collapseslashes='s@/\{1,\}@/@g'
-finalslash='s,/*$,/,'
+# Except for the global variables explicitly listed below, the following
+# functions in the '^func_' namespace, and the '^require_' namespace
+# variables initialised in the 'Resource management' section, sourcing
+# this file will not pollute your global namespace with anything
+# else. There's no portable way to scope variables in Bourne shell
+# though, so actually running these functions will sometimes place
+# results into a variable named after the function, and often use
+# temporary variables in the '^_G_' namespace. If you are careful to
+# avoid using those namespaces casually in your sourcing script, things
+# should continue to work as you expect. And, of course, you can freely
+# overwrite any of the functions or variables defined here before
+# calling anything to customize them.
 
-# func_normal_abspath PATH
-# Remove doubled-up and trailing slashes, "." path components,
-# and cancel out any ".." path components in PATH after making
-# it an absolute path.
-#             value returned in "$func_normal_abspath_result"
-func_normal_abspath ()
-{
-  # Start from root dir and reassemble the path.
-  func_normal_abspath_result=
-  func_normal_abspath_tpath=$1
-  func_normal_abspath_altnamespace=
-  case $func_normal_abspath_tpath in
-    "")
-      # Empty path, that just means $cwd.
-      func_stripname '' '/' "`pwd`"
-      func_normal_abspath_result=$func_stripname_result
-      return
-    ;;
-    # The next three entries are used to spot a run of precisely
-    # two leading slashes without using negated character classes;
-    # we take advantage of case's first-match behaviour.
-    ///*)
-      # Unusual form of absolute path, do nothing.
-    ;;
-    //*)
-      # Not necessarily an ordinary path; POSIX reserves leading '//'
-      # and for example Cygwin uses it to access remote file shares
-      # over CIFS/SMB, so we conserve a leading double slash if found.
-      func_normal_abspath_altnamespace=/
-    ;;
-    /*)
-      # Absolute path, do nothing.
-    ;;
-    *)
-      # Relative path, prepend $cwd.
-      func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath
-    ;;
-  esac
-  # Cancel out all the simple stuff to save iterations.  We also want
-  # the path to end with a slash for ease of parsing, so make sure
-  # there is one (and only one) here.
-  func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
-        -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"`
-  while :; do
-    # Processed it all yet?
-    if test "$func_normal_abspath_tpath" = / ; then
-      # If we ascended to the root using ".." the result may be empty now.
-      if test -z "$func_normal_abspath_result" ; then
-        func_normal_abspath_result=/
-      fi
-      break
-    fi
-    func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \
-        -e "$pathcar"`
-    func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
-        -e "$pathcdr"`
-    # Figure out what to do with it
-    case $func_normal_abspath_tcomponent in
-      "")
-        # Trailing empty path component, ignore it.
-      ;;
-      ..)
-        # Parent dir; strip last assembled component from result.
-        func_dirname "$func_normal_abspath_result"
-        func_normal_abspath_result=$func_dirname_result
-      ;;
-      *)
-        # Actual path component, append it.
-        func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent
-      ;;
-    esac
-  done
-  # Restore leading double-slash if one was found on entry.
-  func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result
-}
+EXIT_SUCCESS=0
+EXIT_FAILURE=1
+EXIT_MISMATCH=63  # $? = 63 is used to indicate version mismatch to missing.
+EXIT_SKIP=77     # $? = 77 is used to indicate a skipped test to automake.
 
-# func_relative_path SRCDIR DSTDIR
-# generates a relative path from SRCDIR to DSTDIR, with a trailing
-# slash if non-empty, suitable for immediately appending a filename
-# without needing to append a separator.
-#             value returned in "$func_relative_path_result"
-func_relative_path ()
-{
-  func_relative_path_result=
-  func_normal_abspath "$1"
-  func_relative_path_tlibdir=$func_normal_abspath_result
-  func_normal_abspath "$2"
-  func_relative_path_tbindir=$func_normal_abspath_result
-
-  # Ascend the tree starting from libdir
-  while :; do
-    # check if we have found a prefix of bindir
-    case $func_relative_path_tbindir in
-      $func_relative_path_tlibdir)
-        # found an exact match
-        func_relative_path_tcancelled=
-        break
-        ;;
-      $func_relative_path_tlibdir*)
-        # found a matching prefix
-        func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir"
-        func_relative_path_tcancelled=$func_stripname_result
-        if test -z "$func_relative_path_result"; then
-          func_relative_path_result=.
-        fi
-        break
-        ;;
-      *)
-        func_dirname $func_relative_path_tlibdir
-        func_relative_path_tlibdir=${func_dirname_result}
-        if test "x$func_relative_path_tlibdir" = x ; then
-          # Have to descend all the way to the root!
-          func_relative_path_result=../$func_relative_path_result
-          func_relative_path_tcancelled=$func_relative_path_tbindir
-          break
-        fi
-        func_relative_path_result=../$func_relative_path_result
-        ;;
-    esac
-  done
+# Allow overriding, eg assuming that you follow the convention of
+# putting '$debug_cmd' at the start of all your functions, you can get
+# bash to show function call trace with:
+#
+#    debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name
+debug_cmd=${debug_cmd-":"}
+exit_cmd=:
 
-  # Now calculate path; take care to avoid doubling-up slashes.
-  func_stripname '' '/' "$func_relative_path_result"
-  func_relative_path_result=$func_stripname_result
-  func_stripname '/' '/' "$func_relative_path_tcancelled"
-  if test "x$func_stripname_result" != x ; then
-    func_relative_path_result=${func_relative_path_result}/${func_stripname_result}
-  fi
+# By convention, finish your script with:
+#
+#    exit $exit_status
+#
+# so that you can set exit_status to non-zero if you want to indicate
+# something went wrong during execution without actually bailing out at
+# the point of failure.
+exit_status=$EXIT_SUCCESS
 
-  # Normalisation. If bindir is libdir, return empty string,
-  # else relative path ending with a slash; either way, target
-  # file name can be directly appended.
-  if test ! -z "$func_relative_path_result"; then
-    func_stripname './' '' "$func_relative_path_result/"
-    func_relative_path_result=$func_stripname_result
-  fi
-}
+# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
+# is ksh but when the shell is invoked as "sh" and the current value of
+# the _XPG environment variable is not equal to 1 (one), the special
+# positional parameter $0, within a function call, is the name of the
+# function.
+progpath=$0
 
-# The name of this program:
-func_dirname_and_basename "$progpath"
-progname=$func_basename_result
+# The name of this program.
+progname=`$ECHO "$progpath" |$SED "$sed_basename"`
 
-# Make sure we have an absolute path for reexecution:
+# Make sure we have an absolute progpath for reexecution:
 case $progpath in
   [\\/]*|[A-Za-z]:\\*) ;;
   *[\\/]*)
-     progdir=$func_dirname_result
+     progdir=`$ECHO "$progpath" |$SED "$sed_dirname"`
      progdir=`cd "$progdir" && pwd`
-     progpath="$progdir/$progname"
+     progpath=$progdir/$progname
      ;;
   *)
-     save_IFS="$IFS"
+     _G_IFS=$IFS
      IFS=${PATH_SEPARATOR-:}
      for progdir in $PATH; do
-       IFS="$save_IFS"
+       IFS=$_G_IFS
        test -x "$progdir/$progname" && break
      done
-     IFS="$save_IFS"
+     IFS=$_G_IFS
      test -n "$progdir" || progdir=`pwd`
-     progpath="$progdir/$progname"
+     progpath=$progdir/$progname
      ;;
 esac
 
-# Sed substitution that helps us do robust quoting.  It backslashifies
-# metacharacters that are still active within double-quoted strings.
-Xsed="${SED}"' -e 1s/^X//'
-sed_quote_subst='s/\([`"$\\]\)/\\\1/g'
-
-# Same as above, but do not quote variable references.
-double_quote_subst='s/\(["`\\]\)/\\\1/g'
 
-# Sed substitution that turns a string into a regex matching for the
-# string literally.
-sed_make_literal_regex='s,[].[^$\\*\/],\\&,g'
+## ----------------- ##
+## Standard options. ##
+## ----------------- ##
 
-# Sed substitution that converts a w32 file name or path
-# which contains forward slashes, into one that contains
-# (escaped) backslashes.  A very naive implementation.
-lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g'
-
-# Re-`\' parameter expansions in output of double_quote_subst that were
-# `\'-ed in input to the same.  If an odd number of `\' preceded a '$'
-# in input to double_quote_subst, that '$' was protected from expansion.
-# Since each input `\' is now two `\'s, look for any number of runs of
-# four `\'s followed by two `\'s and then a '$'.  `\' that '$'.
-bs='\\'
-bs2='\\\\'
-bs4='\\\\\\\\'
-dollar='\$'
-sed_double_backslash="\
-  s/$bs4/&\\
-/g
-  s/^$bs2$dollar/$bs&/
-  s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g
-  s/\n//g"
+# The following options affect the operation of the functions defined
+# below, and should be set appropriately depending on run-time para-
+# meters passed on the command line.
 
-# Standard options:
 opt_dry_run=false
-opt_help=false
 opt_quiet=false
 opt_verbose=false
-opt_warning=:
 
-# func_echo arg...
-# Echo program name prefixed message, along with the current mode
-# name if it has been set yet.
-func_echo ()
-{
-    $ECHO "$progname: ${opt_mode+$opt_mode: }$*"
-}
+# Categories 'all' and 'none' are always available.  Append any others
+# you will pass as the first argument to func_warning from your own
+# code.
+warning_categories=
 
-# func_verbose arg...
-# Echo program name prefixed message in verbose mode only.
-func_verbose ()
-{
-    $opt_verbose && func_echo ${1+"$@"}
+# By default, display warnings according to 'opt_warning_types'.  Set
+# 'warning_func'  to ':' to elide all warnings, or func_fatal_error to
+# treat the next displayed warning as a fatal error.
+warning_func=func_warn_and_continue
 
-    # A bug in bash halts the script if the last line of a function
-    # fails when set -e is in force, so we need another command to
-    # work around that:
-    :
-}
+# Set to 'all' to display all warnings, 'none' to suppress all
+# warnings, or a space delimited list of some subset of
+# 'warning_categories' to display only the listed warnings.
+opt_warning_types=all
 
-# func_echo_all arg...
-# Invoke $ECHO with all args, space-separated.
-func_echo_all ()
-{
-    $ECHO "$*"
-}
 
-# func_error arg...
-# Echo program name prefixed message to standard error.
-func_error ()
-{
-    $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2
-}
+## -------------------- ##
+## Resource management. ##
+## -------------------- ##
 
-# func_warning arg...
-# Echo program name prefixed warning message to standard error.
-func_warning ()
-{
-    $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2
+# This section contains definitions for functions that each ensure a
+# particular resource (a file, or a non-empty configuration variable for
+# example) is available, and if appropriate to extract default values
+# from pertinent package files. Call them using their associated
+# 'require_*' variable to ensure that they are executed, at most, once.
+#
+# It's entirely deliberate that calling these functions can set
+# variables that don't obey the namespace limitations obeyed by the rest
+# of this file, in order that that they be as useful as possible to
+# callers.
 
-    # bash bug again:
-    :
-}
 
-# func_fatal_error arg...
-# Echo program name prefixed message to standard error, and exit.
-func_fatal_error ()
+# require_term_colors
+# -------------------
+# Allow display of bold text on terminals that support it.
+require_term_colors=func_require_term_colors
+func_require_term_colors ()
 {
-    func_error ${1+"$@"}
-    exit $EXIT_FAILURE
-}
+    $debug_cmd
+
+    test -t 1 && {
+      # COLORTERM and USE_ANSI_COLORS environment variables take
+      # precedence, because most terminfo databases neglect to describe
+      # whether color sequences are supported.
+      test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"}
+
+      if test 1 = "$USE_ANSI_COLORS"; then
+        # Standard ANSI escape sequences
+        tc_reset='\e[0m'
+        tc_bold='\e[1m';   tc_standout='\e[7m'
+        tc_red='\e[31m';   tc_green='\e[32m'
+        tc_blue='\e[34m';  tc_cyan='\e[36m'
+      else
+        # Otherwise trust the terminfo database after all.
+        test -n "`tput sgr0 2>/dev/null`" && {
+          tc_reset=`tput sgr0`
+          test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold`
+          tc_standout=$tc_bold
+          test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso`
+          test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1`
+          test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2`
+          test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4`
+          test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5`
+        }
+      fi
+    }
 
-# func_fatal_help arg...
-# Echo program name prefixed message to standard error, followed by
-# a help hint, and exit.
-func_fatal_help ()
-{
-    func_error ${1+"$@"}
-    func_fatal_error "$help"
+    require_term_colors=:
 }
-help="Try \`$progname --help' for more information."  ## default
 
 
-# func_grep expression filename
+## ----------------- ##
+## Function library. ##
+## ----------------- ##
+
+# This section contains a variety of useful functions to call in your
+# scripts. Take note of the portable wrappers for features provided by
+# some modern shells, which will fall back to slower equivalents on
+# less featureful shells.
+
+
+# func_append VAR VALUE
+# ---------------------
+# Append VALUE onto the existing contents of VAR.
+
+  # We should try to minimise forks, especially on Windows where they are
+  # unreasonably slow, so skip the feature probes when bash or zsh are
+  # being used:
+  if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then
+    : ${_G_HAVE_ARITH_OP="yes"}
+    : ${_G_HAVE_XSI_OPS="yes"}
+    # The += operator was introduced in bash 3.1
+    case $BASH_VERSION in
+      [12].* | 3.0 | 3.0*) ;;
+      *)
+        : ${_G_HAVE_PLUSEQ_OP="yes"}
+        ;;
+    esac
+  fi
+
+  # _G_HAVE_PLUSEQ_OP
+  # Can be empty, in which case the shell is probed, "yes" if += is
+  # useable or anything else if it does not work.
+  test -z "$_G_HAVE_PLUSEQ_OP" \
+    && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \
+    && _G_HAVE_PLUSEQ_OP=yes
+
+if test yes = "$_G_HAVE_PLUSEQ_OP"
+then
+  # This is an XSI compatible shell, allowing a faster implementation...
+  eval 'func_append ()
+  {
+    $debug_cmd
+
+    eval "$1+=\$2"
+  }'
+else
+  # ...otherwise fall back to using expr, which is often a shell builtin.
+  func_append ()
+  {
+    $debug_cmd
+
+    eval "$1=\$$1\$2"
+  }
+fi
+
+
+# func_append_quoted VAR VALUE
+# ----------------------------
+# Quote VALUE and append to the end of shell variable VAR, separated
+# by a space.
+if test yes = "$_G_HAVE_PLUSEQ_OP"; then
+  eval 'func_append_quoted ()
+  {
+    $debug_cmd
+
+    func_quote_for_eval "$2"
+    eval "$1+=\\ \$func_quote_for_eval_result"
+  }'
+else
+  func_append_quoted ()
+  {
+    $debug_cmd
+
+    func_quote_for_eval "$2"
+    eval "$1=\$$1\\ \$func_quote_for_eval_result"
+  }
+fi
+
+
+# func_append_uniq VAR VALUE
+# --------------------------
+# Append unique VALUE onto the existing contents of VAR, assuming
+# entries are delimited by the first character of VALUE.  For example:
+#
+#   func_append_uniq options " --another-option option-argument"
+#
+# will only append to $options if " --another-option option-argument "
+# is not already present somewhere in $options already (note spaces at
+# each end implied by leading space in second argument).
+func_append_uniq ()
+{
+    $debug_cmd
+
+    eval _G_current_value='`$ECHO $'$1'`'
+    _G_delim=`expr "$2" : '\(.\)'`
+
+    case $_G_delim$_G_current_value$_G_delim in
+      *"$2$_G_delim"*) ;;
+      *) func_append "$@" ;;
+    esac
+}
+
+
+# func_arith TERM...
+# ------------------
+# Set func_arith_result to the result of evaluating TERMs.
+  test -z "$_G_HAVE_ARITH_OP" \
+    && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \
+    && _G_HAVE_ARITH_OP=yes
+
+if test yes = "$_G_HAVE_ARITH_OP"; then
+  eval 'func_arith ()
+  {
+    $debug_cmd
+
+    func_arith_result=$(( $* ))
+  }'
+else
+  func_arith ()
+  {
+    $debug_cmd
+
+    func_arith_result=`expr "$@"`
+  }
+fi
+
+
+# func_basename FILE
+# ------------------
+# Set func_basename_result to FILE with everything up to and including
+# the last / stripped.
+if test yes = "$_G_HAVE_XSI_OPS"; then
+  # If this shell supports suffix pattern removal, then use it to avoid
+  # forking. Hide the definitions single quotes in case the shell chokes
+  # on unsupported syntax...
+  _b='func_basename_result=${1##*/}'
+  _d='case $1 in
+        */*) func_dirname_result=${1%/*}$2 ;;
+        *  ) func_dirname_result=$3        ;;
+      esac'
+
+else
+  # ...otherwise fall back to using sed.
+  _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`'
+  _d='func_dirname_result=`$ECHO "$1"  |$SED "$sed_dirname"`
+      if test "X$func_dirname_result" = "X$1"; then
+        func_dirname_result=$3
+      else
+        func_append func_dirname_result "$2"
+      fi'
+fi
+
+eval 'func_basename ()
+{
+    $debug_cmd
+
+    '"$_b"'
+}'
+
+
+# func_dirname FILE APPEND NONDIR_REPLACEMENT
+# -------------------------------------------
+# Compute the dirname of FILE.  If nonempty, add APPEND to the result,
+# otherwise set result to NONDIR_REPLACEMENT.
+eval 'func_dirname ()
+{
+    $debug_cmd
+
+    '"$_d"'
+}'
+
+
+# func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT
+# --------------------------------------------------------
+# Perform func_basename and func_dirname in a single function
+# call:
+#   dirname:  Compute the dirname of FILE.  If nonempty,
+#             add APPEND to the result, otherwise set result
+#             to NONDIR_REPLACEMENT.
+#             value returned in "$func_dirname_result"
+#   basename: Compute filename of FILE.
+#             value retuned in "$func_basename_result"
+# For efficiency, we do not delegate to the functions above but instead
+# duplicate the functionality here.
+eval 'func_dirname_and_basename ()
+{
+    $debug_cmd
+
+    '"$_b"'
+    '"$_d"'
+}'
+
+
+# func_echo ARG...
+# ----------------
+# Echo program name prefixed message.
+func_echo ()
+{
+    $debug_cmd
+
+    _G_message=$*
+
+    func_echo_IFS=$IFS
+    IFS=$nl
+    for _G_line in $_G_message; do
+      IFS=$func_echo_IFS
+      $ECHO "$progname: $_G_line"
+    done
+    IFS=$func_echo_IFS
+}
+
+
+# func_echo_all ARG...
+# --------------------
+# Invoke $ECHO with all args, space-separated.
+func_echo_all ()
+{
+    $ECHO "$*"
+}
+
+
+# func_echo_infix_1 INFIX ARG...
+# ------------------------------
+# Echo program name, followed by INFIX on the first line, with any
+# additional lines not showing INFIX.
+func_echo_infix_1 ()
+{
+    $debug_cmd
+
+    $require_term_colors
+
+    _G_infix=$1; shift
+    _G_indent=$_G_infix
+    _G_prefix="$progname: $_G_infix: "
+    _G_message=$*
+
+    # Strip color escape sequences before counting printable length
+    for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan"
+    do
+      test -n "$_G_tc" && {
+        _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"`
+        _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"`
+      }
+    done
+    _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`"  " ## exclude from sc_prohibit_nested_quotes
+
+    func_echo_infix_1_IFS=$IFS
+    IFS=$nl
+    for _G_line in $_G_message; do
+      IFS=$func_echo_infix_1_IFS
+      $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2
+      _G_prefix=$_G_indent
+    done
+    IFS=$func_echo_infix_1_IFS
+}
+
+
+# func_error ARG...
+# -----------------
+# Echo program name prefixed message to standard error.
+func_error ()
+{
+    $debug_cmd
+
+    $require_term_colors
+
+    func_echo_infix_1 "  $tc_standout${tc_red}error$tc_reset" "$*" >&2
+}
+
+
+# func_fatal_error ARG...
+# -----------------------
+# Echo program name prefixed message to standard error, and exit.
+func_fatal_error ()
+{
+    $debug_cmd
+
+    func_error "$*"
+    exit $EXIT_FAILURE
+}
+
+
+# func_grep EXPRESSION FILENAME
+# -----------------------------
 # Check whether EXPRESSION matches any line of FILENAME, without output.
 func_grep ()
 {
+    $debug_cmd
+
     $GREP "$1" "$2" >/dev/null 2>&1
 }
 
 
-# func_mkdir_p directory-path
+# func_len STRING
+# ---------------
+# Set func_len_result to the length of STRING. STRING may not
+# start with a hyphen.
+  test -z "$_G_HAVE_XSI_OPS" \
+    && (eval 'x=a/b/c;
+      test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \
+    && _G_HAVE_XSI_OPS=yes
+
+if test yes = "$_G_HAVE_XSI_OPS"; then
+  eval 'func_len ()
+  {
+    $debug_cmd
+
+    func_len_result=${#1}
+  }'
+else
+  func_len ()
+  {
+    $debug_cmd
+
+    func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len`
+  }
+fi
+
+
+# func_mkdir_p DIRECTORY-PATH
+# ---------------------------
 # Make sure the entire path to DIRECTORY-PATH is available.
 func_mkdir_p ()
 {
-    my_directory_path="$1"
-    my_dir_list=
+    $debug_cmd
 
-    if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then
+    _G_directory_path=$1
+    _G_dir_list=
 
-      # Protect directory names starting with `-'
-      case $my_directory_path in
-        -*) my_directory_path="./$my_directory_path" ;;
+    if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then
+
+      # Protect directory names starting with '-'
+      case $_G_directory_path in
+        -*) _G_directory_path=./$_G_directory_path ;;
       esac
 
       # While some portion of DIR does not yet exist...
-      while test ! -d "$my_directory_path"; do
+      while test ! -d "$_G_directory_path"; do
         # ...make a list in topmost first order.  Use a colon delimited
        # list incase some portion of path contains whitespace.
-        my_dir_list="$my_directory_path:$my_dir_list"
+        _G_dir_list=$_G_directory_path:$_G_dir_list
 
         # If the last portion added has no slash in it, the list is done
-        case $my_directory_path in */*) ;; *) break ;; esac
+        case $_G_directory_path in */*) ;; *) break ;; esac
 
         # ...otherwise throw away the child directory and loop
-        my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"`
+        _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"`
       done
-      my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'`
+      _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'`
 
-      save_mkdir_p_IFS="$IFS"; IFS=':'
-      for my_dir in $my_dir_list; do
-       IFS="$save_mkdir_p_IFS"
-        # mkdir can fail with a `File exist' error if two processes
+      func_mkdir_p_IFS=$IFS; IFS=:
+      for _G_dir in $_G_dir_list; do
+       IFS=$func_mkdir_p_IFS
+        # mkdir can fail with a 'File exist' error if two processes
         # try to create one of the directories concurrently.  Don't
         # stop in that case!
-        $MKDIR "$my_dir" 2>/dev/null || :
+        $MKDIR "$_G_dir" 2>/dev/null || :
       done
-      IFS="$save_mkdir_p_IFS"
+      IFS=$func_mkdir_p_IFS
 
       # Bail out if we (or some other process) failed to create a directory.
-      test -d "$my_directory_path" || \
-        func_fatal_error "Failed to create \`$1'"
+      test -d "$_G_directory_path" || \
+        func_fatal_error "Failed to create '$1'"
     fi
 }
 
 
-# func_mktempdir [string]
+# func_mktempdir [BASENAME]
+# -------------------------
 # Make a temporary directory that won't clash with other running
 # libtool processes, and avoids race conditions if possible.  If
-# given, STRING is the basename for that directory.
+# given, BASENAME is the basename for that directory.
 func_mktempdir ()
 {
-    my_template="${TMPDIR-/tmp}/${1-$progname}"
+    $debug_cmd
+
+    _G_template=${TMPDIR-/tmp}/${1-$progname}
 
-    if test "$opt_dry_run" = ":"; then
+    if test : = "$opt_dry_run"; then
       # Return a directory name, but don't create it in dry-run mode
-      my_tmpdir="${my_template}-$$"
+      _G_tmpdir=$_G_template-$$
     else
 
       # If mktemp works, use that first and foremost
-      my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null`
+      _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null`
 
-      if test ! -d "$my_tmpdir"; then
+      if test ! -d "$_G_tmpdir"; then
         # Failing that, at least try and use $RANDOM to avoid a race
-        my_tmpdir="${my_template}-${RANDOM-0}$$"
+        _G_tmpdir=$_G_template-${RANDOM-0}$$
 
-        save_mktempdir_umask=`umask`
+        func_mktempdir_umask=`umask`
         umask 0077
-        $MKDIR "$my_tmpdir"
-        umask $save_mktempdir_umask
+        $MKDIR "$_G_tmpdir"
+        umask $func_mktempdir_umask
       fi
 
       # If we're not in dry-run mode, bomb out on failure
-      test -d "$my_tmpdir" || \
-        func_fatal_error "cannot create temporary directory \`$my_tmpdir'"
+      test -d "$_G_tmpdir" || \
+        func_fatal_error "cannot create temporary directory '$_G_tmpdir'"
+    fi
+
+    $ECHO "$_G_tmpdir"
+}
+
+
+# func_normal_abspath PATH
+# ------------------------
+# Remove doubled-up and trailing slashes, "." path components,
+# and cancel out any ".." path components in PATH after making
+# it an absolute path.
+func_normal_abspath ()
+{
+    $debug_cmd
+
+    # These SED scripts presuppose an absolute path with a trailing slash.
+    _G_pathcar='s|^/\([^/]*\).*$|\1|'
+    _G_pathcdr='s|^/[^/]*||'
+    _G_removedotparts=':dotsl
+               s|/\./|/|g
+               t dotsl
+               s|/\.$|/|'
+    _G_collapseslashes='s|/\{1,\}|/|g'
+    _G_finalslash='s|/*$|/|'
+
+    # Start from root dir and reassemble the path.
+    func_normal_abspath_result=
+    func_normal_abspath_tpath=$1
+    func_normal_abspath_altnamespace=
+    case $func_normal_abspath_tpath in
+      "")
+        # Empty path, that just means $cwd.
+        func_stripname '' '/' "`pwd`"
+        func_normal_abspath_result=$func_stripname_result
+        return
+        ;;
+      # The next three entries are used to spot a run of precisely
+      # two leading slashes without using negated character classes;
+      # we take advantage of case's first-match behaviour.
+      ///*)
+        # Unusual form of absolute path, do nothing.
+        ;;
+      //*)
+        # Not necessarily an ordinary path; POSIX reserves leading '//'
+        # and for example Cygwin uses it to access remote file shares
+        # over CIFS/SMB, so we conserve a leading double slash if found.
+        func_normal_abspath_altnamespace=/
+        ;;
+      /*)
+        # Absolute path, do nothing.
+        ;;
+      *)
+        # Relative path, prepend $cwd.
+        func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath
+        ;;
+    esac
+
+    # Cancel out all the simple stuff to save iterations.  We also want
+    # the path to end with a slash for ease of parsing, so make sure
+    # there is one (and only one) here.
+    func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
+          -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"`
+    while :; do
+      # Processed it all yet?
+      if test / = "$func_normal_abspath_tpath"; then
+        # If we ascended to the root using ".." the result may be empty now.
+        if test -z "$func_normal_abspath_result"; then
+          func_normal_abspath_result=/
+        fi
+        break
+      fi
+      func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \
+          -e "$_G_pathcar"`
+      func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
+          -e "$_G_pathcdr"`
+      # Figure out what to do with it
+      case $func_normal_abspath_tcomponent in
+        "")
+          # Trailing empty path component, ignore it.
+          ;;
+        ..)
+          # Parent dir; strip last assembled component from result.
+          func_dirname "$func_normal_abspath_result"
+          func_normal_abspath_result=$func_dirname_result
+          ;;
+        *)
+          # Actual path component, append it.
+          func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent"
+          ;;
+      esac
+    done
+    # Restore leading double-slash if one was found on entry.
+    func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result
+}
+
+
+# func_notquiet ARG...
+# --------------------
+# Echo program name prefixed message only when not in quiet mode.
+func_notquiet ()
+{
+    $debug_cmd
+
+    $opt_quiet || func_echo ${1+"$@"}
+
+    # A bug in bash halts the script if the last line of a function
+    # fails when set -e is in force, so we need another command to
+    # work around that:
+    :
+}
+
+
+# func_relative_path SRCDIR DSTDIR
+# --------------------------------
+# Set func_relative_path_result to the relative path from SRCDIR to DSTDIR.
+func_relative_path ()
+{
+    $debug_cmd
+
+    func_relative_path_result=
+    func_normal_abspath "$1"
+    func_relative_path_tlibdir=$func_normal_abspath_result
+    func_normal_abspath "$2"
+    func_relative_path_tbindir=$func_normal_abspath_result
+
+    # Ascend the tree starting from libdir
+    while :; do
+      # check if we have found a prefix of bindir
+      case $func_relative_path_tbindir in
+        $func_relative_path_tlibdir)
+          # found an exact match
+          func_relative_path_tcancelled=
+          break
+          ;;
+        $func_relative_path_tlibdir*)
+          # found a matching prefix
+          func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir"
+          func_relative_path_tcancelled=$func_stripname_result
+          if test -z "$func_relative_path_result"; then
+            func_relative_path_result=.
+          fi
+          break
+          ;;
+        *)
+          func_dirname $func_relative_path_tlibdir
+          func_relative_path_tlibdir=$func_dirname_result
+          if test -z "$func_relative_path_tlibdir"; then
+            # Have to descend all the way to the root!
+            func_relative_path_result=../$func_relative_path_result
+            func_relative_path_tcancelled=$func_relative_path_tbindir
+            break
+          fi
+          func_relative_path_result=../$func_relative_path_result
+          ;;
+      esac
+    done
+
+    # Now calculate path; take care to avoid doubling-up slashes.
+    func_stripname '' '/' "$func_relative_path_result"
+    func_relative_path_result=$func_stripname_result
+    func_stripname '/' '/' "$func_relative_path_tcancelled"
+    if test -n "$func_stripname_result"; then
+      func_append func_relative_path_result "/$func_stripname_result"
+    fi
+
+    # Normalisation. If bindir is libdir, return '.' else relative path.
+    if test -n "$func_relative_path_result"; then
+      func_stripname './' '' "$func_relative_path_result"
+      func_relative_path_result=$func_stripname_result
     fi
 
-    $ECHO "$my_tmpdir"
+    test -n "$func_relative_path_result" || func_relative_path_result=.
+
+    :
+}
+
+
+# func_quote_for_eval ARG...
+# --------------------------
+# Aesthetically quote ARGs to be evaled later.
+# This function returns two values:
+#   i) func_quote_for_eval_result
+#      double-quoted, suitable for a subsequent eval
+#  ii) func_quote_for_eval_unquoted_result
+#      has all characters that are still active within double
+#      quotes backslashified.
+func_quote_for_eval ()
+{
+    $debug_cmd
+
+    func_quote_for_eval_unquoted_result=
+    func_quote_for_eval_result=
+    while test 0 -lt $#; do
+      case $1 in
+        *[\\\`\"\$]*)
+         _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;;
+        *)
+          _G_unquoted_arg=$1 ;;
+      esac
+      if test -n "$func_quote_for_eval_unquoted_result"; then
+       func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg"
+      else
+        func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg"
+      fi
+
+      case $_G_unquoted_arg in
+        # Double-quote args containing shell metacharacters to delay
+        # word splitting, command substitution and variable expansion
+        # for a subsequent eval.
+        # Many Bourne shells cannot handle close brackets correctly
+        # in scan sets, so we specify it separately.
+        *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \  ]*|*]*|"")
+          _G_quoted_arg=\"$_G_unquoted_arg\"
+          ;;
+        *)
+          _G_quoted_arg=$_G_unquoted_arg
+         ;;
+      esac
+
+      if test -n "$func_quote_for_eval_result"; then
+       func_append func_quote_for_eval_result " $_G_quoted_arg"
+      else
+        func_append func_quote_for_eval_result "$_G_quoted_arg"
+      fi
+      shift
+    done
+}
+
+
+# func_quote_for_expand ARG
+# -------------------------
+# Aesthetically quote ARG to be evaled later; same as above,
+# but do not quote variable references.
+func_quote_for_expand ()
+{
+    $debug_cmd
+
+    case $1 in
+      *[\\\`\"]*)
+       _G_arg=`$ECHO "$1" | $SED \
+           -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;;
+      *)
+        _G_arg=$1 ;;
+    esac
+
+    case $_G_arg in
+      # Double-quote args containing shell metacharacters to delay
+      # word splitting and command substitution for a subsequent eval.
+      # Many Bourne shells cannot handle close brackets correctly
+      # in scan sets, so we specify it separately.
+      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \    ]*|*]*|"")
+        _G_arg=\"$_G_arg\"
+        ;;
+    esac
+
+    func_quote_for_expand_result=$_G_arg
+}
+
+
+# func_stripname PREFIX SUFFIX NAME
+# ---------------------------------
+# strip PREFIX and SUFFIX from NAME, and store in func_stripname_result.
+# PREFIX and SUFFIX must not contain globbing or regex special
+# characters, hashes, percent signs, but SUFFIX may contain a leading
+# dot (in which case that matches only a dot).
+if test yes = "$_G_HAVE_XSI_OPS"; then
+  eval 'func_stripname ()
+  {
+    $debug_cmd
+
+    # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
+    # positional parameters, so assign one to ordinary variable first.
+    func_stripname_result=$3
+    func_stripname_result=${func_stripname_result#"$1"}
+    func_stripname_result=${func_stripname_result%"$2"}
+  }'
+else
+  func_stripname ()
+  {
+    $debug_cmd
+
+    case $2 in
+      .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;;
+      *)  func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;;
+    esac
+  }
+fi
+
+
+# func_show_eval CMD [FAIL_EXP]
+# -----------------------------
+# Unless opt_quiet is true, then output CMD.  Then, if opt_dryrun is
+# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP
+# is given, then evaluate it.
+func_show_eval ()
+{
+    $debug_cmd
+
+    _G_cmd=$1
+    _G_fail_exp=${2-':'}
+
+    func_quote_for_expand "$_G_cmd"
+    eval "func_notquiet $func_quote_for_expand_result"
+
+    $opt_dry_run || {
+      eval "$_G_cmd"
+      _G_status=$?
+      if test 0 -ne "$_G_status"; then
+       eval "(exit $_G_status); $_G_fail_exp"
+      fi
+    }
+}
+
+
+# func_show_eval_locale CMD [FAIL_EXP]
+# ------------------------------------
+# Unless opt_quiet is true, then output CMD.  Then, if opt_dryrun is
+# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP
+# is given, then evaluate it.  Use the saved locale for evaluation.
+func_show_eval_locale ()
+{
+    $debug_cmd
+
+    _G_cmd=$1
+    _G_fail_exp=${2-':'}
+
+    $opt_quiet || {
+      func_quote_for_expand "$_G_cmd"
+      eval "func_echo $func_quote_for_expand_result"
+    }
+
+    $opt_dry_run || {
+      eval "$_G_user_locale
+           $_G_cmd"
+      _G_status=$?
+      eval "$_G_safe_locale"
+      if test 0 -ne "$_G_status"; then
+       eval "(exit $_G_status); $_G_fail_exp"
+      fi
+    }
+}
+
+
+# func_tr_sh
+# ----------
+# Turn $1 into a string suitable for a shell variable name.
+# Result is stored in $func_tr_sh_result.  All characters
+# not in the set a-zA-Z0-9_ are replaced with '_'. Further,
+# if $1 begins with a digit, a '_' is prepended as well.
+func_tr_sh ()
+{
+    $debug_cmd
+
+    case $1 in
+    [0-9]* | *[!a-zA-Z0-9_]*)
+      func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'`
+      ;;
+    * )
+      func_tr_sh_result=$1
+      ;;
+    esac
+}
+
+
+# func_verbose ARG...
+# -------------------
+# Echo program name prefixed message in verbose mode only.
+func_verbose ()
+{
+    $debug_cmd
+
+    $opt_verbose && func_echo "$*"
+
+    :
+}
+
+
+# func_warn_and_continue ARG...
+# -----------------------------
+# Echo program name prefixed warning message to standard error.
+func_warn_and_continue ()
+{
+    $debug_cmd
+
+    $require_term_colors
+
+    func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2
+}
+
+
+# func_warning CATEGORY ARG...
+# ----------------------------
+# Echo program name prefixed warning message to standard error. Warning
+# messages can be filtered according to CATEGORY, where this function
+# elides messages where CATEGORY is not listed in the global variable
+# 'opt_warning_types'.
+func_warning ()
+{
+    $debug_cmd
+
+    # CATEGORY must be in the warning_categories list!
+    case " $warning_categories " in
+      *" $1 "*) ;;
+      *) func_internal_error "invalid warning category '$1'" ;;
+    esac
+
+    _G_category=$1
+    shift
+
+    case " $opt_warning_types " in
+      *" $_G_category "*) $warning_func ${1+"$@"} ;;
+    esac
+}
+
+
+# func_sort_ver VER1 VER2
+# -----------------------
+# 'sort -V' is not generally available.
+# Note this deviates from the version comparison in automake
+# in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a
+# but this should suffice as we won't be specifying old
+# version formats or redundant trailing .0 in bootstrap.conf.
+# If we did want full compatibility then we should probably
+# use m4_version_compare from autoconf.
+func_sort_ver ()
+{
+    $debug_cmd
+
+    printf '%s\n%s\n' "$1" "$2" \
+      | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n
+}
+
+# func_lt_ver PREV CURR
+# ---------------------
+# Return true if PREV and CURR are in the correct order according to
+# func_sort_ver, otherwise false.  Use it like this:
+#
+#  func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..."
+func_lt_ver ()
+{
+    $debug_cmd
+
+    test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q`
+}
+
+
+# Local variables:
+# mode: shell-script
+# sh-indentation: 2
+# eval: (add-hook 'before-save-hook 'time-stamp)
+# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC"
+# time-stamp-time-zone: "UTC"
+# End:
+#! /bin/sh
+
+# Set a version string for this script.
+scriptversion=2014-01-07.03; # UTC
+
+# A portable, pluggable option parser for Bourne shell.
+# Written by Gary V. Vaughan, 2010
+
+# Copyright (C) 2010-2015 Free Software Foundation, Inc.
+# This is free software; see the source for copying conditions.  There is NO
+# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+# Please report bugs or propose patches to gary@gnu.org.
+
+
+## ------ ##
+## Usage. ##
+## ------ ##
+
+# This file is a library for parsing options in your shell scripts along
+# with assorted other useful supporting features that you can make use
+# of too.
+#
+# For the simplest scripts you might need only:
+#
+#   #!/bin/sh
+#   . relative/path/to/funclib.sh
+#   . relative/path/to/options-parser
+#   scriptversion=1.0
+#   func_options ${1+"$@"}
+#   eval set dummy "$func_options_result"; shift
+#   ...rest of your script...
+#
+# In order for the '--version' option to work, you will need to have a
+# suitably formatted comment like the one at the top of this file
+# starting with '# Written by ' and ending with '# warranty; '.
+#
+# For '-h' and '--help' to work, you will also need a one line
+# description of your script's purpose in a comment directly above the
+# '# Written by ' line, like the one at the top of this file.
+#
+# The default options also support '--debug', which will turn on shell
+# execution tracing (see the comment above debug_cmd below for another
+# use), and '--verbose' and the func_verbose function to allow your script
+# to display verbose messages only when your user has specified
+# '--verbose'.
+#
+# After sourcing this file, you can plug processing for additional
+# options by amending the variables from the 'Configuration' section
+# below, and following the instructions in the 'Option parsing'
+# section further down.
+
+## -------------- ##
+## Configuration. ##
+## -------------- ##
+
+# You should override these variables in your script after sourcing this
+# file so that they reflect the customisations you have added to the
+# option parser.
+
+# The usage line for option parsing errors and the start of '-h' and
+# '--help' output messages. You can embed shell variables for delayed
+# expansion at the time the message is displayed, but you will need to
+# quote other shell meta-characters carefully to prevent them being
+# expanded when the contents are evaled.
+usage='$progpath [OPTION]...'
+
+# Short help message in response to '-h' and '--help'.  Add to this or
+# override it after sourcing this library to reflect the full set of
+# options your script accepts.
+usage_message="\
+       --debug        enable verbose shell tracing
+   -W, --warnings=CATEGORY
+                      report the warnings falling in CATEGORY [all]
+   -v, --verbose      verbosely report processing
+       --version      print version information and exit
+   -h, --help         print short or long help message and exit
+"
+
+# Additional text appended to 'usage_message' in response to '--help'.
+long_help_message="
+Warning categories include:
+       'all'          show all warnings
+       'none'         turn off all the warnings
+       'error'        warnings are treated as fatal errors"
+
+# Help message printed before fatal option parsing errors.
+fatal_help="Try '\$progname --help' for more information."
+
+
+
+## ------------------------- ##
+## Hook function management. ##
+## ------------------------- ##
+
+# This section contains functions for adding, removing, and running hooks
+# to the main code.  A hook is just a named list of of function, that can
+# be run in order later on.
+
+# func_hookable FUNC_NAME
+# -----------------------
+# Declare that FUNC_NAME will run hooks added with
+# 'func_add_hook FUNC_NAME ...'.
+func_hookable ()
+{
+    $debug_cmd
+
+    func_append hookable_fns " $1"
+}
+
+
+# func_add_hook FUNC_NAME HOOK_FUNC
+# ---------------------------------
+# Request that FUNC_NAME call HOOK_FUNC before it returns.  FUNC_NAME must
+# first have been declared "hookable" by a call to 'func_hookable'.
+func_add_hook ()
+{
+    $debug_cmd
+
+    case " $hookable_fns " in
+      *" $1 "*) ;;
+      *) func_fatal_error "'$1' does not accept hook functions." ;;
+    esac
+
+    eval func_append ${1}_hooks '" $2"'
+}
+
+
+# func_remove_hook FUNC_NAME HOOK_FUNC
+# ------------------------------------
+# Remove HOOK_FUNC from the list of functions called by FUNC_NAME.
+func_remove_hook ()
+{
+    $debug_cmd
+
+    eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`'
+}
+
+
+# func_run_hooks FUNC_NAME [ARG]...
+# ---------------------------------
+# Run all hook functions registered to FUNC_NAME.
+# It is assumed that the list of hook functions contains nothing more
+# than a whitespace-delimited list of legal shell function names, and
+# no effort is wasted trying to catch shell meta-characters or preserve
+# whitespace.
+func_run_hooks ()
+{
+    $debug_cmd
+
+    case " $hookable_fns " in
+      *" $1 "*) ;;
+      *) func_fatal_error "'$1' does not support hook funcions.n" ;;
+    esac
+
+    eval _G_hook_fns=\$$1_hooks; shift
+
+    for _G_hook in $_G_hook_fns; do
+      eval $_G_hook '"$@"'
+
+      # store returned options list back into positional
+      # parameters for next 'cmd' execution.
+      eval _G_hook_result=\$${_G_hook}_result
+      eval set dummy "$_G_hook_result"; shift
+    done
+
+    func_quote_for_eval ${1+"$@"}
+    func_run_hooks_result=$func_quote_for_eval_result
+}
+
+
+
+## --------------- ##
+## Option parsing. ##
+## --------------- ##
+
+# In order to add your own option parsing hooks, you must accept the
+# full positional parameter list in your hook function, remove any
+# options that you action, and then pass back the remaining unprocessed
+# options in '<hooked_function_name>_result', escaped suitably for
+# 'eval'.  Like this:
+#
+#    my_options_prep ()
+#    {
+#        $debug_cmd
+#
+#        # Extend the existing usage message.
+#        usage_message=$usage_message'
+#      -s, --silent       don'\''t print informational messages
+#    '
+#
+#        func_quote_for_eval ${1+"$@"}
+#        my_options_prep_result=$func_quote_for_eval_result
+#    }
+#    func_add_hook func_options_prep my_options_prep
+#
+#
+#    my_silent_option ()
+#    {
+#        $debug_cmd
+#
+#        # Note that for efficiency, we parse as many options as we can
+#        # recognise in a loop before passing the remainder back to the
+#        # caller on the first unrecognised argument we encounter.
+#        while test $# -gt 0; do
+#          opt=$1; shift
+#          case $opt in
+#            --silent|-s) opt_silent=: ;;
+#            # Separate non-argument short options:
+#            -s*)         func_split_short_opt "$_G_opt"
+#                         set dummy "$func_split_short_opt_name" \
+#                             "-$func_split_short_opt_arg" ${1+"$@"}
+#                         shift
+#                         ;;
+#            *)            set dummy "$_G_opt" "$*"; shift; break ;;
+#          esac
+#        done
+#
+#        func_quote_for_eval ${1+"$@"}
+#        my_silent_option_result=$func_quote_for_eval_result
+#    }
+#    func_add_hook func_parse_options my_silent_option
+#
+#
+#    my_option_validation ()
+#    {
+#        $debug_cmd
+#
+#        $opt_silent && $opt_verbose && func_fatal_help "\
+#    '--silent' and '--verbose' options are mutually exclusive."
+#
+#        func_quote_for_eval ${1+"$@"}
+#        my_option_validation_result=$func_quote_for_eval_result
+#    }
+#    func_add_hook func_validate_options my_option_validation
+#
+# You'll alse need to manually amend $usage_message to reflect the extra
+# options you parse.  It's preferable to append if you can, so that
+# multiple option parsing hooks can be added safely.
+
+
+# func_options [ARG]...
+# ---------------------
+# All the functions called inside func_options are hookable. See the
+# individual implementations for details.
+func_hookable func_options
+func_options ()
+{
+    $debug_cmd
+
+    func_options_prep ${1+"$@"}
+    eval func_parse_options \
+        ${func_options_prep_result+"$func_options_prep_result"}
+    eval func_validate_options \
+        ${func_parse_options_result+"$func_parse_options_result"}
+
+    eval func_run_hooks func_options \
+        ${func_validate_options_result+"$func_validate_options_result"}
+
+    # save modified positional parameters for caller
+    func_options_result=$func_run_hooks_result
 }
 
 
-# func_quote_for_eval arg
-# Aesthetically quote ARG to be evaled later.
-# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT
-# is double-quoted, suitable for a subsequent eval, whereas
-# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters
-# which are still active within double quotes backslashified.
-func_quote_for_eval ()
+# func_options_prep [ARG]...
+# --------------------------
+# All initialisations required before starting the option parse loop.
+# Note that when calling hook functions, we pass through the list of
+# positional parameters.  If a hook function modifies that list, and
+# needs to propogate that back to rest of this script, then the complete
+# modified list must be put in 'func_run_hooks_result' before
+# returning.
+func_hookable func_options_prep
+func_options_prep ()
 {
-    case $1 in
-      *[\\\`\"\$]*)
-       func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;;
-      *)
-        func_quote_for_eval_unquoted_result="$1" ;;
-    esac
+    $debug_cmd
 
-    case $func_quote_for_eval_unquoted_result in
-      # Double-quote args containing shell metacharacters to delay
-      # word splitting, command substitution and and variable
-      # expansion for a subsequent eval.
-      # Many Bourne shells cannot handle close brackets correctly
-      # in scan sets, so we specify it separately.
-      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \    ]*|*]*|"")
-        func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\""
-        ;;
-      *)
-        func_quote_for_eval_result="$func_quote_for_eval_unquoted_result"
-    esac
+    # Option defaults:
+    opt_verbose=false
+    opt_warning_types=
+
+    func_run_hooks func_options_prep ${1+"$@"}
+
+    # save modified positional parameters for caller
+    func_options_prep_result=$func_run_hooks_result
 }
 
 
-# func_quote_for_expand arg
-# Aesthetically quote ARG to be evaled later; same as above,
-# but do not quote variable references.
-func_quote_for_expand ()
+# func_parse_options [ARG]...
+# ---------------------------
+# The main option parsing loop.
+func_hookable func_parse_options
+func_parse_options ()
 {
-    case $1 in
-      *[\\\`\"]*)
-       my_arg=`$ECHO "$1" | $SED \
-           -e "$double_quote_subst" -e "$sed_double_backslash"` ;;
-      *)
-        my_arg="$1" ;;
-    esac
+    $debug_cmd
 
-    case $my_arg in
-      # Double-quote args containing shell metacharacters to delay
-      # word splitting and command substitution for a subsequent eval.
-      # Many Bourne shells cannot handle close brackets correctly
-      # in scan sets, so we specify it separately.
-      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \    ]*|*]*|"")
-        my_arg="\"$my_arg\""
-        ;;
-    esac
+    func_parse_options_result=
 
-    func_quote_for_expand_result="$my_arg"
-}
+    # this just eases exit handling
+    while test $# -gt 0; do
+      # Defer to hook functions for initial option parsing, so they
+      # get priority in the event of reusing an option name.
+      func_run_hooks func_parse_options ${1+"$@"}
 
+      # Adjust func_parse_options positional parameters to match
+      eval set dummy "$func_run_hooks_result"; shift
 
-# func_show_eval cmd [fail_exp]
-# Unless opt_silent is true, then output CMD.  Then, if opt_dryrun is
-# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP
-# is given, then evaluate it.
-func_show_eval ()
-{
-    my_cmd="$1"
-    my_fail_exp="${2-:}"
+      # Break out of the loop if we already parsed every option.
+      test $# -gt 0 || break
 
-    ${opt_silent-false} || {
-      func_quote_for_expand "$my_cmd"
-      eval "func_echo $func_quote_for_expand_result"
-    }
+      _G_opt=$1
+      shift
+      case $_G_opt in
+        --debug|-x)   debug_cmd='set -x'
+                      func_echo "enabling shell trace mode"
+                      $debug_cmd
+                      ;;
+
+        --no-warnings|--no-warning|--no-warn)
+                      set dummy --warnings none ${1+"$@"}
+                      shift
+                     ;;
 
-    if ${opt_dry_run-false}; then :; else
-      eval "$my_cmd"
-      my_status=$?
-      if test "$my_status" -eq 0; then :; else
-       eval "(exit $my_status); $my_fail_exp"
-      fi
-    fi
+        --warnings|--warning|-W)
+                      test $# = 0 && func_missing_arg $_G_opt && break
+                      case " $warning_categories $1" in
+                        *" $1 "*)
+                          # trailing space prevents matching last $1 above
+                          func_append_uniq opt_warning_types " $1"
+                          ;;
+                        *all)
+                          opt_warning_types=$warning_categories
+                          ;;
+                        *none)
+                          opt_warning_types=none
+                          warning_func=:
+                          ;;
+                        *error)
+                          opt_warning_types=$warning_categories
+                          warning_func=func_fatal_error
+                          ;;
+                        *)
+                          func_fatal_error \
+                             "unsupported warning category: '$1'"
+                          ;;
+                      esac
+                      shift
+                      ;;
+
+        --verbose|-v) opt_verbose=: ;;
+        --version)    func_version ;;
+        -\?|-h)       func_usage ;;
+        --help)       func_help ;;
+
+       # Separate optargs to long options (plugins may need this):
+       --*=*)        func_split_equals "$_G_opt"
+                     set dummy "$func_split_equals_lhs" \
+                          "$func_split_equals_rhs" ${1+"$@"}
+                      shift
+                      ;;
+
+       # Separate optargs to short options:
+        -W*)
+                      func_split_short_opt "$_G_opt"
+                      set dummy "$func_split_short_opt_name" \
+                          "$func_split_short_opt_arg" ${1+"$@"}
+                      shift
+                      ;;
+
+        # Separate non-argument short options:
+        -\?*|-h*|-v*|-x*)
+                      func_split_short_opt "$_G_opt"
+                      set dummy "$func_split_short_opt_name" \
+                          "-$func_split_short_opt_arg" ${1+"$@"}
+                      shift
+                      ;;
+
+        --)           break ;;
+        -*)           func_fatal_help "unrecognised option: '$_G_opt'" ;;
+        *)            set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
+      esac
+    done
+
+    # save modified positional parameters for caller
+    func_quote_for_eval ${1+"$@"}
+    func_parse_options_result=$func_quote_for_eval_result
 }
 
 
-# func_show_eval_locale cmd [fail_exp]
-# Unless opt_silent is true, then output CMD.  Then, if opt_dryrun is
-# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP
-# is given, then evaluate it.  Use the saved locale for evaluation.
-func_show_eval_locale ()
+# func_validate_options [ARG]...
+# ------------------------------
+# Perform any sanity checks on option settings and/or unconsumed
+# arguments.
+func_hookable func_validate_options
+func_validate_options ()
 {
-    my_cmd="$1"
-    my_fail_exp="${2-:}"
+    $debug_cmd
 
-    ${opt_silent-false} || {
-      func_quote_for_expand "$my_cmd"
-      eval "func_echo $func_quote_for_expand_result"
-    }
+    # Display all warnings if -W was not given.
+    test -n "$opt_warning_types" || opt_warning_types=" $warning_categories"
 
-    if ${opt_dry_run-false}; then :; else
-      eval "$lt_user_locale
-           $my_cmd"
-      my_status=$?
-      eval "$lt_safe_locale"
-      if test "$my_status" -eq 0; then :; else
-       eval "(exit $my_status); $my_fail_exp"
-      fi
-    fi
-}
+    func_run_hooks func_validate_options ${1+"$@"}
 
-# func_tr_sh
-# Turn $1 into a string suitable for a shell variable name.
-# Result is stored in $func_tr_sh_result.  All characters
-# not in the set a-zA-Z0-9_ are replaced with '_'. Further,
-# if $1 begins with a digit, a '_' is prepended as well.
-func_tr_sh ()
-{
-  case $1 in
-  [0-9]* | *[!a-zA-Z0-9_]*)
-    func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'`
-    ;;
-  * )
-    func_tr_sh_result=$1
-    ;;
-  esac
+    # Bail if the options were screwed!
+    $exit_cmd $EXIT_FAILURE
+
+    # save modified positional parameters for caller
+    func_validate_options_result=$func_run_hooks_result
 }
 
 
-# func_version
-# Echo version message to standard output and exit.
-func_version ()
-{
-    $opt_debug
 
-    $SED -n '/(C)/!b go
-       :more
-       /\./!{
-         N
-         s/\n# / /
-         b more
-       }
-       :go
-       /^# '$PROGRAM' (GNU /,/# warranty; / {
-        s/^# //
-       s/^# *$//
-        s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/
-        p
-     }' < "$progpath"
-     exit $?
-}
+## ----------------- ##
+## Helper functions. ##
+## ----------------- ##
 
-# func_usage
-# Echo short help message to standard output and exit.
-func_usage ()
+# This section contains the helper functions used by the rest of the
+# hookable option parser framework in ascii-betical order.
+
+
+# func_fatal_help ARG...
+# ----------------------
+# Echo program name prefixed message to standard error, followed by
+# a help hint, and exit.
+func_fatal_help ()
 {
-    $opt_debug
+    $debug_cmd
 
-    $SED -n '/^# Usage:/,/^#  *.*--help/ {
-        s/^# //
-       s/^# *$//
-       s/\$progname/'$progname'/
-       p
-    }' < "$progpath"
-    echo
-    $ECHO "run \`$progname --help | more' for full usage"
-    exit $?
+    eval \$ECHO \""Usage: $usage"\"
+    eval \$ECHO \""$fatal_help"\"
+    func_error ${1+"$@"}
+    exit $EXIT_FAILURE
 }
 
-# func_help [NOEXIT]
-# Echo long help message to standard output and exit,
-# unless 'noexit' is passed as argument.
+
+# func_help
+# ---------
+# Echo long help message to standard output and exit.
 func_help ()
 {
-    $opt_debug
-
-    $SED -n '/^# Usage:/,/# Report bugs to/ {
-       :print
-        s/^# //
-       s/^# *$//
-       s*\$progname*'$progname'*
-       s*\$host*'"$host"'*
-       s*\$SHELL*'"$SHELL"'*
-       s*\$LTCC*'"$LTCC"'*
-       s*\$LTCFLAGS*'"$LTCFLAGS"'*
-       s*\$LD*'"$LD"'*
-       s/\$with_gnu_ld/'"$with_gnu_ld"'/
-       s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/
-       s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/
-       p
-       d
-     }
-     /^# .* home page:/b print
-     /^# General help using/b print
-     ' < "$progpath"
-    ret=$?
-    if test -z "$1"; then
-      exit $ret
-    fi
+    $debug_cmd
+
+    func_usage_message
+    $ECHO "$long_help_message"
+    exit 0
 }
 
-# func_missing_arg argname
+
+# func_missing_arg ARGNAME
+# ------------------------
 # Echo program name prefixed message to standard error and set global
 # exit_cmd.
 func_missing_arg ()
 {
-    $opt_debug
+    $debug_cmd
 
-    func_error "missing argument for $1."
+    func_error "Missing argument for '$1'."
     exit_cmd=exit
 }
 
 
-# func_split_short_opt shortopt
+# func_split_equals STRING
+# ------------------------
+# Set func_split_equals_lhs and func_split_equals_rhs shell variables after
+# splitting STRING at the '=' sign.
+test -z "$_G_HAVE_XSI_OPS" \
+    && (eval 'x=a/b/c;
+      test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \
+    && _G_HAVE_XSI_OPS=yes
+
+if test yes = "$_G_HAVE_XSI_OPS"
+then
+  # This is an XSI compatible shell, allowing a faster implementation...
+  eval 'func_split_equals ()
+  {
+      $debug_cmd
+
+      func_split_equals_lhs=${1%%=*}
+      func_split_equals_rhs=${1#*=}
+      test "x$func_split_equals_lhs" = "x$1" \
+        && func_split_equals_rhs=
+  }'
+else
+  # ...otherwise fall back to using expr, which is often a shell builtin.
+  func_split_equals ()
+  {
+      $debug_cmd
+
+      func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'`
+      func_split_equals_rhs=
+      test "x$func_split_equals_lhs" = "x$1" \
+        || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'`
+  }
+fi #func_split_equals
+
+
+# func_split_short_opt SHORTOPT
+# -----------------------------
 # Set func_split_short_opt_name and func_split_short_opt_arg shell
 # variables after splitting SHORTOPT after the 2nd character.
-func_split_short_opt ()
+if test yes = "$_G_HAVE_XSI_OPS"
+then
+  # This is an XSI compatible shell, allowing a faster implementation...
+  eval 'func_split_short_opt ()
+  {
+      $debug_cmd
+
+      func_split_short_opt_arg=${1#??}
+      func_split_short_opt_name=${1%"$func_split_short_opt_arg"}
+  }'
+else
+  # ...otherwise fall back to using expr, which is often a shell builtin.
+  func_split_short_opt ()
+  {
+      $debug_cmd
+
+      func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'`
+      func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'`
+  }
+fi #func_split_short_opt
+
+
+# func_usage
+# ----------
+# Echo short help message to standard output and exit.
+func_usage ()
 {
-    my_sed_short_opt='1s/^\(..\).*$/\1/;q'
-    my_sed_short_rest='1s/^..\(.*\)$/\1/;q'
+    $debug_cmd
 
-    func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"`
-    func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"`
-} # func_split_short_opt may be replaced by extended shell implementation
+    func_usage_message
+    $ECHO "Run '$progname --help |${PAGER-more}' for full usage"
+    exit 0
+}
 
 
-# func_split_long_opt longopt
-# Set func_split_long_opt_name and func_split_long_opt_arg shell
-# variables after splitting LONGOPT at the `=' sign.
-func_split_long_opt ()
+# func_usage_message
+# ------------------
+# Echo short help message to standard output.
+func_usage_message ()
 {
-    my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q'
-    my_sed_long_arg='1s/^--[^=]*=//'
+    $debug_cmd
 
-    func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"`
-    func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"`
-} # func_split_long_opt may be replaced by extended shell implementation
+    eval \$ECHO \""Usage: $usage"\"
+    echo
+    $SED -n 's|^# ||
+        /^Written by/{
+          x;p;x
+        }
+       h
+       /^Written by/q' < "$progpath"
+    echo
+    eval \$ECHO \""$usage_message"\"
+}
 
-exit_cmd=:
 
+# func_version
+# ------------
+# Echo version message to standard output and exit.
+func_version ()
+{
+    $debug_cmd
 
+    printf '%s\n' "$progname $scriptversion"
+    $SED -n '
+        /(C)/!b go
+        :more
+        /\./!{
+          N
+          s|\n# | |
+          b more
+        }
+        :go
+        /^# Written by /,/# warranty; / {
+          s|^# ||
+          s|^# *$||
+          s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2|
+          p
+        }
+        /^# Written by / {
+          s|^# ||
+          p
+        }
+        /^warranty; /q' < "$progpath"
 
+    exit $?
+}
 
 
-magic="%%%MAGIC variable%%%"
-magic_exe="%%%MAGIC EXE variable%%%"
+# Local variables:
+# mode: shell-script
+# sh-indentation: 2
+# eval: (add-hook 'before-save-hook 'time-stamp)
+# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC"
+# time-stamp-time-zone: "UTC"
+# End:
 
-# Global variables.
-nonopt=
-preserve_args=
-lo2o="s/\\.lo\$/.${objext}/"
-o2lo="s/\\.${objext}\$/.lo/"
-extracted_archives=
-extracted_serial=0
+# Set a version string.
+scriptversion='(GNU libtool) 2.4.6'
 
-# If this variable is set in any of the actions, the command in it
-# will be execed at the end.  This prevents here-documents from being
-# left over by shells.
-exec_cmd=
 
-# func_append var value
-# Append VALUE to the end of shell variable VAR.
-func_append ()
+# func_echo ARG...
+# ----------------
+# Libtool also displays the current mode in messages, so override
+# funclib.sh func_echo with this custom definition.
+func_echo ()
 {
-    eval "${1}=\$${1}\${2}"
-} # func_append may be replaced by extended shell implementation
+    $debug_cmd
 
-# func_append_quoted var value
-# Quote VALUE and append to the end of shell variable VAR, separated
-# by a space.
-func_append_quoted ()
-{
-    func_quote_for_eval "${2}"
-    eval "${1}=\$${1}\\ \$func_quote_for_eval_result"
-} # func_append_quoted may be replaced by extended shell implementation
+    _G_message=$*
 
+    func_echo_IFS=$IFS
+    IFS=$nl
+    for _G_line in $_G_message; do
+      IFS=$func_echo_IFS
+      $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line"
+    done
+    IFS=$func_echo_IFS
+}
 
-# func_arith arithmetic-term...
-func_arith ()
+
+# func_warning ARG...
+# -------------------
+# Libtool warnings are not categorized, so override funclib.sh
+# func_warning with this simpler definition.
+func_warning ()
 {
-    func_arith_result=`expr "${@}"`
-} # func_arith may be replaced by extended shell implementation
+    $debug_cmd
 
+    $warning_func ${1+"$@"}
+}
 
-# func_len string
-# STRING may not start with a hyphen.
-func_len ()
-{
-    func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len`
-} # func_len may be replaced by extended shell implementation
 
+## ---------------- ##
+## Options parsing. ##
+## ---------------- ##
+
+# Hook in the functions to make sure our own options are parsed during
+# the option parsing loop.
+
+usage='$progpath [OPTION]... [MODE-ARG]...'
+
+# Short help message in response to '-h'.
+usage_message="Options:
+       --config             show all configuration variables
+       --debug              enable verbose shell tracing
+   -n, --dry-run            display commands without modifying any files
+       --features           display basic configuration information and exit
+       --mode=MODE          use operation mode MODE
+       --no-warnings        equivalent to '-Wnone'
+       --preserve-dup-deps  don't remove duplicate dependency libraries
+       --quiet, --silent    don't print informational messages
+       --tag=TAG            use configuration variables from tag TAG
+   -v, --verbose            print more informational messages than default
+       --version            print version information
+   -W, --warnings=CATEGORY  report the warnings falling in CATEGORY [all]
+   -h, --help, --help-all   print short, long, or detailed help message
+"
 
-# func_lo2o object
-func_lo2o ()
+# Additional text appended to 'usage_message' in response to '--help'.
+func_help ()
 {
-    func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"`
-} # func_lo2o may be replaced by extended shell implementation
+    $debug_cmd
+
+    func_usage_message
+    $ECHO "$long_help_message
+
+MODE must be one of the following:
+
+       clean           remove files from the build directory
+       compile         compile a source file into a libtool object
+       execute         automatically set library path, then run a program
+       finish          complete the installation of libtool libraries
+       install         install libraries or executables
+       link            create a library or an executable
+       uninstall       remove libraries from an installed directory
+
+MODE-ARGS vary depending on the MODE.  When passed as first option,
+'--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that.
+Try '$progname --help --mode=MODE' for a more detailed description of MODE.
+
+When reporting a bug, please describe a test case to reproduce it and
+include the following information:
+
+       host-triplet:   $host
+       shell:          $SHELL
+       compiler:       $LTCC
+       compiler flags: $LTCFLAGS
+       linker:         $LD (gnu? $with_gnu_ld)
+       version:        $progname $scriptversion Debian-2.4.6-2
+       automake:       `($AUTOMAKE --version) 2>/dev/null |$SED 1q`
+       autoconf:       `($AUTOCONF --version) 2>/dev/null |$SED 1q`
+
+Report bugs to <bug-libtool@gnu.org>.
+GNU libtool home page: <http://www.gnu.org/s/libtool/>.
+General help using GNU software: <http://www.gnu.org/gethelp/>."
+    exit 0
+}
 
 
-# func_xform libobj-or-source
-func_xform ()
-{
-    func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'`
-} # func_xform may be replaced by extended shell implementation
+# func_lo2o OBJECT-NAME
+# ---------------------
+# Transform OBJECT-NAME from a '.lo' suffix to the platform specific
+# object suffix.
+
+lo2o=s/\\.lo\$/.$objext/
+o2lo=s/\\.$objext\$/.lo/
+
+if test yes = "$_G_HAVE_XSI_OPS"; then
+  eval 'func_lo2o ()
+  {
+    case $1 in
+      *.lo) func_lo2o_result=${1%.lo}.$objext ;;
+      *   ) func_lo2o_result=$1               ;;
+    esac
+  }'
+
+  # func_xform LIBOBJ-OR-SOURCE
+  # ---------------------------
+  # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise)
+  # suffix to a '.lo' libtool-object suffix.
+  eval 'func_xform ()
+  {
+    func_xform_result=${1%.*}.lo
+  }'
+else
+  # ...otherwise fall back to using sed.
+  func_lo2o ()
+  {
+    func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"`
+  }
+
+  func_xform ()
+  {
+    func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'`
+  }
+fi
 
 
-# func_fatal_configuration arg...
+# func_fatal_configuration ARG...
+# -------------------------------
 # Echo program name prefixed message to standard error, followed by
 # a configuration failure hint, and exit.
 func_fatal_configuration ()
 {
-    func_error ${1+"$@"}
-    func_error "See the $PACKAGE documentation for more information."
-    func_fatal_error "Fatal configuration error."
+    func__fatal_error ${1+"$@"} \
+      "See the $PACKAGE documentation for more information." \
+      "Fatal configuration error."
 }
 
 
 # func_config
+# -----------
 # Display the configuration for all the tags in this script.
 func_config ()
 {
@@ -915,17 +2149,19 @@ func_config ()
     exit $?
 }
 
+
 # func_features
+# -------------
 # Display the features supported by this script.
 func_features ()
 {
     echo "host: $host"
-    if test "$build_libtool_libs" = yes; then
+    if test yes = "$build_libtool_libs"; then
       echo "enable shared libraries"
     else
       echo "disable shared libraries"
     fi
-    if test "$build_old_libs" = yes; then
+    if test yes = "$build_old_libs"; then
       echo "enable static libraries"
     else
       echo "disable static libraries"
@@ -934,314 +2170,350 @@ func_features ()
     exit $?
 }
 
-# func_enable_tag tagname
+
+# func_enable_tag TAGNAME
+# -----------------------
 # Verify that TAGNAME is valid, and either flag an error and exit, or
 # enable the TAGNAME tag.  We also add TAGNAME to the global $taglist
 # variable here.
 func_enable_tag ()
 {
-  # Global variable:
-  tagname="$1"
+    # Global variable:
+    tagname=$1
 
-  re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
-  re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
-  sed_extractcf="/$re_begincf/,/$re_endcf/p"
+    re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
+    re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
+    sed_extractcf=/$re_begincf/,/$re_endcf/p
 
-  # Validate tagname.
-  case $tagname in
-    *[!-_A-Za-z0-9,/]*)
-      func_fatal_error "invalid tag name: $tagname"
-      ;;
-  esac
+    # Validate tagname.
+    case $tagname in
+      *[!-_A-Za-z0-9,/]*)
+        func_fatal_error "invalid tag name: $tagname"
+        ;;
+    esac
 
-  # Don't test for the "default" C tag, as we know it's
-  # there but not specially marked.
-  case $tagname in
-    CC) ;;
+    # Don't test for the "default" C tag, as we know it's
+    # there but not specially marked.
+    case $tagname in
+        CC) ;;
     *)
-      if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then
-       taglist="$taglist $tagname"
-
-       # Evaluate the configuration.  Be careful to quote the path
-       # and the sed script, to avoid splitting on whitespace, but
-       # also don't use non-portable quotes within backquotes within
-       # quotes we have to do it in 2 steps:
-       extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"`
-       eval "$extractedcf"
-      else
-       func_error "ignoring unknown tag $tagname"
-      fi
-      ;;
-  esac
+        if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then
+         taglist="$taglist $tagname"
+
+         # Evaluate the configuration.  Be careful to quote the path
+         # and the sed script, to avoid splitting on whitespace, but
+         # also don't use non-portable quotes within backquotes within
+         # quotes we have to do it in 2 steps:
+         extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"`
+         eval "$extractedcf"
+        else
+         func_error "ignoring unknown tag $tagname"
+        fi
+        ;;
+    esac
 }
 
+
 # func_check_version_match
+# ------------------------
 # Ensure that we are using m4 macros, and libtool script from the same
 # release of libtool.
 func_check_version_match ()
 {
-  if test "$package_revision" != "$macro_revision"; then
-    if test "$VERSION" != "$macro_version"; then
-      if test -z "$macro_version"; then
-        cat >&2 <<_LT_EOF
+    if test "$package_revision" != "$macro_revision"; then
+      if test "$VERSION" != "$macro_version"; then
+        if test -z "$macro_version"; then
+          cat >&2 <<_LT_EOF
 $progname: Version mismatch error.  This is $PACKAGE $VERSION, but the
 $progname: definition of this LT_INIT comes from an older release.
 $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
 $progname: and run autoconf again.
 _LT_EOF
-      else
-        cat >&2 <<_LT_EOF
+        else
+          cat >&2 <<_LT_EOF
 $progname: Version mismatch error.  This is $PACKAGE $VERSION, but the
 $progname: definition of this LT_INIT comes from $PACKAGE $macro_version.
 $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
 $progname: and run autoconf again.
 _LT_EOF
-      fi
-    else
-      cat >&2 <<_LT_EOF
+        fi
+      else
+        cat >&2 <<_LT_EOF
 $progname: Version mismatch error.  This is $PACKAGE $VERSION, revision $package_revision,
 $progname: but the definition of this LT_INIT comes from revision $macro_revision.
 $progname: You should recreate aclocal.m4 with macros from revision $package_revision
 $progname: of $PACKAGE $VERSION and run autoconf again.
 _LT_EOF
-    fi
+      fi
 
-    exit $EXIT_MISMATCH
-  fi
+      exit $EXIT_MISMATCH
+    fi
 }
 
 
-# Shorthand for --mode=foo, only valid as the first argument
-case $1 in
-clean|clea|cle|cl)
-  shift; set dummy --mode clean ${1+"$@"}; shift
-  ;;
-compile|compil|compi|comp|com|co|c)
-  shift; set dummy --mode compile ${1+"$@"}; shift
-  ;;
-execute|execut|execu|exec|exe|ex|e)
-  shift; set dummy --mode execute ${1+"$@"}; shift
-  ;;
-finish|finis|fini|fin|fi|f)
-  shift; set dummy --mode finish ${1+"$@"}; shift
-  ;;
-install|instal|insta|inst|ins|in|i)
-  shift; set dummy --mode install ${1+"$@"}; shift
-  ;;
-link|lin|li|l)
-  shift; set dummy --mode link ${1+"$@"}; shift
-  ;;
-uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
-  shift; set dummy --mode uninstall ${1+"$@"}; shift
-  ;;
-esac
+# libtool_options_prep [ARG]...
+# -----------------------------
+# Preparation for options parsed by libtool.
+libtool_options_prep ()
+{
+    $debug_mode
 
+    # Option defaults:
+    opt_config=false
+    opt_dlopen=
+    opt_dry_run=false
+    opt_help=false
+    opt_mode=
+    opt_preserve_dup_deps=false
+    opt_quiet=false
 
+    nonopt=
+    preserve_args=
 
-# Option defaults:
-opt_debug=:
-opt_dry_run=false
-opt_config=false
-opt_preserve_dup_deps=false
-opt_features=false
-opt_finish=false
-opt_help=false
-opt_help_all=false
-opt_silent=:
-opt_warning=:
-opt_verbose=:
-opt_silent=false
-opt_verbose=false
+    # Shorthand for --mode=foo, only valid as the first argument
+    case $1 in
+    clean|clea|cle|cl)
+      shift; set dummy --mode clean ${1+"$@"}; shift
+      ;;
+    compile|compil|compi|comp|com|co|c)
+      shift; set dummy --mode compile ${1+"$@"}; shift
+      ;;
+    execute|execut|execu|exec|exe|ex|e)
+      shift; set dummy --mode execute ${1+"$@"}; shift
+      ;;
+    finish|finis|fini|fin|fi|f)
+      shift; set dummy --mode finish ${1+"$@"}; shift
+      ;;
+    install|instal|insta|inst|ins|in|i)
+      shift; set dummy --mode install ${1+"$@"}; shift
+      ;;
+    link|lin|li|l)
+      shift; set dummy --mode link ${1+"$@"}; shift
+      ;;
+    uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
+      shift; set dummy --mode uninstall ${1+"$@"}; shift
+      ;;
+    esac
+
+    # Pass back the list of options.
+    func_quote_for_eval ${1+"$@"}
+    libtool_options_prep_result=$func_quote_for_eval_result
+}
+func_add_hook func_options_prep libtool_options_prep
 
 
-# Parse options once, thoroughly.  This comes as soon as possible in the
-# script to make things like `--version' happen as quickly as we can.
+# libtool_parse_options [ARG]...
+# ---------------------------------
+# Provide handling for libtool specific options.
+libtool_parse_options ()
 {
-  # this just eases exit handling
-  while test $# -gt 0; do
-    opt="$1"
-    shift
-    case $opt in
-      --debug|-x)      opt_debug='set -x'
-                       func_echo "enabling shell trace mode"
-                       $opt_debug
-                       ;;
-      --dry-run|--dryrun|-n)
-                       opt_dry_run=:
-                       ;;
-      --config)
-                       opt_config=:
-func_config
-                       ;;
-      --dlopen|-dlopen)
-                       optarg="$1"
-                       opt_dlopen="${opt_dlopen+$opt_dlopen
-}$optarg"
-                       shift
-                       ;;
-      --preserve-dup-deps)
-                       opt_preserve_dup_deps=:
-                       ;;
-      --features)
-                       opt_features=:
-func_features
-                       ;;
-      --finish)
-                       opt_finish=:
-set dummy --mode finish ${1+"$@"}; shift
-                       ;;
-      --help)
-                       opt_help=:
-                       ;;
-      --help-all)
-                       opt_help_all=:
-opt_help=': help-all'
-                       ;;
-      --mode)
-                       test $# = 0 && func_missing_arg $opt && break
-                       optarg="$1"
-                       opt_mode="$optarg"
-case $optarg in
-  # Valid mode arguments:
-  clean|compile|execute|finish|install|link|relink|uninstall) ;;
-
-  # Catch anything else as an error
-  *) func_error "invalid argument for $opt"
-     exit_cmd=exit
-     break
-     ;;
-esac
-                       shift
-                       ;;
-      --no-silent|--no-quiet)
-                       opt_silent=false
-func_append preserve_args " $opt"
-                       ;;
-      --no-warning|--no-warn)
-                       opt_warning=false
-func_append preserve_args " $opt"
-                       ;;
-      --no-verbose)
-                       opt_verbose=false
-func_append preserve_args " $opt"
-                       ;;
-      --silent|--quiet)
-                       opt_silent=:
-func_append preserve_args " $opt"
-        opt_verbose=false
-                       ;;
-      --verbose|-v)
-                       opt_verbose=:
-func_append preserve_args " $opt"
-opt_silent=false
-                       ;;
-      --tag)
-                       test $# = 0 && func_missing_arg $opt && break
-                       optarg="$1"
-                       opt_tag="$optarg"
-func_append preserve_args " $opt $optarg"
-func_enable_tag "$optarg"
-                       shift
-                       ;;
-
-      -\?|-h)          func_usage                              ;;
-      --help)          func_help                               ;;
-      --version)       func_version                            ;;
-
-      # Separate optargs to long options:
-      --*=*)
-                       func_split_long_opt "$opt"
-                       set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"}
-                       shift
-                       ;;
-
-      # Separate non-argument short options:
-      -\?*|-h*|-n*|-v*)
-                       func_split_short_opt "$opt"
-                       set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"}
-                       shift
-                       ;;
-
-      --)              break                                   ;;
-      -*)              func_fatal_help "unrecognized option \`$opt'" ;;
-      *)               set dummy "$opt" ${1+"$@"};     shift; break  ;;
-    esac
-  done
+    $debug_cmd
 
-  # Validate options:
+    # Perform our own loop to consume as many options as possible in
+    # each iteration.
+    while test $# -gt 0; do
+      _G_opt=$1
+      shift
+      case $_G_opt in
+        --dry-run|--dryrun|-n)
+                        opt_dry_run=:
+                        ;;
+
+        --config)       func_config ;;
+
+        --dlopen|-dlopen)
+                        opt_dlopen="${opt_dlopen+$opt_dlopen
+}$1"
+                        shift
+                        ;;
+
+        --preserve-dup-deps)
+                        opt_preserve_dup_deps=: ;;
+
+        --features)     func_features ;;
+
+        --finish)       set dummy --mode finish ${1+"$@"}; shift ;;
+
+        --help)         opt_help=: ;;
+
+        --help-all)     opt_help=': help-all' ;;
+
+        --mode)         test $# = 0 && func_missing_arg $_G_opt && break
+                        opt_mode=$1
+                        case $1 in
+                          # Valid mode arguments:
+                          clean|compile|execute|finish|install|link|relink|uninstall) ;;
+
+                          # Catch anything else as an error
+                          *) func_error "invalid argument for $_G_opt"
+                             exit_cmd=exit
+                             break
+                             ;;
+                        esac
+                        shift
+                        ;;
+
+        --no-silent|--no-quiet)
+                        opt_quiet=false
+                        func_append preserve_args " $_G_opt"
+                        ;;
+
+        --no-warnings|--no-warning|--no-warn)
+                        opt_warning=false
+                        func_append preserve_args " $_G_opt"
+                        ;;
+
+        --no-verbose)
+                        opt_verbose=false
+                        func_append preserve_args " $_G_opt"
+                        ;;
+
+        --silent|--quiet)
+                        opt_quiet=:
+                        opt_verbose=false
+                        func_append preserve_args " $_G_opt"
+                        ;;
+
+        --tag)          test $# = 0 && func_missing_arg $_G_opt && break
+                        opt_tag=$1
+                        func_append preserve_args " $_G_opt $1"
+                        func_enable_tag "$1"
+                        shift
+                        ;;
+
+        --verbose|-v)   opt_quiet=false
+                        opt_verbose=:
+                        func_append preserve_args " $_G_opt"
+                        ;;
+
+       # An option not handled by this hook function:
+        *)             set dummy "$_G_opt" ${1+"$@"};  shift; break  ;;
+      esac
+    done
 
-  # save first non-option argument
-  if test "$#" -gt 0; then
-    nonopt="$opt"
-    shift
-  fi
 
-  # preserve --debug
-  test "$opt_debug" = : || func_append preserve_args " --debug"
+    # save modified positional parameters for caller
+    func_quote_for_eval ${1+"$@"}
+    libtool_parse_options_result=$func_quote_for_eval_result
+}
+func_add_hook func_parse_options libtool_parse_options
 
-  case $host in
-    *cygwin* | *mingw* | *pw32* | *cegcc*)
-      # don't eliminate duplications in $postdeps and $predeps
-      opt_duplicate_compiler_generated_deps=:
-      ;;
-    *)
-      opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps
-      ;;
-  esac
 
-  $opt_help || {
-    # Sanity checks first:
-    func_check_version_match
 
-    if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
-      func_fatal_configuration "not configured to build any kind of library"
+# libtool_validate_options [ARG]...
+# ---------------------------------
+# Perform any sanity checks on option settings and/or unconsumed
+# arguments.
+libtool_validate_options ()
+{
+    # save first non-option argument
+    if test 0 -lt $#; then
+      nonopt=$1
+      shift
     fi
 
-    # Darwin sucks
-    eval std_shrext=\"$shrext_cmds\"
+    # preserve --debug
+    test : = "$debug_cmd" || func_append preserve_args " --debug"
 
-    # Only execute mode is allowed to have -dlopen flags.
-    if test -n "$opt_dlopen" && test "$opt_mode" != execute; then
-      func_error "unrecognized option \`-dlopen'"
-      $ECHO "$help" 1>&2
-      exit $EXIT_FAILURE
-    fi
+    case $host in
+      # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452
+      # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788
+      *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*)
+        # don't eliminate duplications in $postdeps and $predeps
+        opt_duplicate_compiler_generated_deps=:
+        ;;
+      *)
+        opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps
+        ;;
+    esac
 
-    # Change the help message to a mode-specific one.
-    generic_help="$help"
-    help="Try \`$progname --help --mode=$opt_mode' for more information."
-  }
+    $opt_help || {
+      # Sanity checks first:
+      func_check_version_match
+
+      test yes != "$build_libtool_libs" \
+        && test yes != "$build_old_libs" \
+        && func_fatal_configuration "not configured to build any kind of library"
+
+      # Darwin sucks
+      eval std_shrext=\"$shrext_cmds\"
+
+      # Only execute mode is allowed to have -dlopen flags.
+      if test -n "$opt_dlopen" && test execute != "$opt_mode"; then
+        func_error "unrecognized option '-dlopen'"
+        $ECHO "$help" 1>&2
+        exit $EXIT_FAILURE
+      fi
 
+      # Change the help message to a mode-specific one.
+      generic_help=$help
+      help="Try '$progname --help --mode=$opt_mode' for more information."
+    }
 
-  # Bail if the options were screwed
-  $exit_cmd $EXIT_FAILURE
+    # Pass back the unparsed argument list
+    func_quote_for_eval ${1+"$@"}
+    libtool_validate_options_result=$func_quote_for_eval_result
 }
+func_add_hook func_validate_options libtool_validate_options
 
 
+# Process options as early as possible so that --help and --version
+# can return quickly.
+func_options ${1+"$@"}
+eval set dummy "$func_options_result"; shift
+
 
 
 ## ----------- ##
 ##    Main.    ##
 ## ----------- ##
 
+magic='%%%MAGIC variable%%%'
+magic_exe='%%%MAGIC EXE variable%%%'
+
+# Global variables.
+extracted_archives=
+extracted_serial=0
+
+# If this variable is set in any of the actions, the command in it
+# will be execed at the end.  This prevents here-documents from being
+# left over by shells.
+exec_cmd=
+
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+  eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+
+# func_generated_by_libtool
+# True iff stdin has been generated by Libtool. This function is only
+# a basic sanity check; it will hardly flush out determined imposters.
+func_generated_by_libtool_p ()
+{
+  $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1
+}
+
 # func_lalib_p file
-# True iff FILE is a libtool `.la' library or `.lo' object file.
+# True iff FILE is a libtool '.la' library or '.lo' object file.
 # This function is only a basic sanity check; it will hardly flush out
 # determined imposters.
 func_lalib_p ()
 {
     test -f "$1" &&
-      $SED -e 4q "$1" 2>/dev/null \
-        | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1
+      $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p
 }
 
 # func_lalib_unsafe_p file
-# True iff FILE is a libtool `.la' library or `.lo' object file.
+# True iff FILE is a libtool '.la' library or '.lo' object file.
 # This function implements the same check as func_lalib_p without
 # resorting to external programs.  To this end, it redirects stdin and
 # closes it afterwards, without saving the original file descriptor.
 # As a safety measure, use it only where a negative result would be
-# fatal anyway.  Works if `file' does not exist.
+# fatal anyway.  Works if 'file' does not exist.
 func_lalib_unsafe_p ()
 {
     lalib_p=no
@@ -1249,13 +2521,13 @@ func_lalib_unsafe_p ()
        for lalib_p_l in 1 2 3 4
        do
            read lalib_p_line
-           case "$lalib_p_line" in
+           case $lalib_p_line in
                \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;;
            esac
        done
        exec 0<&5 5<&-
     fi
-    test "$lalib_p" = yes
+    test yes = "$lalib_p"
 }
 
 # func_ltwrapper_script_p file
@@ -1264,7 +2536,8 @@ func_lalib_unsafe_p ()
 # determined imposters.
 func_ltwrapper_script_p ()
 {
-    func_lalib_p "$1"
+    test -f "$1" &&
+      $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p
 }
 
 # func_ltwrapper_executable_p file
@@ -1289,7 +2562,7 @@ func_ltwrapper_scriptname ()
 {
     func_dirname_and_basename "$1" "" "."
     func_stripname '' '.exe' "$func_basename_result"
-    func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper"
+    func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper
 }
 
 # func_ltwrapper_p file
@@ -1308,11 +2581,13 @@ func_ltwrapper_p ()
 # FAIL_CMD may read-access the current command in variable CMD!
 func_execute_cmds ()
 {
-    $opt_debug
+    $debug_cmd
+
     save_ifs=$IFS; IFS='~'
     for cmd in $1; do
-      IFS=$save_ifs
+      IFS=$sp$nl
       eval cmd=\"$cmd\"
+      IFS=$save_ifs
       func_show_eval "$cmd" "${2-:}"
     done
     IFS=$save_ifs
@@ -1324,10 +2599,11 @@ func_execute_cmds ()
 # Note that it is not necessary on cygwin/mingw to append a dot to
 # FILE even if both FILE and FILE.exe exist: automatic-append-.exe
 # behavior happens only for exec(3), not for open(2)!  Also, sourcing
-# `FILE.' does not work on cygwin managed mounts.
+# 'FILE.' does not work on cygwin managed mounts.
 func_source ()
 {
-    $opt_debug
+    $debug_cmd
+
     case $1 in
     */* | *\\*)        . "$1" ;;
     *)         . "./$1" ;;
@@ -1354,10 +2630,10 @@ func_resolve_sysroot ()
 # store the result into func_replace_sysroot_result.
 func_replace_sysroot ()
 {
-  case "$lt_sysroot:$1" in
+  case $lt_sysroot:$1 in
   ?*:"$lt_sysroot"*)
     func_stripname "$lt_sysroot" '' "$1"
-    func_replace_sysroot_result="=$func_stripname_result"
+    func_replace_sysroot_result='='$func_stripname_result
     ;;
   *)
     # Including no sysroot.
@@ -1374,7 +2650,8 @@ func_replace_sysroot ()
 # arg is usually of the form 'gcc ...'
 func_infer_tag ()
 {
-    $opt_debug
+    $debug_cmd
+
     if test -n "$available_tags" && test -z "$tagname"; then
       CC_quoted=
       for arg in $CC; do
@@ -1393,7 +2670,7 @@ func_infer_tag ()
        for z in $available_tags; do
          if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then
            # Evaluate the configuration.
-           eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
+           eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
            CC_quoted=
            for arg in $CC; do
              # Double-quote args containing other shell metacharacters.
@@ -1418,7 +2695,7 @@ func_infer_tag ()
        # line option must be used.
        if test -z "$tagname"; then
          func_echo "unable to infer tagged configuration"
-         func_fatal_error "specify a tag with \`--tag'"
+         func_fatal_error "specify a tag with '--tag'"
 #      else
 #        func_verbose "using $tagname tagged configuration"
        fi
@@ -1434,15 +2711,15 @@ func_infer_tag ()
 # but don't create it if we're doing a dry run.
 func_write_libtool_object ()
 {
-    write_libobj=${1}
-    if test "$build_libtool_libs" = yes; then
-      write_lobj=\'${2}\'
+    write_libobj=$1
+    if test yes = "$build_libtool_libs"; then
+      write_lobj=\'$2\'
     else
       write_lobj=none
     fi
 
-    if test "$build_old_libs" = yes; then
-      write_oldobj=\'${3}\'
+    if test yes = "$build_old_libs"; then
+      write_oldobj=\'$3\'
     else
       write_oldobj=none
     fi
@@ -1450,7 +2727,7 @@ func_write_libtool_object ()
     $opt_dry_run || {
       cat >${write_libobj}T <<EOF
 # $write_libobj - a libtool object file
-# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
+# Generated by $PROGRAM (GNU $PACKAGE) $VERSION
 #
 # Please DO NOT delete this file!
 # It is necessary for linking the library.
@@ -1462,7 +2739,7 @@ pic_object=$write_lobj
 non_pic_object=$write_oldobj
 
 EOF
-      $MV "${write_libobj}T" "${write_libobj}"
+      $MV "${write_libobj}T" "$write_libobj"
     }
 }
 
@@ -1482,8 +2759,9 @@ EOF
 # be empty on error (or when ARG is empty)
 func_convert_core_file_wine_to_w32 ()
 {
-  $opt_debug
-  func_convert_core_file_wine_to_w32_result="$1"
+  $debug_cmd
+
+  func_convert_core_file_wine_to_w32_result=$1
   if test -n "$1"; then
     # Unfortunately, winepath does not exit with a non-zero error code, so we
     # are forced to check the contents of stdout. On the other hand, if the
@@ -1491,9 +2769,9 @@ func_convert_core_file_wine_to_w32 ()
     # *an error message* to stdout. So we must check for both error code of
     # zero AND non-empty stdout, which explains the odd construction:
     func_convert_core_file_wine_to_w32_tmp=`winepath -w "$1" 2>/dev/null`
-    if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then
+    if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then
       func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" |
-        $SED -e "$lt_sed_naive_backslashify"`
+        $SED -e "$sed_naive_backslashify"`
     else
       func_convert_core_file_wine_to_w32_result=
     fi
@@ -1514,18 +2792,19 @@ func_convert_core_file_wine_to_w32 ()
 # are convertible, then the result may be empty.
 func_convert_core_path_wine_to_w32 ()
 {
-  $opt_debug
+  $debug_cmd
+
   # unfortunately, winepath doesn't convert paths, only file names
-  func_convert_core_path_wine_to_w32_result=""
+  func_convert_core_path_wine_to_w32_result=
   if test -n "$1"; then
     oldIFS=$IFS
     IFS=:
     for func_convert_core_path_wine_to_w32_f in $1; do
       IFS=$oldIFS
       func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f"
-      if test -n "$func_convert_core_file_wine_to_w32_result" ; then
+      if test -n "$func_convert_core_file_wine_to_w32_result"; then
         if test -z "$func_convert_core_path_wine_to_w32_result"; then
-          func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result"
+          func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result
         else
           func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result"
         fi
@@ -1554,7 +2833,8 @@ func_convert_core_path_wine_to_w32 ()
 # environment variable; do not put it in $PATH.
 func_cygpath ()
 {
-  $opt_debug
+  $debug_cmd
+
   if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then
     func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null`
     if test "$?" -ne 0; then
@@ -1563,7 +2843,7 @@ func_cygpath ()
     fi
   else
     func_cygpath_result=
-    func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'"
+    func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'"
   fi
 }
 #end: func_cygpath
@@ -1574,10 +2854,11 @@ func_cygpath ()
 # result in func_convert_core_msys_to_w32_result.
 func_convert_core_msys_to_w32 ()
 {
-  $opt_debug
+  $debug_cmd
+
   # awkward: cmd appends spaces to result
   func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null |
-    $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"`
+    $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"`
 }
 #end: func_convert_core_msys_to_w32
 
@@ -1588,13 +2869,14 @@ func_convert_core_msys_to_w32 ()
 # func_to_host_file_result to ARG1).
 func_convert_file_check ()
 {
-  $opt_debug
-  if test -z "$2" && test -n "$1" ; then
+  $debug_cmd
+
+  if test -z "$2" && test -n "$1"; then
     func_error "Could not determine host file name corresponding to"
-    func_error "  \`$1'"
+    func_error "  '$1'"
     func_error "Continuing, but uninstalled executables may not work."
     # Fallback:
-    func_to_host_file_result="$1"
+    func_to_host_file_result=$1
   fi
 }
 # end func_convert_file_check
@@ -1606,10 +2888,11 @@ func_convert_file_check ()
 # func_to_host_file_result to a simplistic fallback value (see below).
 func_convert_path_check ()
 {
-  $opt_debug
+  $debug_cmd
+
   if test -z "$4" && test -n "$3"; then
     func_error "Could not determine the host path corresponding to"
-    func_error "  \`$3'"
+    func_error "  '$3'"
     func_error "Continuing, but uninstalled executables may not work."
     # Fallback.  This is a deliberately simplistic "conversion" and
     # should not be "improved".  See libtool.info.
@@ -1618,7 +2901,7 @@ func_convert_path_check ()
       func_to_host_path_result=`echo "$3" |
         $SED -e "$lt_replace_pathsep_chars"`
     else
-      func_to_host_path_result="$3"
+      func_to_host_path_result=$3
     fi
   fi
 }
@@ -1630,9 +2913,10 @@ func_convert_path_check ()
 # and appending REPL if ORIG matches BACKPAT.
 func_convert_path_front_back_pathsep ()
 {
-  $opt_debug
+  $debug_cmd
+
   case $4 in
-  $1 ) func_to_host_path_result="$3$func_to_host_path_result"
+  $1 ) func_to_host_path_result=$3$func_to_host_path_result
     ;;
   esac
   case $4 in
@@ -1646,7 +2930,7 @@ func_convert_path_front_back_pathsep ()
 ##################################################
 # $build to $host FILE NAME CONVERSION FUNCTIONS #
 ##################################################
-# invoked via `$to_host_file_cmd ARG'
+# invoked via '$to_host_file_cmd ARG'
 #
 # In each case, ARG is the path to be converted from $build to $host format.
 # Result will be available in $func_to_host_file_result.
@@ -1657,7 +2941,8 @@ func_convert_path_front_back_pathsep ()
 # in func_to_host_file_result.
 func_to_host_file ()
 {
-  $opt_debug
+  $debug_cmd
+
   $to_host_file_cmd "$1"
 }
 # end func_to_host_file
@@ -1669,7 +2954,8 @@ func_to_host_file ()
 # in (the comma separated) LAZY, no conversion takes place.
 func_to_tool_file ()
 {
-  $opt_debug
+  $debug_cmd
+
   case ,$2, in
     *,"$to_tool_file_cmd",*)
       func_to_tool_file_result=$1
@@ -1687,7 +2973,7 @@ func_to_tool_file ()
 # Copy ARG to func_to_host_file_result.
 func_convert_file_noop ()
 {
-  func_to_host_file_result="$1"
+  func_to_host_file_result=$1
 }
 # end func_convert_file_noop
 
@@ -1698,11 +2984,12 @@ func_convert_file_noop ()
 # func_to_host_file_result.
 func_convert_file_msys_to_w32 ()
 {
-  $opt_debug
-  func_to_host_file_result="$1"
+  $debug_cmd
+
+  func_to_host_file_result=$1
   if test -n "$1"; then
     func_convert_core_msys_to_w32 "$1"
-    func_to_host_file_result="$func_convert_core_msys_to_w32_result"
+    func_to_host_file_result=$func_convert_core_msys_to_w32_result
   fi
   func_convert_file_check "$1" "$func_to_host_file_result"
 }
@@ -1714,8 +3001,9 @@ func_convert_file_msys_to_w32 ()
 # func_to_host_file_result.
 func_convert_file_cygwin_to_w32 ()
 {
-  $opt_debug
-  func_to_host_file_result="$1"
+  $debug_cmd
+
+  func_to_host_file_result=$1
   if test -n "$1"; then
     # because $build is cygwin, we call "the" cygpath in $PATH; no need to use
     # LT_CYGPATH in this case.
@@ -1731,11 +3019,12 @@ func_convert_file_cygwin_to_w32 ()
 # and a working winepath. Returns result in func_to_host_file_result.
 func_convert_file_nix_to_w32 ()
 {
-  $opt_debug
-  func_to_host_file_result="$1"
+  $debug_cmd
+
+  func_to_host_file_result=$1
   if test -n "$1"; then
     func_convert_core_file_wine_to_w32 "$1"
-    func_to_host_file_result="$func_convert_core_file_wine_to_w32_result"
+    func_to_host_file_result=$func_convert_core_file_wine_to_w32_result
   fi
   func_convert_file_check "$1" "$func_to_host_file_result"
 }
@@ -1747,12 +3036,13 @@ func_convert_file_nix_to_w32 ()
 # Returns result in func_to_host_file_result.
 func_convert_file_msys_to_cygwin ()
 {
-  $opt_debug
-  func_to_host_file_result="$1"
+  $debug_cmd
+
+  func_to_host_file_result=$1
   if test -n "$1"; then
     func_convert_core_msys_to_w32 "$1"
     func_cygpath -u "$func_convert_core_msys_to_w32_result"
-    func_to_host_file_result="$func_cygpath_result"
+    func_to_host_file_result=$func_cygpath_result
   fi
   func_convert_file_check "$1" "$func_to_host_file_result"
 }
@@ -1765,13 +3055,14 @@ func_convert_file_msys_to_cygwin ()
 # in func_to_host_file_result.
 func_convert_file_nix_to_cygwin ()
 {
-  $opt_debug
-  func_to_host_file_result="$1"
+  $debug_cmd
+
+  func_to_host_file_result=$1
   if test -n "$1"; then
     # convert from *nix to w32, then use cygpath to convert from w32 to cygwin.
     func_convert_core_file_wine_to_w32 "$1"
     func_cygpath -u "$func_convert_core_file_wine_to_w32_result"
-    func_to_host_file_result="$func_cygpath_result"
+    func_to_host_file_result=$func_cygpath_result
   fi
   func_convert_file_check "$1" "$func_to_host_file_result"
 }
@@ -1781,7 +3072,7 @@ func_convert_file_nix_to_cygwin ()
 #############################################
 # $build to $host PATH CONVERSION FUNCTIONS #
 #############################################
-# invoked via `$to_host_path_cmd ARG'
+# invoked via '$to_host_path_cmd ARG'
 #
 # In each case, ARG is the path to be converted from $build to $host format.
 # The result will be available in $func_to_host_path_result.
@@ -1805,10 +3096,11 @@ func_convert_file_nix_to_cygwin ()
 to_host_path_cmd=
 func_init_to_host_path_cmd ()
 {
-  $opt_debug
+  $debug_cmd
+
   if test -z "$to_host_path_cmd"; then
     func_stripname 'func_convert_file_' '' "$to_host_file_cmd"
-    to_host_path_cmd="func_convert_path_${func_stripname_result}"
+    to_host_path_cmd=func_convert_path_$func_stripname_result
   fi
 }
 
@@ -1818,7 +3110,8 @@ func_init_to_host_path_cmd ()
 # in func_to_host_path_result.
 func_to_host_path ()
 {
-  $opt_debug
+  $debug_cmd
+
   func_init_to_host_path_cmd
   $to_host_path_cmd "$1"
 }
@@ -1829,7 +3122,7 @@ func_to_host_path ()
 # Copy ARG to func_to_host_path_result.
 func_convert_path_noop ()
 {
-  func_to_host_path_result="$1"
+  func_to_host_path_result=$1
 }
 # end func_convert_path_noop
 
@@ -1840,8 +3133,9 @@ func_convert_path_noop ()
 # func_to_host_path_result.
 func_convert_path_msys_to_w32 ()
 {
-  $opt_debug
-  func_to_host_path_result="$1"
+  $debug_cmd
+
+  func_to_host_path_result=$1
   if test -n "$1"; then
     # Remove leading and trailing path separator characters from ARG.  MSYS
     # behavior is inconsistent here; cygpath turns them into '.;' and ';.';
@@ -1849,7 +3143,7 @@ func_convert_path_msys_to_w32 ()
     func_stripname : : "$1"
     func_to_host_path_tmp1=$func_stripname_result
     func_convert_core_msys_to_w32 "$func_to_host_path_tmp1"
-    func_to_host_path_result="$func_convert_core_msys_to_w32_result"
+    func_to_host_path_result=$func_convert_core_msys_to_w32_result
     func_convert_path_check : ";" \
       "$func_to_host_path_tmp1" "$func_to_host_path_result"
     func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
@@ -1863,8 +3157,9 @@ func_convert_path_msys_to_w32 ()
 # func_to_host_file_result.
 func_convert_path_cygwin_to_w32 ()
 {
-  $opt_debug
-  func_to_host_path_result="$1"
+  $debug_cmd
+
+  func_to_host_path_result=$1
   if test -n "$1"; then
     # See func_convert_path_msys_to_w32:
     func_stripname : : "$1"
@@ -1883,14 +3178,15 @@ func_convert_path_cygwin_to_w32 ()
 # a working winepath.  Returns result in func_to_host_file_result.
 func_convert_path_nix_to_w32 ()
 {
-  $opt_debug
-  func_to_host_path_result="$1"
+  $debug_cmd
+
+  func_to_host_path_result=$1
   if test -n "$1"; then
     # See func_convert_path_msys_to_w32:
     func_stripname : : "$1"
     func_to_host_path_tmp1=$func_stripname_result
     func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1"
-    func_to_host_path_result="$func_convert_core_path_wine_to_w32_result"
+    func_to_host_path_result=$func_convert_core_path_wine_to_w32_result
     func_convert_path_check : ";" \
       "$func_to_host_path_tmp1" "$func_to_host_path_result"
     func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
@@ -1904,15 +3200,16 @@ func_convert_path_nix_to_w32 ()
 # Returns result in func_to_host_file_result.
 func_convert_path_msys_to_cygwin ()
 {
-  $opt_debug
-  func_to_host_path_result="$1"
+  $debug_cmd
+
+  func_to_host_path_result=$1
   if test -n "$1"; then
     # See func_convert_path_msys_to_w32:
     func_stripname : : "$1"
     func_to_host_path_tmp1=$func_stripname_result
     func_convert_core_msys_to_w32 "$func_to_host_path_tmp1"
     func_cygpath -u -p "$func_convert_core_msys_to_w32_result"
-    func_to_host_path_result="$func_cygpath_result"
+    func_to_host_path_result=$func_cygpath_result
     func_convert_path_check : : \
       "$func_to_host_path_tmp1" "$func_to_host_path_result"
     func_convert_path_front_back_pathsep ":*" "*:" : "$1"
@@ -1927,8 +3224,9 @@ func_convert_path_msys_to_cygwin ()
 # func_to_host_file_result.
 func_convert_path_nix_to_cygwin ()
 {
-  $opt_debug
-  func_to_host_path_result="$1"
+  $debug_cmd
+
+  func_to_host_path_result=$1
   if test -n "$1"; then
     # Remove leading and trailing path separator characters from
     # ARG. msys behavior is inconsistent here, cygpath turns them
@@ -1937,7 +3235,7 @@ func_convert_path_nix_to_cygwin ()
     func_to_host_path_tmp1=$func_stripname_result
     func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1"
     func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result"
-    func_to_host_path_result="$func_cygpath_result"
+    func_to_host_path_result=$func_cygpath_result
     func_convert_path_check : : \
       "$func_to_host_path_tmp1" "$func_to_host_path_result"
     func_convert_path_front_back_pathsep ":*" "*:" : "$1"
@@ -1946,13 +3244,31 @@ func_convert_path_nix_to_cygwin ()
 # end func_convert_path_nix_to_cygwin
 
 
+# func_dll_def_p FILE
+# True iff FILE is a Windows DLL '.def' file.
+# Keep in sync with _LT_DLL_DEF_P in libtool.m4
+func_dll_def_p ()
+{
+  $debug_cmd
+
+  func_dll_def_p_tmp=`$SED -n \
+    -e 's/^[    ]*//' \
+    -e '/^\(;.*\)*$/d' \
+    -e 's/^\(EXPORTS\|LIBRARY\)\([      ].*\)*$/DEF/p' \
+    -e q \
+    "$1"`
+  test DEF = "$func_dll_def_p_tmp"
+}
+
+
 # func_mode_compile arg...
 func_mode_compile ()
 {
-    $opt_debug
+    $debug_cmd
+
     # Get the compilation command and the source file.
     base_compile=
-    srcfile="$nonopt"  #  always keep a non-empty value in "srcfile"
+    srcfile=$nonopt  #  always keep a non-empty value in "srcfile"
     suppress_opt=yes
     suppress_output=
     arg_mode=normal
@@ -1965,12 +3281,12 @@ func_mode_compile ()
       case $arg_mode in
       arg  )
        # do not "continue".  Instead, add this to base_compile
-       lastarg="$arg"
+       lastarg=$arg
        arg_mode=normal
        ;;
 
       target )
-       libobj="$arg"
+       libobj=$arg
        arg_mode=normal
        continue
        ;;
@@ -1980,7 +3296,7 @@ func_mode_compile ()
        case $arg in
        -o)
          test -n "$libobj" && \
-           func_fatal_error "you cannot specify \`-o' more than once"
+           func_fatal_error "you cannot specify '-o' more than once"
          arg_mode=target
          continue
          ;;
@@ -2009,12 +3325,12 @@ func_mode_compile ()
          func_stripname '-Wc,' '' "$arg"
          args=$func_stripname_result
          lastarg=
-         save_ifs="$IFS"; IFS=','
+         save_ifs=$IFS; IFS=,
          for arg in $args; do
-           IFS="$save_ifs"
+           IFS=$save_ifs
            func_append_quoted lastarg "$arg"
          done
-         IFS="$save_ifs"
+         IFS=$save_ifs
          func_stripname ' ' '' "$lastarg"
          lastarg=$func_stripname_result
 
@@ -2027,8 +3343,8 @@ func_mode_compile ()
          # Accept the current argument as the source file.
          # The previous "srcfile" becomes the current argument.
          #
-         lastarg="$srcfile"
-         srcfile="$arg"
+         lastarg=$srcfile
+         srcfile=$arg
          ;;
        esac  #  case $arg
        ;;
@@ -2043,13 +3359,13 @@ func_mode_compile ()
       func_fatal_error "you must specify an argument for -Xcompile"
       ;;
     target)
-      func_fatal_error "you must specify a target with \`-o'"
+      func_fatal_error "you must specify a target with '-o'"
       ;;
     *)
       # Get the name of the library object.
       test -z "$libobj" && {
        func_basename "$srcfile"
-       libobj="$func_basename_result"
+       libobj=$func_basename_result
       }
       ;;
     esac
@@ -2069,7 +3385,7 @@ func_mode_compile ()
     case $libobj in
     *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;;
     *)
-      func_fatal_error "cannot determine name of library object from \`$libobj'"
+      func_fatal_error "cannot determine name of library object from '$libobj'"
       ;;
     esac
 
@@ -2078,8 +3394,8 @@ func_mode_compile ()
     for arg in $later; do
       case $arg in
       -shared)
-       test "$build_libtool_libs" != yes && \
-         func_fatal_configuration "can not build a shared library"
+       test yes = "$build_libtool_libs" \
+         || func_fatal_configuration "cannot build a shared library"
        build_old_libs=no
        continue
        ;;
@@ -2105,17 +3421,17 @@ func_mode_compile ()
     func_quote_for_eval "$libobj"
     test "X$libobj" != "X$func_quote_for_eval_result" \
       && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"'   &()|`$[]' \
-      && func_warning "libobj name \`$libobj' may not contain shell special characters."
+      && func_warning "libobj name '$libobj' may not contain shell special characters."
     func_dirname_and_basename "$obj" "/" ""
-    objname="$func_basename_result"
-    xdir="$func_dirname_result"
-    lobj=${xdir}$objdir/$objname
+    objname=$func_basename_result
+    xdir=$func_dirname_result
+    lobj=$xdir$objdir/$objname
 
     test -z "$base_compile" && \
       func_fatal_help "you must specify a compilation command"
 
     # Delete any leftover library objects.
-    if test "$build_old_libs" = yes; then
+    if test yes = "$build_old_libs"; then
       removelist="$obj $lobj $libobj ${libobj}T"
     else
       removelist="$lobj $libobj ${libobj}T"
@@ -2127,16 +3443,16 @@ func_mode_compile ()
       pic_mode=default
       ;;
     esac
-    if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then
+    if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then
       # non-PIC code in shared libraries is not supported
       pic_mode=default
     fi
 
     # Calculate the filename of the output object if compiler does
     # not support -o with -c
-    if test "$compiler_c_o" = no; then
-      output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext}
-      lockfile="$output_obj.lock"
+    if test no = "$compiler_c_o"; then
+      output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext
+      lockfile=$output_obj.lock
     else
       output_obj=
       need_locks=no
@@ -2145,12 +3461,12 @@ func_mode_compile ()
 
     # Lock this critical section if it is needed
     # We use this script file to make the link, it avoids creating a new file
-    if test "$need_locks" = yes; then
+    if test yes = "$need_locks"; then
       until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
        func_echo "Waiting for $lockfile to be removed"
        sleep 2
       done
-    elif test "$need_locks" = warn; then
+    elif test warn = "$need_locks"; then
       if test -f "$lockfile"; then
        $ECHO "\
 *** ERROR, $lockfile exists and contains:
@@ -2158,7 +3474,7 @@ func_mode_compile ()
 
 This indicates that another process is trying to use the same
 temporary object file, and libtool could not work around it because
-your compiler does not support \`-c' and \`-o' together.  If you
+your compiler does not support '-c' and '-o' together.  If you
 repeat this compilation, it may succeed, by chance, but you had better
 avoid parallel builds (make -j) in this platform, or get a better
 compiler."
@@ -2180,11 +3496,11 @@ compiler."
     qsrcfile=$func_quote_for_eval_result
 
     # Only build a PIC object if we are building libtool libraries.
-    if test "$build_libtool_libs" = yes; then
+    if test yes = "$build_libtool_libs"; then
       # Without this assignment, base_compile gets emptied.
       fbsd_hideous_sh_bug=$base_compile
 
-      if test "$pic_mode" != no; then
+      if test no != "$pic_mode"; then
        command="$base_compile $qsrcfile $pic_flag"
       else
        # Don't build PIC code
@@ -2201,7 +3517,7 @@ compiler."
       func_show_eval_locale "$command" \
           'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE'
 
-      if test "$need_locks" = warn &&
+      if test warn = "$need_locks" &&
         test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
        $ECHO "\
 *** ERROR, $lockfile contains:
@@ -2212,7 +3528,7 @@ $srcfile
 
 This indicates that another process is trying to use the same
 temporary object file, and libtool could not work around it because
-your compiler does not support \`-c' and \`-o' together.  If you
+your compiler does not support '-c' and '-o' together.  If you
 repeat this compilation, it may succeed, by chance, but you had better
 avoid parallel builds (make -j) in this platform, or get a better
 compiler."
@@ -2228,20 +3544,20 @@ compiler."
       fi
 
       # Allow error messages only from the first compilation.
-      if test "$suppress_opt" = yes; then
+      if test yes = "$suppress_opt"; then
        suppress_output=' >/dev/null 2>&1'
       fi
     fi
 
     # Only build a position-dependent object if we build old libraries.
-    if test "$build_old_libs" = yes; then
-      if test "$pic_mode" != yes; then
+    if test yes = "$build_old_libs"; then
+      if test yes != "$pic_mode"; then
        # Don't build PIC code
        command="$base_compile $qsrcfile$pie_flag"
       else
        command="$base_compile $qsrcfile $pic_flag"
       fi
-      if test "$compiler_c_o" = yes; then
+      if test yes = "$compiler_c_o"; then
        func_append command " -o $obj"
       fi
 
@@ -2250,7 +3566,7 @@ compiler."
       func_show_eval_locale "$command" \
         '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE'
 
-      if test "$need_locks" = warn &&
+      if test warn = "$need_locks" &&
         test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
        $ECHO "\
 *** ERROR, $lockfile contains:
@@ -2261,7 +3577,7 @@ $srcfile
 
 This indicates that another process is trying to use the same
 temporary object file, and libtool could not work around it because
-your compiler does not support \`-c' and \`-o' together.  If you
+your compiler does not support '-c' and '-o' together.  If you
 repeat this compilation, it may succeed, by chance, but you had better
 avoid parallel builds (make -j) in this platform, or get a better
 compiler."
@@ -2281,7 +3597,7 @@ compiler."
       func_write_libtool_object "$libobj" "$objdir/$objname" "$objname"
 
       # Unlock the critical section if it was locked
-      if test "$need_locks" != no; then
+      if test no != "$need_locks"; then
        removelist=$lockfile
         $RM "$lockfile"
       fi
@@ -2291,7 +3607,7 @@ compiler."
 }
 
 $opt_help || {
-  test "$opt_mode" = compile && func_mode_compile ${1+"$@"}
+  test compile = "$opt_mode" && func_mode_compile ${1+"$@"}
 }
 
 func_mode_help ()
@@ -2311,7 +3627,7 @@ func_mode_help ()
 Remove files from the build directory.
 
 RM is the name of the program to use to delete files associated with each FILE
-(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
+(typically '/bin/rm').  RM-OPTIONS are options (such as '-f') to be passed
 to RM.
 
 If FILE is a libtool library, object or program, all the files associated
@@ -2330,16 +3646,16 @@ This mode accepts the following additional options:
   -no-suppress      do not suppress compiler output for multiple passes
   -prefer-pic       try to build PIC objects only
   -prefer-non-pic   try to build non-PIC objects only
-  -shared           do not build a \`.o' file suitable for static linking
-  -static           only build a \`.o' file suitable for static linking
+  -shared           do not build a '.o' file suitable for static linking
+  -static           only build a '.o' file suitable for static linking
   -Wc,FLAG          pass FLAG directly to the compiler
 
-COMPILE-COMMAND is a command to be used in creating a \`standard' object file
+COMPILE-COMMAND is a command to be used in creating a 'standard' object file
 from the given SOURCEFILE.
 
 The output file name is determined by removing the directory component from
-SOURCEFILE, then substituting the C source code suffix \`.c' with the
-library object suffix, \`.lo'."
+SOURCEFILE, then substituting the C source code suffix '.c' with the
+library object suffix, '.lo'."
         ;;
 
       execute)
@@ -2352,7 +3668,7 @@ This mode accepts the following additional options:
 
   -dlopen FILE      add the directory containing FILE to the library path
 
-This mode sets the library path environment variable according to \`-dlopen'
+This mode sets the library path environment variable according to '-dlopen'
 flags.
 
 If any of the ARGS are libtool executable wrappers, then they are translated
@@ -2371,7 +3687,7 @@ Complete the installation of libtool libraries.
 Each LIBDIR is a directory that contains libtool libraries.
 
 The commands that this mode executes may require superuser privileges.  Use
-the \`--dry-run' option if you just want to see what would be executed."
+the '--dry-run' option if you just want to see what would be executed."
         ;;
 
       install)
@@ -2381,7 +3697,7 @@ the \`--dry-run' option if you just want to see what would be executed."
 Install executables or libraries.
 
 INSTALL-COMMAND is the installation command.  The first component should be
-either the \`install' or \`cp' program.
+either the 'install' or 'cp' program.
 
 The following components of INSTALL-COMMAND are treated specially:
 
@@ -2407,7 +3723,7 @@ The following components of LINK-COMMAND are treated specially:
   -avoid-version    do not add a version suffix if possible
   -bindir BINDIR    specify path to binaries directory (for systems where
                     libraries must be found in the PATH setting at runtime)
-  -dlopen FILE      \`-dlpreopen' FILE if it cannot be dlopened at runtime
+  -dlopen FILE      '-dlpreopen' FILE if it cannot be dlopened at runtime
   -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols
   -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
   -export-symbols SYMFILE
@@ -2421,7 +3737,8 @@ The following components of LINK-COMMAND are treated specially:
   -no-install       link a not-installable executable
   -no-undefined     declare that a library does not refer to external symbols
   -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects
-  -objectlist FILE  Use a list of object files found in FILE to specify objects
+  -objectlist FILE  use a list of object files found in FILE to specify objects
+  -os2dllname NAME  force a short DLL name on OS/2 (no effect on other OSes)
   -precious-files-regex REGEX
                     don't remove output files matching REGEX
   -release RELEASE  specify package release information
@@ -2441,20 +3758,20 @@ The following components of LINK-COMMAND are treated specially:
   -Xlinker FLAG     pass linker-specific FLAG directly to the linker
   -XCClinker FLAG   pass link-specific FLAG to the compiler driver (CC)
 
-All other options (arguments beginning with \`-') are ignored.
+All other options (arguments beginning with '-') are ignored.
 
-Every other argument is treated as a filename.  Files ending in \`.la' are
+Every other argument is treated as a filename.  Files ending in '.la' are
 treated as uninstalled libtool libraries, other files are standard or library
 object files.
 
-If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
-only library objects (\`.lo' files) may be specified, and \`-rpath' is
+If the OUTPUT-FILE ends in '.la', then a libtool library is created,
+only library objects ('.lo' files) may be specified, and '-rpath' is
 required, except when creating a convenience library.
 
-If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
-using \`ar' and \`ranlib', or on Windows using \`lib'.
+If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created
+using 'ar' and 'ranlib', or on Windows using 'lib'.
 
-If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
+If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file
 is created, otherwise an executable program is created."
         ;;
 
@@ -2465,7 +3782,7 @@ is created, otherwise an executable program is created."
 Remove libraries from an installation directory.
 
 RM is the name of the program to use to delete files associated with each FILE
-(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
+(typically '/bin/rm').  RM-OPTIONS are options (such as '-f') to be passed
 to RM.
 
 If FILE is a libtool library, all the files associated with it are deleted.
@@ -2473,17 +3790,17 @@ Otherwise, only FILE itself is deleted using RM."
         ;;
 
       *)
-        func_fatal_help "invalid operation mode \`$opt_mode'"
+        func_fatal_help "invalid operation mode '$opt_mode'"
         ;;
     esac
 
     echo
-    $ECHO "Try \`$progname --help' for more information about other modes."
+    $ECHO "Try '$progname --help' for more information about other modes."
 }
 
 # Now that we've collected a possible --mode arg, show help if necessary
 if $opt_help; then
-  if test "$opt_help" = :; then
+  if test : = "$opt_help"; then
     func_mode_help
   else
     {
@@ -2491,7 +3808,7 @@ if $opt_help; then
       for opt_mode in compile link execute install finish uninstall clean; do
        func_mode_help
       done
-    } | sed -n '1p; 2,$s/^Usage:/  or: /p'
+    } | $SED -n '1p; 2,$s/^Usage:/  or: /p'
     {
       func_help noexit
       for opt_mode in compile link execute install finish uninstall clean; do
@@ -2499,7 +3816,7 @@ if $opt_help; then
        func_mode_help
       done
     } |
-    sed '1d
+    $SED '1d
       /^When reporting/,/^Report/{
        H
        d
@@ -2516,16 +3833,17 @@ fi
 # func_mode_execute arg...
 func_mode_execute ()
 {
-    $opt_debug
+    $debug_cmd
+
     # The first argument is the command name.
-    cmd="$nonopt"
+    cmd=$nonopt
     test -z "$cmd" && \
       func_fatal_help "you must specify a COMMAND"
 
     # Handle -dlopen flags immediately.
     for file in $opt_dlopen; do
       test -f "$file" \
-       || func_fatal_help "\`$file' is not a file"
+       || func_fatal_help "'$file' is not a file"
 
       dir=
       case $file in
@@ -2535,7 +3853,7 @@ func_mode_execute ()
 
        # Check to see that this really is a libtool archive.
        func_lalib_unsafe_p "$file" \
-         || func_fatal_help "\`$lib' is not a valid libtool archive"
+         || func_fatal_help "'$lib' is not a valid libtool archive"
 
        # Read the libtool library.
        dlname=
@@ -2546,18 +3864,18 @@ func_mode_execute ()
        if test -z "$dlname"; then
          # Warn if it was a shared library.
          test -n "$library_names" && \
-           func_warning "\`$file' was not linked with \`-export-dynamic'"
+           func_warning "'$file' was not linked with '-export-dynamic'"
          continue
        fi
 
        func_dirname "$file" "" "."
-       dir="$func_dirname_result"
+       dir=$func_dirname_result
 
        if test -f "$dir/$objdir/$dlname"; then
          func_append dir "/$objdir"
        else
          if test ! -f "$dir/$dlname"; then
-           func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'"
+           func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'"
          fi
        fi
        ;;
@@ -2565,18 +3883,18 @@ func_mode_execute ()
       *.lo)
        # Just add the directory containing the .lo file.
        func_dirname "$file" "" "."
-       dir="$func_dirname_result"
+       dir=$func_dirname_result
        ;;
 
       *)
-       func_warning "\`-dlopen' is ignored for non-libtool libraries and objects"
+       func_warning "'-dlopen' is ignored for non-libtool libraries and objects"
        continue
        ;;
       esac
 
       # Get the absolute pathname.
       absdir=`cd "$dir" && pwd`
-      test -n "$absdir" && dir="$absdir"
+      test -n "$absdir" && dir=$absdir
 
       # Now add the directory to shlibpath_var.
       if eval "test -z \"\$$shlibpath_var\""; then
@@ -2588,7 +3906,7 @@ func_mode_execute ()
 
     # This variable tells wrapper scripts just to set shlibpath_var
     # rather than running their programs.
-    libtool_execute_magic="$magic"
+    libtool_execute_magic=$magic
 
     # Check if any of the arguments is a wrapper script.
     args=
@@ -2601,12 +3919,12 @@ func_mode_execute ()
        if func_ltwrapper_script_p "$file"; then
          func_source "$file"
          # Transform arg to wrapped name.
-         file="$progdir/$program"
+         file=$progdir/$program
        elif func_ltwrapper_executable_p "$file"; then
          func_ltwrapper_scriptname "$file"
          func_source "$func_ltwrapper_scriptname_result"
          # Transform arg to wrapped name.
-         file="$progdir/$program"
+         file=$progdir/$program
        fi
        ;;
       esac
@@ -2614,7 +3932,15 @@ func_mode_execute ()
       func_append_quoted args "$file"
     done
 
-    if test "X$opt_dry_run" = Xfalse; then
+    if $opt_dry_run; then
+      # Display what would be done.
+      if test -n "$shlibpath_var"; then
+       eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\""
+       echo "export $shlibpath_var"
+      fi
+      $ECHO "$cmd$args"
+      exit $EXIT_SUCCESS
+    else
       if test -n "$shlibpath_var"; then
        # Export the shlibpath_var.
        eval "export $shlibpath_var"
@@ -2631,25 +3957,18 @@ func_mode_execute ()
       done
 
       # Now prepare to actually exec the command.
-      exec_cmd="\$cmd$args"
-    else
-      # Display what would be done.
-      if test -n "$shlibpath_var"; then
-       eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\""
-       echo "export $shlibpath_var"
-      fi
-      $ECHO "$cmd$args"
-      exit $EXIT_SUCCESS
+      exec_cmd=\$cmd$args
     fi
 }
 
-test "$opt_mode" = execute && func_mode_execute ${1+"$@"}
+test execute = "$opt_mode" && func_mode_execute ${1+"$@"}
 
 
 # func_mode_finish arg...
 func_mode_finish ()
 {
-    $opt_debug
+    $debug_cmd
+
     libs=
     libdirs=
     admincmds=
@@ -2663,11 +3982,11 @@ func_mode_finish ()
        if func_lalib_unsafe_p "$opt"; then
          func_append libs " $opt"
        else
-         func_warning "\`$opt' is not a valid libtool archive"
+         func_warning "'$opt' is not a valid libtool archive"
        fi
 
       else
-       func_fatal_error "invalid argument \`$opt'"
+       func_fatal_error "invalid argument '$opt'"
       fi
     done
 
@@ -2682,12 +4001,12 @@ func_mode_finish ()
       # Remove sysroot references
       if $opt_dry_run; then
         for lib in $libs; do
-          echo "removing references to $lt_sysroot and \`=' prefixes from $lib"
+          echo "removing references to $lt_sysroot and '=' prefixes from $lib"
         done
       else
         tmpdir=`func_mktempdir`
         for lib in $libs; do
-         sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \
+         $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \
            > $tmpdir/tmp-la
          mv -f $tmpdir/tmp-la $lib
        done
@@ -2712,7 +4031,7 @@ func_mode_finish ()
     fi
 
     # Exit here if they wanted silent mode.
-    $opt_silent && exit $EXIT_SUCCESS
+    $opt_quiet && exit $EXIT_SUCCESS
 
     if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
       echo "----------------------------------------------------------------------"
@@ -2723,27 +4042,27 @@ func_mode_finish ()
       echo
       echo "If you ever happen to want to link against installed libraries"
       echo "in a given directory, LIBDIR, you must either use libtool, and"
-      echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
+      echo "specify the full pathname of the library, or use the '-LLIBDIR'"
       echo "flag during linking and do at least one of the following:"
       if test -n "$shlibpath_var"; then
-       echo "   - add LIBDIR to the \`$shlibpath_var' environment variable"
+       echo "   - add LIBDIR to the '$shlibpath_var' environment variable"
        echo "     during execution"
       fi
       if test -n "$runpath_var"; then
-       echo "   - add LIBDIR to the \`$runpath_var' environment variable"
+       echo "   - add LIBDIR to the '$runpath_var' environment variable"
        echo "     during linking"
       fi
       if test -n "$hardcode_libdir_flag_spec"; then
        libdir=LIBDIR
        eval flag=\"$hardcode_libdir_flag_spec\"
 
-       $ECHO "   - use the \`$flag' linker flag"
+       $ECHO "   - use the '$flag' linker flag"
       fi
       if test -n "$admincmds"; then
        $ECHO "   - have your system administrator run these commands:$admincmds"
       fi
       if test -f /etc/ld.so.conf; then
-       echo "   - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
+       echo "   - have your system administrator add LIBDIR to '/etc/ld.so.conf'"
       fi
       echo
 
@@ -2762,18 +4081,20 @@ func_mode_finish ()
     exit $EXIT_SUCCESS
 }
 
-test "$opt_mode" = finish && func_mode_finish ${1+"$@"}
+test finish = "$opt_mode" && func_mode_finish ${1+"$@"}
 
 
 # func_mode_install arg...
 func_mode_install ()
 {
-    $opt_debug
+    $debug_cmd
+
     # There may be an optional sh(1) argument at the beginning of
     # install_prog (especially on Windows NT).
-    if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
+    if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" ||
        # Allow the use of GNU shtool's install command.
-       case $nonopt in *shtool*) :;; *) false;; esac; then
+       case $nonopt in *shtool*) :;; *) false;; esac
+    then
       # Aesthetically quote it.
       func_quote_for_eval "$nonopt"
       install_prog="$func_quote_for_eval_result "
@@ -2800,7 +4121,7 @@ func_mode_install ()
     opts=
     prev=
     install_type=
-    isdir=no
+    isdir=false
     stripme=
     no_mode=:
     for arg
@@ -2813,7 +4134,7 @@ func_mode_install ()
       fi
 
       case $arg in
-      -d) isdir=yes ;;
+      -d) isdir=: ;;
       -f)
        if $install_cp; then :; else
          prev=$arg
@@ -2831,7 +4152,7 @@ func_mode_install ()
       *)
        # If the previous option needed an argument, then skip it.
        if test -n "$prev"; then
-         if test "x$prev" = x-m && test -n "$install_override_mode"; then
+         if test X-m = "X$prev" && test -n "$install_override_mode"; then
            arg2=$install_override_mode
            no_mode=false
          fi
@@ -2856,7 +4177,7 @@ func_mode_install ()
       func_fatal_help "you must specify an install program"
 
     test -n "$prev" && \
-      func_fatal_help "the \`$prev' option requires an argument"
+      func_fatal_help "the '$prev' option requires an argument"
 
     if test -n "$install_override_mode" && $no_mode; then
       if $install_cp; then :; else
@@ -2878,19 +4199,19 @@ func_mode_install ()
     dest=$func_stripname_result
 
     # Check to see that the destination is a directory.
-    test -d "$dest" && isdir=yes
-    if test "$isdir" = yes; then
-      destdir="$dest"
+    test -d "$dest" && isdir=:
+    if $isdir; then
+      destdir=$dest
       destname=
     else
       func_dirname_and_basename "$dest" "" "."
-      destdir="$func_dirname_result"
-      destname="$func_basename_result"
+      destdir=$func_dirname_result
+      destname=$func_basename_result
 
       # Not a directory, so check to see that there is only one file specified.
       set dummy $files; shift
       test "$#" -gt 1 && \
-       func_fatal_help "\`$dest' is not a directory"
+       func_fatal_help "'$dest' is not a directory"
     fi
     case $destdir in
     [\\/]* | [A-Za-z]:[\\/]*) ;;
@@ -2899,7 +4220,7 @@ func_mode_install ()
        case $file in
        *.lo) ;;
        *)
-         func_fatal_help "\`$destdir' must be an absolute directory name"
+         func_fatal_help "'$destdir' must be an absolute directory name"
          ;;
        esac
       done
@@ -2908,7 +4229,7 @@ func_mode_install ()
 
     # This variable tells wrapper scripts just to set variables rather
     # than running their programs.
-    libtool_install_magic="$magic"
+    libtool_install_magic=$magic
 
     staticlibs=
     future_libdirs=
@@ -2928,7 +4249,7 @@ func_mode_install ()
 
        # Check to see that this really is a libtool archive.
        func_lalib_unsafe_p "$file" \
-         || func_fatal_help "\`$file' is not a valid libtool archive"
+         || func_fatal_help "'$file' is not a valid libtool archive"
 
        library_names=
        old_library=
@@ -2950,7 +4271,7 @@ func_mode_install ()
        fi
 
        func_dirname "$file" "/" ""
-       dir="$func_dirname_result"
+       dir=$func_dirname_result
        func_append dir "$objdir"
 
        if test -n "$relink_command"; then
@@ -2964,7 +4285,7 @@ func_mode_install ()
          # are installed into $libdir/../bin (currently, that works fine)
          # but it's something to keep an eye on.
          test "$inst_prefix_dir" = "$destdir" && \
-           func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir"
+           func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir"
 
          if test -n "$inst_prefix_dir"; then
            # Stick the inst_prefix_dir data into the link command.
@@ -2973,29 +4294,36 @@ func_mode_install ()
            relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
          fi
 
-         func_warning "relinking \`$file'"
+         func_warning "relinking '$file'"
          func_show_eval "$relink_command" \
-           'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"'
+           'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"'
        fi
 
        # See the names of the shared library.
        set dummy $library_names; shift
        if test -n "$1"; then
-         realname="$1"
+         realname=$1
          shift
 
-         srcname="$realname"
-         test -n "$relink_command" && srcname="$realname"T
+         srcname=$realname
+         test -n "$relink_command" && srcname=${realname}T
 
          # Install the shared library and build the symlinks.
          func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \
              'exit $?'
-         tstripme="$stripme"
+         tstripme=$stripme
          case $host_os in
          cygwin* | mingw* | pw32* | cegcc*)
            case $realname in
            *.dll.a)
-             tstripme=""
+             tstripme=
+             ;;
+           esac
+           ;;
+         os2*)
+           case $realname in
+           *_dll.a)
+             tstripme=
              ;;
            esac
            ;;
@@ -3006,7 +4334,7 @@ func_mode_install ()
 
          if test "$#" -gt 0; then
            # Delete the old symlinks, and create new ones.
-           # Try `ln -sf' first, because the `ln' binary might depend on
+           # Try 'ln -sf' first, because the 'ln' binary might depend on
            # the symlink we replace!  Solaris /bin/ln does not understand -f,
            # so we also need to try rm && ln -s.
            for linkname
@@ -3017,14 +4345,14 @@ func_mode_install ()
          fi
 
          # Do each command in the postinstall commands.
-         lib="$destdir/$realname"
+         lib=$destdir/$realname
          func_execute_cmds "$postinstall_cmds" 'exit $?'
        fi
 
        # Install the pseudo-library for information purposes.
        func_basename "$file"
-       name="$func_basename_result"
-       instname="$dir/$name"i
+       name=$func_basename_result
+       instname=$dir/${name}i
        func_show_eval "$install_prog $instname $destdir/$name" 'exit $?'
 
        # Maybe install the static library, too.
@@ -3036,11 +4364,11 @@ func_mode_install ()
 
        # Figure out destination file name, if it wasn't already specified.
        if test -n "$destname"; then
-         destfile="$destdir/$destname"
+         destfile=$destdir/$destname
        else
          func_basename "$file"
-         destfile="$func_basename_result"
-         destfile="$destdir/$destfile"
+         destfile=$func_basename_result
+         destfile=$destdir/$destfile
        fi
 
        # Deduce the name of the destination old-style object file.
@@ -3050,11 +4378,11 @@ func_mode_install ()
          staticdest=$func_lo2o_result
          ;;
        *.$objext)
-         staticdest="$destfile"
+         staticdest=$destfile
          destfile=
          ;;
        *)
-         func_fatal_help "cannot copy a libtool object to \`$destfile'"
+         func_fatal_help "cannot copy a libtool object to '$destfile'"
          ;;
        esac
 
@@ -3063,7 +4391,7 @@ func_mode_install ()
          func_show_eval "$install_prog $file $destfile" 'exit $?'
 
        # Install the old object if enabled.
-       if test "$build_old_libs" = yes; then
+       if test yes = "$build_old_libs"; then
          # Deduce the name of the old-style object file.
          func_lo2o "$file"
          staticobj=$func_lo2o_result
@@ -3075,23 +4403,23 @@ func_mode_install ()
       *)
        # Figure out destination file name, if it wasn't already specified.
        if test -n "$destname"; then
-         destfile="$destdir/$destname"
+         destfile=$destdir/$destname
        else
          func_basename "$file"
-         destfile="$func_basename_result"
-         destfile="$destdir/$destfile"
+         destfile=$func_basename_result
+         destfile=$destdir/$destfile
        fi
 
        # If the file is missing, and there is a .exe on the end, strip it
        # because it is most likely a libtool script we actually want to
        # install
-       stripped_ext=""
+       stripped_ext=
        case $file in
          *.exe)
            if test ! -f "$file"; then
              func_stripname '' '.exe' "$file"
              file=$func_stripname_result
-             stripped_ext=".exe"
+             stripped_ext=.exe
            fi
            ;;
        esac
@@ -3119,19 +4447,19 @@ func_mode_install ()
 
          # Check the variables that should have been set.
          test -z "$generated_by_libtool_version" && \
-           func_fatal_error "invalid libtool wrapper script \`$wrapper'"
+           func_fatal_error "invalid libtool wrapper script '$wrapper'"
 
-         finalize=yes
+         finalize=:
          for lib in $notinst_deplibs; do
            # Check to see that each library is installed.
            libdir=
            if test -f "$lib"; then
              func_source "$lib"
            fi
-           libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test
+           libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'`
            if test -n "$libdir" && test ! -f "$libfile"; then
-             func_warning "\`$lib' has not been installed in \`$libdir'"
-             finalize=no
+             func_warning "'$lib' has not been installed in '$libdir'"
+             finalize=false
            fi
          done
 
@@ -3139,29 +4467,29 @@ func_mode_install ()
          func_source "$wrapper"
 
          outputname=
-         if test "$fast_install" = no && test -n "$relink_command"; then
+         if test no = "$fast_install" && test -n "$relink_command"; then
            $opt_dry_run || {
-             if test "$finalize" = yes; then
+             if $finalize; then
                tmpdir=`func_mktempdir`
                func_basename "$file$stripped_ext"
-               file="$func_basename_result"
-               outputname="$tmpdir/$file"
+               file=$func_basename_result
+               outputname=$tmpdir/$file
                # Replace the output file specification.
                relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'`
 
-               $opt_silent || {
+               $opt_quiet || {
                  func_quote_for_expand "$relink_command"
                  eval "func_echo $func_quote_for_expand_result"
                }
                if eval "$relink_command"; then :
                  else
-                 func_error "error: relink \`$file' with the above command before installing it"
+                 func_error "error: relink '$file' with the above command before installing it"
                  $opt_dry_run || ${RM}r "$tmpdir"
                  continue
                fi
-               file="$outputname"
+               file=$outputname
              else
-               func_warning "cannot relink \`$file'"
+               func_warning "cannot relink '$file'"
              fi
            }
          else
@@ -3198,10 +4526,10 @@ func_mode_install ()
 
     for file in $staticlibs; do
       func_basename "$file"
-      name="$func_basename_result"
+      name=$func_basename_result
 
       # Set up the ranlib parameters.
-      oldlib="$destdir/$name"
+      oldlib=$destdir/$name
       func_to_tool_file "$oldlib" func_convert_file_msys_to_w32
       tool_oldlib=$func_to_tool_file_result
 
@@ -3216,18 +4544,18 @@ func_mode_install ()
     done
 
     test -n "$future_libdirs" && \
-      func_warning "remember to run \`$progname --finish$future_libdirs'"
+      func_warning "remember to run '$progname --finish$future_libdirs'"
 
     if test -n "$current_libdirs"; then
       # Maybe just do a dry run.
       $opt_dry_run && current_libdirs=" -n$current_libdirs"
-      exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs'
+      exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs'
     else
       exit $EXIT_SUCCESS
     fi
 }
 
-test "$opt_mode" = install && func_mode_install ${1+"$@"}
+test install = "$opt_mode" && func_mode_install ${1+"$@"}
 
 
 # func_generate_dlsyms outputname originator pic_p
@@ -3235,16 +4563,17 @@ test "$opt_mode" = install && func_mode_install ${1+"$@"}
 # a dlpreopen symbol table.
 func_generate_dlsyms ()
 {
-    $opt_debug
-    my_outputname="$1"
-    my_originator="$2"
-    my_pic_p="${3-no}"
-    my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'`
+    $debug_cmd
+
+    my_outputname=$1
+    my_originator=$2
+    my_pic_p=${3-false}
+    my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'`
     my_dlsyms=
 
-    if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
+    if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then
       if test -n "$NM" && test -n "$global_symbol_pipe"; then
-       my_dlsyms="${my_outputname}S.c"
+       my_dlsyms=${my_outputname}S.c
       else
        func_error "not configured to extract global symbols from dlpreopened files"
       fi
@@ -3255,7 +4584,7 @@ func_generate_dlsyms ()
       "") ;;
       *.c)
        # Discover the nlist of each of the dlfiles.
-       nlist="$output_objdir/${my_outputname}.nm"
+       nlist=$output_objdir/$my_outputname.nm
 
        func_show_eval "$RM $nlist ${nlist}S ${nlist}T"
 
@@ -3263,34 +4592,36 @@ func_generate_dlsyms ()
        func_verbose "creating $output_objdir/$my_dlsyms"
 
        $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\
-/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */
-/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */
+/* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */
+/* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */
 
 #ifdef __cplusplus
 extern \"C\" {
 #endif
 
-#if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4))
+#if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4))
 #pragma GCC diagnostic ignored \"-Wstrict-prototypes\"
 #endif
 
 /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */
-#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE)
-/* DATA imports from DLLs on WIN32 con't be const, because runtime
+#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE
+/* DATA imports from DLLs on WIN32 can't be const, because runtime
    relocations are performed -- see ld's documentation on pseudo-relocs.  */
 # define LT_DLSYM_CONST
-#elif defined(__osf__)
+#elif defined __osf__
 /* This system does not cope well with relocations in const data.  */
 # define LT_DLSYM_CONST
 #else
 # define LT_DLSYM_CONST const
 #endif
 
+#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0)
+
 /* External symbol declarations for the compiler. */\
 "
 
-       if test "$dlself" = yes; then
-         func_verbose "generating symbol list for \`$output'"
+       if test yes = "$dlself"; then
+         func_verbose "generating symbol list for '$output'"
 
          $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
 
@@ -3298,7 +4629,7 @@ extern \"C\" {
          progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP`
          for progfile in $progfiles; do
            func_to_tool_file "$progfile" func_convert_file_msys_to_w32
-           func_verbose "extracting global C symbols from \`$func_to_tool_file_result'"
+           func_verbose "extracting global C symbols from '$func_to_tool_file_result'"
            $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'"
          done
 
@@ -3318,10 +4649,10 @@ extern \"C\" {
 
          # Prepare the list of exported symbols
          if test -z "$export_symbols"; then
-           export_symbols="$output_objdir/$outputname.exp"
+           export_symbols=$output_objdir/$outputname.exp
            $opt_dry_run || {
              $RM $export_symbols
-             eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
+             eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
              case $host in
              *cygwin* | *mingw* | *cegcc* )
                 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
@@ -3331,7 +4662,7 @@ extern \"C\" {
            }
          else
            $opt_dry_run || {
-             eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"'
+             eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"'
              eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T'
              eval '$MV "$nlist"T "$nlist"'
              case $host in
@@ -3345,22 +4676,22 @@ extern \"C\" {
        fi
 
        for dlprefile in $dlprefiles; do
-         func_verbose "extracting global C symbols from \`$dlprefile'"
+         func_verbose "extracting global C symbols from '$dlprefile'"
          func_basename "$dlprefile"
-         name="$func_basename_result"
+         name=$func_basename_result
           case $host in
            *cygwin* | *mingw* | *cegcc* )
              # if an import library, we need to obtain dlname
              if func_win32_import_lib_p "$dlprefile"; then
                func_tr_sh "$dlprefile"
                eval "curr_lafile=\$libfile_$func_tr_sh_result"
-               dlprefile_dlbasename=""
+               dlprefile_dlbasename=
                if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then
                  # Use subshell, to avoid clobbering current variable values
                  dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"`
-                 if test -n "$dlprefile_dlname" ; then
+                 if test -n "$dlprefile_dlname"; then
                    func_basename "$dlprefile_dlname"
-                   dlprefile_dlbasename="$func_basename_result"
+                   dlprefile_dlbasename=$func_basename_result
                  else
                    # no lafile. user explicitly requested -dlpreopen <import library>.
                    $sharedlib_from_linklib_cmd "$dlprefile"
@@ -3368,7 +4699,7 @@ extern \"C\" {
                  fi
                fi
                $opt_dry_run || {
-                 if test -n "$dlprefile_dlbasename" ; then
+                 if test -n "$dlprefile_dlbasename"; then
                    eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"'
                  else
                    func_warning "Could not compute DLL name from $name"
@@ -3424,6 +4755,11 @@ extern \"C\" {
            echo '/* NONE */' >> "$output_objdir/$my_dlsyms"
          fi
 
+         func_show_eval '$RM "${nlist}I"'
+         if test -n "$global_symbol_to_import"; then
+           eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I'
+         fi
+
          echo >> "$output_objdir/$my_dlsyms" "\
 
 /* The mapping between symbol names and symbols.  */
@@ -3432,11 +4768,30 @@ typedef struct {
   void *address;
 } lt_dlsymlist;
 extern LT_DLSYM_CONST lt_dlsymlist
-lt_${my_prefix}_LTX_preloaded_symbols[];
+lt_${my_prefix}_LTX_preloaded_symbols[];\
+"
+
+         if test -s "$nlist"I; then
+           echo >> "$output_objdir/$my_dlsyms" "\
+static void lt_syminit(void)
+{
+  LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols;
+  for (; symbol->name; ++symbol)
+    {"
+           $SED 's/.*/      if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms"
+           echo >> "$output_objdir/$my_dlsyms" "\
+    }
+}"
+         fi
+         echo >> "$output_objdir/$my_dlsyms" "\
 LT_DLSYM_CONST lt_dlsymlist
 lt_${my_prefix}_LTX_preloaded_symbols[] =
-{\
-  { \"$my_originator\", (void *) 0 },"
+{ {\"$my_originator\", (void *) 0},"
+
+         if test -s "$nlist"I; then
+           echo >> "$output_objdir/$my_dlsyms" "\
+  {\"@INIT@\", (void *) &lt_syminit},"
+         fi
 
          case $need_lib_prefix in
          no)
@@ -3478,9 +4833,7 @@ static const void *lt_preloaded_setup() {
          *-*-hpux*)
            pic_flag_for_symtable=" $pic_flag"  ;;
          *)
-           if test "X$my_pic_p" != Xno; then
-             pic_flag_for_symtable=" $pic_flag"
-           fi
+           $my_pic_p && pic_flag_for_symtable=" $pic_flag"
            ;;
          esac
          ;;
@@ -3497,10 +4850,10 @@ static const void *lt_preloaded_setup() {
        func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?'
 
        # Clean up the generated files.
-       func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"'
+       func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"'
 
        # Transform the symbol file into the correct name.
-       symfileobj="$output_objdir/${my_outputname}S.$objext"
+       symfileobj=$output_objdir/${my_outputname}S.$objext
        case $host in
        *cygwin* | *mingw* | *cegcc* )
          if test -f "$output_objdir/$my_outputname.def"; then
@@ -3518,7 +4871,7 @@ static const void *lt_preloaded_setup() {
        esac
        ;;
       *)
-       func_fatal_error "unknown suffix for \`$my_dlsyms'"
+       func_fatal_error "unknown suffix for '$my_dlsyms'"
        ;;
       esac
     else
@@ -3532,6 +4885,32 @@ static const void *lt_preloaded_setup() {
     fi
 }
 
+# func_cygming_gnu_implib_p ARG
+# This predicate returns with zero status (TRUE) if
+# ARG is a GNU/binutils-style import library. Returns
+# with nonzero status (FALSE) otherwise.
+func_cygming_gnu_implib_p ()
+{
+  $debug_cmd
+
+  func_to_tool_file "$1" func_convert_file_msys_to_w32
+  func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'`
+  test -n "$func_cygming_gnu_implib_tmp"
+}
+
+# func_cygming_ms_implib_p ARG
+# This predicate returns with zero status (TRUE) if
+# ARG is an MS-style import library. Returns
+# with nonzero status (FALSE) otherwise.
+func_cygming_ms_implib_p ()
+{
+  $debug_cmd
+
+  func_to_tool_file "$1" func_convert_file_msys_to_w32
+  func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'`
+  test -n "$func_cygming_ms_implib_tmp"
+}
+
 # func_win32_libid arg
 # return the library type of file 'arg'
 #
@@ -3541,8 +4920,9 @@ static const void *lt_preloaded_setup() {
 # Despite the name, also deal with 64 bit binaries.
 func_win32_libid ()
 {
-  $opt_debug
-  win32_libid_type="unknown"
+  $debug_cmd
+
+  win32_libid_type=unknown
   win32_fileres=`file -L $1 2>/dev/null`
   case $win32_fileres in
   *ar\ archive\ import\ library*) # definitely import
@@ -3552,16 +4932,29 @@ func_win32_libid ()
     # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD.
     if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null |
        $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then
-      func_to_tool_file "$1" func_convert_file_msys_to_w32
-      win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" |
-       $SED -n -e '
+      case $nm_interface in
+      "MS dumpbin")
+       if func_cygming_ms_implib_p "$1" ||
+          func_cygming_gnu_implib_p "$1"
+       then
+         win32_nmres=import
+       else
+         win32_nmres=
+       fi
+       ;;
+      *)
+       func_to_tool_file "$1" func_convert_file_msys_to_w32
+       win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" |
+         $SED -n -e '
            1,100{
                / I /{
-                   s,.*,import,
+                   s|.*|import|
                    p
                    q
                }
            }'`
+       ;;
+      esac
       case $win32_nmres in
       import*)  win32_libid_type="x86 archive import";;
       *)        win32_libid_type="x86 archive static";;
@@ -3593,7 +4986,8 @@ func_win32_libid ()
 #    $sharedlib_from_linklib_result
 func_cygming_dll_for_implib ()
 {
-  $opt_debug
+  $debug_cmd
+
   sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"`
 }
 
@@ -3610,7 +5004,8 @@ func_cygming_dll_for_implib ()
 # specified import library.
 func_cygming_dll_for_implib_fallback_core ()
 {
-  $opt_debug
+  $debug_cmd
+
   match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"`
   $OBJDUMP -s --section "$1" "$2" 2>/dev/null |
     $SED '/^Contents of section '"$match_literal"':/{
@@ -3646,8 +5041,8 @@ func_cygming_dll_for_implib_fallback_core ()
       /./p' |
     # we now have a list, one entry per line, of the stringified
     # contents of the appropriate section of all members of the
-    # archive which possess that section. Heuristic: eliminate
-    # all those which have a first or second character that is
+    # archive that possess that section. Heuristic: eliminate
+    # all those that have a first or second character that is
     # a '.' (that is, objdump's representation of an unprintable
     # character.) This should work for all archives with less than
     # 0x302f exports -- but will fail for DLLs whose name actually
@@ -3658,30 +5053,6 @@ func_cygming_dll_for_implib_fallback_core ()
     $SED -e '/^\./d;/^.\./d;q'
 }
 
-# func_cygming_gnu_implib_p ARG
-# This predicate returns with zero status (TRUE) if
-# ARG is a GNU/binutils-style import library. Returns
-# with nonzero status (FALSE) otherwise.
-func_cygming_gnu_implib_p ()
-{
-  $opt_debug
-  func_to_tool_file "$1" func_convert_file_msys_to_w32
-  func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'`
-  test -n "$func_cygming_gnu_implib_tmp"
-}
-
-# func_cygming_ms_implib_p ARG
-# This predicate returns with zero status (TRUE) if
-# ARG is an MS-style import library. Returns
-# with nonzero status (FALSE) otherwise.
-func_cygming_ms_implib_p ()
-{
-  $opt_debug
-  func_to_tool_file "$1" func_convert_file_msys_to_w32
-  func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'`
-  test -n "$func_cygming_ms_implib_tmp"
-}
-
 # func_cygming_dll_for_implib_fallback ARG
 # Platform-specific function to extract the
 # name of the DLL associated with the specified
@@ -3695,16 +5066,17 @@ func_cygming_ms_implib_p ()
 #    $sharedlib_from_linklib_result
 func_cygming_dll_for_implib_fallback ()
 {
-  $opt_debug
-  if func_cygming_gnu_implib_p "$1" ; then
+  $debug_cmd
+
+  if func_cygming_gnu_implib_p "$1"; then
     # binutils import library
     sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"`
-  elif func_cygming_ms_implib_p "$1" ; then
+  elif func_cygming_ms_implib_p "$1"; then
     # ms-generated import library
     sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"`
   else
     # unknown
-    sharedlib_from_linklib_result=""
+    sharedlib_from_linklib_result=
   fi
 }
 
@@ -3712,10 +5084,11 @@ func_cygming_dll_for_implib_fallback ()
 # func_extract_an_archive dir oldlib
 func_extract_an_archive ()
 {
-    $opt_debug
-    f_ex_an_ar_dir="$1"; shift
-    f_ex_an_ar_oldlib="$1"
-    if test "$lock_old_archive_extraction" = yes; then
+    $debug_cmd
+
+    f_ex_an_ar_dir=$1; shift
+    f_ex_an_ar_oldlib=$1
+    if test yes = "$lock_old_archive_extraction"; then
       lockfile=$f_ex_an_ar_oldlib.lock
       until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
        func_echo "Waiting for $lockfile to be removed"
@@ -3724,7 +5097,7 @@ func_extract_an_archive ()
     fi
     func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \
                   'stat=$?; rm -f "$lockfile"; exit $stat'
-    if test "$lock_old_archive_extraction" = yes; then
+    if test yes = "$lock_old_archive_extraction"; then
       $opt_dry_run || rm -f "$lockfile"
     fi
     if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
@@ -3738,22 +5111,23 @@ func_extract_an_archive ()
 # func_extract_archives gentop oldlib ...
 func_extract_archives ()
 {
-    $opt_debug
-    my_gentop="$1"; shift
+    $debug_cmd
+
+    my_gentop=$1; shift
     my_oldlibs=${1+"$@"}
-    my_oldobjs=""
-    my_xlib=""
-    my_xabs=""
-    my_xdir=""
+    my_oldobjs=
+    my_xlib=
+    my_xabs=
+    my_xdir=
 
     for my_xlib in $my_oldlibs; do
       # Extract the objects.
       case $my_xlib in
-       [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;;
+       [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;;
        *) my_xabs=`pwd`"/$my_xlib" ;;
       esac
       func_basename "$my_xlib"
-      my_xlib="$func_basename_result"
+      my_xlib=$func_basename_result
       my_xlib_u=$my_xlib
       while :; do
         case " $extracted_archives " in
@@ -3765,7 +5139,7 @@ func_extract_archives ()
        esac
       done
       extracted_archives="$extracted_archives $my_xlib_u"
-      my_xdir="$my_gentop/$my_xlib_u"
+      my_xdir=$my_gentop/$my_xlib_u
 
       func_mkdir_p "$my_xdir"
 
@@ -3778,22 +5152,23 @@ func_extract_archives ()
          cd $my_xdir || exit $?
          darwin_archive=$my_xabs
          darwin_curdir=`pwd`
-         darwin_base_archive=`basename "$darwin_archive"`
+         func_basename "$darwin_archive"
+         darwin_base_archive=$func_basename_result
          darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true`
          if test -n "$darwin_arches"; then
            darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'`
            darwin_arch=
            func_verbose "$darwin_base_archive has multiple architectures $darwin_arches"
-           for darwin_arch in  $darwin_arches ; do
-             func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}"
-             $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}"
-             cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"
-             func_extract_an_archive "`pwd`" "${darwin_base_archive}"
+           for darwin_arch in  $darwin_arches; do
+             func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch"
+             $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive"
+             cd "unfat-$$/$darwin_base_archive-$darwin_arch"
+             func_extract_an_archive "`pwd`" "$darwin_base_archive"
              cd "$darwin_curdir"
-             $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}"
+             $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive"
            done # $darwin_arches
             ## Okay now we've a bunch of thin objects, gotta fatten them up :)
-           darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u`
+           darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u`
            darwin_file=
            darwin_files=
            for darwin_file in $darwin_filelist; do
@@ -3815,7 +5190,7 @@ func_extract_archives ()
       my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP`
     done
 
-    func_extract_archives_result="$my_oldobjs"
+    func_extract_archives_result=$my_oldobjs
 }
 
 
@@ -3830,7 +5205,7 @@ func_extract_archives ()
 #
 # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR
 # variable will take.  If 'yes', then the emitted script
-# will assume that the directory in which it is stored is
+# will assume that the directory where it is stored is
 # the $objdir directory.  This is a cygwin/mingw-specific
 # behavior.
 func_emit_wrapper ()
@@ -3841,7 +5216,7 @@ func_emit_wrapper ()
 #! $SHELL
 
 # $output - temporary wrapper script for $objdir/$outputname
-# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
+# Generated by $PROGRAM (GNU $PACKAGE) $VERSION
 #
 # The $output program cannot be directly executed until all the libtool
 # libraries that it depends on are installed.
@@ -3898,9 +5273,9 @@ _LTECHO_EOF'
 
 # Very basic option parsing. These options are (a) specific to
 # the libtool wrapper, (b) are identical between the wrapper
-# /script/ and the wrapper /executable/ which is used only on
+# /script/ and the wrapper /executable/ that is used only on
 # windows platforms, and (c) all begin with the string "--lt-"
-# (application programs are unlikely to have options which match
+# (application programs are unlikely to have options that match
 # this pattern).
 #
 # There are only two supported options: --lt-debug and
@@ -3933,7 +5308,7 @@ func_parse_lt_options ()
 
   # Print the debug banner immediately:
   if test -n \"\$lt_option_debug\"; then
-    echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2
+    echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2
   fi
 }
 
@@ -3944,7 +5319,7 @@ func_lt_dump_args ()
   lt_dump_args_N=1;
   for lt_arg
   do
-    \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\"
+    \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\"
     lt_dump_args_N=\`expr \$lt_dump_args_N + 1\`
   done
 }
@@ -3958,7 +5333,7 @@ func_exec_program_core ()
   *-*-mingw | *-*-os2* | *-cegcc*)
     $ECHO "\
       if test -n \"\$lt_option_debug\"; then
-        \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2
+        \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2
         func_lt_dump_args \${1+\"\$@\"} 1>&2
       fi
       exec \"\$progdir\\\\\$program\" \${1+\"\$@\"}
@@ -3968,7 +5343,7 @@ func_exec_program_core ()
   *)
     $ECHO "\
       if test -n \"\$lt_option_debug\"; then
-        \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2
+        \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2
         func_lt_dump_args \${1+\"\$@\"} 1>&2
       fi
       exec \"\$progdir/\$program\" \${1+\"\$@\"}
@@ -4043,13 +5418,13 @@ func_exec_program ()
   test -n \"\$absdir\" && thisdir=\"\$absdir\"
 "
 
-       if test "$fast_install" = yes; then
+       if test yes = "$fast_install"; then
          $ECHO "\
   program=lt-'$outputname'$exeext
   progdir=\"\$thisdir/$objdir\"
 
   if test ! -f \"\$progdir/\$program\" ||
-     { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\
+     { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\
        test \"X\$file\" != \"X\$progdir/\$program\"; }; then
 
     file=\"\$\$-\$program\"
@@ -4066,7 +5441,7 @@ func_exec_program ()
     if test -n \"\$relink_command\"; then
       if relink_command_output=\`eval \$relink_command 2>&1\`; then :
       else
-       $ECHO \"\$relink_command_output\" >&2
+       \$ECHO \"\$relink_command_output\" >&2
        $RM \"\$progdir/\$file\"
        exit 1
       fi
@@ -4101,7 +5476,7 @@ func_exec_program ()
        fi
 
        # Export our shlibpath_var if we have one.
-       if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
+       if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
          $ECHO "\
     # Add our own library path to $shlibpath_var
     $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
@@ -4121,7 +5496,7 @@ func_exec_program ()
     fi
   else
     # The program doesn't exist.
-    \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2
+    \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2
     \$ECHO \"This script is just a wrapper for \$program.\" 1>&2
     \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2
     exit 1
@@ -4140,7 +5515,7 @@ func_emit_cwrapperexe_src ()
        cat <<EOF
 
 /* $cwrappersource - temporary wrapper executable for $objdir/$outputname
-   Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
+   Generated by $PROGRAM (GNU $PACKAGE) $VERSION
 
    The $output program cannot be directly executed until all the libtool
    libraries that it depends on are installed.
@@ -4175,47 +5550,45 @@ EOF
 #include <fcntl.h>
 #include <sys/stat.h>
 
+#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0)
+
 /* declarations of non-ANSI functions */
-#if defined(__MINGW32__)
+#if defined __MINGW32__
 # ifdef __STRICT_ANSI__
 int _putenv (const char *);
 # endif
-#elif defined(__CYGWIN__)
+#elif defined __CYGWIN__
 # ifdef __STRICT_ANSI__
 char *realpath (const char *, char *);
 int putenv (char *);
 int setenv (const char *, const char *, int);
 # endif
-/* #elif defined (other platforms) ... */
+/* #elif defined other_platform || defined ... */
 #endif
 
 /* portability defines, excluding path handling macros */
-#if defined(_MSC_VER)
+#if defined _MSC_VER
 # define setmode _setmode
 # define stat    _stat
 # define chmod   _chmod
 # define getcwd  _getcwd
 # define putenv  _putenv
 # define S_IXUSR _S_IEXEC
-# ifndef _INTPTR_T_DEFINED
-#  define _INTPTR_T_DEFINED
-#  define intptr_t int
-# endif
-#elif defined(__MINGW32__)
+#elif defined __MINGW32__
 # define setmode _setmode
 # define stat    _stat
 # define chmod   _chmod
 # define getcwd  _getcwd
 # define putenv  _putenv
-#elif defined(__CYGWIN__)
+#elif defined __CYGWIN__
 # define HAVE_SETENV
 # define FOPEN_WB "wb"
-/* #elif defined (other platforms) ... */
+/* #elif defined other platforms ... */
 #endif
 
-#if defined(PATH_MAX)
+#if defined PATH_MAX
 # define LT_PATHMAX PATH_MAX
-#elif defined(MAXPATHLEN)
+#elif defined MAXPATHLEN
 # define LT_PATHMAX MAXPATHLEN
 #else
 # define LT_PATHMAX 1024
@@ -4234,8 +5607,8 @@ int setenv (const char *, const char *, int);
 # define PATH_SEPARATOR ':'
 #endif
 
-#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
-  defined (__OS2__)
+#if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \
+  defined __OS2__
 # define HAVE_DOS_BASED_FILE_SYSTEM
 # define FOPEN_WB "wb"
 # ifndef DIR_SEPARATOR_2
@@ -4268,10 +5641,10 @@ int setenv (const char *, const char *, int);
 
 #define XMALLOC(type, num)      ((type *) xmalloc ((num) * sizeof(type)))
 #define XFREE(stale) do { \
-  if (stale) { free ((void *) stale); stale = 0; } \
+  if (stale) { free (stale); stale = 0; } \
 } while (0)
 
-#if defined(LT_DEBUGWRAPPER)
+#if defined LT_DEBUGWRAPPER
 static int lt_debug = 1;
 #else
 static int lt_debug = 0;
@@ -4300,11 +5673,16 @@ void lt_dump_script (FILE *f);
 EOF
 
            cat <<EOF
-volatile const char * MAGIC_EXE = "$magic_exe";
+#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 5)
+# define externally_visible volatile
+#else
+# define externally_visible __attribute__((externally_visible)) volatile
+#endif
+externally_visible const char * MAGIC_EXE = "$magic_exe";
 const char * LIB_PATH_VARNAME = "$shlibpath_var";
 EOF
 
-           if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
+           if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
               func_to_host_path "$temp_rpath"
              cat <<EOF
 const char * LIB_PATH_VALUE   = "$func_to_host_path_result";
@@ -4328,7 +5706,7 @@ const char * EXE_PATH_VALUE   = "";
 EOF
            fi
 
-           if test "$fast_install" = yes; then
+           if test yes = "$fast_install"; then
              cat <<EOF
 const char * TARGET_PROGRAM_NAME = "lt-$outputname"; /* hopefully, no .exe */
 EOF
@@ -4357,12 +5735,12 @@ main (int argc, char *argv[])
   char *actual_cwrapper_name;
   char *target_name;
   char *lt_argv_zero;
-  intptr_t rval = 127;
+  int rval = 127;
 
   int i;
 
   program_name = (char *) xstrdup (base_name (argv[0]));
-  newargz = XMALLOC (char *, argc + 1);
+  newargz = XMALLOC (char *, (size_t) argc + 1);
 
   /* very simple arg parsing; don't want to rely on getopt
    * also, copy all non cwrapper options to newargz, except
@@ -4371,10 +5749,10 @@ main (int argc, char *argv[])
   newargc=0;
   for (i = 1; i < argc; i++)
     {
-      if (strcmp (argv[i], dumpscript_opt) == 0)
+      if (STREQ (argv[i], dumpscript_opt))
        {
 EOF
-           case "$host" in
+           case $host in
              *mingw* | *cygwin* )
                # make stdout use "unix" line endings
                echo "          setmode(1,_O_BINARY);"
@@ -4385,12 +5763,12 @@ EOF
          lt_dump_script (stdout);
          return 0;
        }
-      if (strcmp (argv[i], debug_opt) == 0)
+      if (STREQ (argv[i], debug_opt))
        {
           lt_debug = 1;
           continue;
        }
-      if (strcmp (argv[i], ltwrapper_option_prefix) == 0)
+      if (STREQ (argv[i], ltwrapper_option_prefix))
         {
           /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX
              namespace, but it is not one of the ones we know about and
@@ -4413,7 +5791,7 @@ EOF
 EOF
            cat <<EOF
   /* The GNU banner must be the first non-error debug message */
-  lt_debugprintf (__FILE__, __LINE__, "libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\n");
+  lt_debugprintf (__FILE__, __LINE__, "libtool wrapper (GNU $PACKAGE) $VERSION\n");
 EOF
            cat <<"EOF"
   lt_debugprintf (__FILE__, __LINE__, "(main) argv[0]: %s\n", argv[0]);
@@ -4524,7 +5902,7 @@ EOF
                cat <<"EOF"
   /* execv doesn't actually work on mingw as expected on unix */
   newargz = prepare_spawn (newargz);
-  rval = _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz);
+  rval = (int) _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz);
   if (rval == -1)
     {
       /* failed to start process */
@@ -4569,7 +5947,7 @@ base_name (const char *name)
 {
   const char *base;
 
-#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
+#if defined HAVE_DOS_BASED_FILE_SYSTEM
   /* Skip over the disk name in MSDOS pathnames. */
   if (isalpha ((unsigned char) name[0]) && name[1] == ':')
     name += 2;
@@ -4628,7 +6006,7 @@ find_executable (const char *wrapper)
   const char *p_next;
   /* static buffer for getcwd */
   char tmp[LT_PATHMAX + 1];
-  int tmp_len;
+  size_t tmp_len;
   char *concat_name;
 
   lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n",
@@ -4638,7 +6016,7 @@ find_executable (const char *wrapper)
     return NULL;
 
   /* Absolute path? */
-#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
+#if defined HAVE_DOS_BASED_FILE_SYSTEM
   if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')
     {
       concat_name = xstrdup (wrapper);
@@ -4656,7 +6034,7 @@ find_executable (const char *wrapper)
            return concat_name;
          XFREE (concat_name);
        }
-#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
+#if defined HAVE_DOS_BASED_FILE_SYSTEM
     }
 #endif
 
@@ -4679,7 +6057,7 @@ find_executable (const char *wrapper)
              for (q = p; *q; q++)
                if (IS_PATH_SEPARATOR (*q))
                  break;
-             p_len = q - p;
+             p_len = (size_t) (q - p);
              p_next = (*q == '\0' ? q : q + 1);
              if (p_len == 0)
                {
@@ -4798,7 +6176,7 @@ strendzap (char *str, const char *pat)
   if (patlen <= len)
     {
       str += len - patlen;
-      if (strcmp (str, pat) == 0)
+      if (STREQ (str, pat))
        *str = '\0';
     }
   return str;
@@ -4863,7 +6241,7 @@ lt_setenv (const char *name, const char *value)
     char *str = xstrdup (value);
     setenv (name, str, 1);
 #else
-    int len = strlen (name) + 1 + strlen (value) + 1;
+    size_t len = strlen (name) + 1 + strlen (value) + 1;
     char *str = XMALLOC (char, len);
     sprintf (str, "%s=%s", name, value);
     if (putenv (str) != EXIT_SUCCESS)
@@ -4880,8 +6258,8 @@ lt_extend_str (const char *orig_value, const char *add, int to_end)
   char *new_value;
   if (orig_value && *orig_value)
     {
-      int orig_value_len = strlen (orig_value);
-      int add_len = strlen (add);
+      size_t orig_value_len = strlen (orig_value);
+      size_t add_len = strlen (add);
       new_value = XMALLOC (char, add_len + orig_value_len + 1);
       if (to_end)
         {
@@ -4912,10 +6290,10 @@ lt_update_exe_path (const char *name, const char *value)
     {
       char *new_value = lt_extend_str (getenv (name), value, 0);
       /* some systems can't cope with a ':'-terminated path #' */
-      int len = strlen (new_value);
-      while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1]))
+      size_t len = strlen (new_value);
+      while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1]))
         {
-          new_value[len-1] = '\0';
+          new_value[--len] = '\0';
         }
       lt_setenv (name, new_value);
       XFREE (new_value);
@@ -5082,27 +6460,47 @@ EOF
 # True if ARG is an import lib, as indicated by $file_magic_cmd
 func_win32_import_lib_p ()
 {
-    $opt_debug
+    $debug_cmd
+
     case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in
     *import*) : ;;
     *) false ;;
     esac
 }
 
+# func_suncc_cstd_abi
+# !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!!
+# Several compiler flags select an ABI that is incompatible with the
+# Cstd library. Avoid specifying it if any are in CXXFLAGS.
+func_suncc_cstd_abi ()
+{
+    $debug_cmd
+
+    case " $compile_command " in
+    *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*)
+      suncc_use_cstd_abi=no
+      ;;
+    *)
+      suncc_use_cstd_abi=yes
+      ;;
+    esac
+}
+
 # func_mode_link arg...
 func_mode_link ()
 {
-    $opt_debug
+    $debug_cmd
+
     case $host in
     *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
       # It is impossible to link a dll without this setting, and
       # we shouldn't force the makefile maintainer to figure out
-      # which system we are compiling for in order to pass an extra
+      # what system we are compiling for in order to pass an extra
       # flag for every libtool invocation.
       # allow_undefined=no
 
       # FIXME: Unfortunately, there are problems with the above when trying
-      # to make a dll which has undefined symbols, in which case not
+      # to make a dll that has undefined symbols, in which case not
       # even a static library is built.  For now, we need to specify
       # -no-undefined on the libtool link line when we can be certain
       # that all symbols are satisfied, otherwise we get a static library.
@@ -5146,10 +6544,11 @@ func_mode_link ()
     module=no
     no_install=no
     objs=
+    os2dllname=
     non_pic_objects=
     precious_files_regex=
     prefer_static_libs=no
-    preload=no
+    preload=false
     prev=
     prevarg=
     release=
@@ -5161,7 +6560,7 @@ func_mode_link ()
     vinfo=
     vinfo_number=no
     weak_libs=
-    single_module="${wl}-single_module"
+    single_module=$wl-single_module
     func_infer_tag $base_compile
 
     # We need to know -static, to get the right output filenames.
@@ -5169,15 +6568,15 @@ func_mode_link ()
     do
       case $arg in
       -shared)
-       test "$build_libtool_libs" != yes && \
-         func_fatal_configuration "can not build a shared library"
+       test yes != "$build_libtool_libs" \
+         && func_fatal_configuration "cannot build a shared library"
        build_old_libs=no
        break
        ;;
       -all-static | -static | -static-libtool-libs)
        case $arg in
        -all-static)
-         if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
+         if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then
            func_warning "complete static linking is impossible in this configuration"
          fi
          if test -n "$link_static_flag"; then
@@ -5210,7 +6609,7 @@ func_mode_link ()
 
     # Go through the arguments, transforming them on the way.
     while test "$#" -gt 0; do
-      arg="$1"
+      arg=$1
       shift
       func_quote_for_eval "$arg"
       qarg=$func_quote_for_eval_unquoted_result
@@ -5227,21 +6626,21 @@ func_mode_link ()
 
        case $prev in
        bindir)
-         bindir="$arg"
+         bindir=$arg
          prev=
          continue
          ;;
        dlfiles|dlprefiles)
-         if test "$preload" = no; then
+         $preload || {
            # Add the symbol object into the linking commands.
            func_append compile_command " @SYMFILE@"
            func_append finalize_command " @SYMFILE@"
-           preload=yes
-         fi
+           preload=:
+         }
          case $arg in
          *.la | *.lo) ;;  # We handle these cases below.
          force)
-           if test "$dlself" = no; then
+           if test no = "$dlself"; then
              dlself=needless
              export_dynamic=yes
            fi
@@ -5249,9 +6648,9 @@ func_mode_link ()
            continue
            ;;
          self)
-           if test "$prev" = dlprefiles; then
+           if test dlprefiles = "$prev"; then
              dlself=yes
-           elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
+           elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then
              dlself=yes
            else
              dlself=needless
@@ -5261,7 +6660,7 @@ func_mode_link ()
            continue
            ;;
          *)
-           if test "$prev" = dlfiles; then
+           if test dlfiles = "$prev"; then
              func_append dlfiles " $arg"
            else
              func_append dlprefiles " $arg"
@@ -5272,14 +6671,14 @@ func_mode_link ()
          esac
          ;;
        expsyms)
-         export_symbols="$arg"
+         export_symbols=$arg
          test -f "$arg" \
-           || func_fatal_error "symbol file \`$arg' does not exist"
+           || func_fatal_error "symbol file '$arg' does not exist"
          prev=
          continue
          ;;
        expsyms_regex)
-         export_symbols_regex="$arg"
+         export_symbols_regex=$arg
          prev=
          continue
          ;;
@@ -5297,7 +6696,13 @@ func_mode_link ()
          continue
          ;;
        inst_prefix)
-         inst_prefix_dir="$arg"
+         inst_prefix_dir=$arg
+         prev=
+         continue
+         ;;
+       mllvm)
+         # Clang does not use LLVM to link, so we can simply discard any
+         # '-mllvm $arg' options when doing the link step.
          prev=
          continue
          ;;
@@ -5321,21 +6726,21 @@ func_mode_link ()
 
                if test -z "$pic_object" ||
                   test -z "$non_pic_object" ||
-                  test "$pic_object" = none &&
-                  test "$non_pic_object" = none; then
-                 func_fatal_error "cannot find name of object for \`$arg'"
+                  test none = "$pic_object" &&
+                  test none = "$non_pic_object"; then
+                 func_fatal_error "cannot find name of object for '$arg'"
                fi
 
                # Extract subdirectory from the argument.
                func_dirname "$arg" "/" ""
-               xdir="$func_dirname_result"
+               xdir=$func_dirname_result
 
-               if test "$pic_object" != none; then
+               if test none != "$pic_object"; then
                  # Prepend the subdirectory the object is found in.
-                 pic_object="$xdir$pic_object"
+                 pic_object=$xdir$pic_object
 
-                 if test "$prev" = dlfiles; then
-                   if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
+                 if test dlfiles = "$prev"; then
+                   if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then
                      func_append dlfiles " $pic_object"
                      prev=
                      continue
@@ -5346,7 +6751,7 @@ func_mode_link ()
                  fi
 
                  # CHECK ME:  I think I busted this.  -Ossama
-                 if test "$prev" = dlprefiles; then
+                 if test dlprefiles = "$prev"; then
                    # Preload the old-style object.
                    func_append dlprefiles " $pic_object"
                    prev=
@@ -5354,23 +6759,23 @@ func_mode_link ()
 
                  # A PIC object.
                  func_append libobjs " $pic_object"
-                 arg="$pic_object"
+                 arg=$pic_object
                fi
 
                # Non-PIC object.
-               if test "$non_pic_object" != none; then
+               if test none != "$non_pic_object"; then
                  # Prepend the subdirectory the object is found in.
-                 non_pic_object="$xdir$non_pic_object"
+                 non_pic_object=$xdir$non_pic_object
 
                  # A standard non-PIC object
                  func_append non_pic_objects " $non_pic_object"
-                 if test -z "$pic_object" || test "$pic_object" = none ; then
-                   arg="$non_pic_object"
+                 if test -z "$pic_object" || test none = "$pic_object"; then
+                   arg=$non_pic_object
                  fi
                else
                  # If the PIC object exists, use it instead.
                  # $xdir was prepended to $pic_object above.
-                 non_pic_object="$pic_object"
+                 non_pic_object=$pic_object
                  func_append non_pic_objects " $non_pic_object"
                fi
              else
@@ -5378,7 +6783,7 @@ func_mode_link ()
                if $opt_dry_run; then
                  # Extract subdirectory from the argument.
                  func_dirname "$arg" "/" ""
-                 xdir="$func_dirname_result"
+                 xdir=$func_dirname_result
 
                  func_lo2o "$arg"
                  pic_object=$xdir$objdir/$func_lo2o_result
@@ -5386,24 +6791,29 @@ func_mode_link ()
                  func_append libobjs " $pic_object"
                  func_append non_pic_objects " $non_pic_object"
                else
-                 func_fatal_error "\`$arg' is not a valid libtool object"
+                 func_fatal_error "'$arg' is not a valid libtool object"
                fi
              fi
            done
          else
-           func_fatal_error "link input file \`$arg' does not exist"
+           func_fatal_error "link input file '$arg' does not exist"
          fi
          arg=$save_arg
          prev=
          continue
          ;;
+       os2dllname)
+         os2dllname=$arg
+         prev=
+         continue
+         ;;
        precious_regex)
-         precious_files_regex="$arg"
+         precious_files_regex=$arg
          prev=
          continue
          ;;
        release)
-         release="-$arg"
+         release=-$arg
          prev=
          continue
          ;;
@@ -5415,7 +6825,7 @@ func_mode_link ()
            func_fatal_error "only absolute run-paths are allowed"
            ;;
          esac
-         if test "$prev" = rpath; then
+         if test rpath = "$prev"; then
            case "$rpath " in
            *" $arg "*) ;;
            *) func_append rpath " $arg" ;;
@@ -5430,7 +6840,7 @@ func_mode_link ()
          continue
          ;;
        shrext)
-         shrext_cmds="$arg"
+         shrext_cmds=$arg
          prev=
          continue
          ;;
@@ -5470,7 +6880,7 @@ func_mode_link ()
        esac
       fi # test -n "$prev"
 
-      prevarg="$arg"
+      prevarg=$arg
 
       case $arg in
       -all-static)
@@ -5484,7 +6894,7 @@ func_mode_link ()
 
       -allow-undefined)
        # FIXME: remove this flag sometime in the future.
-       func_fatal_error "\`-allow-undefined' must not be used because it is the default"
+       func_fatal_error "'-allow-undefined' must not be used because it is the default"
        ;;
 
       -avoid-version)
@@ -5516,7 +6926,7 @@ func_mode_link ()
        if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
          func_fatal_error "more than one -exported-symbols argument is not allowed"
        fi
-       if test "X$arg" = "X-export-symbols"; then
+       if test X-export-symbols = "X$arg"; then
          prev=expsyms
        else
          prev=expsyms_regex
@@ -5550,9 +6960,9 @@ func_mode_link ()
        func_stripname "-L" '' "$arg"
        if test -z "$func_stripname_result"; then
          if test "$#" -gt 0; then
-           func_fatal_error "require no space between \`-L' and \`$1'"
+           func_fatal_error "require no space between '-L' and '$1'"
          else
-           func_fatal_error "need path for \`-L' option"
+           func_fatal_error "need path for '-L' option"
          fi
        fi
        func_resolve_sysroot "$func_stripname_result"
@@ -5563,8 +6973,8 @@ func_mode_link ()
        *)
          absdir=`cd "$dir" && pwd`
          test -z "$absdir" && \
-           func_fatal_error "cannot determine absolute directory name of \`$dir'"
-         dir="$absdir"
+           func_fatal_error "cannot determine absolute directory name of '$dir'"
+         dir=$absdir
          ;;
        esac
        case "$deplibs " in
@@ -5599,7 +7009,7 @@ func_mode_link ()
        ;;
 
       -l*)
-       if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
+       if test X-lc = "X$arg" || test X-lm = "X$arg"; then
          case $host in
          *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*)
            # These systems don't actually have a C or math library (as such)
@@ -5607,11 +7017,11 @@ func_mode_link ()
            ;;
          *-*-os2*)
            # These systems don't actually have a C library (as such)
-           test "X$arg" = "X-lc" && continue
+           test X-lc = "X$arg" && continue
            ;;
-         *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
+         *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*)
            # Do not include libc due to us having libc/libc_r.
-           test "X$arg" = "X-lc" && continue
+           test X-lc = "X$arg" && continue
            ;;
          *-*-rhapsody* | *-*-darwin1.[012])
            # Rhapsody C and math libraries are in the System framework
@@ -5620,16 +7030,16 @@ func_mode_link ()
            ;;
          *-*-sco3.2v5* | *-*-sco5v6*)
            # Causes problems with __ctype
-           test "X$arg" = "X-lc" && continue
+           test X-lc = "X$arg" && continue
            ;;
          *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
            # Compiler inserts libc in the correct place for threads to work
-           test "X$arg" = "X-lc" && continue
+           test X-lc = "X$arg" && continue
            ;;
          esac
-       elif test "X$arg" = "X-lc_r"; then
+       elif test X-lc_r = "X$arg"; then
         case $host in
-        *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
+        *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*)
           # Do not include libc_r directly, use -pthread flag.
           continue
           ;;
@@ -5639,6 +7049,11 @@ func_mode_link ()
        continue
        ;;
 
+      -mllvm)
+       prev=mllvm
+       continue
+       ;;
+
       -module)
        module=yes
        continue
@@ -5668,7 +7083,7 @@ func_mode_link ()
        ;;
 
       -multi_module)
-       single_module="${wl}-multi_module"
+       single_module=$wl-multi_module
        continue
        ;;
 
@@ -5682,8 +7097,8 @@ func_mode_link ()
        *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*)
          # The PATH hackery in wrapper scripts is required on Windows
          # and Darwin in order for the loader to find any dlls it needs.
-         func_warning "\`-no-install' is ignored for $host"
-         func_warning "assuming \`-no-fast-install' instead"
+         func_warning "'-no-install' is ignored for $host"
+         func_warning "assuming '-no-fast-install' instead"
          fast_install=no
          ;;
        *) no_install=yes ;;
@@ -5701,6 +7116,11 @@ func_mode_link ()
        continue
        ;;
 
+      -os2dllname)
+       prev=os2dllname
+       continue
+       ;;
+
       -o) prev=output ;;
 
       -precious-files-regex)
@@ -5788,14 +7208,14 @@ func_mode_link ()
        func_stripname '-Wc,' '' "$arg"
        args=$func_stripname_result
        arg=
-       save_ifs="$IFS"; IFS=','
+       save_ifs=$IFS; IFS=,
        for flag in $args; do
-         IFS="$save_ifs"
+         IFS=$save_ifs
           func_quote_for_eval "$flag"
          func_append arg " $func_quote_for_eval_result"
          func_append compiler_flags " $func_quote_for_eval_result"
        done
-       IFS="$save_ifs"
+       IFS=$save_ifs
        func_stripname ' ' '' "$arg"
        arg=$func_stripname_result
        ;;
@@ -5804,15 +7224,15 @@ func_mode_link ()
        func_stripname '-Wl,' '' "$arg"
        args=$func_stripname_result
        arg=
-       save_ifs="$IFS"; IFS=','
+       save_ifs=$IFS; IFS=,
        for flag in $args; do
-         IFS="$save_ifs"
+         IFS=$save_ifs
           func_quote_for_eval "$flag"
          func_append arg " $wl$func_quote_for_eval_result"
          func_append compiler_flags " $wl$func_quote_for_eval_result"
          func_append linker_flags " $func_quote_for_eval_result"
        done
-       IFS="$save_ifs"
+       IFS=$save_ifs
        func_stripname ' ' '' "$arg"
        arg=$func_stripname_result
        ;;
@@ -5835,7 +7255,7 @@ func_mode_link ()
       # -msg_* for osf cc
       -msg_*)
        func_quote_for_eval "$arg"
-       arg="$func_quote_for_eval_result"
+       arg=$func_quote_for_eval_result
        ;;
 
       # Flags to be passed through unchanged, with rationale:
@@ -5847,25 +7267,49 @@ func_mode_link ()
       # -m*, -t[45]*, -txscale* architecture-specific flags for GCC
       # -F/path              path to uninstalled frameworks, gcc on darwin
       # -p, -pg, --coverage, -fprofile-*  profiling flags for GCC
+      # -fstack-protector*   stack protector flags for GCC
       # @file                GCC response files
       # -tp=*                Portland pgcc target processor selection
       # --sysroot=*          for sysroot support
-      # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization
+      # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization
+      # -specs=*             GCC specs files
+      # -stdlib=*            select c++ std lib with clang
+      # -fsanitize=*         Clang/GCC memory and address sanitizer
       -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
       -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
-      -O*|-flto*|-fwhopr*|-fuse-linker-plugin)
+      -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \
+      -specs=*|-fsanitize=*)
         func_quote_for_eval "$arg"
-       arg="$func_quote_for_eval_result"
+       arg=$func_quote_for_eval_result
         func_append compile_command " $arg"
         func_append finalize_command " $arg"
         func_append compiler_flags " $arg"
         continue
         ;;
 
+      -Z*)
+        if test os2 = "`expr $host : '.*\(os2\)'`"; then
+          # OS/2 uses -Zxxx to specify OS/2-specific options
+         compiler_flags="$compiler_flags $arg"
+         func_append compile_command " $arg"
+         func_append finalize_command " $arg"
+         case $arg in
+         -Zlinker | -Zstack)
+           prev=xcompiler
+           ;;
+         esac
+         continue
+        else
+         # Otherwise treat like 'Some other compiler flag' below
+         func_quote_for_eval "$arg"
+         arg=$func_quote_for_eval_result
+        fi
+       ;;
+
       # Some other compiler flag.
       -* | +*)
         func_quote_for_eval "$arg"
-       arg="$func_quote_for_eval_result"
+       arg=$func_quote_for_eval_result
        ;;
 
       *.$objext)
@@ -5886,21 +7330,21 @@ func_mode_link ()
 
          if test -z "$pic_object" ||
             test -z "$non_pic_object" ||
-            test "$pic_object" = none &&
-            test "$non_pic_object" = none; then
-           func_fatal_error "cannot find name of object for \`$arg'"
+            test none = "$pic_object" &&
+            test none = "$non_pic_object"; then
+           func_fatal_error "cannot find name of object for '$arg'"
          fi
 
          # Extract subdirectory from the argument.
          func_dirname "$arg" "/" ""
-         xdir="$func_dirname_result"
+         xdir=$func_dirname_result
 
-         if test "$pic_object" != none; then
+         test none = "$pic_object" || {
            # Prepend the subdirectory the object is found in.
-           pic_object="$xdir$pic_object"
+           pic_object=$xdir$pic_object
 
-           if test "$prev" = dlfiles; then
-             if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
+           if test dlfiles = "$prev"; then
+             if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then
                func_append dlfiles " $pic_object"
                prev=
                continue
@@ -5911,7 +7355,7 @@ func_mode_link ()
            fi
 
            # CHECK ME:  I think I busted this.  -Ossama
-           if test "$prev" = dlprefiles; then
+           if test dlprefiles = "$prev"; then
              # Preload the old-style object.
              func_append dlprefiles " $pic_object"
              prev=
@@ -5919,23 +7363,23 @@ func_mode_link ()
 
            # A PIC object.
            func_append libobjs " $pic_object"
-           arg="$pic_object"
-         fi
+           arg=$pic_object
+         }
 
          # Non-PIC object.
-         if test "$non_pic_object" != none; then
+         if test none != "$non_pic_object"; then
            # Prepend the subdirectory the object is found in.
-           non_pic_object="$xdir$non_pic_object"
+           non_pic_object=$xdir$non_pic_object
 
            # A standard non-PIC object
            func_append non_pic_objects " $non_pic_object"
-           if test -z "$pic_object" || test "$pic_object" = none ; then
-             arg="$non_pic_object"
+           if test -z "$pic_object" || test none = "$pic_object"; then
+             arg=$non_pic_object
            fi
          else
            # If the PIC object exists, use it instead.
            # $xdir was prepended to $pic_object above.
-           non_pic_object="$pic_object"
+           non_pic_object=$pic_object
            func_append non_pic_objects " $non_pic_object"
          fi
        else
@@ -5943,7 +7387,7 @@ func_mode_link ()
          if $opt_dry_run; then
            # Extract subdirectory from the argument.
            func_dirname "$arg" "/" ""
-           xdir="$func_dirname_result"
+           xdir=$func_dirname_result
 
            func_lo2o "$arg"
            pic_object=$xdir$objdir/$func_lo2o_result
@@ -5951,7 +7395,7 @@ func_mode_link ()
            func_append libobjs " $pic_object"
            func_append non_pic_objects " $non_pic_object"
          else
-           func_fatal_error "\`$arg' is not a valid libtool object"
+           func_fatal_error "'$arg' is not a valid libtool object"
          fi
        fi
        ;;
@@ -5967,11 +7411,11 @@ func_mode_link ()
        # A libtool-controlled library.
 
        func_resolve_sysroot "$arg"
-       if test "$prev" = dlfiles; then
+       if test dlfiles = "$prev"; then
          # This library was specified with -dlopen.
          func_append dlfiles " $func_resolve_sysroot_result"
          prev=
-       elif test "$prev" = dlprefiles; then
+       elif test dlprefiles = "$prev"; then
          # The library was specified with -dlpreopen.
          func_append dlprefiles " $func_resolve_sysroot_result"
          prev=
@@ -5986,7 +7430,7 @@ func_mode_link ()
        # Unknown arguments in both finalize_command and compile_command need
        # to be aesthetically quoted because they are evaled later.
        func_quote_for_eval "$arg"
-       arg="$func_quote_for_eval_result"
+       arg=$func_quote_for_eval_result
        ;;
       esac # arg
 
@@ -5998,9 +7442,9 @@ func_mode_link ()
     done # argument parsing loop
 
     test -n "$prev" && \
-      func_fatal_help "the \`$prevarg' option requires an argument"
+      func_fatal_help "the '$prevarg' option requires an argument"
 
-    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
+    if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then
       eval arg=\"$export_dynamic_flag_spec\"
       func_append compile_command " $arg"
       func_append finalize_command " $arg"
@@ -6009,20 +7453,23 @@ func_mode_link ()
     oldlibs=
     # calculate the name of the file, without its directory
     func_basename "$output"
-    outputname="$func_basename_result"
-    libobjs_save="$libobjs"
+    outputname=$func_basename_result
+    libobjs_save=$libobjs
 
     if test -n "$shlibpath_var"; then
       # get the directories listed in $shlibpath_var
-      eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\`
+      eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\`
     else
       shlib_search_path=
     fi
     eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
     eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"
 
+    # Definition is injected by LT_CONFIG during libtool generation.
+    func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH"
+
     func_dirname "$output" "/" ""
-    output_objdir="$func_dirname_result$objdir"
+    output_objdir=$func_dirname_result$objdir
     func_to_tool_file "$output_objdir/"
     tool_output_objdir=$func_to_tool_file_result
     # Create the object directory.
@@ -6045,7 +7492,7 @@ func_mode_link ()
     # Find all interdependent deplibs by searching for libraries
     # that are linked more than once (e.g. -la -lb -la)
     for deplib in $deplibs; do
-      if $opt_preserve_dup_deps ; then
+      if $opt_preserve_dup_deps; then
        case "$libs " in
        *" $deplib "*) func_append specialdeplibs " $deplib" ;;
        esac
@@ -6053,7 +7500,7 @@ func_mode_link ()
       func_append libs " $deplib"
     done
 
-    if test "$linkmode" = lib; then
+    if test lib = "$linkmode"; then
       libs="$predeps $libs $compiler_lib_search_path $postdeps"
 
       # Compute libraries that are listed more than once in $predeps
@@ -6085,7 +7532,7 @@ func_mode_link ()
          case $file in
          *.la) ;;
          *)
-           func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file"
+           func_fatal_help "libraries can '-dlopen' only libtool libraries: $file"
            ;;
          esac
        done
@@ -6093,7 +7540,7 @@ func_mode_link ()
     prog)
        compile_deplibs=
        finalize_deplibs=
-       alldeplibs=no
+       alldeplibs=false
        newdlfiles=
        newdlprefiles=
        passes="conv scan dlopen dlpreopen link"
@@ -6105,32 +7552,32 @@ func_mode_link ()
     for pass in $passes; do
       # The preopen pass in lib mode reverses $deplibs; put it back here
       # so that -L comes before libs that need it for instance...
-      if test "$linkmode,$pass" = "lib,link"; then
+      if test lib,link = "$linkmode,$pass"; then
        ## FIXME: Find the place where the list is rebuilt in the wrong
        ##        order, and fix it there properly
         tmp_deplibs=
        for deplib in $deplibs; do
          tmp_deplibs="$deplib $tmp_deplibs"
        done
-       deplibs="$tmp_deplibs"
+       deplibs=$tmp_deplibs
       fi
 
-      if test "$linkmode,$pass" = "lib,link" ||
-        test "$linkmode,$pass" = "prog,scan"; then
-       libs="$deplibs"
+      if test lib,link = "$linkmode,$pass" ||
+        test prog,scan = "$linkmode,$pass"; then
+       libs=$deplibs
        deplibs=
       fi
-      if test "$linkmode" = prog; then
+      if test prog = "$linkmode"; then
        case $pass in
-       dlopen) libs="$dlfiles" ;;
-       dlpreopen) libs="$dlprefiles" ;;
+       dlopen) libs=$dlfiles ;;
+       dlpreopen) libs=$dlprefiles ;;
        link)
          libs="$deplibs %DEPLIBS%"
          test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
          ;;
        esac
       fi
-      if test "$linkmode,$pass" = "lib,dlpreopen"; then
+      if test lib,dlpreopen = "$linkmode,$pass"; then
        # Collect and forward deplibs of preopened libtool libs
        for lib in $dlprefiles; do
          # Ignore non-libtool-libs
@@ -6151,26 +7598,26 @@ func_mode_link ()
            esac
          done
        done
-       libs="$dlprefiles"
+       libs=$dlprefiles
       fi
-      if test "$pass" = dlopen; then
+      if test dlopen = "$pass"; then
        # Collect dlpreopened libraries
-       save_deplibs="$deplibs"
+       save_deplibs=$deplibs
        deplibs=
       fi
 
       for deplib in $libs; do
        lib=
-       found=no
+       found=false
        case $deplib in
        -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \
         |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)
-         if test "$linkmode,$pass" = "prog,link"; then
+         if test prog,link = "$linkmode,$pass"; then
            compile_deplibs="$deplib $compile_deplibs"
            finalize_deplibs="$deplib $finalize_deplibs"
          else
            func_append compiler_flags " $deplib"
-           if test "$linkmode" = lib ; then
+           if test lib = "$linkmode"; then
                case "$new_inherited_linker_flags " in
                    *" $deplib "*) ;;
                    * ) func_append new_inherited_linker_flags " $deplib" ;;
@@ -6180,13 +7627,13 @@ func_mode_link ()
          continue
          ;;
        -l*)
-         if test "$linkmode" != lib && test "$linkmode" != prog; then
-           func_warning "\`-l' is ignored for archives/objects"
+         if test lib != "$linkmode" && test prog != "$linkmode"; then
+           func_warning "'-l' is ignored for archives/objects"
            continue
          fi
          func_stripname '-l' '' "$deplib"
          name=$func_stripname_result
-         if test "$linkmode" = lib; then
+         if test lib = "$linkmode"; then
            searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path"
          else
            searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path"
@@ -6194,31 +7641,22 @@ func_mode_link ()
          for searchdir in $searchdirs; do
            for search_ext in .la $std_shrext .so .a; do
              # Search the libtool library
-             lib="$searchdir/lib${name}${search_ext}"
+             lib=$searchdir/lib$name$search_ext
              if test -f "$lib"; then
-               if test "$search_ext" = ".la"; then
-                 found=yes
+               if test .la = "$search_ext"; then
+                 found=:
                else
-                 found=no
+                 found=false
                fi
                break 2
              fi
            done
          done
-         if test "$found" != yes; then
-           # deplib doesn't seem to be a libtool library
-           if test "$linkmode,$pass" = "prog,link"; then
-             compile_deplibs="$deplib $compile_deplibs"
-             finalize_deplibs="$deplib $finalize_deplibs"
-           else
-             deplibs="$deplib $deplibs"
-             test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
-           fi
-           continue
-         else # deplib is a libtool library
+         if $found; then
+           # deplib is a libtool library
            # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,
            # We need to do some special things here, and not later.
-           if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
+           if test yes = "$allow_libtool_libs_with_static_runtimes"; then
              case " $predeps $postdeps " in
              *" $deplib "*)
                if func_lalib_p "$lib"; then
@@ -6226,19 +7664,19 @@ func_mode_link ()
                  old_library=
                  func_source "$lib"
                  for l in $old_library $library_names; do
-                   ll="$l"
+                   ll=$l
                  done
-                 if test "X$ll" = "X$old_library" ; then # only static version available
-                   found=no
+                 if test "X$ll" = "X$old_library"; then # only static version available
+                   found=false
                    func_dirname "$lib" "" "."
-                   ladir="$func_dirname_result"
+                   ladir=$func_dirname_result
                    lib=$ladir/$old_library
-                   if test "$linkmode,$pass" = "prog,link"; then
+                   if test prog,link = "$linkmode,$pass"; then
                      compile_deplibs="$deplib $compile_deplibs"
                      finalize_deplibs="$deplib $finalize_deplibs"
                    else
                      deplibs="$deplib $deplibs"
-                     test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
+                     test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs"
                    fi
                    continue
                  fi
@@ -6247,15 +7685,25 @@ func_mode_link ()
              *) ;;
              esac
            fi
+         else
+           # deplib doesn't seem to be a libtool library
+           if test prog,link = "$linkmode,$pass"; then
+             compile_deplibs="$deplib $compile_deplibs"
+             finalize_deplibs="$deplib $finalize_deplibs"
+           else
+             deplibs="$deplib $deplibs"
+             test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs"
+           fi
+           continue
          fi
          ;; # -l
        *.ltframework)
-         if test "$linkmode,$pass" = "prog,link"; then
+         if test prog,link = "$linkmode,$pass"; then
            compile_deplibs="$deplib $compile_deplibs"
            finalize_deplibs="$deplib $finalize_deplibs"
          else
            deplibs="$deplib $deplibs"
-           if test "$linkmode" = lib ; then
+           if test lib = "$linkmode"; then
                case "$new_inherited_linker_flags " in
                    *" $deplib "*) ;;
                    * ) func_append new_inherited_linker_flags " $deplib" ;;
@@ -6268,18 +7716,18 @@ func_mode_link ()
          case $linkmode in
          lib)
            deplibs="$deplib $deplibs"
-           test "$pass" = conv && continue
+           test conv = "$pass" && continue
            newdependency_libs="$deplib $newdependency_libs"
            func_stripname '-L' '' "$deplib"
            func_resolve_sysroot "$func_stripname_result"
            func_append newlib_search_path " $func_resolve_sysroot_result"
            ;;
          prog)
-           if test "$pass" = conv; then
+           if test conv = "$pass"; then
              deplibs="$deplib $deplibs"
              continue
            fi
-           if test "$pass" = scan; then
+           if test scan = "$pass"; then
              deplibs="$deplib $deplibs"
            else
              compile_deplibs="$deplib $compile_deplibs"
@@ -6290,13 +7738,13 @@ func_mode_link ()
            func_append newlib_search_path " $func_resolve_sysroot_result"
            ;;
          *)
-           func_warning "\`-L' is ignored for archives/objects"
+           func_warning "'-L' is ignored for archives/objects"
            ;;
          esac # linkmode
          continue
          ;; # -L
        -R*)
-         if test "$pass" = link; then
+         if test link = "$pass"; then
            func_stripname '-R' '' "$deplib"
            func_resolve_sysroot "$func_stripname_result"
            dir=$func_resolve_sysroot_result
@@ -6314,7 +7762,7 @@ func_mode_link ()
          lib=$func_resolve_sysroot_result
          ;;
        *.$libext)
-         if test "$pass" = conv; then
+         if test conv = "$pass"; then
            deplibs="$deplib $deplibs"
            continue
          fi
@@ -6325,21 +7773,26 @@ func_mode_link ()
            case " $dlpreconveniencelibs " in
            *" $deplib "*) ;;
            *)
-             valid_a_lib=no
+             valid_a_lib=false
              case $deplibs_check_method in
                match_pattern*)
                  set dummy $deplibs_check_method; shift
                  match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
                  if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \
                    | $EGREP "$match_pattern_regex" > /dev/null; then
-                   valid_a_lib=yes
+                   valid_a_lib=:
                  fi
                ;;
                pass_all)
-                 valid_a_lib=yes
+                 valid_a_lib=:
                ;;
              esac
-             if test "$valid_a_lib" != yes; then
+             if $valid_a_lib; then
+               echo
+               $ECHO "*** Warning: Linking the shared library $output against the"
+               $ECHO "*** static library $deplib is not portable!"
+               deplibs="$deplib $deplibs"
+             else
                echo
                $ECHO "*** Warning: Trying to link with static lib archive $deplib."
                echo "*** I have the capability to make that library automatically link in when"
@@ -6347,18 +7800,13 @@ func_mode_link ()
                echo "*** shared version of the library, which you do not appear to have"
                echo "*** because the file extensions .$libext of this argument makes me believe"
                echo "*** that it is just a static archive that I should not use here."
-             else
-               echo
-               $ECHO "*** Warning: Linking the shared library $output against the"
-               $ECHO "*** static library $deplib is not portable!"
-               deplibs="$deplib $deplibs"
              fi
              ;;
            esac
            continue
            ;;
          prog)
-           if test "$pass" != link; then
+           if test link != "$pass"; then
              deplibs="$deplib $deplibs"
            else
              compile_deplibs="$deplib $compile_deplibs"
@@ -6369,10 +7817,10 @@ func_mode_link ()
          esac # linkmode
          ;; # *.$libext
        *.lo | *.$objext)
-         if test "$pass" = conv; then
+         if test conv = "$pass"; then
            deplibs="$deplib $deplibs"
-         elif test "$linkmode" = prog; then
-           if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
+         elif test prog = "$linkmode"; then
+           if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then
              # If there is no dlopen support or we're linking statically,
              # we need to preload.
              func_append newdlprefiles " $deplib"
@@ -6385,22 +7833,20 @@ func_mode_link ()
          continue
          ;;
        %DEPLIBS%)
-         alldeplibs=yes
+         alldeplibs=:
          continue
          ;;
        esac # case $deplib
 
-       if test "$found" = yes || test -f "$lib"; then :
-       else
-         func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'"
-       fi
+       $found || test -f "$lib" \
+         || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'"
 
        # Check to see that this really is a libtool archive.
        func_lalib_unsafe_p "$lib" \
-         || func_fatal_error "\`$lib' is not a valid libtool archive"
+         || func_fatal_error "'$lib' is not a valid libtool archive"
 
        func_dirname "$lib" "" "."
-       ladir="$func_dirname_result"
+       ladir=$func_dirname_result
 
        dlname=
        dlopen=
@@ -6430,19 +7876,19 @@ func_mode_link ()
          done
        fi
        dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
-       if test "$linkmode,$pass" = "lib,link" ||
-          test "$linkmode,$pass" = "prog,scan" ||
-          { test "$linkmode" != prog && test "$linkmode" != lib; }; then
+       if test lib,link = "$linkmode,$pass" ||
+          test prog,scan = "$linkmode,$pass" ||
+          { test prog != "$linkmode" && test lib != "$linkmode"; }; then
          test -n "$dlopen" && func_append dlfiles " $dlopen"
          test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen"
        fi
 
-       if test "$pass" = conv; then
+       if test conv = "$pass"; then
          # Only check for convenience libraries
          deplibs="$lib $deplibs"
          if test -z "$libdir"; then
            if test -z "$old_library"; then
-             func_fatal_error "cannot find name of link library for \`$lib'"
+             func_fatal_error "cannot find name of link library for '$lib'"
            fi
            # It is a libtool convenience library, so add in its objects.
            func_append convenience " $ladir/$objdir/$old_library"
@@ -6450,15 +7896,15 @@ func_mode_link ()
            tmp_libs=
            for deplib in $dependency_libs; do
              deplibs="$deplib $deplibs"
-             if $opt_preserve_dup_deps ; then
+             if $opt_preserve_dup_deps; then
                case "$tmp_libs " in
                *" $deplib "*) func_append specialdeplibs " $deplib" ;;
                esac
              fi
              func_append tmp_libs " $deplib"
            done
-         elif test "$linkmode" != prog && test "$linkmode" != lib; then
-           func_fatal_error "\`$lib' is not a convenience library"
+         elif test prog != "$linkmode" && test lib != "$linkmode"; then
+           func_fatal_error "'$lib' is not a convenience library"
          fi
          continue
        fi # $pass = conv
@@ -6467,26 +7913,26 @@ func_mode_link ()
        # Get the name of the library we link against.
        linklib=
        if test -n "$old_library" &&
-          { test "$prefer_static_libs" = yes ||
-            test "$prefer_static_libs,$installed" = "built,no"; }; then
+          { test yes = "$prefer_static_libs" ||
+            test built,no = "$prefer_static_libs,$installed"; }; then
          linklib=$old_library
        else
          for l in $old_library $library_names; do
-           linklib="$l"
+           linklib=$l
          done
        fi
        if test -z "$linklib"; then
-         func_fatal_error "cannot find name of link library for \`$lib'"
+         func_fatal_error "cannot find name of link library for '$lib'"
        fi
 
        # This library was specified with -dlopen.
-       if test "$pass" = dlopen; then
-         if test -z "$libdir"; then
-           func_fatal_error "cannot -dlopen a convenience library: \`$lib'"
-         fi
+       if test dlopen = "$pass"; then
+         test -z "$libdir" \
+           && func_fatal_error "cannot -dlopen a convenience library: '$lib'"
          if test -z "$dlname" ||
-            test "$dlopen_support" != yes ||
-            test "$build_libtool_libs" = no; then
+            test yes != "$dlopen_support" ||
+            test no = "$build_libtool_libs"
+         then
            # If there is no dlname, no dlopen support or we're linking
            # statically, we need to preload.  We also need to preload any
            # dependent libraries so libltdl's deplib preloader doesn't
@@ -6500,40 +7946,40 @@ func_mode_link ()
 
        # We need an absolute path.
        case $ladir in
-       [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;
+       [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;;
        *)
          abs_ladir=`cd "$ladir" && pwd`
          if test -z "$abs_ladir"; then
-           func_warning "cannot determine absolute directory name of \`$ladir'"
+           func_warning "cannot determine absolute directory name of '$ladir'"
            func_warning "passing it literally to the linker, although it might fail"
-           abs_ladir="$ladir"
+           abs_ladir=$ladir
          fi
          ;;
        esac
        func_basename "$lib"
-       laname="$func_basename_result"
+       laname=$func_basename_result
 
        # Find the relevant object directory and library name.
-       if test "X$installed" = Xyes; then
+       if test yes = "$installed"; then
          if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
-           func_warning "library \`$lib' was moved."
-           dir="$ladir"
-           absdir="$abs_ladir"
-           libdir="$abs_ladir"
+           func_warning "library '$lib' was moved."
+           dir=$ladir
+           absdir=$abs_ladir
+           libdir=$abs_ladir
          else
-           dir="$lt_sysroot$libdir"
-           absdir="$lt_sysroot$libdir"
+           dir=$lt_sysroot$libdir
+           absdir=$lt_sysroot$libdir
          fi
-         test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes
+         test yes = "$hardcode_automatic" && avoidtemprpath=yes
        else
          if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then
-           dir="$ladir"
-           absdir="$abs_ladir"
+           dir=$ladir
+           absdir=$abs_ladir
            # Remove this search path later
            func_append notinst_path " $abs_ladir"
          else
-           dir="$ladir/$objdir"
-           absdir="$abs_ladir/$objdir"
+           dir=$ladir/$objdir
+           absdir=$abs_ladir/$objdir
            # Remove this search path later
            func_append notinst_path " $abs_ladir"
          fi
@@ -6542,11 +7988,11 @@ func_mode_link ()
        name=$func_stripname_result
 
        # This library was specified with -dlpreopen.
-       if test "$pass" = dlpreopen; then
-         if test -z "$libdir" && test "$linkmode" = prog; then
-           func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'"
+       if test dlpreopen = "$pass"; then
+         if test -z "$libdir" && test prog = "$linkmode"; then
+           func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'"
          fi
-         case "$host" in
+         case $host in
            # special handling for platforms with PE-DLLs.
            *cygwin* | *mingw* | *cegcc* )
              # Linker will automatically link against shared library if both
@@ -6590,9 +8036,9 @@ func_mode_link ()
 
        if test -z "$libdir"; then
          # Link the convenience library
-         if test "$linkmode" = lib; then
+         if test lib = "$linkmode"; then
            deplibs="$dir/$old_library $deplibs"
-         elif test "$linkmode,$pass" = "prog,link"; then
+         elif test prog,link = "$linkmode,$pass"; then
            compile_deplibs="$dir/$old_library $compile_deplibs"
            finalize_deplibs="$dir/$old_library $finalize_deplibs"
          else
@@ -6602,14 +8048,14 @@ func_mode_link ()
        fi
 
 
-       if test "$linkmode" = prog && test "$pass" != link; then
+       if test prog = "$linkmode" && test link != "$pass"; then
          func_append newlib_search_path " $ladir"
          deplibs="$lib $deplibs"
 
-         linkalldeplibs=no
-         if test "$link_all_deplibs" != no || test -z "$library_names" ||
-            test "$build_libtool_libs" = no; then
-           linkalldeplibs=yes
+         linkalldeplibs=false
+         if test no != "$link_all_deplibs" || test -z "$library_names" ||
+            test no = "$build_libtool_libs"; then
+           linkalldeplibs=:
          fi
 
          tmp_libs=
@@ -6621,14 +8067,14 @@ func_mode_link ()
                 ;;
            esac
            # Need to link against all dependency_libs?
-           if test "$linkalldeplibs" = yes; then
+           if $linkalldeplibs; then
              deplibs="$deplib $deplibs"
            else
              # Need to hardcode shared library paths
              # or/and link against static libraries
              newdependency_libs="$deplib $newdependency_libs"
            fi
-           if $opt_preserve_dup_deps ; then
+           if $opt_preserve_dup_deps; then
              case "$tmp_libs " in
              *" $deplib "*) func_append specialdeplibs " $deplib" ;;
              esac
@@ -6638,15 +8084,15 @@ func_mode_link ()
          continue
        fi # $linkmode = prog...
 
-       if test "$linkmode,$pass" = "prog,link"; then
+       if test prog,link = "$linkmode,$pass"; then
          if test -n "$library_names" &&
-            { { test "$prefer_static_libs" = no ||
-                test "$prefer_static_libs,$installed" = "built,yes"; } ||
+            { { test no = "$prefer_static_libs" ||
+                test built,yes = "$prefer_static_libs,$installed"; } ||
               test -z "$old_library"; }; then
            # We need to hardcode the library path
-           if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then
+           if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then
              # Make sure the rpath contains only unique directories.
-             case "$temp_rpath:" in
+             case $temp_rpath: in
              *"$absdir:"*) ;;
              *) func_append temp_rpath "$absdir:" ;;
              esac
@@ -6675,9 +8121,9 @@ func_mode_link ()
            esac
          fi # $linkmode,$pass = prog,link...
 
-         if test "$alldeplibs" = yes &&
-            { test "$deplibs_check_method" = pass_all ||
-              { test "$build_libtool_libs" = yes &&
+         if $alldeplibs &&
+            { test pass_all = "$deplibs_check_method" ||
+              { test yes = "$build_libtool_libs" &&
                 test -n "$library_names"; }; }; then
            # We only need to search for static libraries
            continue
@@ -6686,19 +8132,19 @@ func_mode_link ()
 
        link_static=no # Whether the deplib will be linked statically
        use_static_libs=$prefer_static_libs
-       if test "$use_static_libs" = built && test "$installed" = yes; then
+       if test built = "$use_static_libs" && test yes = "$installed"; then
          use_static_libs=no
        fi
        if test -n "$library_names" &&
-          { test "$use_static_libs" = no || test -z "$old_library"; }; then
+          { test no = "$use_static_libs" || test -z "$old_library"; }; then
          case $host in
-         *cygwin* | *mingw* | *cegcc*)
+         *cygwin* | *mingw* | *cegcc* | *os2*)
              # No point in relinking DLLs because paths are not encoded
              func_append notinst_deplibs " $lib"
              need_relink=no
            ;;
          *)
-           if test "$installed" = no; then
+           if test no = "$installed"; then
              func_append notinst_deplibs " $lib"
              need_relink=yes
            fi
@@ -6708,24 +8154,24 @@ func_mode_link ()
 
          # Warn about portability, can't link against -module's on some
          # systems (darwin).  Don't bleat about dlopened modules though!
-         dlopenmodule=""
+         dlopenmodule=
          for dlpremoduletest in $dlprefiles; do
            if test "X$dlpremoduletest" = "X$lib"; then
-             dlopenmodule="$dlpremoduletest"
+             dlopenmodule=$dlpremoduletest
              break
            fi
          done
-         if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then
+         if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then
            echo
-           if test "$linkmode" = prog; then
+           if test prog = "$linkmode"; then
              $ECHO "*** Warning: Linking the executable $output against the loadable module"
            else
              $ECHO "*** Warning: Linking the shared library $output against the loadable module"
            fi
            $ECHO "*** $linklib is not portable!"
          fi
-         if test "$linkmode" = lib &&
-            test "$hardcode_into_libs" = yes; then
+         if test lib = "$linkmode" &&
+            test yes = "$hardcode_into_libs"; then
            # Hardcode the library path.
            # Skip directories that are in the system default run-time
            # search path.
@@ -6753,43 +8199,43 @@ func_mode_link ()
            # figure out the soname
            set dummy $library_names
            shift
-           realname="$1"
+           realname=$1
            shift
            libname=`eval "\\$ECHO \"$libname_spec\""`
            # use dlname if we got it. it's perfectly good, no?
            if test -n "$dlname"; then
-             soname="$dlname"
+             soname=$dlname
            elif test -n "$soname_spec"; then
              # bleh windows
              case $host in
-             *cygwin* | mingw* | *cegcc*)
+             *cygwin* | mingw* | *cegcc* | *os2*)
                func_arith $current - $age
                major=$func_arith_result
-               versuffix="-$major"
+               versuffix=-$major
                ;;
              esac
              eval soname=\"$soname_spec\"
            else
-             soname="$realname"
+             soname=$realname
            fi
 
            # Make a new name for the extract_expsyms_cmds to use
-           soroot="$soname"
+           soroot=$soname
            func_basename "$soroot"
-           soname="$func_basename_result"
+           soname=$func_basename_result
            func_stripname 'lib' '.dll' "$soname"
            newlib=libimp-$func_stripname_result.a
 
            # If the library has no export list, then create one now
            if test -f "$output_objdir/$soname-def"; then :
            else
-             func_verbose "extracting exported symbol list from \`$soname'"
+             func_verbose "extracting exported symbol list from '$soname'"
              func_execute_cmds "$extract_expsyms_cmds" 'exit $?'
            fi
 
            # Create $newlib
            if test -f "$output_objdir/$newlib"; then :; else
-             func_verbose "generating import library for \`$soname'"
+             func_verbose "generating import library for '$soname'"
              func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?'
            fi
            # make sure the library variables are pointing to the new library
@@ -6797,58 +8243,58 @@ func_mode_link ()
            linklib=$newlib
          fi # test -n "$old_archive_from_expsyms_cmds"
 
-         if test "$linkmode" = prog || test "$opt_mode" != relink; then
+         if test prog = "$linkmode" || test relink != "$opt_mode"; then
            add_shlibpath=
            add_dir=
            add=
            lib_linked=yes
            case $hardcode_action in
            immediate | unsupported)
-             if test "$hardcode_direct" = no; then
-               add="$dir/$linklib"
+             if test no = "$hardcode_direct"; then
+               add=$dir/$linklib
                case $host in
-                 *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;;
-                 *-*-sysv4*uw2*) add_dir="-L$dir" ;;
+                 *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;;
+                 *-*-sysv4*uw2*) add_dir=-L$dir ;;
                  *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \
-                   *-*-unixware7*) add_dir="-L$dir" ;;
+                   *-*-unixware7*) add_dir=-L$dir ;;
                  *-*-darwin* )
-                   # if the lib is a (non-dlopened) module then we can not
+                   # if the lib is a (non-dlopened) module then we cannot
                    # link against it, someone is ignoring the earlier warnings
                    if /usr/bin/file -L $add 2> /dev/null |
-                        $GREP ": [^:]* bundle" >/dev/null ; then
+                        $GREP ": [^:]* bundle" >/dev/null; then
                      if test "X$dlopenmodule" != "X$lib"; then
                        $ECHO "*** Warning: lib $linklib is a module, not a shared library"
-                       if test -z "$old_library" ; then
+                       if test -z "$old_library"; then
                          echo
                          echo "*** And there doesn't seem to be a static archive available"
                          echo "*** The link will probably fail, sorry"
                        else
-                         add="$dir/$old_library"
+                         add=$dir/$old_library
                        fi
                      elif test -n "$old_library"; then
-                       add="$dir/$old_library"
+                       add=$dir/$old_library
                      fi
                    fi
                esac
-             elif test "$hardcode_minus_L" = no; then
+             elif test no = "$hardcode_minus_L"; then
                case $host in
-               *-*-sunos*) add_shlibpath="$dir" ;;
+               *-*-sunos*) add_shlibpath=$dir ;;
                esac
-               add_dir="-L$dir"
-               add="-l$name"
-             elif test "$hardcode_shlibpath_var" = no; then
-               add_shlibpath="$dir"
-               add="-l$name"
+               add_dir=-L$dir
+               add=-l$name
+             elif test no = "$hardcode_shlibpath_var"; then
+               add_shlibpath=$dir
+               add=-l$name
              else
                lib_linked=no
              fi
              ;;
            relink)
-             if test "$hardcode_direct" = yes &&
-                test "$hardcode_direct_absolute" = no; then
-               add="$dir/$linklib"
-             elif test "$hardcode_minus_L" = yes; then
-               add_dir="-L$absdir"
+             if test yes = "$hardcode_direct" &&
+                test no = "$hardcode_direct_absolute"; then
+               add=$dir/$linklib
+             elif test yes = "$hardcode_minus_L"; then
+               add_dir=-L$absdir
                # Try looking first in the location we're being installed to.
                if test -n "$inst_prefix_dir"; then
                  case $libdir in
@@ -6857,10 +8303,10 @@ func_mode_link ()
                      ;;
                  esac
                fi
-               add="-l$name"
-             elif test "$hardcode_shlibpath_var" = yes; then
-               add_shlibpath="$dir"
-               add="-l$name"
+               add=-l$name
+             elif test yes = "$hardcode_shlibpath_var"; then
+               add_shlibpath=$dir
+               add=-l$name
              else
                lib_linked=no
              fi
@@ -6868,7 +8314,7 @@ func_mode_link ()
            *) lib_linked=no ;;
            esac
 
-           if test "$lib_linked" != yes; then
+           if test yes != "$lib_linked"; then
              func_fatal_configuration "unsupported hardcode properties"
            fi
 
@@ -6878,15 +8324,15 @@ func_mode_link ()
              *) func_append compile_shlibpath "$add_shlibpath:" ;;
              esac
            fi
-           if test "$linkmode" = prog; then
+           if test prog = "$linkmode"; then
              test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
              test -n "$add" && compile_deplibs="$add $compile_deplibs"
            else
              test -n "$add_dir" && deplibs="$add_dir $deplibs"
              test -n "$add" && deplibs="$add $deplibs"
-             if test "$hardcode_direct" != yes &&
-                test "$hardcode_minus_L" != yes &&
-                test "$hardcode_shlibpath_var" = yes; then
+             if test yes != "$hardcode_direct" &&
+                test yes != "$hardcode_minus_L" &&
+                test yes = "$hardcode_shlibpath_var"; then
                case :$finalize_shlibpath: in
                *":$libdir:"*) ;;
                *) func_append finalize_shlibpath "$libdir:" ;;
@@ -6895,33 +8341,33 @@ func_mode_link ()
            fi
          fi
 
-         if test "$linkmode" = prog || test "$opt_mode" = relink; then
+         if test prog = "$linkmode" || test relink = "$opt_mode"; then
            add_shlibpath=
            add_dir=
            add=
            # Finalize command for both is simple: just hardcode it.
-           if test "$hardcode_direct" = yes &&
-              test "$hardcode_direct_absolute" = no; then
-             add="$libdir/$linklib"
-           elif test "$hardcode_minus_L" = yes; then
-             add_dir="-L$libdir"
-             add="-l$name"
-           elif test "$hardcode_shlibpath_var" = yes; then
+           if test yes = "$hardcode_direct" &&
+              test no = "$hardcode_direct_absolute"; then
+             add=$libdir/$linklib
+           elif test yes = "$hardcode_minus_L"; then
+             add_dir=-L$libdir
+             add=-l$name
+           elif test yes = "$hardcode_shlibpath_var"; then
              case :$finalize_shlibpath: in
              *":$libdir:"*) ;;
              *) func_append finalize_shlibpath "$libdir:" ;;
              esac
-             add="-l$name"
-           elif test "$hardcode_automatic" = yes; then
+             add=-l$name
+           elif test yes = "$hardcode_automatic"; then
              if test -n "$inst_prefix_dir" &&
-                test -f "$inst_prefix_dir$libdir/$linklib" ; then
-               add="$inst_prefix_dir$libdir/$linklib"
+                test -f "$inst_prefix_dir$libdir/$linklib"; then
+               add=$inst_prefix_dir$libdir/$linklib
              else
-               add="$libdir/$linklib"
+               add=$libdir/$linklib
              fi
            else
              # We cannot seem to hardcode it, guess we'll fake it.
-             add_dir="-L$libdir"
+             add_dir=-L$libdir
              # Try looking first in the location we're being installed to.
              if test -n "$inst_prefix_dir"; then
                case $libdir in
@@ -6930,10 +8376,10 @@ func_mode_link ()
                    ;;
                esac
              fi
-             add="-l$name"
+             add=-l$name
            fi
 
-           if test "$linkmode" = prog; then
+           if test prog = "$linkmode"; then
              test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
              test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
            else
@@ -6941,43 +8387,43 @@ func_mode_link ()
              test -n "$add" && deplibs="$add $deplibs"
            fi
          fi
-       elif test "$linkmode" = prog; then
+       elif test prog = "$linkmode"; then
          # Here we assume that one of hardcode_direct or hardcode_minus_L
          # is not unsupported.  This is valid on all known static and
          # shared platforms.
-         if test "$hardcode_direct" != unsupported; then
-           test -n "$old_library" && linklib="$old_library"
+         if test unsupported != "$hardcode_direct"; then
+           test -n "$old_library" && linklib=$old_library
            compile_deplibs="$dir/$linklib $compile_deplibs"
            finalize_deplibs="$dir/$linklib $finalize_deplibs"
          else
            compile_deplibs="-l$name -L$dir $compile_deplibs"
            finalize_deplibs="-l$name -L$dir $finalize_deplibs"
          fi
-       elif test "$build_libtool_libs" = yes; then
+       elif test yes = "$build_libtool_libs"; then
          # Not a shared library
-         if test "$deplibs_check_method" != pass_all; then
+         if test pass_all != "$deplibs_check_method"; then
            # We're trying link a shared library against a static one
            # but the system doesn't support it.
 
            # Just print a warning and add the library to dependency_libs so
            # that the program can be linked against the static library.
            echo
-           $ECHO "*** Warning: This system can not link to static lib archive $lib."
+           $ECHO "*** Warning: This system cannot link to static lib archive $lib."
            echo "*** I have the capability to make that library automatically link in when"
            echo "*** you link to this library.  But I can only do this if you have a"
            echo "*** shared version of the library, which you do not appear to have."
-           if test "$module" = yes; then
+           if test yes = "$module"; then
              echo "*** But as you try to build a module library, libtool will still create "
              echo "*** a static module, that should work as long as the dlopening application"
              echo "*** is linked with the -dlopen flag to resolve symbols at runtime."
              if test -z "$global_symbol_pipe"; then
                echo
                echo "*** However, this would only work if libtool was able to extract symbol"
-               echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
+               echo "*** lists from a program, using 'nm' or equivalent, but libtool could"
                echo "*** not find such a program.  So, this module is probably useless."
-               echo "*** \`nm' from GNU binutils and a full rebuild may help."
+               echo "*** 'nm' from GNU binutils and a full rebuild may help."
              fi
-             if test "$build_old_libs" = no; then
+             if test no = "$build_old_libs"; then
                build_libtool_libs=module
                build_old_libs=yes
              else
@@ -6990,11 +8436,11 @@ func_mode_link ()
          fi
        fi # link shared/static library?
 
-       if test "$linkmode" = lib; then
+       if test lib = "$linkmode"; then
          if test -n "$dependency_libs" &&
-            { test "$hardcode_into_libs" != yes ||
-              test "$build_old_libs" = yes ||
-              test "$link_static" = yes; }; then
+            { test yes != "$hardcode_into_libs" ||
+              test yes = "$build_old_libs" ||
+              test yes = "$link_static"; }; then
            # Extract -R from dependency_libs
            temp_deplibs=
            for libdir in $dependency_libs; do
@@ -7008,12 +8454,12 @@ func_mode_link ()
              *) func_append temp_deplibs " $libdir";;
              esac
            done
-           dependency_libs="$temp_deplibs"
+           dependency_libs=$temp_deplibs
          fi
 
          func_append newlib_search_path " $absdir"
          # Link against this library
-         test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
+         test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
          # ... and its dependency_libs
          tmp_libs=
          for deplib in $dependency_libs; do
@@ -7023,7 +8469,7 @@ func_mode_link ()
                    func_resolve_sysroot "$func_stripname_result";;
               *) func_resolve_sysroot "$deplib" ;;
             esac
-           if $opt_preserve_dup_deps ; then
+           if $opt_preserve_dup_deps; then
              case "$tmp_libs " in
              *" $func_resolve_sysroot_result "*)
                 func_append specialdeplibs " $func_resolve_sysroot_result" ;;
@@ -7032,12 +8478,12 @@ func_mode_link ()
            func_append tmp_libs " $func_resolve_sysroot_result"
          done
 
-         if test "$link_all_deplibs" != no; then
+         if test no != "$link_all_deplibs"; then
            # Add the search paths of all dependency libraries
            for deplib in $dependency_libs; do
              path=
              case $deplib in
-             -L*) path="$deplib" ;;
+             -L*) path=$deplib ;;
              *.la)
                func_resolve_sysroot "$deplib"
                deplib=$func_resolve_sysroot_result
@@ -7045,12 +8491,12 @@ func_mode_link ()
                dir=$func_dirname_result
                # We need an absolute path.
                case $dir in
-               [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;
+               [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;;
                *)
                  absdir=`cd "$dir" && pwd`
                  if test -z "$absdir"; then
-                   func_warning "cannot determine absolute directory name of \`$dir'"
-                   absdir="$dir"
+                   func_warning "cannot determine absolute directory name of '$dir'"
+                   absdir=$dir
                  fi
                  ;;
                esac
@@ -7058,35 +8504,35 @@ func_mode_link ()
                case $host in
                *-*-darwin*)
                  depdepl=
-                 eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
-                 if test -n "$deplibrary_names" ; then
-                   for tmp in $deplibrary_names ; do
+                 eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
+                 if test -n "$deplibrary_names"; then
+                   for tmp in $deplibrary_names; do
                      depdepl=$tmp
                    done
-                   if test -f "$absdir/$objdir/$depdepl" ; then
-                     depdepl="$absdir/$objdir/$depdepl"
-                     darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
+                   if test -f "$absdir/$objdir/$depdepl"; then
+                     depdepl=$absdir/$objdir/$depdepl
+                     darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
                       if test -z "$darwin_install_name"; then
-                          darwin_install_name=`${OTOOL64} -L $depdepl  | awk '{if (NR == 2) {print $1;exit}}'`
+                          darwin_install_name=`$OTOOL64 -L $depdepl  | awk '{if (NR == 2) {print $1;exit}}'`
                       fi
-                     func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}"
-                     func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}"
+                     func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl"
+                     func_append linker_flags " -dylib_file $darwin_install_name:$depdepl"
                      path=
                    fi
                  fi
                  ;;
                *)
-                 path="-L$absdir/$objdir"
+                 path=-L$absdir/$objdir
                  ;;
                esac
                else
-                 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
+                 eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
                  test -z "$libdir" && \
-                   func_fatal_error "\`$deplib' is not a valid libtool archive"
+                   func_fatal_error "'$deplib' is not a valid libtool archive"
                  test "$absdir" != "$libdir" && \
-                   func_warning "\`$deplib' seems to be moved"
+                   func_warning "'$deplib' seems to be moved"
 
-                 path="-L$absdir"
+                 path=-L$absdir
                fi
                ;;
              esac
@@ -7098,23 +8544,23 @@ func_mode_link ()
          fi # link_all_deplibs != no
        fi # linkmode = lib
       done # for deplib in $libs
-      if test "$pass" = link; then
-       if test "$linkmode" = "prog"; then
+      if test link = "$pass"; then
+       if test prog = "$linkmode"; then
          compile_deplibs="$new_inherited_linker_flags $compile_deplibs"
          finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs"
        else
          compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
        fi
       fi
-      dependency_libs="$newdependency_libs"
-      if test "$pass" = dlpreopen; then
+      dependency_libs=$newdependency_libs
+      if test dlpreopen = "$pass"; then
        # Link the dlpreopened libraries before other libraries
        for deplib in $save_deplibs; do
          deplibs="$deplib $deplibs"
        done
       fi
-      if test "$pass" != dlopen; then
-       if test "$pass" != conv; then
+      if test dlopen != "$pass"; then
+       test conv = "$pass" || {
          # Make sure lib_search_path contains only unique directories.
          lib_search_path=
          for dir in $newlib_search_path; do
@@ -7124,12 +8570,12 @@ func_mode_link ()
            esac
          done
          newlib_search_path=
-       fi
+       }
 
-       if test "$linkmode,$pass" != "prog,link"; then
-         vars="deplibs"
-       else
+       if test prog,link = "$linkmode,$pass"; then
          vars="compile_deplibs finalize_deplibs"
+       else
+         vars=deplibs
        fi
        for var in $vars dependency_libs; do
          # Add libraries to $var in reverse order
@@ -7187,62 +8633,93 @@ func_mode_link ()
          eval $var=\"$tmp_libs\"
        done # for var
       fi
+
+      # Add Sun CC postdeps if required:
+      test CXX = "$tagname" && {
+        case $host_os in
+        linux*)
+          case `$CC -V 2>&1 | sed 5q` in
+          *Sun\ C*) # Sun C++ 5.9
+            func_suncc_cstd_abi
+
+            if test no != "$suncc_use_cstd_abi"; then
+              func_append postdeps ' -library=Cstd -library=Crun'
+            fi
+            ;;
+          esac
+          ;;
+
+        solaris*)
+          func_cc_basename "$CC"
+          case $func_cc_basename_result in
+          CC* | sunCC*)
+            func_suncc_cstd_abi
+
+            if test no != "$suncc_use_cstd_abi"; then
+              func_append postdeps ' -library=Cstd -library=Crun'
+            fi
+            ;;
+          esac
+          ;;
+        esac
+      }
+
       # Last step: remove runtime libs from dependency_libs
       # (they stay in deplibs)
       tmp_libs=
-      for i in $dependency_libs ; do
+      for i in $dependency_libs; do
        case " $predeps $postdeps $compiler_lib_search_path " in
        *" $i "*)
-         i=""
+         i=
          ;;
        esac
-       if test -n "$i" ; then
+       if test -n "$i"; then
          func_append tmp_libs " $i"
        fi
       done
       dependency_libs=$tmp_libs
     done # for pass
-    if test "$linkmode" = prog; then
-      dlfiles="$newdlfiles"
+    if test prog = "$linkmode"; then
+      dlfiles=$newdlfiles
     fi
-    if test "$linkmode" = prog || test "$linkmode" = lib; then
-      dlprefiles="$newdlprefiles"
+    if test prog = "$linkmode" || test lib = "$linkmode"; then
+      dlprefiles=$newdlprefiles
     fi
 
     case $linkmode in
     oldlib)
-      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
-       func_warning "\`-dlopen' is ignored for archives"
+      if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then
+       func_warning "'-dlopen' is ignored for archives"
       fi
 
       case " $deplibs" in
       *\ -l* | *\ -L*)
-       func_warning "\`-l' and \`-L' are ignored for archives" ;;
+       func_warning "'-l' and '-L' are ignored for archives" ;;
       esac
 
       test -n "$rpath" && \
-       func_warning "\`-rpath' is ignored for archives"
+       func_warning "'-rpath' is ignored for archives"
 
       test -n "$xrpath" && \
-       func_warning "\`-R' is ignored for archives"
+       func_warning "'-R' is ignored for archives"
 
       test -n "$vinfo" && \
-       func_warning "\`-version-info/-version-number' is ignored for archives"
+       func_warning "'-version-info/-version-number' is ignored for archives"
 
       test -n "$release" && \
-       func_warning "\`-release' is ignored for archives"
+       func_warning "'-release' is ignored for archives"
 
       test -n "$export_symbols$export_symbols_regex" && \
-       func_warning "\`-export-symbols' is ignored for archives"
+       func_warning "'-export-symbols' is ignored for archives"
 
       # Now set the variables for building old libraries.
       build_libtool_libs=no
-      oldlibs="$output"
+      oldlibs=$output
       func_append objs "$old_deplibs"
       ;;
 
     lib)
-      # Make sure we only generate libraries of the form `libNAME.la'.
+      # Make sure we only generate libraries of the form 'libNAME.la'.
       case $outputname in
       lib*)
        func_stripname 'lib' '.la' "$outputname"
@@ -7251,10 +8728,10 @@ func_mode_link ()
        eval libname=\"$libname_spec\"
        ;;
       *)
-       test "$module" = no && \
-         func_fatal_help "libtool library \`$output' must begin with \`lib'"
+       test no = "$module" \
+         && func_fatal_help "libtool library '$output' must begin with 'lib'"
 
-       if test "$need_lib_prefix" != no; then
+       if test no != "$need_lib_prefix"; then
          # Add the "lib" prefix for modules if required
          func_stripname '' '.la' "$outputname"
          name=$func_stripname_result
@@ -7268,8 +8745,8 @@ func_mode_link ()
       esac
 
       if test -n "$objs"; then
-       if test "$deplibs_check_method" != pass_all; then
-         func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs"
+       if test pass_all != "$deplibs_check_method"; then
+         func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs"
        else
          echo
          $ECHO "*** Warning: Linking the shared library $output against the non-libtool"
@@ -7278,21 +8755,21 @@ func_mode_link ()
        fi
       fi
 
-      test "$dlself" != no && \
-       func_warning "\`-dlopen self' is ignored for libtool libraries"
+      test no = "$dlself" \
+       || func_warning "'-dlopen self' is ignored for libtool libraries"
 
       set dummy $rpath
       shift
-      test "$#" -gt 1 && \
-       func_warning "ignoring multiple \`-rpath's for a libtool library"
+      test 1 -lt "$#" \
+       && func_warning "ignoring multiple '-rpath's for a libtool library"
 
-      install_libdir="$1"
+      install_libdir=$1
 
       oldlibs=
       if test -z "$rpath"; then
-       if test "$build_libtool_libs" = yes; then
+       if test yes = "$build_libtool_libs"; then
          # Building a libtool convenience library.
-         # Some compilers have problems with a `.al' extension so
+         # Some compilers have problems with a '.al' extension so
          # convenience libraries should have the same extension an
          # archive normally would.
          oldlibs="$output_objdir/$libname.$libext $oldlibs"
@@ -7301,20 +8778,20 @@ func_mode_link ()
        fi
 
        test -n "$vinfo" && \
-         func_warning "\`-version-info/-version-number' is ignored for convenience libraries"
+         func_warning "'-version-info/-version-number' is ignored for convenience libraries"
 
        test -n "$release" && \
-         func_warning "\`-release' is ignored for convenience libraries"
+         func_warning "'-release' is ignored for convenience libraries"
       else
 
        # Parse the version information argument.
-       save_ifs="$IFS"; IFS=':'
+       save_ifs=$IFS; IFS=:
        set dummy $vinfo 0 0 0
        shift
-       IFS="$save_ifs"
+       IFS=$save_ifs
 
        test -n "$7" && \
-         func_fatal_help "too many parameters to \`-version-info'"
+         func_fatal_help "too many parameters to '-version-info'"
 
        # convert absolute version numbers to libtool ages
        # this retains compatibility with .la files and attempts
@@ -7322,45 +8799,45 @@ func_mode_link ()
 
        case $vinfo_number in
        yes)
-         number_major="$1"
-         number_minor="$2"
-         number_revision="$3"
+         number_major=$1
+         number_minor=$2
+         number_revision=$3
          #
          # There are really only two kinds -- those that
          # use the current revision as the major version
          # and those that subtract age and use age as
          # a minor version.  But, then there is irix
-         # which has an extra 1 added just for fun
+         # that has an extra 1 added just for fun
          #
          case $version_type in
          # correct linux to gnu/linux during the next big refactor
-         darwin|linux|osf|windows|none)
+         darwin|freebsd-elf|linux|osf|windows|none)
            func_arith $number_major + $number_minor
            current=$func_arith_result
-           age="$number_minor"
-           revision="$number_revision"
+           age=$number_minor
+           revision=$number_revision
            ;;
-         freebsd-aout|freebsd-elf|qnx|sunos)
-           current="$number_major"
-           revision="$number_minor"
-           age="0"
+         freebsd-aout|qnx|sunos)
+           current=$number_major
+           revision=$number_minor
+           age=0
            ;;
          irix|nonstopux)
            func_arith $number_major + $number_minor
            current=$func_arith_result
-           age="$number_minor"
-           revision="$number_minor"
+           age=$number_minor
+           revision=$number_minor
            lt_irix_increment=no
            ;;
          *)
-           func_fatal_configuration "$modename: unknown library version type \`$version_type'"
+           func_fatal_configuration "$modename: unknown library version type '$version_type'"
            ;;
          esac
          ;;
        no)
-         current="$1"
-         revision="$2"
-         age="$3"
+         current=$1
+         revision=$2
+         age=$3
          ;;
        esac
 
@@ -7368,30 +8845,30 @@ func_mode_link ()
        case $current in
        0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
        *)
-         func_error "CURRENT \`$current' must be a nonnegative integer"
-         func_fatal_error "\`$vinfo' is not valid version information"
+         func_error "CURRENT '$current' must be a nonnegative integer"
+         func_fatal_error "'$vinfo' is not valid version information"
          ;;
        esac
 
        case $revision in
        0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
        *)
-         func_error "REVISION \`$revision' must be a nonnegative integer"
-         func_fatal_error "\`$vinfo' is not valid version information"
+         func_error "REVISION '$revision' must be a nonnegative integer"
+         func_fatal_error "'$vinfo' is not valid version information"
          ;;
        esac
 
        case $age in
        0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
        *)
-         func_error "AGE \`$age' must be a nonnegative integer"
-         func_fatal_error "\`$vinfo' is not valid version information"
+         func_error "AGE '$age' must be a nonnegative integer"
+         func_fatal_error "'$vinfo' is not valid version information"
          ;;
        esac
 
        if test "$age" -gt "$current"; then
-         func_error "AGE \`$age' is greater than the current interface number \`$current'"
-         func_fatal_error "\`$vinfo' is not valid version information"
+         func_error "AGE '$age' is greater than the current interface number '$current'"
+         func_fatal_error "'$vinfo' is not valid version information"
        fi
 
        # Calculate the version variables.
@@ -7406,26 +8883,36 @@ func_mode_link ()
          # verstring for coding it into the library header
          func_arith $current - $age
          major=.$func_arith_result
-         versuffix="$major.$age.$revision"
+         versuffix=$major.$age.$revision
          # Darwin ld doesn't like 0 for these options...
          func_arith $current + 1
          minor_current=$func_arith_result
-         xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
+         xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision"
          verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
+          # On Darwin other compilers
+          case $CC in
+              nagfor*)
+                  verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision"
+                  ;;
+              *)
+                  verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
+                  ;;
+          esac
          ;;
 
        freebsd-aout)
-         major=".$current"
-         versuffix=".$current.$revision";
+         major=.$current
+         versuffix=.$current.$revision
          ;;
 
        freebsd-elf)
-         major=".$current"
-         versuffix=".$current"
+         func_arith $current - $age
+         major=.$func_arith_result
+         versuffix=$major.$age.$revision
          ;;
 
        irix | nonstopux)
-         if test "X$lt_irix_increment" = "Xno"; then
+         if test no = "$lt_irix_increment"; then
            func_arith $current - $age
          else
            func_arith $current - $age + 1
@@ -7436,69 +8923,74 @@ func_mode_link ()
            nonstopux) verstring_prefix=nonstopux ;;
            *)         verstring_prefix=sgi ;;
          esac
-         verstring="$verstring_prefix$major.$revision"
+         verstring=$verstring_prefix$major.$revision
 
          # Add in all the interfaces that we are compatible with.
          loop=$revision
-         while test "$loop" -ne 0; do
+         while test 0 -ne "$loop"; do
            func_arith $revision - $loop
            iface=$func_arith_result
            func_arith $loop - 1
            loop=$func_arith_result
-           verstring="$verstring_prefix$major.$iface:$verstring"
+           verstring=$verstring_prefix$major.$iface:$verstring
          done
 
-         # Before this point, $major must not contain `.'.
+         # Before this point, $major must not contain '.'.
          major=.$major
-         versuffix="$major.$revision"
+         versuffix=$major.$revision
          ;;
 
        linux) # correct to gnu/linux during the next big refactor
          func_arith $current - $age
          major=.$func_arith_result
-         versuffix="$major.$age.$revision"
+         versuffix=$major.$age.$revision
          ;;
 
        osf)
          func_arith $current - $age
          major=.$func_arith_result
-         versuffix=".$current.$age.$revision"
-         verstring="$current.$age.$revision"
+         versuffix=.$current.$age.$revision
+         verstring=$current.$age.$revision
 
          # Add in all the interfaces that we are compatible with.
          loop=$age
-         while test "$loop" -ne 0; do
+         while test 0 -ne "$loop"; do
            func_arith $current - $loop
            iface=$func_arith_result
            func_arith $loop - 1
            loop=$func_arith_result
-           verstring="$verstring:${iface}.0"
+           verstring=$verstring:$iface.0
          done
 
          # Make executables depend on our current version.
-         func_append verstring ":${current}.0"
+         func_append verstring ":$current.0"
          ;;
 
        qnx)
-         major=".$current"
-         versuffix=".$current"
+         major=.$current
+         versuffix=.$current
+         ;;
+
+       sco)
+         major=.$current
+         versuffix=.$current
          ;;
 
        sunos)
-         major=".$current"
-         versuffix=".$current.$revision"
+         major=.$current
+         versuffix=.$current.$revision
          ;;
 
        windows)
          # Use '-' rather than '.', since we only want one
-         # extension on DOS 8.3 filesystems.
+         # extension on DOS 8.3 file systems.
          func_arith $current - $age
          major=$func_arith_result
-         versuffix="-$major"
+         versuffix=-$major
          ;;
 
        *)
-         func_fatal_configuration "unknown library version type \`$version_type'"
+         func_fatal_configuration "unknown library version type '$version_type'"
          ;;
        esac
 
@@ -7512,42 +9004,45 @@ func_mode_link ()
            verstring=
            ;;
          *)
-           verstring="0.0"
+           verstring=0.0
            ;;
          esac
-         if test "$need_version" = no; then
+         if test no = "$need_version"; then
            versuffix=
          else
-           versuffix=".0.0"
+           versuffix=.0.0
          fi
        fi
 
        # Remove version info from name if versioning should be avoided
-       if test "$avoid_version" = yes && test "$need_version" = no; then
+       if test yes,no = "$avoid_version,$need_version"; then
          major=
          versuffix=
-         verstring=""
+         verstring=
        fi
 
        # Check to see if the archive will have undefined symbols.
-       if test "$allow_undefined" = yes; then
-         if test "$allow_undefined_flag" = unsupported; then
-           func_warning "undefined symbols not allowed in $host shared libraries"
-           build_libtool_libs=no
-           build_old_libs=yes
+       if test yes = "$allow_undefined"; then
+         if test unsupported = "$allow_undefined_flag"; then
+           if test yes = "$build_old_libs"; then
+             func_warning "undefined symbols not allowed in $host shared libraries; building static only"
+             build_libtool_libs=no
+           else
+             func_fatal_error "can't build $host shared library unless -no-undefined is specified"
+           fi
          fi
        else
          # Don't allow undefined symbols.
-         allow_undefined_flag="$no_undefined_flag"
+         allow_undefined_flag=$no_undefined_flag
        fi
 
       fi
 
-      func_generate_dlsyms "$libname" "$libname" "yes"
+      func_generate_dlsyms "$libname" "$libname" :
       func_append libobjs " $symfileobj"
-      test "X$libobjs" = "X " && libobjs=
+      test " " = "$libobjs" && libobjs=
 
-      if test "$opt_mode" != relink; then
+      if test relink != "$opt_mode"; then
        # Remove our outputs, but don't remove object files since they
        # may have been created when compiling PIC objects.
        removelist=
@@ -7556,8 +9051,8 @@ func_mode_link ()
          case $p in
            *.$objext | *.gcno)
               ;;
-           $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
-              if test "X$precious_files_regex" != "X"; then
+           $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*)
+              if test -n "$precious_files_regex"; then
                 if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
                 then
                   continue
@@ -7573,11 +9068,11 @@ func_mode_link ()
       fi
 
       # Now set the variables for building old libraries.
-      if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
+      if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then
        func_append oldlibs " $output_objdir/$libname.$libext"
 
        # Transform .lo files to .o files.
-       oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP`
+       oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP`
       fi
 
       # Eliminate all temporary directories.
@@ -7598,13 +9093,13 @@ func_mode_link ()
          *) func_append finalize_rpath " $libdir" ;;
          esac
        done
-       if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then
+       if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then
          dependency_libs="$temp_xrpath $dependency_libs"
        fi
       fi
 
       # Make sure dlfiles contains only unique files that won't be dlpreopened
-      old_dlfiles="$dlfiles"
+      old_dlfiles=$dlfiles
       dlfiles=
       for lib in $old_dlfiles; do
        case " $dlprefiles $dlfiles " in
@@ -7614,7 +9109,7 @@ func_mode_link ()
       done
 
       # Make sure dlprefiles contains only unique files
-      old_dlprefiles="$dlprefiles"
+      old_dlprefiles=$dlprefiles
       dlprefiles=
       for lib in $old_dlprefiles; do
        case "$dlprefiles " in
@@ -7623,7 +9118,7 @@ func_mode_link ()
        esac
       done
 
-      if test "$build_libtool_libs" = yes; then
+      if test yes = "$build_libtool_libs"; then
        if test -n "$rpath"; then
          case $host in
          *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*)
@@ -7647,7 +9142,7 @@ func_mode_link ()
            ;;
          *)
            # Add libc to deplibs on all other systems if necessary.
-           if test "$build_libtool_need_lc" = "yes"; then
+           if test yes = "$build_libtool_need_lc"; then
              func_append deplibs " -lc"
            fi
            ;;
@@ -7663,9 +9158,9 @@ func_mode_link ()
        # I'm not sure if I'm treating the release correctly.  I think
        # release should show up in the -l (ie -lgmp5) so we don't want to
        # add it in twice.  Is that correct?
-       release=""
-       versuffix=""
-       major=""
+       release=
+       versuffix=
+       major=
        newdeplibs=
        droppeddeps=no
        case $deplibs_check_method in
@@ -7694,20 +9189,20 @@ EOF
              -l*)
                func_stripname -l '' "$i"
                name=$func_stripname_result
-               if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
+               if test yes = "$allow_libtool_libs_with_static_runtimes"; then
                  case " $predeps $postdeps " in
                  *" $i "*)
                    func_append newdeplibs " $i"
-                   i=""
+                   i=
                    ;;
                  esac
                fi
-               if test -n "$i" ; then
+               if test -n "$i"; then
                  libname=`eval "\\$ECHO \"$libname_spec\""`
                  deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
                  set dummy $deplib_matches; shift
                  deplib_match=$1
-                 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
+                 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0; then
                    func_append newdeplibs " $i"
                  else
                    droppeddeps=yes
@@ -7737,20 +9232,20 @@ EOF
                $opt_dry_run || $RM conftest
                if $LTCC $LTCFLAGS -o conftest conftest.c $i; then
                  ldd_output=`ldd conftest`
-                 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
+                 if test yes = "$allow_libtool_libs_with_static_runtimes"; then
                    case " $predeps $postdeps " in
                    *" $i "*)
                      func_append newdeplibs " $i"
-                     i=""
+                     i=
                      ;;
                    esac
                  fi
-                 if test -n "$i" ; then
+                 if test -n "$i"; then
                    libname=`eval "\\$ECHO \"$libname_spec\""`
                    deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
                    set dummy $deplib_matches; shift
                    deplib_match=$1
-                   if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
+                   if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0; then
                      func_append newdeplibs " $i"
                    else
                      droppeddeps=yes
@@ -7787,24 +9282,24 @@ EOF
            -l*)
              func_stripname -l '' "$a_deplib"
              name=$func_stripname_result
-             if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
+             if test yes = "$allow_libtool_libs_with_static_runtimes"; then
                case " $predeps $postdeps " in
                *" $a_deplib "*)
                  func_append newdeplibs " $a_deplib"
-                 a_deplib=""
+                 a_deplib=
                  ;;
                esac
              fi
-             if test -n "$a_deplib" ; then
+             if test -n "$a_deplib"; then
                libname=`eval "\\$ECHO \"$libname_spec\""`
                if test -n "$file_magic_glob"; then
                  libnameglob=`func_echo_all "$libname" | $SED -e $file_magic_glob`
                else
                  libnameglob=$libname
                fi
-               test "$want_nocaseglob" = yes && nocaseglob=`shopt -p nocaseglob`
+               test yes = "$want_nocaseglob" && nocaseglob=`shopt -p nocaseglob`
                for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
-                 if test "$want_nocaseglob" = yes; then
+                 if test yes = "$want_nocaseglob"; then
                    shopt -s nocaseglob
                    potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`
                    $nocaseglob
@@ -7822,25 +9317,25 @@ EOF
                      # We might still enter an endless loop, since a link
                      # loop can be closed while we follow links,
                      # but so what?
-                     potlib="$potent_lib"
+                     potlib=$potent_lib
                      while test -h "$potlib" 2>/dev/null; do
-                       potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'`
+                       potliblink=`ls -ld $potlib | $SED 's/.* -> //'`
                        case $potliblink in
-                       [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
-                       *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";;
+                       [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;;
+                       *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";;
                        esac
                      done
                      if eval $file_magic_cmd \"\$potlib\" 2>/dev/null |
                         $SED -e 10q |
                         $EGREP "$file_magic_regex" > /dev/null; then
                        func_append newdeplibs " $a_deplib"
-                       a_deplib=""
+                       a_deplib=
                        break 2
                      fi
                  done
                done
              fi
-             if test -n "$a_deplib" ; then
+             if test -n "$a_deplib"; then
                droppeddeps=yes
                echo
                $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
@@ -7848,7 +9343,7 @@ EOF
                echo "*** you link to this library.  But I can only do this if you have a"
                echo "*** shared version of the library, which you do not appear to have"
                echo "*** because I did check the linker path looking for a file starting"
-               if test -z "$potlib" ; then
+               if test -z "$potlib"; then
                  $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
                else
                  $ECHO "*** with $libname and none of the candidates passed a file format test"
@@ -7871,30 +9366,30 @@ EOF
            -l*)
              func_stripname -l '' "$a_deplib"
              name=$func_stripname_result
-             if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
+             if test yes = "$allow_libtool_libs_with_static_runtimes"; then
                case " $predeps $postdeps " in
                *" $a_deplib "*)
                  func_append newdeplibs " $a_deplib"
-                 a_deplib=""
+                 a_deplib=
                  ;;
                esac
              fi
-             if test -n "$a_deplib" ; then
+             if test -n "$a_deplib"; then
                libname=`eval "\\$ECHO \"$libname_spec\""`
                for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
                  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
                  for potent_lib in $potential_libs; do
-                   potlib="$potent_lib" # see symlink-check above in file_magic test
+                   potlib=$potent_lib # see symlink-check above in file_magic test
                    if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \
                       $EGREP "$match_pattern_regex" > /dev/null; then
                      func_append newdeplibs " $a_deplib"
-                     a_deplib=""
+                     a_deplib=
                      break 2
                    fi
                  done
                done
              fi
-             if test -n "$a_deplib" ; then
+             if test -n "$a_deplib"; then
                droppeddeps=yes
                echo
                $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
@@ -7902,7 +9397,7 @@ EOF
                echo "*** you link to this library.  But I can only do this if you have a"
                echo "*** shared version of the library, which you do not appear to have"
                echo "*** because I did check the linker path looking for a file starting"
-               if test -z "$potlib" ; then
+               if test -z "$potlib"; then
                  $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
                else
                  $ECHO "*** with $libname and none of the candidates passed a file format test"
@@ -7918,18 +9413,18 @@ EOF
          done # Gone through all deplibs.
          ;;
        none | unknown | *)
-         newdeplibs=""
+         newdeplibs=
          tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'`
-         if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
-           for i in $predeps $postdeps ; do
+         if test yes = "$allow_libtool_libs_with_static_runtimes"; then
+           for i in $predeps $postdeps; do
              # can't use Xsed below, because $i might contain '/'
-             tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"`
+             tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"`
            done
          fi
          case $tmp_deplibs in
          *[!\  \ ]*)
            echo
-           if test "X$deplibs_check_method" = "Xnone"; then
+           if test none = "$deplibs_check_method"; then
              echo "*** Warning: inter-library dependencies are not supported in this platform."
            else
              echo "*** Warning: inter-library dependencies are not known to be supported."
@@ -7953,8 +9448,8 @@ EOF
          ;;
        esac
 
-       if test "$droppeddeps" = yes; then
-         if test "$module" = yes; then
+       if test yes = "$droppeddeps"; then
+         if test yes = "$module"; then
            echo
            echo "*** Warning: libtool could not satisfy all declared inter-library"
            $ECHO "*** dependencies of module $libname.  Therefore, libtool will create"
@@ -7963,12 +9458,12 @@ EOF
            if test -z "$global_symbol_pipe"; then
              echo
              echo "*** However, this would only work if libtool was able to extract symbol"
-             echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
+             echo "*** lists from a program, using 'nm' or equivalent, but libtool could"
              echo "*** not find such a program.  So, this module is probably useless."
-             echo "*** \`nm' from GNU binutils and a full rebuild may help."
+             echo "*** 'nm' from GNU binutils and a full rebuild may help."
            fi
-           if test "$build_old_libs" = no; then
-             oldlibs="$output_objdir/$libname.$libext"
+           if test no = "$build_old_libs"; then
+             oldlibs=$output_objdir/$libname.$libext
              build_libtool_libs=module
              build_old_libs=yes
            else
@@ -7979,14 +9474,14 @@ EOF
            echo "*** automatically added whenever a program is linked with this library"
            echo "*** or is declared to -dlopen it."
 
-           if test "$allow_undefined" = no; then
+           if test no = "$allow_undefined"; then
              echo
              echo "*** Since this library must not contain undefined symbols,"
              echo "*** because either the platform does not support them or"
              echo "*** it was explicitly requested with -no-undefined,"
              echo "*** libtool will only create a static version of it."
-             if test "$build_old_libs" = no; then
-               oldlibs="$output_objdir/$libname.$libext"
+             if test no = "$build_old_libs"; then
+               oldlibs=$output_objdir/$libname.$libext
                build_libtool_libs=module
                build_old_libs=yes
              else
@@ -8032,7 +9527,7 @@ EOF
        *) func_append new_libs " $deplib" ;;
        esac
       done
-      deplibs="$new_libs"
+      deplibs=$new_libs
 
       # All the library-specific variables (install_libdir is set above).
       library_names=
@@ -8040,25 +9535,25 @@ EOF
       dlname=
 
       # Test again, we may have decided not to build it any more
-      if test "$build_libtool_libs" = yes; then
-       # Remove ${wl} instances when linking with ld.
+      if test yes = "$build_libtool_libs"; then
+       # Remove $wl instances when linking with ld.
        # FIXME: should test the right _cmds variable.
        case $archive_cmds in
          *\$LD\ *) wl= ;;
         esac
-       if test "$hardcode_into_libs" = yes; then
+       if test yes = "$hardcode_into_libs"; then
          # Hardcode the library paths
          hardcode_libdirs=
          dep_rpath=
-         rpath="$finalize_rpath"
-         test "$opt_mode" != relink && rpath="$compile_rpath$rpath"
+         rpath=$finalize_rpath
+         test relink = "$opt_mode" || rpath=$compile_rpath$rpath
          for libdir in $rpath; do
            if test -n "$hardcode_libdir_flag_spec"; then
              if test -n "$hardcode_libdir_separator"; then
                func_replace_sysroot "$libdir"
                libdir=$func_replace_sysroot_result
                if test -z "$hardcode_libdirs"; then
-                 hardcode_libdirs="$libdir"
+                 hardcode_libdirs=$libdir
                else
                  # Just accumulate the unique libdirs.
                  case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
@@ -8083,7 +9578,7 @@ EOF
          # Substitute the hardcoded libdirs into the rpath.
          if test -n "$hardcode_libdir_separator" &&
             test -n "$hardcode_libdirs"; then
-           libdir="$hardcode_libdirs"
+           libdir=$hardcode_libdirs
            eval "dep_rpath=\"$hardcode_libdir_flag_spec\""
          fi
          if test -n "$runpath_var" && test -n "$perm_rpath"; then
@@ -8097,8 +9592,8 @@ EOF
          test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs"
        fi
 
-       shlibpath="$finalize_shlibpath"
-       test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath"
+       shlibpath=$finalize_shlibpath
+       test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath
        if test -n "$shlibpath"; then
          eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var"
        fi
@@ -8108,19 +9603,19 @@ EOF
        eval library_names=\"$library_names_spec\"
        set dummy $library_names
        shift
-       realname="$1"
+       realname=$1
        shift
 
        if test -n "$soname_spec"; then
          eval soname=\"$soname_spec\"
        else
-         soname="$realname"
+         soname=$realname
        fi
        if test -z "$dlname"; then
          dlname=$soname
        fi
 
-       lib="$output_objdir/$realname"
+       lib=$output_objdir/$realname
        linknames=
        for link
        do
@@ -8134,7 +9629,7 @@ EOF
        delfiles=
        if test -n "$export_symbols" && test -n "$include_expsyms"; then
          $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp"
-         export_symbols="$output_objdir/$libname.uexp"
+         export_symbols=$output_objdir/$libname.uexp
          func_append delfiles " $export_symbols"
        fi
 
@@ -8143,31 +9638,31 @@ EOF
        cygwin* | mingw* | cegcc*)
          if test -n "$export_symbols" && test -z "$export_symbols_regex"; then
            # exporting using user supplied symfile
-           if test "x`$SED 1q $export_symbols`" != xEXPORTS; then
+           func_dll_def_p "$export_symbols" || {
              # and it's NOT already a .def file. Must figure out
              # which of the given symbols are data symbols and tag
              # them as such. So, trigger use of export_symbols_cmds.
              # export_symbols gets reassigned inside the "prepare
              # the list of exported symbols" if statement, so the
              # include_expsyms logic still works.
-             orig_export_symbols="$export_symbols"
+             orig_export_symbols=$export_symbols
              export_symbols=
              always_export_symbols=yes
-           fi
+           }
          fi
          ;;
        esac
 
        # Prepare the list of exported symbols
        if test -z "$export_symbols"; then
-         if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
-           func_verbose "generating symbol list for \`$libname.la'"
-           export_symbols="$output_objdir/$libname.exp"
+         if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then
+           func_verbose "generating symbol list for '$libname.la'"
+           export_symbols=$output_objdir/$libname.exp
            $opt_dry_run || $RM $export_symbols
            cmds=$export_symbols_cmds
-           save_ifs="$IFS"; IFS='~'
+           save_ifs=$IFS; IFS='~'
            for cmd1 in $cmds; do
-             IFS="$save_ifs"
+             IFS=$save_ifs
              # Take the normal branch if the nm_file_list_spec branch
              # doesn't work or if tool conversion is not needed.
              case $nm_file_list_spec~$to_tool_file_cmd in
@@ -8181,7 +9676,7 @@ EOF
                  try_normal_branch=no
                  ;;
              esac
-             if test "$try_normal_branch" = yes \
+             if test yes = "$try_normal_branch" \
                 && { test "$len" -lt "$max_cmd_len" \
                      || test "$max_cmd_len" -le -1; }
              then
@@ -8192,7 +9687,7 @@ EOF
                output_la=$func_basename_result
                save_libobjs=$libobjs
                save_output=$output
-               output=${output_objdir}/${output_la}.nm
+               output=$output_objdir/$output_la.nm
                func_to_tool_file "$output"
                libobjs=$nm_file_list_spec$func_to_tool_file_result
                func_append delfiles " $output"
@@ -8215,8 +9710,8 @@ EOF
                break
              fi
            done
-           IFS="$save_ifs"
-           if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then
+           IFS=$save_ifs
+           if test -n "$export_symbols_regex" && test : != "$skipped_export"; then
              func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
              func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
            fi
@@ -8224,16 +9719,16 @@ EOF
        fi
 
        if test -n "$export_symbols" && test -n "$include_expsyms"; then
-         tmp_export_symbols="$export_symbols"
-         test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
+         tmp_export_symbols=$export_symbols
+         test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols
          $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"'
        fi
 
-       if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then
+       if test : != "$skipped_export" && test -n "$orig_export_symbols"; then
          # The given exports_symbols file has to be filtered, so filter it.
-         func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
+         func_verbose "filter symbol list for '$libname.la' to tag DATA exports"
          # FIXME: $output_objdir/$libname.filter potentially contains lots of
-         # 's' commands which not all seds can handle. GNU sed should be fine
+         # 's' commands, which not all seds can handle. GNU sed should be fine
          # though. Also, the filter scales superlinearly with the number of
          # global variables. join(1) would be nice here, but unfortunately
          # isn't a blessed tool.
@@ -8252,11 +9747,11 @@ EOF
            ;;
          esac
        done
-       deplibs="$tmp_deplibs"
+       deplibs=$tmp_deplibs
 
        if test -n "$convenience"; then
          if test -n "$whole_archive_flag_spec" &&
-           test "$compiler_needs_object" = yes &&
+           test yes = "$compiler_needs_object" &&
            test -z "$libobjs"; then
            # extract the archives, so we have objects to list.
            # TODO: could optimize this to just extract one archive.
@@ -8267,7 +9762,7 @@ EOF
            eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
            test "X$libobjs" = "X " && libobjs=
          else
-           gentop="$output_objdir/${outputname}x"
+           gentop=$output_objdir/${outputname}x
            func_append generated " $gentop"
 
            func_extract_archives $gentop $convenience
@@ -8276,18 +9771,18 @@ EOF
          fi
        fi
 
-       if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
+       if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then
          eval flag=\"$thread_safe_flag_spec\"
          func_append linker_flags " $flag"
        fi
 
        # Make a backup of the uninstalled library when relinking
-       if test "$opt_mode" = relink; then
+       if test relink = "$opt_mode"; then
          $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?
        fi
 
        # Do each of the archive commands.
-       if test "$module" = yes && test -n "$module_cmds" ; then
+       if test yes = "$module" && test -n "$module_cmds"; then
          if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
            eval test_cmds=\"$module_expsym_cmds\"
            cmds=$module_expsym_cmds
@@ -8305,7 +9800,7 @@ EOF
          fi
        fi
 
-       if test "X$skipped_export" != "X:" &&
+       if test : != "$skipped_export" &&
           func_len " $test_cmds" &&
           len=$func_len_result &&
           test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
@@ -8338,8 +9833,8 @@ EOF
          last_robj=
          k=1
 
-         if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then
-           output=${output_objdir}/${output_la}.lnkscript
+         if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then
+           output=$output_objdir/$output_la.lnkscript
            func_verbose "creating GNU ld script: $output"
            echo 'INPUT (' > $output
            for obj in $save_libobjs
@@ -8351,14 +9846,14 @@ EOF
            func_append delfiles " $output"
            func_to_tool_file "$output"
            output=$func_to_tool_file_result
-         elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then
-           output=${output_objdir}/${output_la}.lnk
+         elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then
+           output=$output_objdir/$output_la.lnk
            func_verbose "creating linker input file list: $output"
            : > $output
            set x $save_libobjs
            shift
            firstobj=
-           if test "$compiler_needs_object" = yes; then
+           if test yes = "$compiler_needs_object"; then
              firstobj="$1 "
              shift
            fi
@@ -8373,7 +9868,7 @@ EOF
          else
            if test -n "$save_libobjs"; then
              func_verbose "creating reloadable object files..."
-             output=$output_objdir/$output_la-${k}.$objext
+             output=$output_objdir/$output_la-$k.$objext
              eval test_cmds=\"$reload_cmds\"
              func_len " $test_cmds"
              len0=$func_len_result
@@ -8385,13 +9880,13 @@ EOF
                func_len " $obj"
                func_arith $len + $func_len_result
                len=$func_arith_result
-               if test "X$objlist" = X ||
+               if test -z "$objlist" ||
                   test "$len" -lt "$max_cmd_len"; then
                  func_append objlist " $obj"
                else
                  # The command $test_cmds is almost too long, add a
                  # command to the queue.
-                 if test "$k" -eq 1 ; then
+                 if test 1 -eq "$k"; then
                    # The first file doesn't have a previous command to add.
                    reload_objs=$objlist
                    eval concat_cmds=\"$reload_cmds\"
@@ -8401,10 +9896,10 @@ EOF
                    reload_objs="$objlist $last_robj"
                    eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\"
                  fi
-                 last_robj=$output_objdir/$output_la-${k}.$objext
+                 last_robj=$output_objdir/$output_la-$k.$objext
                  func_arith $k + 1
                  k=$func_arith_result
-                 output=$output_objdir/$output_la-${k}.$objext
+                 output=$output_objdir/$output_la-$k.$objext
                  objlist=" $obj"
                  func_len " $last_robj"
                  func_arith $len0 + $func_len_result
@@ -8416,9 +9911,9 @@ EOF
              # files will link in the last one created.
              test -z "$concat_cmds" || concat_cmds=$concat_cmds~
              reload_objs="$objlist $last_robj"
-             eval concat_cmds=\"\${concat_cmds}$reload_cmds\"
+             eval concat_cmds=\"\$concat_cmds$reload_cmds\"
              if test -n "$last_robj"; then
-               eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\"
+               eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\"
              fi
              func_append delfiles " $output"
 
@@ -8426,9 +9921,9 @@ EOF
              output=
            fi
 
-           if ${skipped_export-false}; then
-             func_verbose "generating symbol list for \`$libname.la'"
-             export_symbols="$output_objdir/$libname.exp"
+           ${skipped_export-false} && {
+             func_verbose "generating symbol list for '$libname.la'"
+             export_symbols=$output_objdir/$libname.exp
              $opt_dry_run || $RM $export_symbols
              libobjs=$output
              # Append the command to create the export file.
@@ -8437,16 +9932,16 @@ EOF
              if test -n "$last_robj"; then
                eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\"
              fi
-           fi
+           }
 
            test -n "$save_libobjs" &&
              func_verbose "creating a temporary reloadable object file: $output"
 
            # Loop through the commands generated above and execute them.
-           save_ifs="$IFS"; IFS='~'
+           save_ifs=$IFS; IFS='~'
            for cmd in $concat_cmds; do
-             IFS="$save_ifs"
-             $opt_silent || {
+             IFS=$save_ifs
+             $opt_quiet || {
                  func_quote_for_expand "$cmd"
                  eval "func_echo $func_quote_for_expand_result"
              }
@@ -8454,7 +9949,7 @@ EOF
                lt_exit=$?
 
                # Restore the uninstalled library and exit
-               if test "$opt_mode" = relink; then
+               if test relink = "$opt_mode"; then
                  ( cd "$output_objdir" && \
                    $RM "${realname}T" && \
                    $MV "${realname}U" "$realname" )
@@ -8463,7 +9958,7 @@ EOF
                exit $lt_exit
              }
            done
-           IFS="$save_ifs"
+           IFS=$save_ifs
 
            if test -n "$export_symbols_regex" && ${skipped_export-false}; then
              func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
@@ -8471,18 +9966,18 @@ EOF
            fi
          fi
 
-          if ${skipped_export-false}; then
+          ${skipped_export-false} && {
            if test -n "$export_symbols" && test -n "$include_expsyms"; then
-             tmp_export_symbols="$export_symbols"
-             test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
+             tmp_export_symbols=$export_symbols
+             test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols
              $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"'
            fi
 
            if test -n "$orig_export_symbols"; then
              # The given exports_symbols file has to be filtered, so filter it.
-             func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
+             func_verbose "filter symbol list for '$libname.la' to tag DATA exports"
              # FIXME: $output_objdir/$libname.filter potentially contains lots of
-             # 's' commands which not all seds can handle. GNU sed should be fine
+             # 's' commands, which not all seds can handle. GNU sed should be fine
              # though. Also, the filter scales superlinearly with the number of
              # global variables. join(1) would be nice here, but unfortunately
              # isn't a blessed tool.
@@ -8491,7 +9986,7 @@ EOF
              export_symbols=$output_objdir/$libname.def
              $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
            fi
-         fi
+         }
 
          libobjs=$output
          # Restore the value of output.
@@ -8505,7 +10000,7 @@ EOF
          # value of $libobjs for piecewise linking.
 
          # Do each of the archive commands.
-         if test "$module" = yes && test -n "$module_cmds" ; then
+         if test yes = "$module" && test -n "$module_cmds"; then
            if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
              cmds=$module_expsym_cmds
            else
@@ -8527,7 +10022,7 @@ EOF
 
        # Add any objects from preloaded convenience libraries
        if test -n "$dlprefiles"; then
-         gentop="$output_objdir/${outputname}x"
+         gentop=$output_objdir/${outputname}x
          func_append generated " $gentop"
 
          func_extract_archives $gentop $dlprefiles
@@ -8535,11 +10030,12 @@ EOF
          test "X$libobjs" = "X " && libobjs=
        fi
 
-       save_ifs="$IFS"; IFS='~'
+       save_ifs=$IFS; IFS='~'
        for cmd in $cmds; do
-         IFS="$save_ifs"
+         IFS=$sp$nl
          eval cmd=\"$cmd\"
-         $opt_silent || {
+         IFS=$save_ifs
+         $opt_quiet || {
            func_quote_for_expand "$cmd"
            eval "func_echo $func_quote_for_expand_result"
          }
@@ -8547,7 +10043,7 @@ EOF
            lt_exit=$?
 
            # Restore the uninstalled library and exit
-           if test "$opt_mode" = relink; then
+           if test relink = "$opt_mode"; then
              ( cd "$output_objdir" && \
                $RM "${realname}T" && \
                $MV "${realname}U" "$realname" )
@@ -8556,10 +10052,10 @@ EOF
            exit $lt_exit
          }
        done
-       IFS="$save_ifs"
+       IFS=$save_ifs
 
        # Restore the uninstalled library and exit
-       if test "$opt_mode" = relink; then
+       if test relink = "$opt_mode"; then
          $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $?
 
          if test -n "$convenience"; then
@@ -8579,39 +10075,39 @@ EOF
        done
 
        # If -module or -export-dynamic was specified, set the dlname.
-       if test "$module" = yes || test "$export_dynamic" = yes; then
+       if test yes = "$module" || test yes = "$export_dynamic"; then
          # On all known operating systems, these are identical.
-         dlname="$soname"
+         dlname=$soname
        fi
       fi
       ;;
 
     obj)
-      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
-       func_warning "\`-dlopen' is ignored for objects"
+      if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then
+       func_warning "'-dlopen' is ignored for objects"
       fi
 
       case " $deplibs" in
       *\ -l* | *\ -L*)
-       func_warning "\`-l' and \`-L' are ignored for objects" ;;
+       func_warning "'-l' and '-L' are ignored for objects" ;;
       esac
 
       test -n "$rpath" && \
-       func_warning "\`-rpath' is ignored for objects"
+       func_warning "'-rpath' is ignored for objects"
 
       test -n "$xrpath" && \
-       func_warning "\`-R' is ignored for objects"
+       func_warning "'-R' is ignored for objects"
 
       test -n "$vinfo" && \
-       func_warning "\`-version-info' is ignored for objects"
+       func_warning "'-version-info' is ignored for objects"
 
       test -n "$release" && \
-       func_warning "\`-release' is ignored for objects"
+       func_warning "'-release' is ignored for objects"
 
       case $output in
       *.lo)
        test -n "$objs$old_deplibs" && \
-         func_fatal_error "cannot build library object \`$output' from non-libtool objects"
+         func_fatal_error "cannot build library object '$output' from non-libtool objects"
 
        libobj=$output
        func_lo2o "$libobj"
@@ -8619,7 +10115,7 @@ EOF
        ;;
       *)
        libobj=
-       obj="$output"
+       obj=$output
        ;;
       esac
 
@@ -8632,17 +10128,19 @@ EOF
       # the extraction.
       reload_conv_objs=
       gentop=
-      # reload_cmds runs $LD directly, so let us get rid of
-      # -Wl from whole_archive_flag_spec and hope we can get by with
-      # turning comma into space..
-      wl=
-
+      # if reload_cmds runs $LD directly, get rid of -Wl from
+      # whole_archive_flag_spec and hope we can get by with turning comma
+      # into space.
+      case $reload_cmds in
+        *\$LD[\ \$]*) wl= ;;
+      esac
       if test -n "$convenience"; then
        if test -n "$whole_archive_flag_spec"; then
          eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\"
-         reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'`
+         test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'`
+         reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags
        else
-         gentop="$output_objdir/${obj}x"
+         gentop=$output_objdir/${obj}x
          func_append generated " $gentop"
 
          func_extract_archives $gentop $convenience
@@ -8651,12 +10149,12 @@ EOF
       fi
 
       # If we're not building shared, we need to use non_pic_objs
-      test "$build_libtool_libs" != yes && libobjs="$non_pic_objects"
+      test yes = "$build_libtool_libs" || libobjs=$non_pic_objects
 
       # Create the old-style object.
-      reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
+      reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs
 
-      output="$obj"
+      output=$obj
       func_execute_cmds "$reload_cmds" 'exit $?'
 
       # Exit if we aren't doing a library object file.
@@ -8668,7 +10166,7 @@ EOF
        exit $EXIT_SUCCESS
       fi
 
-      if test "$build_libtool_libs" != yes; then
+      test yes = "$build_libtool_libs" || {
        if test -n "$gentop"; then
          func_show_eval '${RM}r "$gentop"'
        fi
@@ -8678,12 +10176,12 @@ EOF
        # $show "echo timestamp > $libobj"
        # $opt_dry_run || eval "echo timestamp > $libobj" || exit $?
        exit $EXIT_SUCCESS
-      fi
+      }
 
-      if test -n "$pic_flag" || test "$pic_mode" != default; then
+      if test -n "$pic_flag" || test default != "$pic_mode"; then
        # Only do commands if we really have different PIC objects.
        reload_objs="$libobjs $reload_conv_objs"
-       output="$libobj"
+       output=$libobj
        func_execute_cmds "$reload_cmds" 'exit $?'
       fi
 
@@ -8700,16 +10198,14 @@ EOF
                  output=$func_stripname_result.exe;;
       esac
       test -n "$vinfo" && \
-       func_warning "\`-version-info' is ignored for programs"
+       func_warning "'-version-info' is ignored for programs"
 
       test -n "$release" && \
-       func_warning "\`-release' is ignored for programs"
+       func_warning "'-release' is ignored for programs"
 
-      test "$preload" = yes \
-        && test "$dlopen_support" = unknown \
-       && test "$dlopen_self" = unknown \
-       && test "$dlopen_self_static" = unknown && \
-         func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support."
+      $preload \
+       && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \
+       && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support."
 
       case $host in
       *-*-rhapsody* | *-*-darwin1.[012])
@@ -8723,11 +10219,11 @@ EOF
       *-*-darwin*)
        # Don't allow lazy linking, it breaks C++ global constructors
        # But is supposedly fixed on 10.4 or later (yay!).
-       if test "$tagname" = CXX ; then
+       if test CXX = "$tagname"; then
          case ${MACOSX_DEPLOYMENT_TARGET-10.0} in
            10.[0123])
-             func_append compile_command " ${wl}-bind_at_load"
-             func_append finalize_command " ${wl}-bind_at_load"
+             func_append compile_command " $wl-bind_at_load"
+             func_append finalize_command " $wl-bind_at_load"
            ;;
          esac
        fi
@@ -8763,7 +10259,7 @@ EOF
        *) func_append new_libs " $deplib" ;;
        esac
       done
-      compile_deplibs="$new_libs"
+      compile_deplibs=$new_libs
 
 
       func_append compile_command " $compile_deplibs"
@@ -8787,7 +10283,7 @@ EOF
        if test -n "$hardcode_libdir_flag_spec"; then
          if test -n "$hardcode_libdir_separator"; then
            if test -z "$hardcode_libdirs"; then
-             hardcode_libdirs="$libdir"
+             hardcode_libdirs=$libdir
            else
              # Just accumulate the unique libdirs.
              case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
@@ -8810,7 +10306,7 @@ EOF
        fi
        case $host in
        *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
-         testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'`
+         testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'`
          case :$dllsearchpath: in
          *":$libdir:"*) ;;
          ::) dllsearchpath=$libdir;;
@@ -8827,10 +10323,10 @@ EOF
       # Substitute the hardcoded libdirs into the rpath.
       if test -n "$hardcode_libdir_separator" &&
         test -n "$hardcode_libdirs"; then
-       libdir="$hardcode_libdirs"
+       libdir=$hardcode_libdirs
        eval rpath=\" $hardcode_libdir_flag_spec\"
       fi
-      compile_rpath="$rpath"
+      compile_rpath=$rpath
 
       rpath=
       hardcode_libdirs=
@@ -8838,7 +10334,7 @@ EOF
        if test -n "$hardcode_libdir_flag_spec"; then
          if test -n "$hardcode_libdir_separator"; then
            if test -z "$hardcode_libdirs"; then
-             hardcode_libdirs="$libdir"
+             hardcode_libdirs=$libdir
            else
              # Just accumulate the unique libdirs.
              case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
@@ -8863,45 +10359,43 @@ EOF
       # Substitute the hardcoded libdirs into the rpath.
       if test -n "$hardcode_libdir_separator" &&
         test -n "$hardcode_libdirs"; then
-       libdir="$hardcode_libdirs"
+       libdir=$hardcode_libdirs
        eval rpath=\" $hardcode_libdir_flag_spec\"
       fi
-      finalize_rpath="$rpath"
+      finalize_rpath=$rpath
 
-      if test -n "$libobjs" && test "$build_old_libs" = yes; then
+      if test -n "$libobjs" && test yes = "$build_old_libs"; then
        # Transform all the library objects into standard objects.
        compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP`
        finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP`
       fi
 
-      func_generate_dlsyms "$outputname" "@PROGRAM@" "no"
+      func_generate_dlsyms "$outputname" "@PROGRAM@" false
 
       # template prelinking step
       if test -n "$prelink_cmds"; then
        func_execute_cmds "$prelink_cmds" 'exit $?'
       fi
 
-      wrappers_required=yes
+      wrappers_required=:
       case $host in
       *cegcc* | *mingw32ce*)
         # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway.
-        wrappers_required=no
+        wrappers_required=false
         ;;
       *cygwin* | *mingw* )
-        if test "$build_libtool_libs" != yes; then
-          wrappers_required=no
-        fi
+        test yes = "$build_libtool_libs" || wrappers_required=false
         ;;
       *)
-        if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
-          wrappers_required=no
+        if test no = "$need_relink" || test yes != "$build_libtool_libs"; then
+          wrappers_required=false
         fi
         ;;
       esac
-      if test "$wrappers_required" = no; then
+      $wrappers_required || {
        # Replace the output file specification.
        compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'`
-       link_command="$compile_command$compile_rpath"
+       link_command=$compile_command$compile_rpath
 
        # We have no uninstalled library dependencies, so finalize right now.
        exit_status=0
@@ -8914,12 +10408,12 @@ EOF
        fi
 
        # Delete the generated files.
-       if test -f "$output_objdir/${outputname}S.${objext}"; then
-         func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"'
+       if test -f "$output_objdir/${outputname}S.$objext"; then
+         func_show_eval '$RM "$output_objdir/${outputname}S.$objext"'
        fi
 
        exit $exit_status
-      fi
+      }
 
       if test -n "$compile_shlibpath$finalize_shlibpath"; then
        compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
@@ -8949,9 +10443,9 @@ EOF
        fi
       fi
 
-      if test "$no_install" = yes; then
+      if test yes = "$no_install"; then
        # We don't need to create a wrapper script.
-       link_command="$compile_var$compile_command$compile_rpath"
+       link_command=$compile_var$compile_command$compile_rpath
        # Replace the output file specification.
        link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'`
        # Delete the old output file.
@@ -8968,27 +10462,28 @@ EOF
        exit $EXIT_SUCCESS
       fi
 
-      if test "$hardcode_action" = relink; then
-       # Fast installation is not supported
-       link_command="$compile_var$compile_command$compile_rpath"
-       relink_command="$finalize_var$finalize_command$finalize_rpath"
+      case $hardcode_action,$fast_install in
+        relink,*)
+         # Fast installation is not supported
+         link_command=$compile_var$compile_command$compile_rpath
+         relink_command=$finalize_var$finalize_command$finalize_rpath
 
-       func_warning "this platform does not like uninstalled shared libraries"
-       func_warning "\`$output' will be relinked during installation"
-      else
-       if test "$fast_install" != no; then
-         link_command="$finalize_var$compile_command$finalize_rpath"
-         if test "$fast_install" = yes; then
-           relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'`
-         else
-           # fast_install is set to needless
-           relink_command=
-         fi
-       else
-         link_command="$compile_var$compile_command$compile_rpath"
-         relink_command="$finalize_var$finalize_command$finalize_rpath"
-       fi
-      fi
+         func_warning "this platform does not like uninstalled shared libraries"
+         func_warning "'$output' will be relinked during installation"
+         ;;
+        *,yes)
+         link_command=$finalize_var$compile_command$finalize_rpath
+         relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'`
+          ;;
+       *,no)
+         link_command=$compile_var$compile_command$compile_rpath
+         relink_command=$finalize_var$finalize_command$finalize_rpath
+          ;;
+       *,needless)
+         link_command=$finalize_var$compile_command$finalize_rpath
+         relink_command=
+          ;;
+      esac
 
       # Replace the output file specification.
       link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
@@ -9045,8 +10540,8 @@ EOF
            func_dirname_and_basename "$output" "" "."
            output_name=$func_basename_result
            output_path=$func_dirname_result
-           cwrappersource="$output_path/$objdir/lt-$output_name.c"
-           cwrapper="$output_path/$output_name.exe"
+           cwrappersource=$output_path/$objdir/lt-$output_name.c
+           cwrapper=$output_path/$output_name.exe
            $RM $cwrappersource $cwrapper
            trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
 
@@ -9067,7 +10562,7 @@ EOF
            trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15
            $opt_dry_run || {
              # note: this script will not be executed, so do not chmod.
-             if test "x$build" = "x$host" ; then
+             if test "x$build" = "x$host"; then
                $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result
              else
                func_emit_wrapper no > $func_ltwrapper_scriptname_result
@@ -9090,25 +10585,27 @@ EOF
     # See if we need to build an old-fashioned archive.
     for oldlib in $oldlibs; do
 
-      if test "$build_libtool_libs" = convenience; then
-       oldobjs="$libobjs_save $symfileobj"
-       addlibs="$convenience"
-       build_libtool_libs=no
-      else
-       if test "$build_libtool_libs" = module; then
-         oldobjs="$libobjs_save"
+      case $build_libtool_libs in
+        convenience)
+         oldobjs="$libobjs_save $symfileobj"
+         addlibs=$convenience
          build_libtool_libs=no
-       else
+         ;;
+       module)
+         oldobjs=$libobjs_save
+         addlibs=$old_convenience
+         build_libtool_libs=no
+          ;;
+       *)
          oldobjs="$old_deplibs $non_pic_objects"
-         if test "$preload" = yes && test -f "$symfileobj"; then
-           func_append oldobjs " $symfileobj"
-         fi
-       fi
-       addlibs="$old_convenience"
-      fi
+         $preload && test -f "$symfileobj" \
+           && func_append oldobjs " $symfileobj"
+         addlibs=$old_convenience
+         ;;
+      esac
 
       if test -n "$addlibs"; then
-       gentop="$output_objdir/${outputname}x"
+       gentop=$output_objdir/${outputname}x
        func_append generated " $gentop"
 
        func_extract_archives $gentop $addlibs
@@ -9116,13 +10613,13 @@ EOF
       fi
 
       # Do each command in the archive commands.
-      if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
+      if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then
        cmds=$old_archive_from_new_cmds
       else
 
        # Add any objects from preloaded convenience libraries
        if test -n "$dlprefiles"; then
-         gentop="$output_objdir/${outputname}x"
+         gentop=$output_objdir/${outputname}x
          func_append generated " $gentop"
 
          func_extract_archives $gentop $dlprefiles
@@ -9143,7 +10640,7 @@ EOF
          :
        else
          echo "copying selected object files to avoid basename conflicts..."
-         gentop="$output_objdir/${outputname}x"
+         gentop=$output_objdir/${outputname}x
          func_append generated " $gentop"
          func_mkdir_p "$gentop"
          save_oldobjs=$oldobjs
@@ -9152,7 +10649,7 @@ EOF
          for obj in $save_oldobjs
          do
            func_basename "$obj"
-           objbase="$func_basename_result"
+           objbase=$func_basename_result
            case " $oldobjs " in
            " ") oldobjs=$obj ;;
            *[\ /]"$objbase "*)
@@ -9221,18 +10718,18 @@ EOF
            else
              # the above command should be used before it gets too long
              oldobjs=$objlist
-             if test "$obj" = "$last_oldobj" ; then
+             if test "$obj" = "$last_oldobj"; then
                RANLIB=$save_RANLIB
              fi
              test -z "$concat_cmds" || concat_cmds=$concat_cmds~
-             eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\"
+             eval concat_cmds=\"\$concat_cmds$old_archive_cmds\"
              objlist=
              len=$len0
            fi
          done
          RANLIB=$save_RANLIB
          oldobjs=$objlist
-         if test "X$oldobjs" = "X" ; then
+         if test -z "$oldobjs"; then
            eval cmds=\"\$concat_cmds\"
          else
            eval cmds=\"\$concat_cmds~\$old_archive_cmds\"
@@ -9249,7 +10746,7 @@ EOF
     case $output in
     *.la)
       old_library=
-      test "$build_old_libs" = yes && old_library="$libname.$libext"
+      test yes = "$build_old_libs" && old_library=$libname.$libext
       func_verbose "creating $output"
 
       # Preserve any variables that may affect compiler behavior
@@ -9264,31 +10761,31 @@ EOF
        fi
       done
       # Quote the link command for shipping.
-      relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
+      relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
       relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
-      if test "$hardcode_automatic" = yes ; then
+      if test yes = "$hardcode_automatic"; then
        relink_command=
       fi
 
       # Only create the output if not a dry run.
       $opt_dry_run || {
        for installed in no yes; do
-         if test "$installed" = yes; then
+         if test yes = "$installed"; then
            if test -z "$install_libdir"; then
              break
            fi
-           output="$output_objdir/$outputname"i
+           output=$output_objdir/${outputname}i
            # Replace all uninstalled libtool libraries with the installed ones
            newdependency_libs=
            for deplib in $dependency_libs; do
              case $deplib in
              *.la)
                func_basename "$deplib"
-               name="$func_basename_result"
+               name=$func_basename_result
                func_resolve_sysroot "$deplib"
-               eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result`
+               eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result`
                test -z "$libdir" && \
-                 func_fatal_error "\`$deplib' is not a valid libtool archive"
+                 func_fatal_error "'$deplib' is not a valid libtool archive"
                func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name"
                ;;
              -L*)
@@ -9304,23 +10801,23 @@ EOF
              *) func_append newdependency_libs " $deplib" ;;
              esac
            done
-           dependency_libs="$newdependency_libs"
+           dependency_libs=$newdependency_libs
            newdlfiles=
 
            for lib in $dlfiles; do
              case $lib in
              *.la)
                func_basename "$lib"
-               name="$func_basename_result"
-               eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
+               name=$func_basename_result
+               eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
                test -z "$libdir" && \
-                 func_fatal_error "\`$lib' is not a valid libtool archive"
+                 func_fatal_error "'$lib' is not a valid libtool archive"
                func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name"
                ;;
              *) func_append newdlfiles " $lib" ;;
              esac
            done
-           dlfiles="$newdlfiles"
+           dlfiles=$newdlfiles
            newdlprefiles=
            for lib in $dlprefiles; do
              case $lib in
@@ -9330,34 +10827,34 @@ EOF
                # didn't already link the preopened objects directly into
                # the library:
                func_basename "$lib"
-               name="$func_basename_result"
-               eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
+               name=$func_basename_result
+               eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
                test -z "$libdir" && \
-                 func_fatal_error "\`$lib' is not a valid libtool archive"
+                 func_fatal_error "'$lib' is not a valid libtool archive"
                func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name"
                ;;
              esac
            done
-           dlprefiles="$newdlprefiles"
+           dlprefiles=$newdlprefiles
          else
            newdlfiles=
            for lib in $dlfiles; do
              case $lib in
-               [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
+               [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;;
                *) abs=`pwd`"/$lib" ;;
              esac
              func_append newdlfiles " $abs"
            done
-           dlfiles="$newdlfiles"
+           dlfiles=$newdlfiles
            newdlprefiles=
            for lib in $dlprefiles; do
              case $lib in
-               [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
+               [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;;
                *) abs=`pwd`"/$lib" ;;
              esac
              func_append newdlprefiles " $abs"
            done
-           dlprefiles="$newdlprefiles"
+           dlprefiles=$newdlprefiles
          fi
          $RM $output
          # place dlname in correct position for cygwin
@@ -9373,10 +10870,9 @@ EOF
          case $host,$output,$installed,$module,$dlname in
            *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll)
              # If a -bindir argument was supplied, place the dll there.
-             if test "x$bindir" != x ;
-             then
+             if test -n "$bindir"; then
                func_relative_path "$install_libdir" "$bindir"
-               tdlname=$func_relative_path_result$dlname
+               tdlname=$func_relative_path_result/$dlname
              else
                # Otherwise fall back on heuristic.
                tdlname=../bin/$dlname
@@ -9385,7 +10881,7 @@ EOF
          esac
          $ECHO > $output "\
 # $outputname - a libtool library file
-# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
+# Generated by $PROGRAM (GNU $PACKAGE) $VERSION
 #
 # Please DO NOT delete this file!
 # It is necessary for linking the library.
@@ -9399,7 +10895,7 @@ library_names='$library_names'
 # The name of the static archive.
 old_library='$old_library'
 
-# Linker flags that can not go in dependency_libs.
+# Linker flags that cannot go in dependency_libs.
 inherited_linker_flags='$new_inherited_linker_flags'
 
 # Libraries that this one depends upon.
@@ -9425,7 +10921,7 @@ dlpreopen='$dlprefiles'
 
 # Directory that this library needs to be installed in:
 libdir='$install_libdir'"
-         if test "$installed" = no && test "$need_relink" = yes; then
+         if test no,yes = "$installed,$need_relink"; then
            $ECHO >> $output "\
 relink_command=\"$relink_command\""
          fi
@@ -9440,27 +10936,29 @@ relink_command=\"$relink_command\""
     exit $EXIT_SUCCESS
 }
 
-{ test "$opt_mode" = link || test "$opt_mode" = relink; } &&
-    func_mode_link ${1+"$@"}
+if test link = "$opt_mode" || test relink = "$opt_mode"; then
+  func_mode_link ${1+"$@"}
+fi
 
 
 # func_mode_uninstall arg...
 func_mode_uninstall ()
 {
-    $opt_debug
-    RM="$nonopt"
+    $debug_cmd
+
+    RM=$nonopt
     files=
-    rmforce=
+    rmforce=false
     exit_status=0
 
     # This variable tells wrapper scripts just to set variables rather
     # than running their programs.
-    libtool_install_magic="$magic"
+    libtool_install_magic=$magic
 
     for arg
     do
       case $arg in
-      -f) func_append RM " $arg"; rmforce=yes ;;
+      -f) func_append RM " $arg"; rmforce=: ;;
       -*) func_append RM " $arg" ;;
       *) func_append files " $arg" ;;
       esac
@@ -9473,18 +10971,18 @@ func_mode_uninstall ()
 
     for file in $files; do
       func_dirname "$file" "" "."
-      dir="$func_dirname_result"
-      if test "X$dir" = X.; then
-       odir="$objdir"
+      dir=$func_dirname_result
+      if test . = "$dir"; then
+       odir=$objdir
       else
-       odir="$dir/$objdir"
+       odir=$dir/$objdir
       fi
       func_basename "$file"
-      name="$func_basename_result"
-      test "$opt_mode" = uninstall && odir="$dir"
+      name=$func_basename_result
+      test uninstall = "$opt_mode" && odir=$dir
 
       # Remember odir for removal later, being careful to avoid duplicates
-      if test "$opt_mode" = clean; then
+      if test clean = "$opt_mode"; then
        case " $rmdirs " in
          *" $odir "*) ;;
          *) func_append rmdirs " $odir" ;;
@@ -9499,11 +10997,11 @@ func_mode_uninstall ()
       elif test -d "$file"; then
        exit_status=1
        continue
-      elif test "$rmforce" = yes; then
+      elif $rmforce; then
        continue
       fi
 
-      rmfiles="$file"
+      rmfiles=$file
 
       case $name in
       *.la)
@@ -9517,7 +11015,7 @@ func_mode_uninstall ()
          done
          test -n "$old_library" && func_append rmfiles " $odir/$old_library"
 
-         case "$opt_mode" in
+         case $opt_mode in
          clean)
            case " $library_names " in
            *" $dlname "*) ;;
@@ -9528,12 +11026,12 @@ func_mode_uninstall ()
          uninstall)
            if test -n "$library_names"; then
              # Do each command in the postuninstall commands.
-             func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
+             func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1'
            fi
 
            if test -n "$old_library"; then
              # Do each command in the old_postuninstall commands.
-             func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
+             func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1'
            fi
            # FIXME: should reinstall the best remaining shared library.
            ;;
@@ -9549,21 +11047,19 @@ func_mode_uninstall ()
          func_source $dir/$name
 
          # Add PIC object to the list of files to remove.
-         if test -n "$pic_object" &&
-            test "$pic_object" != none; then
+         if test -n "$pic_object" && test none != "$pic_object"; then
            func_append rmfiles " $dir/$pic_object"
          fi
 
          # Add non-PIC object to the list of files to remove.
-         if test -n "$non_pic_object" &&
-            test "$non_pic_object" != none; then
+         if test -n "$non_pic_object" && test none != "$non_pic_object"; then
            func_append rmfiles " $dir/$non_pic_object"
          fi
        fi
        ;;
 
       *)
-       if test "$opt_mode" = clean ; then
+       if test clean = "$opt_mode"; then
          noexename=$name
          case $file in
          *.exe)
@@ -9590,12 +11086,12 @@ func_mode_uninstall ()
 
            # note $name still contains .exe if it was in $file originally
            # as does the version of $file that was added into $rmfiles
-           func_append rmfiles " $odir/$name $odir/${name}S.${objext}"
-           if test "$fast_install" = yes && test -n "$relink_command"; then
+           func_append rmfiles " $odir/$name $odir/${name}S.$objext"
+           if test yes = "$fast_install" && test -n "$relink_command"; then
              func_append rmfiles " $odir/lt-$name"
            fi
-           if test "X$noexename" != "X$name" ; then
-             func_append rmfiles " $odir/lt-${noexename}.c"
+           if test "X$noexename" != "X$name"; then
+             func_append rmfiles " $odir/lt-$noexename.c"
            fi
          fi
        fi
@@ -9604,7 +11100,7 @@ func_mode_uninstall ()
       func_show_eval "$RM $rmfiles" 'exit_status=1'
     done
 
-    # Try to remove the ${objdir}s in the directories where we deleted files
+    # Try to remove the $objdir's in the directories where we deleted files
     for dir in $rmdirs; do
       if test -d "$dir"; then
        func_show_eval "rmdir $dir >/dev/null 2>&1"
@@ -9614,16 +11110,17 @@ func_mode_uninstall ()
     exit $exit_status
 }
 
-{ test "$opt_mode" = uninstall || test "$opt_mode" = clean; } &&
-    func_mode_uninstall ${1+"$@"}
+if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then
+  func_mode_uninstall ${1+"$@"}
+fi
 
 test -z "$opt_mode" && {
-  help="$generic_help"
+  help=$generic_help
   func_fatal_help "you must specify a MODE"
 }
 
 test -z "$exec_cmd" && \
-  func_fatal_help "invalid operation mode \`$opt_mode'"
+  func_fatal_help "invalid operation mode '$opt_mode'"
 
 if test -n "$exec_cmd"; then
   eval exec "$exec_cmd"
@@ -9634,7 +11131,7 @@ exit $exit_status
 
 
 # The TAGs below are defined such that we never get into a situation
-# in which we disable both kinds of libraries.  Given conflicting
+# where we disable both kinds of libraries.  Given conflicting
 # choices, we go for a static library, that is the most portable,
 # since we can't tell whether shared libraries were disabled because
 # the user asked for that or because the platform doesn't support
@@ -9657,5 +11154,3 @@ build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`
 # mode:shell-script
 # sh-indentation:2
 # End:
-# vi:sw=2
-
index 06ba8af..568f56c 100644 (file)
 /* Define to 1 if you have the <langinfo.h> header file. */
 #undef HAVE_LANGINFO_H
 
+/* Define to 1 if you have the `lchown' function. */
+#undef HAVE_LCHOWN
+
 /* Define to 1 if you have the <libintl.h> header file. */
 #undef HAVE_LIBINTL_H
 
    slash. */
 #undef LSTAT_FOLLOWS_SLASHED_SYMLINK
 
-/* Define to the sub-directory in which libtool stores uninstalled libraries.
-   */
+/* Define to the sub-directory where libtool stores uninstalled libraries. */
 #undef LT_OBJDIR
 
 /* If malloc(0) is != NULL, define this to 1. Otherwise define this to 0. */
 /* Define if vasnprintf exists but is overridden by gnulib. */
 #undef REPLACE_VASNPRINTF
 
-/* Define as the setuid owner of man or undefine if not installing setuid. */
+/* Define as the owner of system-wide cache files. */
 #undef SECURE_MAN_UID
 
 /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
index 094d43f..e1f40d0 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for man-db 2.7.5.
+# Generated by GNU Autoconf 2.69 for man-db 2.7.6.
 #
 # Report bugs to <cjwatson@debian.org>.
 #
@@ -590,8 +590,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='man-db'
 PACKAGE_TARNAME='man-db'
-PACKAGE_VERSION='2.7.5'
-PACKAGE_STRING='man-db 2.7.5'
+PACKAGE_VERSION='2.7.6'
+PACKAGE_STRING='man-db 2.7.6'
 PACKAGE_BUGREPORT='cjwatson@debian.org'
 PACKAGE_URL=''
 
@@ -1547,6 +1547,7 @@ man_mode
 man_owner
 roff_version
 date
+LT_SYS_LIBRARY_PATH
 OTOOL64
 OTOOL
 LIPO
@@ -1673,9 +1674,11 @@ enable_static
 enable_shared
 with_pic
 enable_fast_install
+with_aix_soname
 with_gnu_ld
 with_sysroot
 enable_libtool_lock
+enable_cache_owner
 enable_setuid
 enable_undoc
 with_device
@@ -1723,6 +1726,7 @@ LDFLAGS
 LIBS
 CPPFLAGS
 CPP
+LT_SYS_LIBRARY_PATH
 PKG_CONFIG
 PKG_CONFIG_PATH
 PKG_CONFIG_LIBDIR
@@ -2278,7 +2282,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures man-db 2.7.5 to adapt to many kinds of systems.
+\`configure' configures man-db 2.7.6 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -2349,7 +2353,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of man-db 2.7.5:";;
+     short | recursive ) echo "Configuration of man-db 2.7.6:";;
    esac
   cat <<\_ACEOF
 
@@ -2371,7 +2375,11 @@ Optional Features:
   --enable-fast-install[=PKGS]
                           optimize for fast installation [default=yes]
   --disable-libtool-lock  avoid locking (might break parallel builds)
-  --enable-setuid=ARG     install man setuid to user ARG [ARG=man]
+  --enable-cache-owner=ARG
+                          make system-wide cache files be owned by user ARG
+                          [arg=man]
+  --disable-cache-owner   don't constrain ownership of system-wide cache files
+  --enable-setuid         install man setuid
   --disable-setuid        don't install man setuid
   --enable-undoc=COMMAND  suggest COMMAND for missing manual pages
   --enable-automatic-create
@@ -2395,9 +2403,12 @@ Optional Packages:
   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
   --with-pic[=PKGS]       try to use only PIC/non-PIC objects [default=use
                           both]
+  --with-aix-soname=aix|svr4|both
+                          shared library versioning (aka "SONAME") variant to
+                          provide on AIX, [default=aix].
   --with-gnu-ld           assume the C compiler uses GNU ld [default=no]
-  --with-sysroot=DIR Search for dependent libraries within DIR
-                        (or the compiler's sysroot if not specified).
+  --with-sysroot[=DIR]    Search for dependent libraries within DIR (or the
+                          compiler's sysroot if not specified).
   --with-device=DEVICE    use nroff with the output device DEVICE
   --with-db=LIBRARY       use database library LIBRARY (db5, db4, db3, db2,
                           db1, db, gdbm, ndbm)
@@ -2454,6 +2465,8 @@ Some influential environment variables:
   CPPFLAGS    (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
               you have headers in a nonstandard directory <include dir>
   CPP         C preprocessor
+  LT_SYS_LIBRARY_PATH
+              User-defined run-time library search path.
   PKG_CONFIG  path to pkg-config utility
   PKG_CONFIG_PATH
               directories to add to pkg-config's search path
@@ -2530,7 +2543,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-man-db configure 2.7.5
+man-db configure 2.7.6
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -3239,7 +3252,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by man-db $as_me 2.7.5, which was
+It was created by man-db $as_me 2.7.6, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -4195,7 +4208,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='man-db'
- VERSION='2.7.5'
+ VERSION='2.7.6'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -6083,8 +6096,8 @@ esac
 
 
 
-macro_version='2.4.2'
-macro_revision='1.3337'
+macro_version='2.4.6'
+macro_revision='2.4.6'
 
 
 
@@ -6098,7 +6111,7 @@ macro_revision='1.3337'
 
 
 
-ltmain="$ac_aux_dir/ltmain.sh"
+ltmain=$ac_aux_dir/ltmain.sh
 
 # Make sure we can run config.sub.
 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
@@ -6218,7 +6231,7 @@ func_echo_all ()
     $ECHO ""
 }
 
-case "$ECHO" in
+case $ECHO in
   printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5
 $as_echo "printf" >&6; } ;;
   print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5
@@ -6411,19 +6424,19 @@ test -z "$GREP" && GREP=grep
 
 # Check whether --with-gnu-ld was given.
 if test "${with_gnu_ld+set}" = set; then :
-  withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes
+  withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes
 else
   with_gnu_ld=no
 fi
 
 ac_prog=ld
-if test "$GCC" = yes; then
+if test yes = "$GCC"; then
   # Check if gcc -print-prog-name=ld gives a path.
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5
 $as_echo_n "checking for ld used by $CC... " >&6; }
   case $host in
   *-*-mingw*)
-    # gcc leaves a trailing carriage return which upsets mingw
+    # gcc leaves a trailing carriage return, which upsets mingw
     ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
   *)
     ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
@@ -6437,7 +6450,7 @@ $as_echo_n "checking for ld used by $CC... " >&6; }
       while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
        ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
       done
-      test -z "$LD" && LD="$ac_prog"
+      test -z "$LD" && LD=$ac_prog
       ;;
   "")
     # If it fails, then pretend we aren't using GCC.
@@ -6448,7 +6461,7 @@ $as_echo_n "checking for ld used by $CC... " >&6; }
     with_gnu_ld=unknown
     ;;
   esac
-elif test "$with_gnu_ld" = yes; then
+elif test yes = "$with_gnu_ld"; then
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5
 $as_echo_n "checking for GNU ld... " >&6; }
 else
@@ -6459,32 +6472,32 @@ if ${lt_cv_path_LD+:} false; then :
   $as_echo_n "(cached) " >&6
 else
   if test -z "$LD"; then
-  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
+  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
   for ac_dir in $PATH; do
-    IFS="$lt_save_ifs"
+    IFS=$lt_save_ifs
     test -z "$ac_dir" && ac_dir=.
     if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
-      lt_cv_path_LD="$ac_dir/$ac_prog"
+      lt_cv_path_LD=$ac_dir/$ac_prog
       # Check to see if the program is GNU ld.  I'd rather use --version,
       # but apparently some variants of GNU ld only accept -v.
       # Break only if it was the GNU/non-GNU ld that we prefer.
       case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
       *GNU* | *'with BFD'*)
-       test "$with_gnu_ld" != no && break
+       test no != "$with_gnu_ld" && break
        ;;
       *)
-       test "$with_gnu_ld" != yes && break
+       test yes != "$with_gnu_ld" && break
        ;;
       esac
     fi
   done
-  IFS="$lt_save_ifs"
+  IFS=$lt_save_ifs
 else
-  lt_cv_path_LD="$LD" # Let the user override the test with a path.
+  lt_cv_path_LD=$LD # Let the user override the test with a path.
 fi
 fi
 
-LD="$lt_cv_path_LD"
+LD=$lt_cv_path_LD
 if test -n "$LD"; then
   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5
 $as_echo "$LD" >&6; }
@@ -6527,33 +6540,38 @@ if ${lt_cv_path_NM+:} false; then :
 else
   if test -n "$NM"; then
   # Let the user override the test.
-  lt_cv_path_NM="$NM"
+  lt_cv_path_NM=$NM
 else
-  lt_nm_to_check="${ac_tool_prefix}nm"
+  lt_nm_to_check=${ac_tool_prefix}nm
   if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
     lt_nm_to_check="$lt_nm_to_check nm"
   fi
   for lt_tmp_nm in $lt_nm_to_check; do
-    lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
+    lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
     for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
-      IFS="$lt_save_ifs"
+      IFS=$lt_save_ifs
       test -z "$ac_dir" && ac_dir=.
-      tmp_nm="$ac_dir/$lt_tmp_nm"
-      if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
+      tmp_nm=$ac_dir/$lt_tmp_nm
+      if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then
        # Check to see if the nm accepts a BSD-compat flag.
-       # Adding the `sed 1q' prevents false positives on HP-UX, which says:
+       # Adding the 'sed 1q' prevents false positives on HP-UX, which says:
        #   nm: unknown option "B" ignored
        # Tru64's nm complains that /dev/null is an invalid object file
-       case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
-       */dev/null* | *'Invalid file or object type'*)
+       # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty
+       case $build_os in
+       mingw*) lt_bad_file=conftest.nm/nofile ;;
+       *) lt_bad_file=/dev/null ;;
+       esac
+       case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in
+       *$lt_bad_file* | *'Invalid file or object type'*)
          lt_cv_path_NM="$tmp_nm -B"
-         break
+         break 2
          ;;
        *)
          case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
          */dev/null*)
            lt_cv_path_NM="$tmp_nm -p"
-           break
+           break 2
            ;;
          *)
            lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
@@ -6564,15 +6582,15 @@ else
        esac
       fi
     done
-    IFS="$lt_save_ifs"
+    IFS=$lt_save_ifs
   done
   : ${lt_cv_path_NM=no}
 fi
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5
 $as_echo "$lt_cv_path_NM" >&6; }
-if test "$lt_cv_path_NM" != "no"; then
-  NM="$lt_cv_path_NM"
+if test no != "$lt_cv_path_NM"; then
+  NM=$lt_cv_path_NM
 else
   # Didn't find any BSD compatible name lister, look for dumpbin.
   if test -n "$DUMPBIN"; then :
@@ -6678,9 +6696,9 @@ esac
   fi
 fi
 
-    case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in
+    case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in
     *COFF*)
-      DUMPBIN="$DUMPBIN -symbols"
+      DUMPBIN="$DUMPBIN -symbols -headers"
       ;;
     *)
       DUMPBIN=:
@@ -6688,8 +6706,8 @@ fi
     esac
   fi
 
-  if test "$DUMPBIN" != ":"; then
-    NM="$DUMPBIN"
+  if test : != "$DUMPBIN"; then
+    NM=$DUMPBIN
   fi
 fi
 test -z "$NM" && NM=nm
@@ -6740,7 +6758,7 @@ if ${lt_cv_sys_max_cmd_len+:} false; then :
   $as_echo_n "(cached) " >&6
 else
     i=0
-  teststring="ABCD"
+  teststring=ABCD
 
   case $build_os in
   msdosdjgpp*)
@@ -6780,7 +6798,7 @@ else
     lt_cv_sys_max_cmd_len=8192;
     ;;
 
-  netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
+  bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*)
     # This has been around since 386BSD, at least.  Likely further.
     if test -x /sbin/sysctl; then
       lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
@@ -6831,22 +6849,22 @@ else
   *)
     lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
     if test -n "$lt_cv_sys_max_cmd_len" && \
-       test undefined != "$lt_cv_sys_max_cmd_len"; then
+       test undefined != "$lt_cv_sys_max_cmd_len"; then
       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
     else
       # Make teststring a little bigger before we do anything with it.
       # a 1K string should be a reasonable start.
-      for i in 1 2 3 4 5 6 7 8 ; do
+      for i in 1 2 3 4 5 6 7 8; do
         teststring=$teststring$teststring
       done
       SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
       # If test is not a shell built-in, we'll probably end up computing a
       # maximum length that is only half of the actual maximum length, but
       # we can't tell.
-      while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \
+      while { test X`env echo "$teststring$teststring" 2>/dev/null` \
                 = "X$teststring$teststring"; } >/dev/null 2>&1 &&
-             test $i != 17 # 1/2 MB should be enough
+             test 17 != "$i" # 1/2 MB should be enough
       do
         i=`expr $i + 1`
         teststring=$teststring$teststring
@@ -6864,7 +6882,7 @@ else
 
 fi
 
-if test -n $lt_cv_sys_max_cmd_len ; then
+if test -n "$lt_cv_sys_max_cmd_len"; then
   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5
 $as_echo "$lt_cv_sys_max_cmd_len" >&6; }
 else
@@ -6882,30 +6900,6 @@ max_cmd_len=$lt_cv_sys_max_cmd_len
 : ${MV="mv -f"}
 : ${RM="rm -f"}
 
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5
-$as_echo_n "checking whether the shell understands some XSI constructs... " >&6; }
-# Try some XSI features
-xsi_shell=no
-( _lt_dummy="a/b/c"
-  test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \
-      = c,a/b,b/c, \
-    && eval 'test $(( 1 + 1 )) -eq 2 \
-    && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \
-  && xsi_shell=yes
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5
-$as_echo "$xsi_shell" >&6; }
-
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5
-$as_echo_n "checking whether the shell understands \"+=\"... " >&6; }
-lt_shell_append=no
-( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \
-    >/dev/null 2>&1 \
-  && lt_shell_append=yes
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5
-$as_echo "$lt_shell_append" >&6; }
-
-
 if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
   lt_unset=unset
 else
@@ -7028,13 +7022,13 @@ esac
 reload_cmds='$LD$reload_flag -o $output$reload_objs'
 case $host_os in
   cygwin* | mingw* | pw32* | cegcc*)
-    if test "$GCC" != yes; then
+    if test yes != "$GCC"; then
       reload_cmds=false
     fi
     ;;
   darwin*)
-    if test "$GCC" = yes; then
-      reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
+    if test yes = "$GCC"; then
+      reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs'
     else
       reload_cmds='$LD$reload_flag -o $output$reload_objs'
     fi
@@ -7162,13 +7156,13 @@ lt_cv_deplibs_check_method='unknown'
 # Need to set the preceding variable on all platforms that support
 # interlibrary dependencies.
 # 'none' -- dependencies not supported.
-# `unknown' -- same as none, but documents that we really don't know.
+# 'unknown' -- same as none, but documents that we really don't know.
 # 'pass_all' -- all dependencies passed with no checks.
 # 'test_compile' -- check by making test program.
 # 'file_magic [[regex]]' -- check by looking for files in library path
-# which responds to the $file_magic_cmd with a given extended regex.
-# If you have `file' or equivalent on your system and you're not sure
-# whether `pass_all' will *always* work, you probably want this one.
+# that responds to the $file_magic_cmd with a given extended regex.
+# If you have 'file' or equivalent on your system and you're not sure
+# whether 'pass_all' will *always* work, you probably want this one.
 
 case $host_os in
 aix[4-9]*)
@@ -7195,8 +7189,7 @@ mingw* | pw32*)
   # Base MSYS/MinGW do not provide the 'file' command needed by
   # func_win32_libid shell function, so use a weaker test based on 'objdump',
   # unless we find 'file', for example because we are cross-compiling.
-  # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin.
-  if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then
+  if ( file / ) >/dev/null 2>&1; then
     lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
     lt_cv_file_magic_cmd='func_win32_libid'
   else
@@ -7292,8 +7285,8 @@ newos6*)
   lt_cv_deplibs_check_method=pass_all
   ;;
 
-openbsd*)
-  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+openbsd* | bitrig*)
+  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
     lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$'
   else
     lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$'
@@ -7346,6 +7339,9 @@ sysv4 | sysv4.3*)
 tpf*)
   lt_cv_deplibs_check_method=pass_all
   ;;
+os2*)
+  lt_cv_deplibs_check_method=pass_all
+  ;;
 esac
 
 fi
@@ -7503,8 +7499,8 @@ else
 
 case $host_os in
 cygwin* | mingw* | pw32* | cegcc*)
-  # two different shell functions defined in ltmain.sh
-  # decide which to use based on capabilities of $DLLTOOL
+  # two different shell functions defined in ltmain.sh;
+  # decide which one to use based on capabilities of $DLLTOOL
   case `$DLLTOOL --help 2>&1` in
   *--identify-strict*)
     lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib
@@ -7516,7 +7512,7 @@ cygwin* | mingw* | pw32* | cegcc*)
   ;;
 *)
   # fallback: assume linklib IS sharedlib
-  lt_cv_sharedlib_from_linklib_cmd="$ECHO"
+  lt_cv_sharedlib_from_linklib_cmd=$ECHO
   ;;
 esac
 
@@ -7670,7 +7666,7 @@ if ac_fn_c_try_compile "$LINENO"; then :
   ac_status=$?
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
   test $ac_status = 0; }
-      if test "$ac_status" -eq 0; then
+      if test 0 -eq "$ac_status"; then
        # Ensure the archiver fails upon bogus file names.
        rm -f conftest.$ac_objext libconftest.a
        { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5
@@ -7678,7 +7674,7 @@ if ac_fn_c_try_compile "$LINENO"; then :
   ac_status=$?
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
   test $ac_status = 0; }
-       if test "$ac_status" -ne 0; then
+       if test 0 -ne "$ac_status"; then
           lt_cv_ar_at_file=@
         fi
       fi
@@ -7691,7 +7687,7 @@ fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5
 $as_echo "$lt_cv_ar_at_file" >&6; }
 
-if test "x$lt_cv_ar_at_file" = xno; then
+if test no = "$lt_cv_ar_at_file"; then
   archiver_list_spec=
 else
   archiver_list_spec=$lt_cv_ar_at_file
@@ -7908,7 +7904,7 @@ old_postuninstall_cmds=
 
 if test -n "$RANLIB"; then
   case $host_os in
-  openbsd*)
+  bitrig* | openbsd*)
     old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib"
     ;;
   *)
@@ -7998,7 +7994,7 @@ cygwin* | mingw* | pw32* | cegcc*)
   symcode='[ABCDGISTW]'
   ;;
 hpux*)
-  if test "$host_cpu" = ia64; then
+  if test ia64 = "$host_cpu"; then
     symcode='[ABCDEGRST]'
   fi
   ;;
@@ -8031,14 +8027,44 @@ case `$NM -V 2>&1` in
   symcode='[ABCDGIRSTW]' ;;
 esac
 
+if test "$lt_cv_nm_interface" = "MS dumpbin"; then
+  # Gets list of data symbols to import.
+  lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'"
+  # Adjust the below global symbol transforms to fixup imported variables.
+  lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'"
+  lt_c_name_hook=" -e 's/^I .* \(.*\)$/  {\"\1\", (void *) 0},/p'"
+  lt_c_name_lib_hook="\
+  -e 's/^I .* \(lib.*\)$/  {\"\1\", (void *) 0},/p'\
+  -e 's/^I .* \(.*\)$/  {\"lib\1\", (void *) 0},/p'"
+else
+  # Disable hooks by default.
+  lt_cv_sys_global_symbol_to_import=
+  lt_cdecl_hook=
+  lt_c_name_hook=
+  lt_c_name_lib_hook=
+fi
+
 # Transform an extracted symbol line into a proper C declaration.
 # Some systems (esp. on ia64) link data and code symbols differently,
 # so use this general approach.
-lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
+lt_cv_sys_global_symbol_to_cdecl="sed -n"\
+$lt_cdecl_hook\
+" -e 's/^T .* \(.*\)$/extern int \1();/p'"\
+" -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'"
 
 # Transform an extracted symbol line into symbol name and symbol address
-lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/  {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/  {\"\2\", (void *) \&\2},/p'"
-lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/  {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/  {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/  {\"lib\2\", (void *) \&\2},/p'"
+lt_cv_sys_global_symbol_to_c_name_address="sed -n"\
+$lt_c_name_hook\
+" -e 's/^: \(.*\) .*$/  {\"\1\", (void *) 0},/p'"\
+" -e 's/^$symcode$symcode* .* \(.*\)$/  {\"\1\", (void *) \&\1},/p'"
+
+# Transform an extracted symbol line into symbol name with lib prefix and
+# symbol address.
+lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\
+$lt_c_name_lib_hook\
+" -e 's/^: \(.*\) .*$/  {\"\1\", (void *) 0},/p'"\
+" -e 's/^$symcode$symcode* .* \(lib.*\)$/  {\"\1\", (void *) \&\1},/p'"\
+" -e 's/^$symcode$symcode* .* \(.*\)$/  {\"lib\1\", (void *) \&\1},/p'"
 
 # Handle CRLF in mingw tool chain
 opt_cr=
@@ -8056,21 +8082,24 @@ for ac_symprfx in "" "_"; do
 
   # Write the raw and C identifiers.
   if test "$lt_cv_nm_interface" = "MS dumpbin"; then
-    # Fake it for dumpbin and say T for any non-static function
-    # and D for any global variable.
+    # Fake it for dumpbin and say T for any non-static function,
+    # D for any global variable and I for any imported variable.
     # Also find C++ and __fastcall symbols from MSVC++,
     # which start with @ or ?.
     lt_cv_sys_global_symbol_pipe="$AWK '"\
 "     {last_section=section; section=\$ 3};"\
 "     /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\
 "     /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\
+"     /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\
+"     /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\
+"     /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\
 "     \$ 0!~/External *\|/{next};"\
 "     / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\
 "     {if(hide[section]) next};"\
-"     {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\
-"     {split(\$ 0, a, /\||\r/); split(a[2], s)};"\
-"     s[1]~/^[@?]/{print s[1], s[1]; next};"\
-"     s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\
+"     {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\
+"     {split(\$ 0,a,/\||\r/); split(a[2],s)};"\
+"     s[1]~/^[@?]/{print f,s[1],s[1]; next};"\
+"     s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\
 "     ' prfx=^$ac_symprfx"
   else
     lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[     ]\($symcode$symcode*\)[         ][      ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
@@ -8118,11 +8147,11 @@ _LT_EOF
        if $GREP ' nm_test_func$' "$nlist" >/dev/null; then
          cat <<_LT_EOF > conftest.$ac_ext
 /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */
-#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE)
-/* DATA imports from DLLs on WIN32 con't be const, because runtime
+#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE
+/* DATA imports from DLLs on WIN32 can't be const, because runtime
    relocations are performed -- see ld's documentation on pseudo-relocs.  */
 # define LT_DLSYM_CONST
-#elif defined(__osf__)
+#elif defined __osf__
 /* This system does not cope well with relocations in const data.  */
 # define LT_DLSYM_CONST
 #else
@@ -8148,7 +8177,7 @@ lt__PROGRAM__LTX_preloaded_symbols[] =
 {
   { "@PROGRAM@", (void *) 0 },
 _LT_EOF
-         $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/  {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext
+         $SED "s/^$symcode$symcode* .* \(.*\)$/  {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext
          cat <<\_LT_EOF >> conftest.$ac_ext
   {0, (void *) 0}
 };
@@ -8168,13 +8197,13 @@ _LT_EOF
          mv conftest.$ac_objext conftstm.$ac_objext
          lt_globsym_save_LIBS=$LIBS
          lt_globsym_save_CFLAGS=$CFLAGS
-         LIBS="conftstm.$ac_objext"
+         LIBS=conftstm.$ac_objext
          CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag"
          if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5
   (eval $ac_link) 2>&5
   ac_status=$?
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-  test $ac_status = 0; } && test -s conftest${ac_exeext}; then
+  test $ac_status = 0; } && test -s conftest$ac_exeext; then
            pipe_works=yes
          fi
          LIBS=$lt_globsym_save_LIBS
@@ -8195,7 +8224,7 @@ _LT_EOF
   rm -rf conftest* conftst*
 
   # Do not use the global_symbol_pipe unless it works.
-  if test "$pipe_works" = yes; then
+  if test yes = "$pipe_works"; then
     break
   else
     lt_cv_sys_global_symbol_pipe=
@@ -8248,6 +8277,16 @@ fi
 
 
 
+
+
+
+
+
+
+
+
+
+
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5
 $as_echo_n "checking for sysroot... " >&6; }
 
@@ -8260,9 +8299,9 @@ fi
 
 
 lt_sysroot=
-case ${with_sysroot} in #(
+case $with_sysroot in #(
  yes)
-   if test "$GCC" = yes; then
+   if test yes = "$GCC"; then
      lt_sysroot=`$CC --print-sysroot 2>/dev/null`
    fi
    ;; #(
@@ -8272,8 +8311,8 @@ case ${with_sysroot} in #(
  no|'')
    ;; #(
  *)
-   { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5
-$as_echo "${with_sysroot}" >&6; }
+   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_sysroot" >&5
+$as_echo "$with_sysroot" >&6; }
    as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5
    ;;
 esac
@@ -8285,18 +8324,99 @@ $as_echo "${lt_sysroot:-no}" >&6; }
 
 
 
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a working dd" >&5
+$as_echo_n "checking for a working dd... " >&6; }
+if ${ac_cv_path_lt_DD+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  printf 0123456789abcdef0123456789abcdef >conftest.i
+cat conftest.i conftest.i >conftest2.i
+: ${lt_DD:=$DD}
+if test -z "$lt_DD"; then
+  ac_path_lt_DD_found=false
+  # Loop through the user's path and test for each of PROGNAME-LIST
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_prog in dd; do
+    for ac_exec_ext in '' $ac_executable_extensions; do
+      ac_path_lt_DD="$as_dir/$ac_prog$ac_exec_ext"
+      as_fn_executable_p "$ac_path_lt_DD" || continue
+if "$ac_path_lt_DD" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then
+  cmp -s conftest.i conftest.out \
+  && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=:
+fi
+      $ac_path_lt_DD_found && break 3
+    done
+  done
+  done
+IFS=$as_save_IFS
+  if test -z "$ac_cv_path_lt_DD"; then
+    :
+  fi
+else
+  ac_cv_path_lt_DD=$lt_DD
+fi
+
+rm -f conftest.i conftest2.i conftest.out
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD" >&5
+$as_echo "$ac_cv_path_lt_DD" >&6; }
+
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes" >&5
+$as_echo_n "checking how to truncate binary pipes... " >&6; }
+if ${lt_cv_truncate_bin+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  printf 0123456789abcdef0123456789abcdef >conftest.i
+cat conftest.i conftest.i >conftest2.i
+lt_cv_truncate_bin=
+if "$ac_cv_path_lt_DD" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then
+  cmp -s conftest.i conftest.out \
+  && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1"
+fi
+rm -f conftest.i conftest2.i conftest.out
+test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin" >&5
+$as_echo "$lt_cv_truncate_bin" >&6; }
+
+
+
+
+
+
+
+# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.
+func_cc_basename ()
+{
+    for cc_temp in $*""; do
+      case $cc_temp in
+        compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
+        distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
+        \-*) ;;
+        *) break;;
+      esac
+    done
+    func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
+}
+
 # Check whether --enable-libtool-lock was given.
 if test "${enable_libtool_lock+set}" = set; then :
   enableval=$enable_libtool_lock;
 fi
 
-test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
+test no = "$enable_libtool_lock" || enable_libtool_lock=yes
 
 # Some flags need to be propagated to the compiler or linker for good
 # libtool support.
 case $host in
 ia64-*-hpux*)
-  # Find out which ABI we are using.
+  # Find out what ABI is being produced by ac_compile, and set mode
+  # options accordingly.
   echo 'int i;' > conftest.$ac_ext
   if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
   (eval $ac_compile) 2>&5
@@ -8305,24 +8425,25 @@ ia64-*-hpux*)
   test $ac_status = 0; }; then
     case `/usr/bin/file conftest.$ac_objext` in
       *ELF-32*)
-       HPUX_IA64_MODE="32"
+       HPUX_IA64_MODE=32
        ;;
       *ELF-64*)
-       HPUX_IA64_MODE="64"
+       HPUX_IA64_MODE=64
        ;;
     esac
   fi
   rm -rf conftest*
   ;;
 *-*-irix6*)
-  # Find out which ABI we are using.
+  # Find out what ABI is being produced by ac_compile, and set linker
+  # options accordingly.
   echo '#line '$LINENO' "configure"' > conftest.$ac_ext
   if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
   test $ac_status = 0; }; then
-    if test "$lt_cv_prog_gnu_ld" = yes; then
+    if test yes = "$lt_cv_prog_gnu_ld"; then
       case `/usr/bin/file conftest.$ac_objext` in
        *32-bit*)
          LD="${LD-ld} -melf32bsmip"
@@ -8351,9 +8472,50 @@ ia64-*-hpux*)
   rm -rf conftest*
   ;;
 
+mips64*-*linux*)
+  # Find out what ABI is being produced by ac_compile, and set linker
+  # options accordingly.
+  echo '#line '$LINENO' "configure"' > conftest.$ac_ext
+  if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
+  (eval $ac_compile) 2>&5
+  ac_status=$?
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; then
+    emul=elf
+    case `/usr/bin/file conftest.$ac_objext` in
+      *32-bit*)
+       emul="${emul}32"
+       ;;
+      *64-bit*)
+       emul="${emul}64"
+       ;;
+    esac
+    case `/usr/bin/file conftest.$ac_objext` in
+      *MSB*)
+       emul="${emul}btsmip"
+       ;;
+      *LSB*)
+       emul="${emul}ltsmip"
+       ;;
+    esac
+    case `/usr/bin/file conftest.$ac_objext` in
+      *N32*)
+       emul="${emul}n32"
+       ;;
+    esac
+    LD="${LD-ld} -m $emul"
+  fi
+  rm -rf conftest*
+  ;;
+
 x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \
 s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
-  # Find out which ABI we are using.
+  # Find out what ABI is being produced by ac_compile, and set linker
+  # options accordingly.  Note that the listed cases only cover the
+  # situations where additional linker options are needed (such as when
+  # doing 32-bit compilation for a host where ld defaults to 64-bit, or
+  # vice versa); the common cases where no linker options are needed do
+  # not appear in the list.
   echo 'int i;' > conftest.$ac_ext
   if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
   (eval $ac_compile) 2>&5
@@ -8376,10 +8538,10 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
                ;;
            esac
            ;;
-         powerpc64le-*)
+         powerpc64le-*linux*)
            LD="${LD-ld} -m elf32lppclinux"
            ;;
-         powerpc64-*)
+         powerpc64-*linux*)
            LD="${LD-ld} -m elf32ppclinux"
            ;;
          s390x-*linux*)
@@ -8398,10 +8560,10 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
          x86_64-*linux*)
            LD="${LD-ld} -m elf_x86_64"
            ;;
-         powerpcle-*)
+         powerpcle-*linux*)
            LD="${LD-ld} -m elf64lppc"
            ;;
-         powerpc-*)
+         powerpc-*linux*)
            LD="${LD-ld} -m elf64ppc"
            ;;
          s390*-*linux*|s390*-*tpf*)
@@ -8419,7 +8581,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
 
 *-*-sco3.2v5*)
   # On SCO OpenServer 5, we need -belf to get full-featured binaries.
-  SAVE_CFLAGS="$CFLAGS"
+  SAVE_CFLAGS=$CFLAGS
   CFLAGS="$CFLAGS -belf"
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5
 $as_echo_n "checking whether the C compiler needs -belf... " >&6; }
@@ -8459,13 +8621,14 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5
 $as_echo "$lt_cv_cc_needs_belf" >&6; }
-  if test x"$lt_cv_cc_needs_belf" != x"yes"; then
+  if test yes != "$lt_cv_cc_needs_belf"; then
     # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
-    CFLAGS="$SAVE_CFLAGS"
+    CFLAGS=$SAVE_CFLAGS
   fi
   ;;
 *-*solaris*)
-  # Find out which ABI we are using.
+  # Find out what ABI is being produced by ac_compile, and set linker
+  # options accordingly.
   echo 'int i;' > conftest.$ac_ext
   if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
   (eval $ac_compile) 2>&5
@@ -8477,7 +8640,7 @@ $as_echo "$lt_cv_cc_needs_belf" >&6; }
       case $lt_cv_prog_gnu_ld in
       yes*)
         case $host in
-        i?86-*-solaris*)
+        i?86-*-solaris*|x86_64-*-solaris*)
           LD="${LD-ld} -m elf_x86_64"
           ;;
         sparc*-*-solaris*)
@@ -8486,7 +8649,7 @@ $as_echo "$lt_cv_cc_needs_belf" >&6; }
         esac
         # GNU ld 2.21 introduced _sol2 emulations.  Use them if available.
         if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then
-          LD="${LD-ld}_sol2"
+          LD=${LD-ld}_sol2
         fi
         ;;
       *)
@@ -8502,7 +8665,7 @@ $as_echo "$lt_cv_cc_needs_belf" >&6; }
   ;;
 esac
 
-need_locks="$enable_libtool_lock"
+need_locks=$enable_libtool_lock
 
 if test -n "$ac_tool_prefix"; then
   # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args.
@@ -8613,7 +8776,7 @@ else
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5
 $as_echo "$lt_cv_path_mainfest_tool" >&6; }
-if test "x$lt_cv_path_mainfest_tool" != xyes; then
+if test yes != "$lt_cv_path_mainfest_tool"; then
   MANIFEST_TOOL=:
 fi
 
@@ -9116,7 +9279,7 @@ if ${lt_cv_apple_cc_single_mod+:} false; then :
   $as_echo_n "(cached) " >&6
 else
   lt_cv_apple_cc_single_mod=no
-      if test -z "${LT_MULTI_MODULE}"; then
+      if test -z "$LT_MULTI_MODULE"; then
        # By default we will add the -single_module flag. You can override
        # by either setting the environment variable LT_MULTI_MODULE
        # non-empty at configure time, or by adding -multi_module to the
@@ -9134,7 +9297,7 @@ else
          cat conftest.err >&5
        # Otherwise, if the output was created with a 0 exit code from
        # the compiler, it worked.
-       elif test -f libconftest.dylib && test $_lt_result -eq 0; then
+       elif test -f libconftest.dylib && test 0 = "$_lt_result"; then
          lt_cv_apple_cc_single_mod=yes
        else
          cat conftest.err >&5
@@ -9173,7 +9336,7 @@ else
 fi
 rm -f core conftest.err conftest.$ac_objext \
     conftest$ac_exeext conftest.$ac_ext
-       LDFLAGS="$save_LDFLAGS"
+       LDFLAGS=$save_LDFLAGS
 
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5
@@ -9202,7 +9365,7 @@ _LT_EOF
       _lt_result=$?
       if test -s conftest.err && $GREP force_load conftest.err; then
        cat conftest.err >&5
-      elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then
+      elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then
        lt_cv_ld_force_load=yes
       else
        cat conftest.err >&5
@@ -9215,32 +9378,32 @@ fi
 $as_echo "$lt_cv_ld_force_load" >&6; }
     case $host_os in
     rhapsody* | darwin1.[012])
-      _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;
+      _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;;
     darwin1.*)
-      _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
+      _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;
     darwin*) # darwin 5.x on
       # if running on 10.5 or later, the deployment target defaults
       # to the OS version, if on x86, and 10.4, the deployment
       # target defaults to 10.4. Don't you love it?
       case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
        10.0,*86*-darwin8*|10.0,*-darwin[91]*)
-         _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
-       10.[012]*)
-         _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
+         _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;
+       10.[012][,.]*)
+         _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;
        10.*)
-         _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
+         _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;
       esac
     ;;
   esac
-    if test "$lt_cv_apple_cc_single_mod" = "yes"; then
+    if test yes = "$lt_cv_apple_cc_single_mod"; then
       _lt_dar_single_mod='$single_module'
     fi
-    if test "$lt_cv_ld_exported_symbols_list" = "yes"; then
-      _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
+    if test yes = "$lt_cv_ld_exported_symbols_list"; then
+      _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym'
     else
-      _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}'
+      _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib'
     fi
-    if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then
+    if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then
       _lt_dsymutil='~$DSYMUTIL $lib || :'
     else
       _lt_dsymutil=
@@ -9248,6 +9411,41 @@ $as_echo "$lt_cv_ld_force_load" >&6; }
     ;;
   esac
 
+# func_munge_path_list VARIABLE PATH
+# -----------------------------------
+# VARIABLE is name of variable containing _space_ separated list of
+# directories to be munged by the contents of PATH, which is string
+# having a format:
+# "DIR[:DIR]:"
+#       string "DIR[ DIR]" will be prepended to VARIABLE
+# ":DIR[:DIR]"
+#       string "DIR[ DIR]" will be appended to VARIABLE
+# "DIRP[:DIRP]::[DIRA:]DIRA"
+#       string "DIRP[ DIRP]" will be prepended to VARIABLE and string
+#       "DIRA[ DIRA]" will be appended to VARIABLE
+# "DIR[:DIR]"
+#       VARIABLE will be replaced by "DIR[ DIR]"
+func_munge_path_list ()
+{
+    case x$2 in
+    x)
+        ;;
+    *:)
+        eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\"
+        ;;
+    x:*)
+        eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\"
+        ;;
+    *::*)
+        eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\"
+        eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\"
+        ;;
+    *)
+        eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\"
+        ;;
+    esac
+}
+
 for ac_header in dlfcn.h
 do :
   ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default
@@ -9275,14 +9473,14 @@ if test "${enable_static+set}" = set; then :
     *)
      enable_static=no
       # Look at the argument we got.  We use all the common list separators.
-      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
+      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
       for pkg in $enableval; do
-       IFS="$lt_save_ifs"
+       IFS=$lt_save_ifs
        if test "X$pkg" = "X$p"; then
          enable_static=yes
        fi
       done
-      IFS="$lt_save_ifs"
+      IFS=$lt_save_ifs
       ;;
     esac
 else
@@ -9313,14 +9511,14 @@ if test "${enable_shared+set}" = set; then :
     *)
       enable_shared=no
       # Look at the argument we got.  We use all the common list separators.
-      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
+      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
       for pkg in $enableval; do
-       IFS="$lt_save_ifs"
+       IFS=$lt_save_ifs
        if test "X$pkg" = "X$p"; then
          enable_shared=yes
        fi
       done
-      IFS="$lt_save_ifs"
+      IFS=$lt_save_ifs
       ;;
     esac
 else
@@ -9345,14 +9543,14 @@ if test "${with_pic+set}" = set; then :
     *)
       pic_mode=default
       # Look at the argument we got.  We use all the common list separators.
-      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
+      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
       for lt_pkg in $withval; do
-       IFS="$lt_save_ifs"
+       IFS=$lt_save_ifs
        if test "X$lt_pkg" = "X$lt_p"; then
          pic_mode=yes
        fi
       done
-      IFS="$lt_save_ifs"
+      IFS=$lt_save_ifs
       ;;
     esac
 else
@@ -9360,8 +9558,6 @@ else
 fi
 
 
-test -z "$pic_mode" && pic_mode=default
-
 
 
 
@@ -9377,14 +9573,14 @@ if test "${enable_fast_install+set}" = set; then :
     *)
       enable_fast_install=no
       # Look at the argument we got.  We use all the common list separators.
-      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
+      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
       for pkg in $enableval; do
-       IFS="$lt_save_ifs"
+       IFS=$lt_save_ifs
        if test "X$pkg" = "X$p"; then
          enable_fast_install=yes
        fi
       done
-      IFS="$lt_save_ifs"
+      IFS=$lt_save_ifs
       ;;
     esac
 else
@@ -9398,11 +9594,63 @@ fi
 
 
 
+  shared_archive_member_spec=
+case $host,$enable_shared in
+power*-*-aix[5-9]*,yes)
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide" >&5
+$as_echo_n "checking which variant of shared library versioning to provide... " >&6; }
+
+# Check whether --with-aix-soname was given.
+if test "${with_aix_soname+set}" = set; then :
+  withval=$with_aix_soname; case $withval in
+    aix|svr4|both)
+      ;;
+    *)
+      as_fn_error $? "Unknown argument to --with-aix-soname" "$LINENO" 5
+      ;;
+    esac
+    lt_cv_with_aix_soname=$with_aix_soname
+else
+  if ${lt_cv_with_aix_soname+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  lt_cv_with_aix_soname=aix
+fi
+
+    with_aix_soname=$lt_cv_with_aix_soname
+fi
+
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_aix_soname" >&5
+$as_echo "$with_aix_soname" >&6; }
+  if test aix != "$with_aix_soname"; then
+    # For the AIX way of multilib, we name the shared archive member
+    # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o',
+    # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File.
+    # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag,
+    # the AIX toolchain works better with OBJECT_MODE set (default 32).
+    if test 64 = "${OBJECT_MODE-32}"; then
+      shared_archive_member_spec=shr_64
+    else
+      shared_archive_member_spec=shr
+    fi
+  fi
+  ;;
+*)
+  with_aix_soname=aix
+  ;;
+esac
+
+
+
+
+
+
+
 
 
 
 # This can be used to rebuild libtool when needed
-LIBTOOL_DEPS="$ltmain"
+LIBTOOL_DEPS=$ltmain
 
 # Always use our own libtool.
 LIBTOOL='$(SHELL) $(top_builddir)/libtool'
@@ -9451,7 +9699,7 @@ test -z "$LN_S" && LN_S="ln -s"
 
 
 
-if test -n "${ZSH_VERSION+set}" ; then
+if test -n "${ZSH_VERSION+set}"; then
    setopt NO_GLOB_SUBST
 fi
 
@@ -9490,7 +9738,7 @@ aix3*)
   # AIX sometimes has problems with the GCC collect2 program.  For some
   # reason, if we set the COLLECT_NAMES environment variable, the problems
   # vanish in a puff of smoke.
-  if test "X${COLLECT_NAMES+set}" != Xset; then
+  if test set != "${COLLECT_NAMES+set}"; then
     COLLECT_NAMES=
     export COLLECT_NAMES
   fi
@@ -9501,14 +9749,14 @@ esac
 ofile=libtool
 can_build_shared=yes
 
-# All known linkers require a `.a' archive for static linking (except MSVC,
+# All known linkers require a '.a' archive for static linking (except MSVC,
 # which needs '.lib').
 libext=a
 
-with_gnu_ld="$lt_cv_prog_gnu_ld"
+with_gnu_ld=$lt_cv_prog_gnu_ld
 
-old_CC="$CC"
-old_CFLAGS="$CFLAGS"
+old_CC=$CC
+old_CFLAGS=$CFLAGS
 
 # Set sane defaults for various variables
 test -z "$CC" && CC=cc
@@ -9517,15 +9765,8 @@ test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS
 test -z "$LD" && LD=ld
 test -z "$ac_objext" && ac_objext=o
 
-for cc_temp in $compiler""; do
-  case $cc_temp in
-    compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
-    distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
-    \-*) ;;
-    *) break;;
-  esac
-done
-cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
+func_cc_basename $compiler
+cc_basename=$func_cc_basename_result
 
 
 # Only perform the check for file, if the check method requires it
@@ -9540,22 +9781,22 @@ if ${lt_cv_path_MAGIC_CMD+:} false; then :
 else
   case $MAGIC_CMD in
 [\\/*] |  ?:[\\/]*)
-  lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
+  lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.
   ;;
 *)
-  lt_save_MAGIC_CMD="$MAGIC_CMD"
-  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
+  lt_save_MAGIC_CMD=$MAGIC_CMD
+  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
   ac_dummy="/usr/bin$PATH_SEPARATOR$PATH"
   for ac_dir in $ac_dummy; do
-    IFS="$lt_save_ifs"
+    IFS=$lt_save_ifs
     test -z "$ac_dir" && ac_dir=.
-    if test -f $ac_dir/${ac_tool_prefix}file; then
-      lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file"
+    if test -f "$ac_dir/${ac_tool_prefix}file"; then
+      lt_cv_path_MAGIC_CMD=$ac_dir/"${ac_tool_prefix}file"
       if test -n "$file_magic_test_file"; then
        case $deplibs_check_method in
        "file_magic "*)
          file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
-         MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
+         MAGIC_CMD=$lt_cv_path_MAGIC_CMD
          if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
            $EGREP "$file_magic_regex" > /dev/null; then
            :
@@ -9578,13 +9819,13 @@ _LT_EOF
       break
     fi
   done
-  IFS="$lt_save_ifs"
-  MAGIC_CMD="$lt_save_MAGIC_CMD"
+  IFS=$lt_save_ifs
+  MAGIC_CMD=$lt_save_MAGIC_CMD
   ;;
 esac
 fi
 
-MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
+MAGIC_CMD=$lt_cv_path_MAGIC_CMD
 if test -n "$MAGIC_CMD"; then
   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5
 $as_echo "$MAGIC_CMD" >&6; }
@@ -9606,22 +9847,22 @@ if ${lt_cv_path_MAGIC_CMD+:} false; then :
 else
   case $MAGIC_CMD in
 [\\/*] |  ?:[\\/]*)
-  lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
+  lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.
   ;;
 *)
-  lt_save_MAGIC_CMD="$MAGIC_CMD"
-  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
+  lt_save_MAGIC_CMD=$MAGIC_CMD
+  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
   ac_dummy="/usr/bin$PATH_SEPARATOR$PATH"
   for ac_dir in $ac_dummy; do
-    IFS="$lt_save_ifs"
+    IFS=$lt_save_ifs
     test -z "$ac_dir" && ac_dir=.
-    if test -f $ac_dir/file; then
-      lt_cv_path_MAGIC_CMD="$ac_dir/file"
+    if test -f "$ac_dir/file"; then
+      lt_cv_path_MAGIC_CMD=$ac_dir/"file"
       if test -n "$file_magic_test_file"; then
        case $deplibs_check_method in
        "file_magic "*)
          file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
-         MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
+         MAGIC_CMD=$lt_cv_path_MAGIC_CMD
          if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
            $EGREP "$file_magic_regex" > /dev/null; then
            :
@@ -9644,13 +9885,13 @@ _LT_EOF
       break
     fi
   done
-  IFS="$lt_save_ifs"
-  MAGIC_CMD="$lt_save_MAGIC_CMD"
+  IFS=$lt_save_ifs
+  MAGIC_CMD=$lt_save_MAGIC_CMD
   ;;
 esac
 fi
 
-MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
+MAGIC_CMD=$lt_cv_path_MAGIC_CMD
 if test -n "$MAGIC_CMD"; then
   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5
 $as_echo "$MAGIC_CMD" >&6; }
@@ -9671,7 +9912,7 @@ esac
 
 # Use C for the default configuration in the libtool script
 
-lt_save_CC="$CC"
+lt_save_CC=$CC
 ac_ext=c
 ac_cpp='$CPP $CPPFLAGS'
 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
@@ -9733,7 +9974,7 @@ if test -n "$compiler"; then
 
 lt_prog_compiler_no_builtin_flag=
 
-if test "$GCC" = yes; then
+if test yes = "$GCC"; then
   case $cc_basename in
   nvcc*)
     lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;;
@@ -9749,7 +9990,7 @@ else
   lt_cv_prog_compiler_rtti_exceptions=no
    ac_outfile=conftest.$ac_objext
    echo "$lt_simple_compile_test_code" > conftest.$ac_ext
-   lt_compiler_flag="-fno-rtti -fno-exceptions"
+   lt_compiler_flag="-fno-rtti -fno-exceptions"  ## exclude from sc_useless_quotes_in_assignment
    # Insert the option either (1) after the last *FLAGS variable, or
    # (2) before a word containing "conftest.", or (3) at the end.
    # Note that $ac_compile itself does not contain backslashes and begins
@@ -9779,7 +10020,7 @@ fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5
 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; }
 
-if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then
+if test yes = "$lt_cv_prog_compiler_rtti_exceptions"; then
     lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions"
 else
     :
@@ -9797,17 +10038,18 @@ lt_prog_compiler_pic=
 lt_prog_compiler_static=
 
 
-  if test "$GCC" = yes; then
+  if test yes = "$GCC"; then
     lt_prog_compiler_wl='-Wl,'
     lt_prog_compiler_static='-static'
 
     case $host_os in
       aix*)
       # All AIX code is PIC.
-      if test "$host_cpu" = ia64; then
+      if test ia64 = "$host_cpu"; then
        # AIX 5 now supports IA64 processor
        lt_prog_compiler_static='-Bstatic'
       fi
+      lt_prog_compiler_pic='-fPIC'
       ;;
 
     amigaos*)
@@ -9818,8 +10060,8 @@ lt_prog_compiler_static=
         ;;
       m68k)
             # FIXME: we need at least 68020 code to build shared libraries, but
-            # adding the `-m68020' flag to GCC prevents building anything better,
-            # like `-m68040'.
+            # adding the '-m68020' flag to GCC prevents building anything better,
+            # like '-m68040'.
             lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4'
         ;;
       esac
@@ -9835,6 +10077,11 @@ lt_prog_compiler_static=
       # Although the cygwin gcc ignores -fPIC, still need this for old-style
       # (--disable-auto-import) libraries
       lt_prog_compiler_pic='-DDLL_EXPORT'
+      case $host_os in
+      os2*)
+       lt_prog_compiler_static='$wl-static'
+       ;;
+      esac
       ;;
 
     darwin* | rhapsody*)
@@ -9905,7 +10152,7 @@ lt_prog_compiler_static=
     case $host_os in
     aix*)
       lt_prog_compiler_wl='-Wl,'
-      if test "$host_cpu" = ia64; then
+      if test ia64 = "$host_cpu"; then
        # AIX 5 now supports IA64 processor
        lt_prog_compiler_static='-Bstatic'
       else
@@ -9913,10 +10160,29 @@ lt_prog_compiler_static=
       fi
       ;;
 
+    darwin* | rhapsody*)
+      # PIC is the default on this platform
+      # Common symbols not allowed in MH_DYLIB files
+      lt_prog_compiler_pic='-fno-common'
+      case $cc_basename in
+      nagfor*)
+        # NAG Fortran compiler
+        lt_prog_compiler_wl='-Wl,-Wl,,'
+        lt_prog_compiler_pic='-PIC'
+        lt_prog_compiler_static='-Bstatic'
+        ;;
+      esac
+      ;;
+
     mingw* | cygwin* | pw32* | os2* | cegcc*)
       # This hack is so that the source file can tell whether it is being
       # built for inclusion in a dll (and should export symbols for example).
       lt_prog_compiler_pic='-DDLL_EXPORT'
+      case $host_os in
+      os2*)
+       lt_prog_compiler_static='$wl-static'
+       ;;
+      esac
       ;;
 
     hpux9* | hpux10* | hpux11*)
@@ -9932,7 +10198,7 @@ lt_prog_compiler_static=
        ;;
       esac
       # Is there a better lt_prog_compiler_static that works with the bundled CC?
-      lt_prog_compiler_static='${wl}-a ${wl}archive'
+      lt_prog_compiler_static='$wl-a ${wl}archive'
       ;;
 
     irix5* | irix6* | nonstopux*)
@@ -9943,7 +10209,7 @@ lt_prog_compiler_static=
 
     linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
       case $cc_basename in
-      # old Intel for x86_64 which still supported -KPIC.
+      # old Intel for x86_64, which still supported -KPIC.
       ecc*)
        lt_prog_compiler_wl='-Wl,'
        lt_prog_compiler_pic='-KPIC'
@@ -9968,6 +10234,12 @@ lt_prog_compiler_static=
        lt_prog_compiler_pic='-PIC'
        lt_prog_compiler_static='-Bstatic'
        ;;
+      tcc*)
+       # Fabrice Bellard et al's Tiny C Compiler
+       lt_prog_compiler_wl='-Wl,'
+       lt_prog_compiler_pic='-fPIC'
+       lt_prog_compiler_static='-static'
+       ;;
       pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
         # Portland Group compilers (*not* the Pentium gcc compiler,
        # which looks to be a dead project)
@@ -10065,7 +10337,7 @@ lt_prog_compiler_static=
       ;;
 
     sysv4*MP*)
-      if test -d /usr/nec ;then
+      if test -d /usr/necthen
        lt_prog_compiler_pic='-Kconform_pic'
        lt_prog_compiler_static='-Bstatic'
       fi
@@ -10094,7 +10366,7 @@ lt_prog_compiler_static=
   fi
 
 case $host_os in
-  # For platforms which do not support PIC, -DPIC is meaningless:
+  # For platforms that do not support PIC, -DPIC is meaningless:
   *djgpp*)
     lt_prog_compiler_pic=
     ;;
@@ -10126,7 +10398,7 @@ else
   lt_cv_prog_compiler_pic_works=no
    ac_outfile=conftest.$ac_objext
    echo "$lt_simple_compile_test_code" > conftest.$ac_ext
-   lt_compiler_flag="$lt_prog_compiler_pic -DPIC"
+   lt_compiler_flag="$lt_prog_compiler_pic -DPIC"  ## exclude from sc_useless_quotes_in_assignment
    # Insert the option either (1) after the last *FLAGS variable, or
    # (2) before a word containing "conftest.", or (3) at the end.
    # Note that $ac_compile itself does not contain backslashes and begins
@@ -10156,7 +10428,7 @@ fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5
 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; }
 
-if test x"$lt_cv_prog_compiler_pic_works" = xyes; then
+if test yes = "$lt_cv_prog_compiler_pic_works"; then
     case $lt_prog_compiler_pic in
      "" | " "*) ;;
      *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;;
@@ -10188,7 +10460,7 @@ if ${lt_cv_prog_compiler_static_works+:} false; then :
   $as_echo_n "(cached) " >&6
 else
   lt_cv_prog_compiler_static_works=no
-   save_LDFLAGS="$LDFLAGS"
+   save_LDFLAGS=$LDFLAGS
    LDFLAGS="$LDFLAGS $lt_tmp_static_flag"
    echo "$lt_simple_link_test_code" > conftest.$ac_ext
    if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
@@ -10207,13 +10479,13 @@ else
      fi
    fi
    $RM -r conftest*
-   LDFLAGS="$save_LDFLAGS"
+   LDFLAGS=$save_LDFLAGS
 
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5
 $as_echo "$lt_cv_prog_compiler_static_works" >&6; }
 
-if test x"$lt_cv_prog_compiler_static_works" = xyes; then
+if test yes = "$lt_cv_prog_compiler_static_works"; then
     :
 else
     lt_prog_compiler_static=
@@ -10333,8 +10605,8 @@ $as_echo "$lt_cv_prog_compiler_c_o" >&6; }
 
 
 
-hard_links="nottested"
-if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then
+hard_links=nottested
+if test no = "$lt_cv_prog_compiler_c_o" && test no != "$need_locks"; then
   # do not overwrite the value of need_locks provided by the user
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5
 $as_echo_n "checking if we can lock with hard links... " >&6; }
@@ -10346,9 +10618,9 @@ $as_echo_n "checking if we can lock with hard links... " >&6; }
   ln conftest.a conftest.b 2>/dev/null && hard_links=no
   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5
 $as_echo "$hard_links" >&6; }
-  if test "$hard_links" = no; then
-    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
-$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
+  if test no = "$hard_links"; then
+    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5
+$as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;}
     need_locks=warn
   fi
 else
@@ -10391,9 +10663,9 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie
   # included in the symbol list
   include_expsyms=
   # exclude_expsyms can be an extended regexp of symbols to exclude
-  # it will be wrapped by ` (' and `)$', so one must not match beginning or
-  # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
-  # as well as any symbol that contains `d'.
+  # it will be wrapped by ' (' and ')$', so one must not match beginning or
+  # end of line.  Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc',
+  # as well as any symbol that contains 'd'.
   exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
   # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
   # platforms (ab)use it in PIC code, but their linkers get confused if
@@ -10408,7 +10680,7 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie
     # FIXME: the MSVC++ port hasn't been tested in a loooong time
     # When not using gcc, we currently assume that we are using
     # Microsoft Visual C++.
-    if test "$GCC" != yes; then
+    if test yes != "$GCC"; then
       with_gnu_ld=no
     fi
     ;;
@@ -10416,7 +10688,7 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie
     # we just hope/assume this is gcc and not c89 (= MSVC++)
     with_gnu_ld=yes
     ;;
-  openbsd*)
+  openbsd* | bitrig*)
     with_gnu_ld=no
     ;;
   linux* | k*bsd*-gnu | gnu*)
@@ -10429,7 +10701,7 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie
   # On some targets, GNU ld is compatible enough with the native linker
   # that we're better off using the native interface for both.
   lt_use_gnu_ld_interface=no
-  if test "$with_gnu_ld" = yes; then
+  if test yes = "$with_gnu_ld"; then
     case $host_os in
       aix*)
        # The AIX port of GNU ld has always aspired to compatibility
@@ -10451,24 +10723,24 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie
     esac
   fi
 
-  if test "$lt_use_gnu_ld_interface" = yes; then
+  if test yes = "$lt_use_gnu_ld_interface"; then
     # If archive_cmds runs LD, not CC, wlarc should be empty
-    wlarc='${wl}'
+    wlarc='$wl'
 
     # Set some defaults for GNU ld with shared library support. These
     # are reset later if shared libraries are not supported. Putting them
     # here allows them to be overridden if necessary.
     runpath_var=LD_RUN_PATH
-    hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
-    export_dynamic_flag_spec='${wl}--export-dynamic'
+    hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'
+    export_dynamic_flag_spec='$wl--export-dynamic'
     # ancient GNU ld didn't support --whole-archive et. al.
     if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then
-      whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
+      whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'
     else
       whole_archive_flag_spec=
     fi
     supports_anon_versioning=no
-    case `$LD -v 2>&1` in
+    case `$LD -v | $SED -e 's/(^)\+)\s\+//' 2>&1` in
       *GNU\ gold*) supports_anon_versioning=yes ;;
       *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11
       *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
@@ -10481,7 +10753,7 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie
     case $host_os in
     aix[3-9]*)
       # On AIX/PPC, the GNU linker is very broken
-      if test "$host_cpu" != ia64; then
+      if test ia64 != "$host_cpu"; then
        ld_shlibs=no
        cat <<_LT_EOF 1>&2
 
@@ -10500,7 +10772,7 @@ _LT_EOF
       case $host_cpu in
       powerpc)
             # see comment about AmigaOS4 .so support
-            archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+            archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
             archive_expsym_cmds=''
         ;;
       m68k)
@@ -10516,7 +10788,7 @@ _LT_EOF
        allow_undefined_flag=unsupported
        # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
        # support --undefined.  This deserves some investigation.  FIXME
-       archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+       archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
       else
        ld_shlibs=no
       fi
@@ -10526,7 +10798,7 @@ _LT_EOF
       # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless,
       # as there is no search path for DLLs.
       hardcode_libdir_flag_spec='-L$libdir'
-      export_dynamic_flag_spec='${wl}--export-all-symbols'
+      export_dynamic_flag_spec='$wl--export-all-symbols'
       allow_undefined_flag=unsupported
       always_export_symbols=no
       enable_shared_with_static_runtimes=yes
@@ -10534,61 +10806,89 @@ _LT_EOF
       exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'
 
       if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
-        archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
-       # If the export-symbols file already is a .def file (1st line
-       # is EXPORTS), use it as is; otherwise, prepend...
-       archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
-         cp $export_symbols $output_objdir/$soname.def;
-       else
-         echo EXPORTS > $output_objdir/$soname.def;
-         cat $export_symbols >> $output_objdir/$soname.def;
-       fi~
-       $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
+        archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
+       # If the export-symbols file already is a .def file, use it as
+       # is; otherwise, prepend EXPORTS...
+       archive_expsym_cmds='if   test DEF = "`$SED -n     -e '\''s/^[   ]*//'\''     -e '\''/^\(;.*\)*$/d'\''     -e '\''s/^\(EXPORTS\|LIBRARY\)\([     ].*\)*$/DEF/p'\''     -e q     $export_symbols`" ; then
+          cp $export_symbols $output_objdir/$soname.def;
+        else
+          echo EXPORTS > $output_objdir/$soname.def;
+          cat $export_symbols >> $output_objdir/$soname.def;
+        fi~
+        $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
       else
        ld_shlibs=no
       fi
       ;;
 
     haiku*)
-      archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+      archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
       link_all_deplibs=yes
       ;;
 
+    os2*)
+      hardcode_libdir_flag_spec='-L$libdir'
+      hardcode_minus_L=yes
+      allow_undefined_flag=unsupported
+      shrext_cmds=.dll
+      archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
+       $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
+       $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
+       $ECHO EXPORTS >> $output_objdir/$libname.def~
+       emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~
+       $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~
+       emximp -o $lib $output_objdir/$libname.def'
+      archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
+       $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
+       $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
+       $ECHO EXPORTS >> $output_objdir/$libname.def~
+       prefix_cmds="$SED"~
+       if test EXPORTS = "`$SED 1q $export_symbols`"; then
+         prefix_cmds="$prefix_cmds -e 1d";
+       fi~
+       prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~
+       cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~
+       $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~
+       emximp -o $lib $output_objdir/$libname.def'
+      old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'
+      enable_shared_with_static_runtimes=yes
+      ;;
+
     interix[3-9]*)
       hardcode_direct=no
       hardcode_shlibpath_var=no
-      hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
-      export_dynamic_flag_spec='${wl}-E'
+      hardcode_libdir_flag_spec='$wl-rpath,$libdir'
+      export_dynamic_flag_spec='$wl-E'
       # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
       # Instead, shared libraries are loaded at an image base (0x10000000 by
       # default) and relocated if they conflict, which is a slow very memory
       # consuming and fragmenting process.  To avoid this, we pick a random,
       # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
       # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
-      archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
-      archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
+      archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
+      archive_expsym_cmds='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
       ;;
 
     gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
       tmp_diet=no
-      if test "$host_os" = linux-dietlibc; then
+      if test linux-dietlibc = "$host_os"; then
        case $cc_basename in
          diet\ *) tmp_diet=yes;;       # linux-dietlibc with static linking (!diet-dyn)
        esac
       fi
       if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \
-        && test "$tmp_diet" = no
+        && test no = "$tmp_diet"
       then
        tmp_addflag=' $pic_flag'
        tmp_sharedflag='-shared'
        case $cc_basename,$host_cpu in
         pgcc*)                         # Portland Group C compiler
-         whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+         whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
          tmp_addflag=' $pic_flag'
          ;;
        pgf77* | pgf90* | pgf95* | pgfortran*)
                                        # Portland Group f77 and f90 compilers
-         whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+         whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
          tmp_addflag=' $pic_flag -Mnomain' ;;
        ecc*,ia64* | icc*,ia64*)        # Intel C compiler on ia64
          tmp_addflag=' -i_dynamic' ;;
@@ -10599,42 +10899,47 @@ _LT_EOF
        lf95*)                          # Lahey Fortran 8.1
          whole_archive_flag_spec=
          tmp_sharedflag='--shared' ;;
+        nagfor*)                        # NAGFOR 5.3
+          tmp_sharedflag='-Wl,-shared' ;;
        xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below)
          tmp_sharedflag='-qmkshrobj'
          tmp_addflag= ;;
        nvcc*)  # Cuda Compiler Driver 2.2
-         whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+         whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
          compiler_needs_object=yes
          ;;
        esac
        case `$CC -V 2>&1 | sed 5q` in
        *Sun\ C*)                       # Sun C 5.9
-         whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+         whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
          compiler_needs_object=yes
          tmp_sharedflag='-G' ;;
        *Sun\ F*)                       # Sun Fortran 8.3
          tmp_sharedflag='-G' ;;
        esac
-       archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+       archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
 
-        if test "x$supports_anon_versioning" = xyes; then
+        if test yes = "$supports_anon_versioning"; then
           archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
-           cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
-           echo "local: *; };" >> $output_objdir/$libname.ver~
-           $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
+            cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
+            echo "local: *; };" >> $output_objdir/$libname.ver~
+            $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'
         fi
 
        case $cc_basename in
+       tcc*)
+         export_dynamic_flag_spec='-rdynamic'
+         ;;
        xlf* | bgf* | bgxlf* | mpixlf*)
          # IBM XL Fortran 10.1 on PPC cannot create shared libs itself
          whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive'
-         hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+         hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'
          archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'
-         if test "x$supports_anon_versioning" = xyes; then
+         if test yes = "$supports_anon_versioning"; then
            archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
-             cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
-             echo "local: *; };" >> $output_objdir/$libname.ver~
-             $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'
+              cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
+              echo "local: *; };" >> $output_objdir/$libname.ver~
+              $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'
          fi
          ;;
        esac
@@ -10648,8 +10953,8 @@ _LT_EOF
        archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
        wlarc=
       else
-       archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-       archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+       archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+       archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
       fi
       ;;
 
@@ -10667,8 +10972,8 @@ _LT_EOF
 
 _LT_EOF
       elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
-       archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-       archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+       archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+       archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
       else
        ld_shlibs=no
       fi
@@ -10680,7 +10985,7 @@ _LT_EOF
        ld_shlibs=no
        cat <<_LT_EOF 1>&2
 
-*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
+*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot
 *** reliably create shared libraries on SCO systems.  Therefore, libtool
 *** is disabling shared libraries support.  We urge you to upgrade GNU
 *** binutils to release 2.16.91.0.3 or newer.  Another option is to modify
@@ -10695,9 +11000,9 @@ _LT_EOF
          # DT_RUNPATH tag from executables and libraries.  But doing so
          # requires that you compile everything twice, which is a pain.
          if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
-           hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
-           archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-           archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+           hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'
+           archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+           archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
          else
            ld_shlibs=no
          fi
@@ -10714,15 +11019,15 @@ _LT_EOF
 
     *)
       if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
-       archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-       archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+       archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+       archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
       else
        ld_shlibs=no
       fi
       ;;
     esac
 
-    if test "$ld_shlibs" = no; then
+    if test no = "$ld_shlibs"; then
       runpath_var=
       hardcode_libdir_flag_spec=
       export_dynamic_flag_spec=
@@ -10738,7 +11043,7 @@ _LT_EOF
       # Note: this linker hardcodes the directories in LIBPATH if there
       # are no directories specified by -L.
       hardcode_minus_L=yes
-      if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then
+      if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then
        # Neither direct hardcoding nor static linking is supported with a
        # broken collect2.
        hardcode_direct=unsupported
@@ -10746,34 +11051,57 @@ _LT_EOF
       ;;
 
     aix[4-9]*)
-      if test "$host_cpu" = ia64; then
+      if test ia64 = "$host_cpu"; then
        # On IA64, the linker does run time linking by default, so we don't
        # have to do anything special.
        aix_use_runtimelinking=no
        exp_sym_flag='-Bexport'
-       no_entry_flag=""
+       no_entry_flag=
       else
        # If we're using GNU nm, then we don't want the "-C" option.
-       # -C means demangle to AIX nm, but means don't demangle with GNU nm
-       # Also, AIX nm treats weak defined symbols like other global
-       # defined symbols, whereas GNU nm marks them as "W".
+       # -C means demangle to GNU nm, but means don't demangle to AIX nm.
+       # Without the "-l" option, or with the "-B" option, AIX nm treats
+       # weak defined symbols like other global defined symbols, whereas
+       # GNU nm marks them as "W".
+       # While the 'weak' keyword is ignored in the Export File, we need
+       # it in the Import File for the 'aix-soname' feature, so we have
+       # to replace the "-B" option with "-P" for AIX nm.
        if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
-         export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
+         export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols'
        else
-         export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
+         export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols'
        fi
        aix_use_runtimelinking=no
 
        # Test if we are trying to use run time linking or normal
        # AIX style linking. If -brtl is somewhere in LDFLAGS, we
-       # need to do runtime linking.
+       # have runtime linking enabled, and use it for executables.
+       # For shared libraries, we enable/disable runtime linking
+       # depending on the kind of the shared library created -
+       # when "with_aix_soname,aix_use_runtimelinking" is:
+       # "aix,no"   lib.a(lib.so.V) shared, rtl:no,  for executables
+       # "aix,yes"  lib.so          shared, rtl:yes, for executables
+       #            lib.a           static archive
+       # "both,no"  lib.so.V(shr.o) shared, rtl:yes
+       #            lib.a(lib.so.V) shared, rtl:no,  for executables
+       # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables
+       #            lib.a(lib.so.V) shared, rtl:no
+       # "svr4,*"   lib.so.V(shr.o) shared, rtl:yes, for executables
+       #            lib.a           static archive
        case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)
          for ld_flag in $LDFLAGS; do
-         if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
+         if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then
            aix_use_runtimelinking=yes
            break
          fi
          done
+         if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then
+           # With aix-soname=svr4, we create the lib.so.V shared archives only,
+           # so we don't have lib.a shared libs to link our executables.
+           # We have to force runtime linking in this case.
+           aix_use_runtimelinking=yes
+           LDFLAGS="$LDFLAGS -Wl,-brtl"
+         fi
          ;;
        esac
 
@@ -10792,13 +11120,21 @@ _LT_EOF
       hardcode_direct_absolute=yes
       hardcode_libdir_separator=':'
       link_all_deplibs=yes
-      file_list_spec='${wl}-f,'
+      file_list_spec='$wl-f,'
+      case $with_aix_soname,$aix_use_runtimelinking in
+      aix,*) ;; # traditional, no import file
+      svr4,* | *,yes) # use import file
+       # The Import File defines what to hardcode.
+       hardcode_direct=no
+       hardcode_direct_absolute=no
+       ;;
+      esac
 
-      if test "$GCC" = yes; then
+      if test yes = "$GCC"; then
        case $host_os in aix4.[012]|aix4.[012].*)
        # We only want to do this on AIX 4.2 and lower, the check
        # below for broken collect2 doesn't work under 4.3+
-         collect2name=`${CC} -print-prog-name=collect2`
+         collect2name=`$CC -print-prog-name=collect2`
          if test -f "$collect2name" &&
           strings "$collect2name" | $GREP resolve_lib_name >/dev/null
          then
@@ -10817,36 +11153,42 @@ _LT_EOF
          ;;
        esac
        shared_flag='-shared'
-       if test "$aix_use_runtimelinking" = yes; then
-         shared_flag="$shared_flag "'${wl}-G'
+       if test yes = "$aix_use_runtimelinking"; then
+         shared_flag="$shared_flag "'$wl-G'
        fi
-       link_all_deplibs=no
+       # Need to ensure runtime linking is disabled for the traditional
+       # shared library, or the linker may eventually find shared libraries
+       # /with/ Import File - we do not want to mix them.
+       shared_flag_aix='-shared'
+       shared_flag_svr4='-shared $wl-G'
       else
        # not using gcc
-       if test "$host_cpu" = ia64; then
+       if test ia64 = "$host_cpu"; then
        # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
        # chokes on -Wl,-G. The following line is correct:
          shared_flag='-G'
        else
-         if test "$aix_use_runtimelinking" = yes; then
-           shared_flag='${wl}-G'
+         if test yes = "$aix_use_runtimelinking"; then
+           shared_flag='$wl-G'
          else
-           shared_flag='${wl}-bM:SRE'
+           shared_flag='$wl-bM:SRE'
          fi
+         shared_flag_aix='$wl-bM:SRE'
+         shared_flag_svr4='$wl-G'
        fi
       fi
 
-      export_dynamic_flag_spec='${wl}-bexpall'
+      export_dynamic_flag_spec='$wl-bexpall'
       # It seems that -bexpall does not export symbols beginning with
       # underscore (_), so it is better to generate a list of symbols to export.
       always_export_symbols=yes
-      if test "$aix_use_runtimelinking" = yes; then
+      if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then
        # Warning - without using the other runtime loading flags (-brtl),
        # -berok will link without error, but may produce a broken library.
        allow_undefined_flag='-berok'
         # Determine the default libpath from the value encoded in an
         # empty executable.
-        if test "${lt_cv_aix_libpath+set}" = set; then
+        if test set = "${lt_cv_aix_libpath+set}"; then
   aix_libpath=$lt_cv_aix_libpath
 else
   if ${lt_cv_aix_libpath_+:} false; then :
@@ -10881,7 +11223,7 @@ fi
 rm -f core conftest.err conftest.$ac_objext \
     conftest$ac_exeext conftest.$ac_ext
   if test -z "$lt_cv_aix_libpath_"; then
-    lt_cv_aix_libpath_="/usr/lib:/lib"
+    lt_cv_aix_libpath_=/usr/lib:/lib
   fi
 
 fi
   aix_libpath=$lt_cv_aix_libpath_
 fi
 
-        hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
-        archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
+        hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath"
+        archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag
       else
-       if test "$host_cpu" = ia64; then
-         hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
+       if test ia64 = "$host_cpu"; then
+         hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib'
          allow_undefined_flag="-z nodefs"
-         archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
+         archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols"
        else
         # Determine the default libpath from the value encoded in an
         # empty executable.
-        if test "${lt_cv_aix_libpath+set}" = set; then
+        if test set = "${lt_cv_aix_libpath+set}"; then
   aix_libpath=$lt_cv_aix_libpath
 else
   if ${lt_cv_aix_libpath_+:} false; then :
@@ -10934,7 +11276,7 @@ fi
 rm -f core conftest.err conftest.$ac_objext \
     conftest$ac_exeext conftest.$ac_ext
   if test -z "$lt_cv_aix_libpath_"; then
-    lt_cv_aix_libpath_="/usr/lib:/lib"
+    lt_cv_aix_libpath_=/usr/lib:/lib
   fi
 
 fi
   aix_libpath=$lt_cv_aix_libpath_
 fi
 
-        hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
+        hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath"
          # Warning - without using the other run time loading flags,
          # -berok will link without error, but may produce a broken library.
-         no_undefined_flag=' ${wl}-bernotok'
-         allow_undefined_flag=' ${wl}-berok'
-         if test "$with_gnu_ld" = yes; then
+         no_undefined_flag=' $wl-bernotok'
+         allow_undefined_flag=' $wl-berok'
+         if test yes = "$with_gnu_ld"; then
            # We only use this code for GNU lds that support --whole-archive.
-           whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
+           whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive'
          else
            # Exported symbols can be pulled into shared objects from archives
            whole_archive_flag_spec='$convenience'
          fi
          archive_cmds_need_lc=yes
-         # This is similar to how AIX traditionally builds its shared libraries.
-         archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
+         archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d'
+         # -brtl affects multiple linker settings, -berok does not and is overridden later
+         compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`'
+         if test svr4 != "$with_aix_soname"; then
+           # This is similar to how AIX traditionally builds its shared libraries.
+           archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname'
+         fi
+         if test aix != "$with_aix_soname"; then
+           archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp'
+         else
+           # used by -dlpreopen to get the symbols
+           archive_expsym_cmds="$archive_expsym_cmds"'~$MV  $output_objdir/$realname.d/$soname $output_objdir'
+         fi
+         archive_expsym_cmds="$archive_expsym_cmds"'~$RM -r $output_objdir/$realname.d'
        fi
       fi
       ;;
@@ -10965,7 +11319,7 @@ fi
       case $host_cpu in
       powerpc)
             # see comment about AmigaOS4 .so support
-            archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+            archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
             archive_expsym_cmds=''
         ;;
       m68k)
        # Tell ltmain to make .lib files, not .a files.
        libext=lib
        # Tell ltmain to make .dll files, not .so files.
-       shrext_cmds=".dll"
+       shrext_cmds=.dll
        # FIXME: Setting linknames here is a bad hack.
-       archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames='
-       archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
-           sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp;
-         else
-           sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp;
-         fi~
-         $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
-         linknames='
+       archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames='
+       archive_expsym_cmds='if   test DEF = "`$SED -n     -e '\''s/^[   ]*//'\''     -e '\''/^\(;.*\)*$/d'\''     -e '\''s/^\(EXPORTS\|LIBRARY\)\([     ].*\)*$/DEF/p'\''     -e q     $export_symbols`" ; then
+            cp "$export_symbols" "$output_objdir/$soname.def";
+            echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp";
+          else
+            $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp;
+          fi~
+          $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
+          linknames='
        # The linker will not automatically build a static lib if we build a DLL.
        # _LT_TAGVAR(old_archive_from_new_cmds, )='true'
        enable_shared_with_static_runtimes=yes
        # Don't use ranlib
        old_postinstall_cmds='chmod 644 $oldlib'
        postlink_cmds='lt_outputfile="@OUTPUT@"~
-         lt_tool_outputfile="@TOOL_OUTPUT@"~
-         case $lt_outputfile in
-           *.exe|*.EXE) ;;
-           *)
-             lt_outputfile="$lt_outputfile.exe"
-             lt_tool_outputfile="$lt_tool_outputfile.exe"
-             ;;
-         esac~
-         if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then
-           $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
-           $RM "$lt_outputfile.manifest";
-         fi'
+          lt_tool_outputfile="@TOOL_OUTPUT@"~
+          case $lt_outputfile in
+            *.exe|*.EXE) ;;
+            *)
+              lt_outputfile=$lt_outputfile.exe
+              lt_tool_outputfile=$lt_tool_outputfile.exe
+              ;;
+          esac~
+          if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then
+            $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
+            $RM "$lt_outputfile.manifest";
+          fi'
        ;;
       *)
        # Assume MSVC wrapper
@@ -11033,7 +11388,7 @@ fi
        # Tell ltmain to make .lib files, not .a files.
        libext=lib
        # Tell ltmain to make .dll files, not .so files.
-       shrext_cmds=".dll"
+       shrext_cmds=.dll
        # FIXME: Setting linknames here is a bad hack.
        archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames='
        # The linker will automatically build a .lib file if we build a DLL.
   hardcode_direct=no
   hardcode_automatic=yes
   hardcode_shlibpath_var=unsupported
-  if test "$lt_cv_ld_force_load" = "yes"; then
-    whole_archive_flag_spec='`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
+  if test yes = "$lt_cv_ld_force_load"; then
+    whole_archive_flag_spec='`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
 
   else
     whole_archive_flag_spec=''
   fi
   link_all_deplibs=yes
-  allow_undefined_flag="$_lt_dar_allow_undefined"
+  allow_undefined_flag=$_lt_dar_allow_undefined
   case $cc_basename in
-     ifort*) _lt_dar_can_shared=yes ;;
+     ifort*|nagfor*) _lt_dar_can_shared=yes ;;
      *) _lt_dar_can_shared=$GCC ;;
   esac
-  if test "$_lt_dar_can_shared" = "yes"; then
+  if test yes = "$_lt_dar_can_shared"; then
     output_verbose_link_cmd=func_echo_all
-    archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}"
-    module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
-    archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
-    module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
+    archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil"
+    module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil"
+    archive_expsym_cmds="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil"
+    module_expsym_cmds="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil"
 
   else
   ld_shlibs=no
       ;;
 
     hpux9*)
-      if test "$GCC" = yes; then
-       archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
+      if test yes = "$GCC"; then
+       archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib'
       else
-       archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
+       archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib'
       fi
-      hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
+      hardcode_libdir_flag_spec='$wl+b $wl$libdir'
       hardcode_libdir_separator=:
       hardcode_direct=yes
 
       # hardcode_minus_L: Not really in the search PATH,
       # but as the default location of the library.
       hardcode_minus_L=yes
-      export_dynamic_flag_spec='${wl}-E'
+      export_dynamic_flag_spec='$wl-E'
       ;;
 
     hpux10*)
-      if test "$GCC" = yes && test "$with_gnu_ld" = no; then
-       archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
+      if test yes,no = "$GCC,$with_gnu_ld"; then
+       archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
       else
        archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
       fi
-      if test "$with_gnu_ld" = no; then
-       hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
+      if test no = "$with_gnu_ld"; then
+       hardcode_libdir_flag_spec='$wl+b $wl$libdir'
        hardcode_libdir_separator=:
        hardcode_direct=yes
        hardcode_direct_absolute=yes
-       export_dynamic_flag_spec='${wl}-E'
+       export_dynamic_flag_spec='$wl-E'
        # hardcode_minus_L: Not really in the search PATH,
        # but as the default location of the library.
        hardcode_minus_L=yes
       ;;
 
     hpux11*)
-      if test "$GCC" = yes && test "$with_gnu_ld" = no; then
+      if test yes,no = "$GCC,$with_gnu_ld"; then
        case $host_cpu in
        hppa*64*)
-         archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
+         archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'
          ;;
        ia64*)
-         archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
+         archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
          ;;
        *)
-         archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
+         archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
          ;;
        esac
       else
        case $host_cpu in
        hppa*64*)
-         archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
+         archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'
          ;;
        ia64*)
-         archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
+         archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
          ;;
        *)
 
@@ -11175,7 +11530,7 @@ if ${lt_cv_prog_compiler__b+:} false; then :
   $as_echo_n "(cached) " >&6
 else
   lt_cv_prog_compiler__b=no
-   save_LDFLAGS="$LDFLAGS"
+   save_LDFLAGS=$LDFLAGS
    LDFLAGS="$LDFLAGS -b"
    echo "$lt_simple_link_test_code" > conftest.$ac_ext
    if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
@@ -11194,14 +11549,14 @@ else
      fi
    fi
    $RM -r conftest*
-   LDFLAGS="$save_LDFLAGS"
+   LDFLAGS=$save_LDFLAGS
 
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5
 $as_echo "$lt_cv_prog_compiler__b" >&6; }
 
-if test x"$lt_cv_prog_compiler__b" = xyes; then
-    archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
+if test yes = "$lt_cv_prog_compiler__b"; then
+    archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
 else
     archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
 fi
@@ -11209,8 +11564,8 @@ fi
          ;;
        esac
       fi
-      if test "$with_gnu_ld" = no; then
-       hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
+      if test no = "$with_gnu_ld"; then
+       hardcode_libdir_flag_spec='$wl+b $wl$libdir'
        hardcode_libdir_separator=:
 
        case $host_cpu in
@@ -11221,7 +11576,7 @@ fi
        *)
          hardcode_direct=yes
          hardcode_direct_absolute=yes
-         export_dynamic_flag_spec='${wl}-E'
+         export_dynamic_flag_spec='$wl-E'
 
          # hardcode_minus_L: Not really in the search PATH,
          # but as the default location of the library.
@@ -11232,8 +11587,8 @@ fi
       ;;
 
     irix5* | irix6* | nonstopux*)
-      if test "$GCC" = yes; then
-       archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
+      if test yes = "$GCC"; then
+       archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
        # Try to use the -exported_symbol ld option, if it does not
        # work, assume that -exports_file does not work either and
        # implicitly export all symbols.
@@ -11243,8 +11598,8 @@ $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >
 if ${lt_cv_irix_exported_symbol+:} false; then :
   $as_echo_n "(cached) " >&6
 else
-  save_LDFLAGS="$LDFLAGS"
-          LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null"
+  save_LDFLAGS=$LDFLAGS
+          LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null"
           cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 /* end confdefs.h.  */
 int foo (void) { return 0; }
@@ -11256,24 +11611,35 @@ else
 fi
 rm -f core conftest.err conftest.$ac_objext \
     conftest$ac_exeext conftest.$ac_ext
-           LDFLAGS="$save_LDFLAGS"
+           LDFLAGS=$save_LDFLAGS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5
 $as_echo "$lt_cv_irix_exported_symbol" >&6; }
-       if test "$lt_cv_irix_exported_symbol" = yes; then
-          archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib'
+       if test yes = "$lt_cv_irix_exported_symbol"; then
+          archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib'
        fi
+       link_all_deplibs=no
       else
-       archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
-       archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib'
+       archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
+       archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib'
       fi
       archive_cmds_need_lc='no'
-      hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+      hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'
       hardcode_libdir_separator=:
       inherit_rpath=yes
       link_all_deplibs=yes
       ;;
 
+    linux*)
+      case $cc_basename in
+      tcc*)
+       # Fabrice Bellard et al's Tiny C Compiler
+       ld_shlibs=yes
+       archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
+       ;;
+      esac
+      ;;
+
     netbsd* | netbsdelf*-gnu)
       if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
        archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
@@ -11288,7 +11654,7 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; }
     newsos6)
       archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
       hardcode_direct=yes
-      hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+      hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'
       hardcode_libdir_separator=:
       hardcode_shlibpath_var=no
       ;;
@@ -11296,27 +11662,19 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; }
     *nto* | *qnx*)
       ;;
 
-    openbsd*)
+    openbsd* | bitrig*)
       if test -f /usr/libexec/ld.so; then
        hardcode_direct=yes
        hardcode_shlibpath_var=no
        hardcode_direct_absolute=yes
-       if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+       if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
          archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
-         archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
-         hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
-         export_dynamic_flag_spec='${wl}-E'
+         archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols'
+         hardcode_libdir_flag_spec='$wl-rpath,$libdir'
+         export_dynamic_flag_spec='$wl-E'
        else
-         case $host_os in
-          openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
-            archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
-            hardcode_libdir_flag_spec='-R$libdir'
-            ;;
-          *)
-            archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
-            hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
-            ;;
-         esac
+         archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
+         hardcode_libdir_flag_spec='$wl-rpath,$libdir'
        fi
       else
        ld_shlibs=no
@@ -11327,33 +11685,53 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; }
       hardcode_libdir_flag_spec='-L$libdir'
       hardcode_minus_L=yes
       allow_undefined_flag=unsupported
-      archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def'
-      old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
+      shrext_cmds=.dll
+      archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
+       $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
+       $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
+       $ECHO EXPORTS >> $output_objdir/$libname.def~
+       emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~
+       $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~
+       emximp -o $lib $output_objdir/$libname.def'
+      archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
+       $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
+       $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
+       $ECHO EXPORTS >> $output_objdir/$libname.def~
+       prefix_cmds="$SED"~
+       if test EXPORTS = "`$SED 1q $export_symbols`"; then
+         prefix_cmds="$prefix_cmds -e 1d";
+       fi~
+       prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~
+       cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~
+       $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~
+       emximp -o $lib $output_objdir/$libname.def'
+      old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'
+      enable_shared_with_static_runtimes=yes
       ;;
 
     osf3*)
-      if test "$GCC" = yes; then
-       allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
-       archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
+      if test yes = "$GCC"; then
+       allow_undefined_flag=' $wl-expect_unresolved $wl\*'
+       archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
       else
        allow_undefined_flag=' -expect_unresolved \*'
-       archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
+       archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
       fi
       archive_cmds_need_lc='no'
-      hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+      hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'
       hardcode_libdir_separator=:
       ;;
 
     osf4* | osf5*)     # as osf3* with the addition of -msym flag
-      if test "$GCC" = yes; then
-       allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
-       archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
-       hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+      if test yes = "$GCC"; then
+       allow_undefined_flag=' $wl-expect_unresolved $wl\*'
+       archive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
+       hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'
       else
        allow_undefined_flag=' -expect_unresolved \*'
-       archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
+       archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
        archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~
-       $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp'
+          $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp'
 
        # Both c and cxx compiler support -rpath directly
        hardcode_libdir_flag_spec='-rpath $libdir'
@@ -11364,24 +11742,24 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; }
 
     solaris*)
       no_undefined_flag=' -z defs'
-      if test "$GCC" = yes; then
-       wlarc='${wl}'
-       archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
+      if test yes = "$GCC"; then
+       wlarc='$wl'
+       archive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'
        archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
-         $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
+          $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
       else
        case `$CC -V 2>&1` in
        *"Compilers 5.0"*)
          wlarc=''
-         archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
+         archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags'
          archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
-         $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'
+            $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'
          ;;
        *)
-         wlarc='${wl}'
-         archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags'
+         wlarc='$wl'
+         archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags'
          archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
-         $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
+            $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
          ;;
        esac
       fi
@@ -11391,11 +11769,11 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; }
       solaris2.[0-5] | solaris2.[0-5].*) ;;
       *)
        # The compiler driver will combine and reorder linker options,
-       # but understands `-z linker_flag'.  GCC discards it without `$wl',
+       # but understands '-z linker_flag'.  GCC discards it without '$wl',
        # but is careful enough not to reorder.
        # Supported since Solaris 2.6 (maybe 2.5.1?)
-       if test "$GCC" = yes; then
-         whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
+       if test yes = "$GCC"; then
+         whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract'
        else
          whole_archive_flag_spec='-z allextract$convenience -z defaultextract'
        fi
@@ -11405,10 +11783,10 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; }
       ;;
 
     sunos4*)
-      if test "x$host_vendor" = xsequent; then
+      if test sequent = "$host_vendor"; then
        # Use $CC to link under sequent, because it throws in some extra .o
        # files that make .init and .fini sections work.
-       archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
+       archive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags'
       else
        archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
       fi
@@ -11457,43 +11835,43 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; }
       ;;
 
     sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)
-      no_undefined_flag='${wl}-z,text'
+      no_undefined_flag='$wl-z,text'
       archive_cmds_need_lc=no
       hardcode_shlibpath_var=no
       runpath_var='LD_RUN_PATH'
 
-      if test "$GCC" = yes; then
-       archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-       archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+      if test yes = "$GCC"; then
+       archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+       archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
       else
-       archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-       archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+       archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+       archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
       fi
       ;;
 
     sysv5* | sco3.2v5* | sco5v6*)
-      # Note: We can NOT use -z defs as we might desire, because we do not
+      # Note: We CANNOT use -z defs as we might desire, because we do not
       # link with -lc, and that would cause any symbols used from libc to
       # always be unresolved, which means just about no library would
       # ever link correctly.  If we're not using GNU ld we use -z text
       # though, which does catch some bad symbols but isn't as heavy-handed
       # as -z defs.
-      no_undefined_flag='${wl}-z,text'
-      allow_undefined_flag='${wl}-z,nodefs'
+      no_undefined_flag='$wl-z,text'
+      allow_undefined_flag='$wl-z,nodefs'
       archive_cmds_need_lc=no
       hardcode_shlibpath_var=no
-      hardcode_libdir_flag_spec='${wl}-R,$libdir'
+      hardcode_libdir_flag_spec='$wl-R,$libdir'
       hardcode_libdir_separator=':'
       link_all_deplibs=yes
-      export_dynamic_flag_spec='${wl}-Bexport'
+      export_dynamic_flag_spec='$wl-Bexport'
       runpath_var='LD_RUN_PATH'
 
-      if test "$GCC" = yes; then
-       archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-       archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+      if test yes = "$GCC"; then
+       archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+       archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
       else
-       archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-       archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+       archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+       archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
       fi
       ;;
 
@@ -11508,10 +11886,10 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; }
       ;;
     esac
 
-    if test x$host_vendor = xsni; then
+    if test sni = "$host_vendor"; then
       case $host in
       sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
-       export_dynamic_flag_spec='${wl}-Blargedynsym'
+       export_dynamic_flag_spec='$wl-Blargedynsym'
        ;;
       esac
     fi
@@ -11519,7 +11897,7 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; }
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5
 $as_echo "$ld_shlibs" >&6; }
-test "$ld_shlibs" = no && can_build_shared=no
+test no = "$ld_shlibs" && can_build_shared=no
 
 with_gnu_ld=$with_gnu_ld
 
@@ -11545,7 +11923,7 @@ x|xyes)
   # Assume -lc should be added
   archive_cmds_need_lc=yes
 
-  if test "$enable_shared" = yes && test "$GCC" = yes; then
+  if test yes,yes = "$GCC,$enable_shared"; then
     case $archive_cmds in
     *'~'*)
       # FIXME: we may have to deal with multi-command sequences.
@@ -11760,14 +12138,14 @@ esac
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5
 $as_echo_n "checking dynamic linker characteristics... " >&6; }
 
-if test "$GCC" = yes; then
+if test yes = "$GCC"; then
   case $host_os in
-    darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
-    *) lt_awk_arg="/^libraries:/" ;;
+    darwin*) lt_awk_arg='/^libraries:/,/LR/' ;;
+    *) lt_awk_arg='/^libraries:/' ;;
   esac
   case $host_os in
-    mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;;
-    *) lt_sed_strip_eq="s,=/,/,g" ;;
+    mingw* | cegcc*) lt_sed_strip_eq='s|=\([A-Za-z]:\)|\1|g' ;;
+    *) lt_sed_strip_eq='s|=/|/|g' ;;
   esac
   lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq`
   case $lt_search_path_spec in
@@ -11783,28 +12161,35 @@ if test "$GCC" = yes; then
     ;;
   esac
   # Ok, now we have the path, separated by spaces, we can step through it
-  # and add multilib dir if necessary.
+  # and add multilib dir if necessary...
   lt_tmp_lt_search_path_spec=
-  lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
+  lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
+  # ...but if some path component already ends with the multilib dir we assume
+  # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer).
+  case "$lt_multi_os_dir; $lt_search_path_spec " in
+  "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*)
+    lt_multi_os_dir=
+    ;;
+  esac
   for lt_sys_path in $lt_search_path_spec; do
-    if test -d "$lt_sys_path/$lt_multi_os_dir"; then
-      lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir"
-    else
+    if test -d "$lt_sys_path$lt_multi_os_dir"; then
+      lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir"
+    elif test -n "$lt_multi_os_dir"; then
       test -d "$lt_sys_path" && \
        lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
     fi
   done
   lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk '
-BEGIN {RS=" "; FS="/|\n";} {
-  lt_foo="";
-  lt_count=0;
+BEGIN {RS = " "; FS = "/|\n";} {
+  lt_foo = "";
+  lt_count = 0;
   for (lt_i = NF; lt_i > 0; lt_i--) {
     if ($lt_i != "" && $lt_i != ".") {
       if ($lt_i == "..") {
         lt_count++;
       } else {
         if (lt_count == 0) {
-          lt_foo="/" $lt_i lt_foo;
+          lt_foo = "/" $lt_i lt_foo;
         } else {
           lt_count--;
         }
@@ -11818,7 +12203,7 @@ BEGIN {RS=" "; FS="/|\n";} {
   # for these hosts.
   case $host_os in
     mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\
-      $SED 's,/\([A-Za-z]:\),\1,g'` ;;
+      $SED 's|/\([A-Za-z]:\)|\1|g'` ;;
   esac
   sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP`
 else
@@ -11827,7 +12212,7 @@ fi
 library_names_spec=
 libname_spec='lib$name'
 soname_spec=
-shrext_cmds=".so"
+shrext_cmds=.so
 postinstall_cmds=
 postuninstall_cmds=
 finish_cmds=
@@ -11844,14 +12229,16 @@ hardcode_into_libs=no
 # flags to be left without arguments
 need_version=unknown
 
+
+
 case $host_os in
 aix3*)
   version_type=linux # correct to gnu/linux during the next big refactor
-  library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname.a'
   shlibpath_var=LIBPATH
 
   # AIX 3 has no versioning support, so we append a major version to the name.
-  soname_spec='${libname}${release}${shared_ext}$major'
+  soname_spec='$libname$release$shared_ext$major'
   ;;
 
 aix[4-9]*)
@@ -11859,41 +12246,91 @@ aix[4-9]*)
   need_lib_prefix=no
   need_version=no
   hardcode_into_libs=yes
-  if test "$host_cpu" = ia64; then
+  if test ia64 = "$host_cpu"; then
     # AIX 5 supports IA64
-    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
+    library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext'
     shlibpath_var=LD_LIBRARY_PATH
   else
     # With GCC up to 2.95.x, collect2 would create an import file
     # for dependence libraries.  The import file would start with
-    # the line `#! .'.  This would cause the generated library to
-    # depend on `.', always an invalid library.  This was fixed in
+    # the line '#! .'.  This would cause the generated library to
+    # depend on '.', always an invalid library.  This was fixed in
     # development snapshots of GCC prior to 3.0.
     case $host_os in
       aix4 | aix4.[01] | aix4.[01].*)
       if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
           echo ' yes '
-          echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then
+          echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then
        :
       else
        can_build_shared=no
       fi
       ;;
     esac
-    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
+    # Using Import Files as archive members, it is possible to support
+    # filename-based versioning of shared library archives on AIX. While
+    # this would work for both with and without runtime linking, it will
+    # prevent static linking of such archives. So we do filename-based
+    # shared library versioning with .so extension only, which is used
+    # when both runtime linking and shared linking is enabled.
+    # Unfortunately, runtime linking may impact performance, so we do
+    # not want this to be the default eventually. Also, we use the
+    # versioned .so libs for executables only if there is the -brtl
+    # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only.
+    # To allow for filename-based versioning support, we need to create
+    # libNAME.so.V as an archive file, containing:
+    # *) an Import File, referring to the versioned filename of the
+    #    archive as well as the shared archive member, telling the
+    #    bitwidth (32 or 64) of that shared object, and providing the
+    #    list of exported symbols of that shared object, eventually
+    #    decorated with the 'weak' keyword
+    # *) the shared object with the F_LOADONLY flag set, to really avoid
+    #    it being seen by the linker.
+    # At run time we better use the real file rather than another symlink,
+    # but for link time we create the symlink libNAME.so -> libNAME.so.V
+
+    case $with_aix_soname,$aix_use_runtimelinking in
+    # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct
     # soname into executable. Probably we can add versioning support to
     # collect2, so additional links can be useful in future.
-    if test "$aix_use_runtimelinking" = yes; then
+    aix,yes) # traditional libtool
+      dynamic_linker='AIX unversionable lib.so'
       # If using run time linking (on AIX 4.2 or later) use lib<name>.so
       # instead of lib<name>.a to let people know that these are not
       # typical AIX shared libraries.
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-    else
+      library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+      ;;
+    aix,no) # traditional AIX only
+      dynamic_linker='AIX lib.a(lib.so.V)'
       # We preserve .a as extension for shared libraries through AIX4.2
       # and later when we are not doing run time linking.
-      library_names_spec='${libname}${release}.a $libname.a'
-      soname_spec='${libname}${release}${shared_ext}$major'
-    fi
+      library_names_spec='$libname$release.a $libname.a'
+      soname_spec='$libname$release$shared_ext$major'
+      ;;
+    svr4,*) # full svr4 only
+      dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)"
+      library_names_spec='$libname$release$shared_ext$major $libname$shared_ext'
+      # We do not specify a path in Import Files, so LIBPATH fires.
+      shlibpath_overrides_runpath=yes
+      ;;
+    *,yes) # both, prefer svr4
+      dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)"
+      library_names_spec='$libname$release$shared_ext$major $libname$shared_ext'
+      # unpreferred sharedlib libNAME.a needs extra handling
+      postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"'
+      postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"'
+      # We do not specify a path in Import Files, so LIBPATH fires.
+      shlibpath_overrides_runpath=yes
+      ;;
+    *,no) # both, prefer aix
+      dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)"
+      library_names_spec='$libname$release.a $libname.a'
+      soname_spec='$libname$release$shared_ext$major'
+      # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling
+      postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)'
+      postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"'
+      ;;
+    esac
     shlibpath_var=LIBPATH
   fi
   ;;
@@ -11903,18 +12340,18 @@ amigaos*)
   powerpc)
     # Since July 2007 AmigaOS4 officially supports .so libraries.
     # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
     ;;
   m68k)
     library_names_spec='$libname.ixlibrary $libname.a'
     # Create ${libname}_ixlibrary.a entries in /sys/libs.
-    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
+    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
     ;;
   esac
   ;;
 
 beos*)
-  library_names_spec='${libname}${shared_ext}'
+  library_names_spec='$libname$shared_ext'
   dynamic_linker="$host_os ld.so"
   shlibpath_var=LIBRARY_PATH
   ;;
@@ -11922,8 +12359,8 @@ beos*)
 bsdi[45]*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
   shlibpath_var=LD_LIBRARY_PATH
   sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
@@ -11935,7 +12372,7 @@ bsdi[45]*)
 
 cygwin* | mingw* | pw32* | cegcc*)
   version_type=windows
-  shrext_cmds=".dll"
+  shrext_cmds=.dll
   need_version=no
   need_lib_prefix=no
 
@@ -11944,8 +12381,8 @@ cygwin* | mingw* | pw32* | cegcc*)
     # gcc
     library_names_spec='$libname.dll.a'
     # DLL is installed to $(libdir)/../bin by postinstall_cmds
-    postinstall_cmds='base_file=`basename \${file}`~
-      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
+    postinstall_cmds='base_file=`basename \$file`~
+      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~
       dldir=$destdir/`dirname \$dlpath`~
       test -d \$dldir || mkdir -p \$dldir~
       $install_prog $dir/$dlname \$dldir/$dlname~
@@ -11961,17 +12398,17 @@ cygwin* | mingw* | pw32* | cegcc*)
     case $host_os in
     cygwin*)
       # Cygwin DLLs use 'cyg' prefix rather than 'lib'
-      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
+      soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'
 
       sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"
       ;;
     mingw* | cegcc*)
       # MinGW DLLs use traditional 'lib' prefix
-      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
+      soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'
       ;;
     pw32*)
       # pw32 DLLs use 'pw' prefix rather than 'lib'
-      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
+      library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'
       ;;
     esac
     dynamic_linker='Win32 ld.exe'
@@ -11980,8 +12417,8 @@ cygwin* | mingw* | pw32* | cegcc*)
   *,cl*)
     # Native MSVC
     libname_spec='$name'
-    soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
-    library_names_spec='${libname}.dll.lib'
+    soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'
+    library_names_spec='$libname.dll.lib'
 
     case $build_os in
     mingw*)
@@ -12008,7 +12445,7 @@ cygwin* | mingw* | pw32* | cegcc*)
       sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
       ;;
     *)
-      sys_lib_search_path_spec="$LIB"
+      sys_lib_search_path_spec=$LIB
       if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then
         # It is most probably a Windows format PATH.
         sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
@@ -12021,8 +12458,8 @@ cygwin* | mingw* | pw32* | cegcc*)
     esac
 
     # DLL is installed to $(libdir)/../bin by postinstall_cmds
-    postinstall_cmds='base_file=`basename \${file}`~
-      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
+    postinstall_cmds='base_file=`basename \$file`~
+      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~
       dldir=$destdir/`dirname \$dlpath`~
       test -d \$dldir || mkdir -p \$dldir~
       $install_prog $dir/$dlname \$dldir/$dlname'
@@ -12035,7 +12472,7 @@ cygwin* | mingw* | pw32* | cegcc*)
 
   *)
     # Assume MSVC wrapper
-    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
+    library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib'
     dynamic_linker='Win32 ld.exe'
     ;;
   esac
@@ -12048,8 +12485,8 @@ darwin* | rhapsody*)
   version_type=darwin
   need_lib_prefix=no
   need_version=no
-  library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
-  soname_spec='${libname}${release}${major}$shared_ext'
+  library_names_spec='$libname$release$major$shared_ext $libname$shared_ext'
+  soname_spec='$libname$release$major$shared_ext'
   shlibpath_overrides_runpath=yes
   shlibpath_var=DYLD_LIBRARY_PATH
   shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
@@ -12062,8 +12499,8 @@ dgux*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_lib_prefix=no
   need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   shlibpath_var=LD_LIBRARY_PATH
   ;;
 
@@ -12081,12 +12518,13 @@ freebsd* | dragonfly*)
   version_type=freebsd-$objformat
   case $version_type in
     freebsd-elf*)
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
+      library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+      soname_spec='$libname$release$shared_ext$major'
       need_version=no
       need_lib_prefix=no
       ;;
     freebsd-*)
-      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
+      library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'
       need_version=yes
       ;;
   esac
@@ -12116,10 +12554,10 @@ haiku*)
   need_lib_prefix=no
   need_version=no
   dynamic_linker="$host_os runtime_loader"
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   shlibpath_var=LIBRARY_PATH
-  shlibpath_overrides_runpath=yes
+  shlibpath_overrides_runpath=no
   sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'
   hardcode_into_libs=yes
   ;;
@@ -12137,14 +12575,15 @@ hpux9* | hpux10* | hpux11*)
     dynamic_linker="$host_os dld.so"
     shlibpath_var=LD_LIBRARY_PATH
     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-    soname_spec='${libname}${release}${shared_ext}$major'
-    if test "X$HPUX_IA64_MODE" = X32; then
+    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+    soname_spec='$libname$release$shared_ext$major'
+    if test 32 = "$HPUX_IA64_MODE"; then
       sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
+      sys_lib_dlsearch_path_spec=/usr/lib/hpux32
     else
       sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
+      sys_lib_dlsearch_path_spec=/usr/lib/hpux64
     fi
-    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
     ;;
   hppa*64*)
     shrext_cmds='.sl'
@@ -12152,8 +12591,8 @@ hpux9* | hpux10* | hpux11*)
     dynamic_linker="$host_os dld.sl"
     shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-    soname_spec='${libname}${release}${shared_ext}$major'
+    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+    soname_spec='$libname$release$shared_ext$major'
     sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
     ;;
@@ -12162,8 +12601,8 @@ hpux9* | hpux10* | hpux11*)
     dynamic_linker="$host_os dld.sl"
     shlibpath_var=SHLIB_PATH
     shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-    soname_spec='${libname}${release}${shared_ext}$major'
+    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+    soname_spec='$libname$release$shared_ext$major'
     ;;
   esac
   # HP-UX runs *really* slowly unless shared libraries are mode 555, ...
@@ -12176,8 +12615,8 @@ interix[3-9]*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_lib_prefix=no
   need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
   shlibpath_var=LD_LIBRARY_PATH
   shlibpath_overrides_runpath=no
@@ -12188,7 +12627,7 @@ irix5* | irix6* | nonstopux*)
   case $host_os in
     nonstopux*) version_type=nonstopux ;;
     *)
-       if test "$lt_cv_prog_gnu_ld" = yes; then
+       if test yes = "$lt_cv_prog_gnu_ld"; then
                version_type=linux # correct to gnu/linux during the next big refactor
        else
                version_type=irix
@@ -12196,8 +12635,8 @@ irix5* | irix6* | nonstopux*)
   esac
   need_lib_prefix=no
   need_version=no
-  soname_spec='${libname}${release}${shared_ext}$major'
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
+  soname_spec='$libname$release$shared_ext$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext'
   case $host_os in
   irix5* | nonstopux*)
     libsuff= shlibsuff=
@@ -12216,8 +12655,8 @@ irix5* | irix6* | nonstopux*)
   esac
   shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
   shlibpath_overrides_runpath=no
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
+  sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff"
+  sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff"
   hardcode_into_libs=yes
   ;;
 
@@ -12226,13 +12665,33 @@ linux*oldld* | linux*aout* | linux*coff*)
   dynamic_linker=no
   ;;
 
+linux*android*)
+  version_type=none # Android doesn't support versioned libraries.
+  need_lib_prefix=no
+  need_version=no
+  library_names_spec='$libname$release$shared_ext'
+  soname_spec='$libname$release$shared_ext'
+  finish_cmds=
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=yes
+
+  # This implies no fast_install, which is unacceptable.
+  # Some rework will be needed to allow for fast_install
+  # before this can be enabled.
+  hardcode_into_libs=yes
+
+  dynamic_linker='Android linker'
+  # Don't embed -rpath directories since the linker doesn't support them.
+  hardcode_libdir_flag_spec='-L$libdir'
+  ;;
+
 # This must be glibc/ELF.
 linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_lib_prefix=no
   need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
   shlibpath_var=LD_LIBRARY_PATH
   shlibpath_overrides_runpath=no
   # before this can be enabled.
   hardcode_into_libs=yes
 
-  # Append ld.so.conf contents to the search path
+  # Ideally, we could use ldconfig to report *all* directores which are
+  # searched for libraries, however this is still not possible.  Aside from not
+  # being certain /sbin/ldconfig is available, command
+  # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64,
+  # even though it is searched at run-time.  Try to do the best guess by
+  # appending ld.so.conf contents (and includes) to the search path.
   if test -f /etc/ld.so.conf; then
     lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[      ]*hwcap[        ]/d;s/[:,      ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '`
     sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
@@ -12308,12 +12772,12 @@ netbsd*)
   need_lib_prefix=no
   need_version=no
   if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
+    library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'
     finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
     dynamic_linker='NetBSD (a.out) ld.so'
   else
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
-    soname_spec='${libname}${release}${shared_ext}$major'
+    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+    soname_spec='$libname$release$shared_ext$major'
     dynamic_linker='NetBSD ld.elf_so'
   fi
   shlibpath_var=LD_LIBRARY_PATH
@@ -12323,7 +12787,7 @@ netbsd*)
 
 newsos6)
   version_type=linux # correct to gnu/linux during the next big refactor
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
   shlibpath_var=LD_LIBRARY_PATH
   shlibpath_overrides_runpath=yes
   ;;
@@ -12332,58 +12796,68 @@ newsos6)
   version_type=qnx
   need_lib_prefix=no
   need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   shlibpath_var=LD_LIBRARY_PATH
   shlibpath_overrides_runpath=no
   hardcode_into_libs=yes
   dynamic_linker='ldqnx.so'
   ;;
 
-openbsd*)
+openbsd* | bitrig*)
   version_type=sunos
-  sys_lib_dlsearch_path_spec="/usr/lib"
+  sys_lib_dlsearch_path_spec=/usr/lib
   need_lib_prefix=no
-  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
-  case $host_os in
-    openbsd3.3 | openbsd3.3.*) need_version=yes ;;
-    *)                         need_version=no  ;;
-  esac
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
-  shlibpath_var=LD_LIBRARY_PATH
-  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
-    case $host_os in
-      openbsd2.[89] | openbsd2.[89].*)
-       shlibpath_overrides_runpath=no
-       ;;
-      *)
-       shlibpath_overrides_runpath=yes
-       ;;
-      esac
+  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
+    need_version=no
   else
-    shlibpath_overrides_runpath=yes
+    need_version=yes
   fi
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'
+  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=yes
   ;;
 
 os2*)
   libname_spec='$name'
-  shrext_cmds=".dll"
+  version_type=windows
+  shrext_cmds=.dll
+  need_version=no
   need_lib_prefix=no
-  library_names_spec='$libname${shared_ext} $libname.a'
+  # OS/2 can only load a DLL with a base name of 8 characters or less.
+  soname_spec='`test -n "$os2dllname" && libname="$os2dllname";
+    v=$($ECHO $release$versuffix | tr -d .-);
+    n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _);
+    $ECHO $n$v`$shared_ext'
+  library_names_spec='${libname}_dll.$libext'
   dynamic_linker='OS/2 ld.exe'
-  shlibpath_var=LIBPATH
+  shlibpath_var=BEGINLIBPATH
+  sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
+  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
+  postinstall_cmds='base_file=`basename \$file`~
+    dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~
+    dldir=$destdir/`dirname \$dlpath`~
+    test -d \$dldir || mkdir -p \$dldir~
+    $install_prog $dir/$dlname \$dldir/$dlname~
+    chmod a+x \$dldir/$dlname~
+    if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
+      eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
+    fi'
+  postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~
+    dlpath=$dir/\$dldll~
+    $RM \$dlpath'
   ;;
 
 osf3* | osf4* | osf5*)
   version_type=osf
   need_lib_prefix=no
   need_version=no
-  soname_spec='${libname}${release}${shared_ext}$major'
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+  soname_spec='$libname$release$shared_ext$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
   shlibpath_var=LD_LIBRARY_PATH
   sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
-  sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
+  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
   ;;
 
 rdos*)
@@ -12394,8 +12868,8 @@ solaris*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_lib_prefix=no
   need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   shlibpath_var=LD_LIBRARY_PATH
   shlibpath_overrides_runpath=yes
   hardcode_into_libs=yes
@@ -12405,11 +12879,11 @@ solaris*)
 
 sunos4*)
   version_type=sunos
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'
   finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
   shlibpath_var=LD_LIBRARY_PATH
   shlibpath_overrides_runpath=yes
-  if test "$with_gnu_ld" = yes; then
+  if test yes = "$with_gnu_ld"; then
     need_lib_prefix=no
   fi
   need_version=yes
@@ -12417,8 +12891,8 @@ sunos4*)
 
 sysv4 | sysv4.3*)
   version_type=linux # correct to gnu/linux during the next big refactor
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   shlibpath_var=LD_LIBRARY_PATH
   case $host_vendor in
     sni)
@@ -12439,24 +12913,24 @@ sysv4 | sysv4.3*)
   ;;
 
 sysv4*MP*)
-  if test -d /usr/nec ;then
+  if test -d /usr/necthen
     version_type=linux # correct to gnu/linux during the next big refactor
-    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
-    soname_spec='$libname${shared_ext}.$major'
+    library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext'
+    soname_spec='$libname$shared_ext.$major'
     shlibpath_var=LD_LIBRARY_PATH
   fi
   ;;
 
 sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
-  version_type=freebsd-elf
+  version_type=sco
   need_lib_prefix=no
   need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   shlibpath_var=LD_LIBRARY_PATH
   shlibpath_overrides_runpath=yes
   hardcode_into_libs=yes
-  if test "$with_gnu_ld" = yes; then
+  if test yes = "$with_gnu_ld"; then
     sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
   else
     sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
@@ -12474,7 +12948,7 @@ tpf*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_lib_prefix=no
   need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
   shlibpath_var=LD_LIBRARY_PATH
   shlibpath_overrides_runpath=no
   hardcode_into_libs=yes
@@ -12482,8 +12956,8 @@ tpf*)
 
 uts4*)
   version_type=linux # correct to gnu/linux during the next big refactor
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   shlibpath_var=LD_LIBRARY_PATH
   ;;
 
@@ -12493,20 +12967,35 @@ uts4*)
 esac
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5
 $as_echo "$dynamic_linker" >&6; }
-test "$dynamic_linker" = no && can_build_shared=no
+test no = "$dynamic_linker" && can_build_shared=no
 
 variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
-if test "$GCC" = yes; then
+if test yes = "$GCC"; then
   variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
 fi
 
-if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
-  sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
+if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then
+  sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec
 fi
-if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
-  sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
+
+if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then
+  sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec
 fi
 
+# remember unaugmented sys_lib_dlsearch_path content for libtool script decls...
+configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec
+
+# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code
+func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH"
+
+# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool
+configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH
+
+
+
+
+
+
 
 
 
@@ -12603,15 +13092,15 @@ $as_echo_n "checking how to hardcode library paths into programs... " >&6; }
 hardcode_action=
 if test -n "$hardcode_libdir_flag_spec" ||
    test -n "$runpath_var" ||
-   test "X$hardcode_automatic" = "Xyes" ; then
+   test yes = "$hardcode_automatic"; then
 
   # We can hardcode non-existent directories.
-  if test "$hardcode_direct" != no &&
+  if test no != "$hardcode_direct" &&
      # If the only mechanism to avoid hardcoding is shlibpath_var, we
      # have to relink, otherwise we might link with an installed library
      # when we should be linking with a yet-to-be-installed one
-     ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no &&
-     test "$hardcode_minus_L" != no; then
+     ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, )" &&
+     test no != "$hardcode_minus_L"; then
     # Linking always hardcodes the temporary library directory.
     hardcode_action=relink
   else
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5
 $as_echo "$hardcode_action" >&6; }
 
-if test "$hardcode_action" = relink ||
-   test "$inherit_rpath" = yes; then
+if test relink = "$hardcode_action" ||
+   test yes = "$inherit_rpath"; then
   # Fast installation is not supported
   enable_fast_install=no
-elif test "$shlibpath_overrides_runpath" = yes ||
-     test "$enable_shared" = no; then
+elif test yes = "$shlibpath_overrides_runpath" ||
+     test no = "$enable_shared"; then
   # Fast installation is not necessary
   enable_fast_install=needless
 fi
@@ -12641,7 +13130,7 @@ fi
 
 
 
-  if test "x$enable_dlopen" != xyes; then
+  if test yes != "$enable_dlopen"; then
   enable_dlopen=unknown
   enable_dlopen_self=unknown
   enable_dlopen_self_static=unknown
@@ -12651,23 +13140,23 @@ else
 
   case $host_os in
   beos*)
-    lt_cv_dlopen="load_add_on"
+    lt_cv_dlopen=load_add_on
     lt_cv_dlopen_libs=
     lt_cv_dlopen_self=yes
     ;;
 
   mingw* | pw32* | cegcc*)
-    lt_cv_dlopen="LoadLibrary"
+    lt_cv_dlopen=LoadLibrary
     lt_cv_dlopen_libs=
     ;;
 
   cygwin*)
-    lt_cv_dlopen="dlopen"
+    lt_cv_dlopen=dlopen
     lt_cv_dlopen_libs=
     ;;
 
   darwin*)
-  # if libdl is installed we need to link against it
+    # if libdl is installed we need to link against it
     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
 $as_echo_n "checking for dlopen in -ldl... " >&6; }
 if ${ac_cv_lib_dl_dlopen+:} false; then :
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
 $as_echo "$ac_cv_lib_dl_dlopen" >&6; }
 if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
-  lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
+  lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl
 else
 
-    lt_cv_dlopen="dyld"
+    lt_cv_dlopen=dyld
     lt_cv_dlopen_libs=
     lt_cv_dlopen_self=yes
 
 
     ;;
 
+  tpf*)
+    # Don't try to run any link tests for TPF.  We know it's impossible
+    # because TPF is a cross-compiler, and we know how we open DSOs.
+    lt_cv_dlopen=dlopen
+    lt_cv_dlopen_libs=
+    lt_cv_dlopen_self=no
+    ;;
+
   *)
     ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load"
 if test "x$ac_cv_func_shl_load" = xyes; then :
-  lt_cv_dlopen="shl_load"
+  lt_cv_dlopen=shl_load
 else
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5
 $as_echo_n "checking for shl_load in -ldld... " >&6; }
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5
 $as_echo "$ac_cv_lib_dld_shl_load" >&6; }
 if test "x$ac_cv_lib_dld_shl_load" = xyes; then :
-  lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"
+  lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld
 else
   ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen"
 if test "x$ac_cv_func_dlopen" = xyes; then :
-  lt_cv_dlopen="dlopen"
+  lt_cv_dlopen=dlopen
 else
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
 $as_echo_n "checking for dlopen in -ldl... " >&6; }
@@ -12801,7 +13298,7 @@ fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
 $as_echo "$ac_cv_lib_dl_dlopen" >&6; }
 if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
-  lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
+  lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl
 else
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5
 $as_echo_n "checking for dlopen in -lsvld... " >&6; }
@@ -12840,7 +13337,7 @@ fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5
 $as_echo "$ac_cv_lib_svld_dlopen" >&6; }
 if test "x$ac_cv_lib_svld_dlopen" = xyes; then :
-  lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"
+  lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld
 else
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5
 $as_echo_n "checking for dld_link in -ldld... " >&6; }
@@ -12879,7 +13376,7 @@ fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5
 $as_echo "$ac_cv_lib_dld_dld_link" >&6; }
 if test "x$ac_cv_lib_dld_dld_link" = xyes; then :
-  lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"
+  lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld
 fi
 
 
     ;;
   esac
 
-  if test "x$lt_cv_dlopen" != xno; then
-    enable_dlopen=yes
-  else
+  if test no = "$lt_cv_dlopen"; then
     enable_dlopen=no
+  else
+    enable_dlopen=yes
   fi
 
   case $lt_cv_dlopen in
   dlopen)
-    save_CPPFLAGS="$CPPFLAGS"
-    test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
+    save_CPPFLAGS=$CPPFLAGS
+    test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
 
-    save_LDFLAGS="$LDFLAGS"
+    save_LDFLAGS=$LDFLAGS
     wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
 
-    save_LIBS="$LIBS"
+    save_LIBS=$LIBS
     LIBS="$lt_cv_dlopen_libs $LIBS"
 
     { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5
@@ -12922,7 +13419,7 @@ $as_echo_n "checking whether a program can dlopen itself... " >&6; }
 if ${lt_cv_dlopen_self+:} false; then :
   $as_echo_n "(cached) " >&6
 else
-         if test "$cross_compiling" = yes; then :
+         if test yes = "$cross_compiling"; then :
   lt_cv_dlopen_self=cross
 else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
@@ -12969,9 +13466,9 @@ else
 #  endif
 #endif
 
-/* When -fvisbility=hidden is used, assume the code has been annotated
+/* When -fvisibility=hidden is used, assume the code has been annotated
    correspondingly for the symbols needed.  */
-#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
+#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
 int fnord () __attribute__((visibility("default")));
 #endif
 
@@ -13001,7 +13498,7 @@ _LT_EOF
   (eval $ac_link) 2>&5
   ac_status=$?
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-  test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then
+  test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then
     (./conftest; exit; ) >&5 2>/dev/null
     lt_status=$?
     case x$lt_status in
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5
 $as_echo "$lt_cv_dlopen_self" >&6; }
 
-    if test "x$lt_cv_dlopen_self" = xyes; then
+    if test yes = "$lt_cv_dlopen_self"; then
       wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5
 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; }
 if ${lt_cv_dlopen_self_static+:} false; then :
   $as_echo_n "(cached) " >&6
 else
-         if test "$cross_compiling" = yes; then :
+         if test yes = "$cross_compiling"; then :
   lt_cv_dlopen_self_static=cross
 else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
@@ -13075,9 +13572,9 @@ else
 #  endif
 #endif
 
-/* When -fvisbility=hidden is used, assume the code has been annotated
+/* When -fvisibility=hidden is used, assume the code has been annotated
    correspondingly for the symbols needed.  */
-#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
+#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
 int fnord () __attribute__((visibility("default")));
 #endif
 
@@ -13107,7 +13604,7 @@ _LT_EOF
   (eval $ac_link) 2>&5
   ac_status=$?
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-  test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then
+  test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then
     (./conftest; exit; ) >&5 2>/dev/null
     lt_status=$?
     case x$lt_status in
@@ -13128,9 +13625,9 @@ fi
 $as_echo "$lt_cv_dlopen_self_static" >&6; }
     fi
 
-    CPPFLAGS="$save_CPPFLAGS"
-    LDFLAGS="$save_LDFLAGS"
-    LIBS="$save_LIBS"
+    CPPFLAGS=$save_CPPFLAGS
+    LDFLAGS=$save_LDFLAGS
+    LIBS=$save_LIBS
     ;;
   esac
 
@@ -13174,7 +13671,7 @@ else
 # FIXME - insert some real tests, host_os isn't really good enough
   case $host_os in
   darwin*)
-    if test -n "$STRIP" ; then
+    if test -n "$STRIP"; then
       striplib="$STRIP -x"
       old_striplib="$STRIP -S"
       { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
@@ -13202,7 +13699,7 @@ fi
 
 
 
-  # Report which library types will actually be built
+  # Report what library types will actually be built
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5
 $as_echo_n "checking if libtool supports shared libraries... " >&6; }
   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5
@@ -13210,13 +13707,13 @@ $as_echo "$can_build_shared" >&6; }
 
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5
 $as_echo_n "checking whether to build shared libraries... " >&6; }
-  test "$can_build_shared" = "no" && enable_shared=no
+  test no = "$can_build_shared" && enable_shared=no
 
   # On AIX, shared libraries and static libraries use the same namespace, and
   # are all built from PIC.
   case $host_os in
   aix3*)
-    test "$enable_shared" = yes && enable_static=no
+    test yes = "$enable_shared" && enable_static=no
     if test -n "$RANLIB"; then
       archive_cmds="$archive_cmds~\$RANLIB \$lib"
       postinstall_cmds='$RANLIB $lib'
@@ -13224,8 +13721,12 @@ $as_echo_n "checking whether to build shared libraries... " >&6; }
     ;;
 
   aix[4-9]*)
-    if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
-      test "$enable_shared" = yes && enable_static=no
+    if test ia64 != "$host_cpu"; then
+      case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in
+      yes,aix,yes) ;;                  # shared object as lib.so file only
+      yes,svr4,*) ;;                   # shared object as lib.so archive member only
+      yes,*) enable_static=no ;;       # shared object in lib.a archive as well
+      esac
     fi
     ;;
   esac
@@ -13235,7 +13736,7 @@ $as_echo "$enable_shared" >&6; }
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5
 $as_echo_n "checking whether to build static libraries... " >&6; }
   # Make sure either enable_shared or enable_static is yes.
-  test "$enable_shared" = yes || enable_static=yes
+  test yes = "$enable_shared" || enable_static=yes
   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5
 $as_echo "$enable_static" >&6; }
 
@@ -13249,7 +13750,7 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
-CC="$lt_save_CC"
+CC=$lt_save_CC
 
 
 
@@ -13279,30 +13780,28 @@ ac_config_headers="$ac_config_headers config.h"
 
 
 # Define below date and version information to be put into man pages etc.
-date=2015-11-06
-roff_version=`echo 2.7.5 | sed 's/-/\\-/g'`
+date=2016-12-11
+roff_version=`echo 2.7.6 | sed 's/-/\\-/g'`
 
 # We have to be a bit naughty here and supply options.
 # The autoconf literature states that only features that can be separately
 # 'built' should use --enable and friends. Oh well...
 
-# Check whether --enable-setuid was given.
-if test "${enable_setuid+set}" = set; then :
-  enableval=$enable_setuid; if test "$enableval" = "yes"
+# Check whether --enable-cache-owner was given.
+if test "${enable_cache_owner+set}" = set; then :
+  enableval=$enable_cache_owner; if test "$enableval" = "yes"
           then
                enableval=man
           fi
           if test "$enableval" = "no"
           then
                man_owner=
-               man_mode="755"
-               { $as_echo "$as_me:${as_lineno-$LINENO}: Man will not be installed setuid" >&5
-$as_echo "$as_me: Man will not be installed setuid" >&6;}
+               { $as_echo "$as_me:${as_lineno-$LINENO}: System-wide cache files will have unconstrained ownership" >&5
+$as_echo "$as_me: System-wide cache files will have unconstrained ownership" >&6;}
           else
                man_owner=$enableval
-               man_mode="4755"
-               { $as_echo "$as_me:${as_lineno-$LINENO}: Man will be installed setuid $enableval" >&5
-$as_echo "$as_me: Man will be installed setuid $enableval" >&6;}
+               { $as_echo "$as_me:${as_lineno-$LINENO}: System-wide cache files will be owned by $enableval" >&5
+$as_echo "$as_me: System-wide cache files will be owned by $enableval" >&6;}
 
 cat >>confdefs.h <<_ACEOF
 #define SECURE_MAN_UID "$man_owner"
@@ -13311,7 +13810,6 @@ _ACEOF
           fi
 else
   man_owner=man
-          man_mode="4755"
           cat >>confdefs.h <<_ACEOF
 #define SECURE_MAN_UID "$man_owner"
 _ACEOF
 
 
 
+# Check whether --enable-setuid was given.
+if test "${enable_setuid+set}" = set; then :
+  enableval=$enable_setuid; if test "$enableval" = "yes"
+          then
+               if test -z "$man_owner"
+               then
+                       as_fn_error $? "--enable-setuid is incompatible with --disable-cache-owner" "$LINENO" 5
+               fi
+               man_mode="6755"
+               { $as_echo "$as_me:${as_lineno-$LINENO}: Man will be installed setuid $man_owner" >&5
+$as_echo "$as_me: Man will be installed setuid $man_owner" >&6;}
+          elif test "$enableval" = "no"
+          then
+               man_mode="755"
+               { $as_echo "$as_me:${as_lineno-$LINENO}: Man will not be installed setuid" >&5
+$as_echo "$as_me: Man will not be installed setuid" >&6;}
+          else
+               as_fn_error $? "--enable-setuid=$enableval is no longer valid; consider --enable-cache-owner=$enableval --enable-setuid instead" "$LINENO" 5
+          fi
+else
+  if test -z "$man_owner"
+          then
+               man_mode="755"
+          else
+               man_mode="6755"
+          fi
+fi
+
+
+
 
 # Check whether --enable-undoc was given.
 if test "${enable_undoc+set}" = set; then :
 
 done
 
-for ac_func in posix_fadvise
+for ac_func in lchown posix_fadvise
 do :
-  ac_fn_c_check_func "$LINENO" "posix_fadvise" "ac_cv_func_posix_fadvise"
-if test "x$ac_cv_func_posix_fadvise" = xyes; then :
+  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
   cat >>confdefs.h <<_ACEOF
-#define HAVE_POSIX_FADVISE 1
+#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
 _ACEOF
 
 fi
@@ -46440,7 +46969,7 @@ else
 fi
 
 
-ac_config_files="$ac_config_files Makefile gnulib/lib/Makefile init/Makefile init/systemd/Makefile lib/Makefile src/Makefile src/man_db.conf src/tests/Makefile man/Makefile man/replace.sin man/po4a/Makefile man/da/Makefile man/de/Makefile man/es/Makefile man/fr/Makefile man/id/Makefile man/it/Makefile man/ja/Makefile man/nl/Makefile man/pl/Makefile man/ru/Makefile man/zh_CN/Makefile manual/Makefile libdb/Makefile docs/Makefile tools/Makefile include/comp_src.h include/manconfig.h po/Makefile.in"
+ac_config_files="$ac_config_files Makefile gnulib/lib/Makefile init/Makefile init/systemd/Makefile lib/Makefile src/Makefile src/man_db.conf src/tests/Makefile man/Makefile man/replace.sin man/po4a/Makefile man/da/Makefile man/de/Makefile man/es/Makefile man/fr/Makefile man/id/Makefile man/it/Makefile man/ja/Makefile man/nl/Makefile man/pl/Makefile man/ru/Makefile man/sv/Makefile man/zh_CN/Makefile manual/Makefile libdb/Makefile docs/Makefile tools/Makefile include/comp_src.h include/manconfig.h po/Makefile.in"
 
 if test -f "$srcdir/gnulib/po/Makefile.in.in"; then
        ac_config_files="$ac_config_files gnulib/po/Makefile.in"
@@ -47081,7 +47610,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by man-db $as_me 2.7.5, which was
+This file was extended by man-db $as_me 2.7.6, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -47147,7 +47676,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-man-db config.status 2.7.5
+man-db config.status 2.7.6
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
@@ -47282,6 +47811,7 @@ enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`'
 enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`'
 pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`'
 enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`'
+shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $SED "$delay_single_quote_subst"`'
 SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`'
 ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`'
 PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`'
@@ -47331,10 +47861,13 @@ compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`'
 GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`'
 lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`'
 lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`'
+lt_cv_sys_global_symbol_to_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`'
 lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`'
 lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`'
+lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $SED "$delay_single_quote_subst"`'
 nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`'
 lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`'
+lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $SED "$delay_single_quote_subst"`'
 objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`'
 MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`'
 lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`'
@@ -47399,7 +47932,8 @@ finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`'
 finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`'
 hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`'
 sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`'
-sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`'
+configure_time_dlsearch_path='`$ECHO "$configure_time_dlsearch_path" | $SED "$delay_single_quote_subst"`'
+configure_time_lt_sys_library_path='`$ECHO "$configure_time_lt_sys_library_path" | $SED "$delay_single_quote_subst"`'
 hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`'
 enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`'
 enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`'
@@ -47450,9 +47984,12 @@ CFLAGS \
 compiler \
 lt_cv_sys_global_symbol_pipe \
 lt_cv_sys_global_symbol_to_cdecl \
+lt_cv_sys_global_symbol_to_import \
 lt_cv_sys_global_symbol_to_c_name_address \
 lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \
+lt_cv_nm_interface \
 nm_file_list_spec \
+lt_cv_truncate_bin \
 lt_prog_compiler_no_builtin_flag \
 lt_prog_compiler_pic \
 lt_prog_compiler_wl \
@@ -47487,7 +48024,7 @@ old_striplib \
 striplib; do
     case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
     *[\\\\\\\`\\"\\\$]*)
-      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\""
+      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes
       ;;
     *)
       eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
@@ -47514,10 +48051,11 @@ postinstall_cmds \
 postuninstall_cmds \
 finish_cmds \
 sys_lib_search_path_spec \
-sys_lib_dlsearch_path_spec; do
+configure_time_dlsearch_path \
+configure_time_lt_sys_library_path; do
     case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
     *[\\\\\\\`\\"\\\$]*)
-      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\""
+      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes
       ;;
     *)
       eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
@@ -47526,19 +48064,16 @@ sys_lib_dlsearch_path_spec; do
 done
 
 ac_aux_dir='$ac_aux_dir'
-xsi_shell='$xsi_shell'
-lt_shell_append='$lt_shell_append'
 
-# See if we are running on zsh, and set the options which allow our
+# See if we are running on zsh, and set the options that allow our
 # commands through without removal of \ escapes INIT.
-if test -n "\${ZSH_VERSION+set}" ; then
+if test -n "\${ZSH_VERSION+set}"; then
    setopt NO_GLOB_SUBST
 fi
 
 
     PACKAGE='$PACKAGE'
     VERSION='$VERSION'
-    TIMESTAMP='$TIMESTAMP'
     RM='$RM'
     ofile='$ofile'
 
@@ -47585,6 +48120,7 @@ do
     "man/nl/Makefile") CONFIG_FILES="$CONFIG_FILES man/nl/Makefile" ;;
     "man/pl/Makefile") CONFIG_FILES="$CONFIG_FILES man/pl/Makefile" ;;
     "man/ru/Makefile") CONFIG_FILES="$CONFIG_FILES man/ru/Makefile" ;;
+    "man/sv/Makefile") CONFIG_FILES="$CONFIG_FILES man/sv/Makefile" ;;
     "man/zh_CN/Makefile") CONFIG_FILES="$CONFIG_FILES man/zh_CN/Makefile" ;;
     "manual/Makefile") CONFIG_FILES="$CONFIG_FILES manual/Makefile" ;;
     "libdb/Makefile") CONFIG_FILES="$CONFIG_FILES libdb/Makefile" ;;
@@ -48284,55 +48820,52 @@ $as_echo X"$file" |
  ;;
     "libtool":C)
 
-    # See if we are running on zsh, and set the options which allow our
+    # See if we are running on zsh, and set the options that allow our
     # commands through without removal of \ escapes.
-    if test -n "${ZSH_VERSION+set}" ; then
+    if test -n "${ZSH_VERSION+set}"; then
       setopt NO_GLOB_SUBST
     fi
 
-    cfgfile="${ofile}T"
+    cfgfile=${ofile}T
     trap "$RM \"$cfgfile\"; exit 1" 1 2 15
     $RM "$cfgfile"
 
     cat <<_LT_EOF >> "$cfgfile"
 #! $SHELL
-
-# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
-# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
+# Generated automatically by $as_me ($PACKAGE) $VERSION
 # NOTE: Changes made to this file will be lost: look at ltmain.sh.
+
+# Provide generalized library-building support services.
+# Written by Gordon Matzigkeit, 1996
+
+# Copyright (C) 2014 Free Software Foundation, Inc.
+# This is free software; see the source for copying conditions.  There is NO
+# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+# GNU Libtool is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of of the License, or
+# (at your option) any later version.
 #
-#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
-#                 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-#                 Foundation, Inc.
-#   Written by Gordon Matzigkeit, 1996
-#
-#   This file is part of GNU Libtool.
-#
-# GNU Libtool is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation; either version 2 of
-# the License, or (at your option) any later version.
-#
-# As a special exception to the GNU General Public License,
-# if you distribute this file as part of a program or library that
-# is built using GNU Libtool, you may include this file under the
-# same distribution terms that you use for the rest of that program.
+# As a special exception to the GNU General Public License, if you
+# distribute this file as part of a program or library that is built
+# using GNU Libtool, you may include this file under the  same
+# distribution terms that you use for the rest of that program.
 #
-# GNU Libtool is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# GNU Libtool is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with GNU Libtool; see the file COPYING.  If not, a copy
-# can be downloaded from http://www.gnu.org/licenses/gpl.html, or
-# obtained by writing to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 
 # The names of the tagged configurations supported by this script.
-available_tags=""
+available_tags=''
+
+# Configured defaults for sys_lib_dlsearch_path munging.
+: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"}
 
 # ### BEGIN LIBTOOL CONFIG
 
@@ -48352,6 +48885,9 @@ pic_mode=$pic_mode
 # Whether or not to optimize for fast installation.
 fast_install=$enable_fast_install
 
+# Shared archive member basename,for filename based shared library versioning on AIX.
+shared_archive_member_spec=$shared_archive_member_spec
+
 # Shell to use when invoking shell scripts.
 SHELL=$lt_SHELL
 
@@ -48469,18 +49005,27 @@ global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
 # Transform the output of nm in a proper C declaration.
 global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
 
+# Transform the output of nm into a list of symbols to manually relocate.
+global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import
+
 # Transform the output of nm in a C name address pair.
 global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
 
 # Transform the output of nm in a C name address pair when lib prefix is needed.
 global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
 
+# The name lister interface.
+nm_interface=$lt_lt_cv_nm_interface
+
 # Specify filename containing input files for \$NM.
 nm_file_list_spec=$lt_nm_file_list_spec
 
-# The root where to search for dependent libraries,and in which our libraries should be installed.
+# The root where to search for dependent libraries,and where our libraries should be installed.
 lt_sysroot=$lt_sysroot
 
+# Command to truncate a binary pipe.
+lt_truncate_bin=$lt_lt_cv_truncate_bin
+
 # The name of the directory that contains temporary libtool files.
 objdir=$objdir
 
@@ -48571,8 +49116,11 @@ hardcode_into_libs=$hardcode_into_libs
 # Compile-time system search path for libraries.
 sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
 
-# Run-time system search path for libraries.
-sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
+# Detected run-time system search path for libraries.
+sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path
+
+# Explicit LT_SYS_LIBRARY_PATH set during ./configure time.
+configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path
 
 # Whether dlopen is supported.
 dlopen_support=$enable_dlopen
@@ -48665,13 +49213,13 @@ hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
 # Whether we need a single "-rpath" flag with a separated argument.
 hardcode_libdir_separator=$lt_hardcode_libdir_separator
 
-# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
+# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes
 # DIR into the resulting binary.
 hardcode_direct=$hardcode_direct
 
-# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
+# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes
 # DIR into the resulting binary and the resulting library dependency is
-# "absolute",i.e impossible to change by setting \${shlibpath_var} if the
+# "absolute",i.e impossible to change by setting \$shlibpath_var if the
 # library is relocated.
 hardcode_direct_absolute=$hardcode_direct_absolute
 
@@ -48723,13 +49271,72 @@ hardcode_action=$hardcode_action
 
 _LT_EOF
 
+    cat <<'_LT_EOF' >> "$cfgfile"
+
+# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE
+
+# func_munge_path_list VARIABLE PATH
+# -----------------------------------
+# VARIABLE is name of variable containing _space_ separated list of
+# directories to be munged by the contents of PATH, which is string
+# having a format:
+# "DIR[:DIR]:"
+#       string "DIR[ DIR]" will be prepended to VARIABLE
+# ":DIR[:DIR]"
+#       string "DIR[ DIR]" will be appended to VARIABLE
+# "DIRP[:DIRP]::[DIRA:]DIRA"
+#       string "DIRP[ DIRP]" will be prepended to VARIABLE and string
+#       "DIRA[ DIRA]" will be appended to VARIABLE
+# "DIR[:DIR]"
+#       VARIABLE will be replaced by "DIR[ DIR]"
+func_munge_path_list ()
+{
+    case x$2 in
+    x)
+        ;;
+    *:)
+        eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\"
+        ;;
+    x:*)
+        eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\"
+        ;;
+    *::*)
+        eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\"
+        eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\"
+        ;;
+    *)
+        eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\"
+        ;;
+    esac
+}
+
+
+# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.
+func_cc_basename ()
+{
+    for cc_temp in $*""; do
+      case $cc_temp in
+        compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
+        distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
+        \-*) ;;
+        *) break;;
+      esac
+    done
+    func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
+}
+
+
+# ### END FUNCTIONS SHARED WITH CONFIGURE
+
+_LT_EOF
+
   case $host_os in
   aix3*)
     cat <<\_LT_EOF >> "$cfgfile"
 # AIX sometimes has problems with the GCC collect2 program.  For some
 # reason, if we set the COLLECT_NAMES environment variable, the problems
 # vanish in a puff of smoke.
-if test "X${COLLECT_NAMES+set}" != Xset; then
+if test set != "${COLLECT_NAMES+set}"; then
   COLLECT_NAMES=
   export COLLECT_NAMES
 fi
@@ -48738,7 +49345,7 @@ _LT_EOF
   esac
 
 
-ltmain="$ac_aux_dir/ltmain.sh"
+ltmain=$ac_aux_dir/ltmain.sh
 
 
   # We use sed instead of cat because bash on DJGPP gets confused if
@@ -48748,165 +49355,6 @@ ltmain="$ac_aux_dir/ltmain.sh"
   sed '$q' "$ltmain" >> "$cfgfile" \
      || (rm -f "$cfgfile"; exit 1)
 
-  if test x"$xsi_shell" = xyes; then
-  sed -e '/^func_dirname ()$/,/^} # func_dirname /c\
-func_dirname ()\
-{\
-\    case ${1} in\
-\      */*) func_dirname_result="${1%/*}${2}" ;;\
-\      *  ) func_dirname_result="${3}" ;;\
-\    esac\
-} # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \
-  && mv -f "$cfgfile.tmp" "$cfgfile" \
-    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-test 0 -eq $? || _lt_function_replace_fail=:
-
-
-  sed -e '/^func_basename ()$/,/^} # func_basename /c\
-func_basename ()\
-{\
-\    func_basename_result="${1##*/}"\
-} # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \
-  && mv -f "$cfgfile.tmp" "$cfgfile" \
-    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-test 0 -eq $? || _lt_function_replace_fail=:
-
-
-  sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\
-func_dirname_and_basename ()\
-{\
-\    case ${1} in\
-\      */*) func_dirname_result="${1%/*}${2}" ;;\
-\      *  ) func_dirname_result="${3}" ;;\
-\    esac\
-\    func_basename_result="${1##*/}"\
-} # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \
-  && mv -f "$cfgfile.tmp" "$cfgfile" \
-    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-test 0 -eq $? || _lt_function_replace_fail=:
-
-
-  sed -e '/^func_stripname ()$/,/^} # func_stripname /c\
-func_stripname ()\
-{\
-\    # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\
-\    # positional parameters, so assign one to ordinary parameter first.\
-\    func_stripname_result=${3}\
-\    func_stripname_result=${func_stripname_result#"${1}"}\
-\    func_stripname_result=${func_stripname_result%"${2}"}\
-} # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \
-  && mv -f "$cfgfile.tmp" "$cfgfile" \
-    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-test 0 -eq $? || _lt_function_replace_fail=:
-
-
-  sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\
-func_split_long_opt ()\
-{\
-\    func_split_long_opt_name=${1%%=*}\
-\    func_split_long_opt_arg=${1#*=}\
-} # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \
-  && mv -f "$cfgfile.tmp" "$cfgfile" \
-    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-test 0 -eq $? || _lt_function_replace_fail=:
-
-
-  sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\
-func_split_short_opt ()\
-{\
-\    func_split_short_opt_arg=${1#??}\
-\    func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\
-} # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \
-  && mv -f "$cfgfile.tmp" "$cfgfile" \
-    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-test 0 -eq $? || _lt_function_replace_fail=:
-
-
-  sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\
-func_lo2o ()\
-{\
-\    case ${1} in\
-\      *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\
-\      *)    func_lo2o_result=${1} ;;\
-\    esac\
-} # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \
-  && mv -f "$cfgfile.tmp" "$cfgfile" \
-    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-test 0 -eq $? || _lt_function_replace_fail=:
-
-
-  sed -e '/^func_xform ()$/,/^} # func_xform /c\
-func_xform ()\
-{\
-    func_xform_result=${1%.*}.lo\
-} # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \
-  && mv -f "$cfgfile.tmp" "$cfgfile" \
-    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-test 0 -eq $? || _lt_function_replace_fail=:
-
-
-  sed -e '/^func_arith ()$/,/^} # func_arith /c\
-func_arith ()\
-{\
-    func_arith_result=$(( $* ))\
-} # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \
-  && mv -f "$cfgfile.tmp" "$cfgfile" \
-    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-test 0 -eq $? || _lt_function_replace_fail=:
-
-
-  sed -e '/^func_len ()$/,/^} # func_len /c\
-func_len ()\
-{\
-    func_len_result=${#1}\
-} # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \
-  && mv -f "$cfgfile.tmp" "$cfgfile" \
-    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-test 0 -eq $? || _lt_function_replace_fail=:
-
-fi
-
-if test x"$lt_shell_append" = xyes; then
-  sed -e '/^func_append ()$/,/^} # func_append /c\
-func_append ()\
-{\
-    eval "${1}+=\\${2}"\
-} # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \
-  && mv -f "$cfgfile.tmp" "$cfgfile" \
-    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-test 0 -eq $? || _lt_function_replace_fail=:
-
-
-  sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\
-func_append_quoted ()\
-{\
-\    func_quote_for_eval "${2}"\
-\    eval "${1}+=\\\\ \\$func_quote_for_eval_result"\
-} # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \
-  && mv -f "$cfgfile.tmp" "$cfgfile" \
-    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-test 0 -eq $? || _lt_function_replace_fail=:
-
-
-  # Save a `func_append' function call where possible by direct use of '+='
-  sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \
-    && mv -f "$cfgfile.tmp" "$cfgfile" \
-      || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-  test 0 -eq $? || _lt_function_replace_fail=:
-else
-  # Save a `func_append' function call even when '+=' is not available
-  sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \
-    && mv -f "$cfgfile.tmp" "$cfgfile" \
-      || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-  test 0 -eq $? || _lt_function_replace_fail=:
-fi
-
-if test x"$_lt_function_replace_fail" = x":"; then
-  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5
-$as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;}
-fi
-
-
    mv -f "$cfgfile" "$ofile" ||
     (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
   chmod +x "$ofile"
index 2e4c310..489b8d7 100644 (file)
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
 m4_pattern_forbid([^MAN_])
 
 # Initialise and check we're in the correct directory.
-AC_INIT([man-db], [2.7.5], [cjwatson@debian.org])
+AC_INIT([man-db], [2.7.6], [cjwatson@debian.org])
 AC_CONFIG_AUX_DIR([build-aux])
 AM_INIT_AUTOMAKE([1.11 -Wall -Wno-override -Werror foreign dist-xz no-dist-gzip parallel-tests])
 AM_MAINTAINER_MODE
@@ -17,7 +17,7 @@ AC_CONFIG_HEADER([config.h])
 AC_CANONICAL_HOST
 
 # Define below date and version information to be put into man pages etc.
-date=2015-11-06
+date=2016-12-11
 AC_SUBST([date])dnl
 roff_version=`echo AC_PACKAGE_VERSION | sed 's/-/\\-/g'`
 AC_SUBST([roff_version])dnl
@@ -25,6 +25,7 @@ AC_SUBST([roff_version])dnl
 # We have to be a bit naughty here and supply options.
 # The autoconf literature states that only features that can be separately
 # 'built' should use --enable and friends. Oh well...
+MAN_ARG_CACHE_OWNER
 MAN_ARG_SETUID
 MAN_ARG_UNDOC
 MAN_ARG_DEVICE
@@ -328,7 +329,7 @@ dnl AC_PROG_LEX calls AC_TRY_LINK: must come after above 3
 AC_PROG_LEX
 gl_INIT
 AC_CHECK_HEADERS([fcntl.h sys/file.h linux/fiemap.h])
-AC_CHECK_FUNCS([posix_fadvise])
+AC_CHECK_FUNCS([lchown posix_fadvise])
 
 # Internationalization support.
 AM_GNU_GETTEXT([external])
@@ -470,6 +471,7 @@ AC_CONFIG_FILES([Makefile
        man/nl/Makefile
        man/pl/Makefile
        man/ru/Makefile
+       man/sv/Makefile
        man/zh_CN/Makefile
        manual/Makefile
        libdb/Makefile
index 77f6ca4..1fb6b0f 100644 (file)
@@ -91,6 +91,7 @@ subdir = docs
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -937,6 +938,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
index ac8ff2f..ee49413 100644 (file)
@@ -1,7 +1,7 @@
 Begin4
 Title:         man-db
-Version:       2.7.5
-Entered-date:  2015-11-06
+Version:       2.7.6
+Entered-date:  2016-12-11
 Description:   This package provides the man command. This utility is
                the primary way of examining the on-line help files
                (manual pages).  Other utilities provided include the
@@ -19,7 +19,7 @@ Author:               jwe@che.utexas.edu (John W Eaton)
                cjwatson@debian.org (Colin Watson)
 Maintained-by: cjwatson@debian.org (Colin Watson)
 Primary-site:  http://savannah.nongnu.org/download/man-db/
-               1.5M man-db-2.7.5.tar.xz
+               1.5M man-db-2.7.6.tar.xz
 Alternate-site:        ftp://ftp.debian.org/debian/pool/main/m/man-db/
 Platforms:     Requires GNU groff 1.16.
                Optionally uses GDBM or Berkeley DB (any version with 1.85
index 488d168..42fd80f 100644 (file)
@@ -116,6 +116,7 @@ subdir = gnulib/lib
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -1071,6 +1072,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
index d7c043f..ee80844 100644 (file)
@@ -1,8 +1,6 @@
 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
 #
-#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
-#                 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-#                 Foundation, Inc.
+#   Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc.
 #   Written by Gordon Matzigkeit, 1996
 #
 # This file is free software; the Free Software Foundation gives
 # modifications, as long as this notice is preserved.
 
 m4_define([_LT_COPYING], [dnl
-#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
-#                 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-#                 Foundation, Inc.
-#   Written by Gordon Matzigkeit, 1996
-#
-#   This file is part of GNU Libtool.
-#
-# GNU Libtool is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation; either version 2 of
-# the License, or (at your option) any later version.
+# Copyright (C) 2014 Free Software Foundation, Inc.
+# This is free software; see the source for copying conditions.  There is NO
+# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+# GNU Libtool is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of of the License, or
+# (at your option) any later version.
 #
-# As a special exception to the GNU General Public License,
-# if you distribute this file as part of a program or library that
-# is built using GNU Libtool, you may include this file under the
-# same distribution terms that you use for the rest of that program.
+# As a special exception to the GNU General Public License, if you
+# distribute this file as part of a program or library that is built
+# using GNU Libtool, you may include this file under the  same
+# distribution terms that you use for the rest of that program.
 #
-# GNU Libtool is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# GNU Libtool is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with GNU Libtool; see the file COPYING.  If not, a copy
-# can be downloaded from http://www.gnu.org/licenses/gpl.html, or
-# obtained by writing to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 ])
 
-# serial 57 LT_INIT
+# serial 58 LT_INIT
 
 
 # LT_PREREQ(VERSION)
@@ -67,7 +59,7 @@ esac
 # LT_INIT([OPTIONS])
 # ------------------
 AC_DEFUN([LT_INIT],
-[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT
+[AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK
 AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
 AC_BEFORE([$0], [LT_LANG])dnl
 AC_BEFORE([$0], [LT_OUTPUT])dnl
@@ -91,7 +83,7 @@ dnl Parse OPTIONS
 _LT_SET_OPTIONS([$0], [$1])
 
 # This can be used to rebuild libtool when needed
-LIBTOOL_DEPS="$ltmain"
+LIBTOOL_DEPS=$ltmain
 
 # Always use our own libtool.
 LIBTOOL='$(SHELL) $(top_builddir)/libtool'
@@ -111,26 +103,43 @@ dnl AC_DEFUN([AC_PROG_LIBTOOL], [])
 dnl AC_DEFUN([AM_PROG_LIBTOOL], [])
 
 
+# _LT_PREPARE_CC_BASENAME
+# -----------------------
+m4_defun([_LT_PREPARE_CC_BASENAME], [
+# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.
+func_cc_basename ()
+{
+    for cc_temp in @S|@*""; do
+      case $cc_temp in
+        compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;;
+        distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;;
+        \-*) ;;
+        *) break;;
+      esac
+    done
+    func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
+}
+])# _LT_PREPARE_CC_BASENAME
+
+
 # _LT_CC_BASENAME(CC)
 # -------------------
-# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.
+# It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME,
+# but that macro is also expanded into generated libtool script, which
+# arranges for $SED and $ECHO to be set by different means.
 m4_defun([_LT_CC_BASENAME],
-[for cc_temp in $1""; do
-  case $cc_temp in
-    compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;;
-    distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;;
-    \-*) ;;
-    *) break;;
-  esac
-done
-cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
+[m4_require([_LT_PREPARE_CC_BASENAME])dnl
+AC_REQUIRE([_LT_DECL_SED])dnl
+AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl
+func_cc_basename $1
+cc_basename=$func_cc_basename_result
 ])
 
 
 # _LT_FILEUTILS_DEFAULTS
 # ----------------------
 # It is okay to use these file commands and assume they have been set
-# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'.
+# sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'.
 m4_defun([_LT_FILEUTILS_DEFAULTS],
 [: ${CP="cp -f"}
 : ${MV="mv -f"}
@@ -177,15 +186,16 @@ m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl
 m4_require([_LT_CMD_OLD_ARCHIVE])dnl
 m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
 m4_require([_LT_WITH_SYSROOT])dnl
+m4_require([_LT_CMD_TRUNCATE])dnl
 
 _LT_CONFIG_LIBTOOL_INIT([
-# See if we are running on zsh, and set the options which allow our
+# See if we are running on zsh, and set the options that allow our
 # commands through without removal of \ escapes INIT.
-if test -n "\${ZSH_VERSION+set}" ; then
+if test -n "\${ZSH_VERSION+set}"; then
    setopt NO_GLOB_SUBST
 fi
 ])
-if test -n "${ZSH_VERSION+set}" ; then
+if test -n "${ZSH_VERSION+set}"; then
    setopt NO_GLOB_SUBST
 fi
 
@@ -198,7 +208,7 @@ aix3*)
   # AIX sometimes has problems with the GCC collect2 program.  For some
   # reason, if we set the COLLECT_NAMES environment variable, the problems
   # vanish in a puff of smoke.
-  if test "X${COLLECT_NAMES+set}" != Xset; then
+  if test set != "${COLLECT_NAMES+set}"; then
     COLLECT_NAMES=
     export COLLECT_NAMES
   fi
@@ -209,14 +219,14 @@ esac
 ofile=libtool
 can_build_shared=yes
 
-# All known linkers require a `.a' archive for static linking (except MSVC,
+# All known linkers require a '.a' archive for static linking (except MSVC,
 # which needs '.lib').
 libext=a
 
-with_gnu_ld="$lt_cv_prog_gnu_ld"
+with_gnu_ld=$lt_cv_prog_gnu_ld
 
-old_CC="$CC"
-old_CFLAGS="$CFLAGS"
+old_CC=$CC
+old_CFLAGS=$CFLAGS
 
 # Set sane defaults for various variables
 test -z "$CC" && CC=cc
@@ -269,14 +279,14 @@ no_glob_subst='s/\*/\\\*/g'
 
 # _LT_PROG_LTMAIN
 # ---------------
-# Note that this code is called both from `configure', and `config.status'
+# Note that this code is called both from 'configure', and 'config.status'
 # now that we use AC_CONFIG_COMMANDS to generate libtool.  Notably,
-# `config.status' has no value for ac_aux_dir unless we are using Automake,
+# 'config.status' has no value for ac_aux_dir unless we are using Automake,
 # so we pass a copy along to make sure it has a sensible value anyway.
 m4_defun([_LT_PROG_LTMAIN],
 [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl
 _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir'])
-ltmain="$ac_aux_dir/ltmain.sh"
+ltmain=$ac_aux_dir/ltmain.sh
 ])# _LT_PROG_LTMAIN
 
 
@@ -286,7 +296,7 @@ ltmain="$ac_aux_dir/ltmain.sh"
 
 # So that we can recreate a full libtool script including additional
 # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS
-# in macros and then make a single call at the end using the `libtool'
+# in macros and then make a single call at the end using the 'libtool'
 # label.
 
 
@@ -421,8 +431,8 @@ m4_define([_lt_decl_all_varnames],
 
 # _LT_CONFIG_STATUS_DECLARE([VARNAME])
 # ------------------------------------
-# Quote a variable value, and forward it to `config.status' so that its
-# declaration there will have the same value as in `configure'.  VARNAME
+# Quote a variable value, and forward it to 'config.status' so that its
+# declaration there will have the same value as in 'configure'.  VARNAME
 # must have a single quote delimited value for this to work.
 m4_define([_LT_CONFIG_STATUS_DECLARE],
 [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`'])
@@ -446,7 +456,7 @@ m4_defun([_LT_CONFIG_STATUS_DECLARATIONS],
 # Output comment and list of tags supported by the script
 m4_defun([_LT_LIBTOOL_TAGS],
 [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl
-available_tags="_LT_TAGS"dnl
+available_tags='_LT_TAGS'dnl
 ])
 
 
@@ -474,7 +484,7 @@ m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl
 # _LT_LIBTOOL_CONFIG_VARS
 # -----------------------
 # Produce commented declarations of non-tagged libtool config variables
-# suitable for insertion in the LIBTOOL CONFIG section of the `libtool'
+# suitable for insertion in the LIBTOOL CONFIG section of the 'libtool'
 # script.  Tagged libtool config variables (even for the LIBTOOL CONFIG
 # section) are produced by _LT_LIBTOOL_TAG_VARS.
 m4_defun([_LT_LIBTOOL_CONFIG_VARS],
@@ -500,8 +510,8 @@ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])])
 # Send accumulated output to $CONFIG_STATUS.  Thanks to the lists of
 # variables for single and double quote escaping we saved from calls
 # to _LT_DECL, we can put quote escaped variables declarations
-# into `config.status', and then the shell code to quote escape them in
-# for loops in `config.status'.  Finally, any additional code accumulated
+# into 'config.status', and then the shell code to quote escape them in
+# for loops in 'config.status'.  Finally, any additional code accumulated
 # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded.
 m4_defun([_LT_CONFIG_COMMANDS],
 [AC_PROVIDE_IFELSE([LT_OUTPUT],
@@ -547,7 +557,7 @@ for var in lt_decl_all_varnames([[ \
 ]], lt_decl_quote_varnames); do
     case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
     *[[\\\\\\\`\\"\\\$]]*)
-      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\""
+      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes
       ;;
     *)
       eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
@@ -560,7 +570,7 @@ for var in lt_decl_all_varnames([[ \
 ]], lt_decl_dquote_varnames); do
     case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
     *[[\\\\\\\`\\"\\\$]]*)
-      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\""
+      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes
       ;;
     *)
       eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
@@ -576,7 +586,7 @@ _LT_OUTPUT_LIBTOOL_INIT
 # Generate a child script FILE with all initialization necessary to
 # reuse the environment learned by the parent script, and make the
 # file executable.  If COMMENT is supplied, it is inserted after the
-# `#!' sequence but before initialization text begins.  After this
+# '#!' sequence but before initialization text begins.  After this
 # macro, additional text can be appended to FILE to form the body of
 # the child script.  The macro ends with non-zero status if the
 # file could not be fully written (such as if the disk is full).
@@ -598,7 +608,7 @@ AS_SHELL_SANITIZE
 _AS_PREPARE
 exec AS_MESSAGE_FD>&1
 _ASEOF
-test $lt_write_fail = 0 && chmod +x $1[]dnl
+test 0 = "$lt_write_fail" && chmod +x $1[]dnl
 m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT
 
 # LT_OUTPUT
@@ -621,7 +631,7 @@ exec AS_MESSAGE_LOG_FD>>config.log
 } >&AS_MESSAGE_LOG_FD
 
 lt_cl_help="\
-\`$as_me' creates a local libtool stub from the current configuration,
+'$as_me' creates a local libtool stub from the current configuration,
 for use in further configure time tests before the real libtool is
 generated.
 
@@ -643,7 +653,7 @@ Copyright (C) 2011 Free Software Foundation, Inc.
 This config.lt script is free software; the Free Software Foundation
 gives unlimited permision to copy, distribute and modify it."
 
-while test $[#] != 0
+while test 0 != $[#]
 do
   case $[1] in
     --version | --v* | -V )
@@ -656,10 +666,10 @@ do
       lt_cl_silent=: ;;
 
     -*) AC_MSG_ERROR([unrecognized option: $[1]
-Try \`$[0] --help' for more information.]) ;;
+Try '$[0] --help' for more information.]) ;;
 
     *) AC_MSG_ERROR([unrecognized argument: $[1]
-Try \`$[0] --help' for more information.]) ;;
+Try '$[0] --help' for more information.]) ;;
   esac
   shift
 done
@@ -685,7 +695,7 @@ chmod +x "$CONFIG_LT"
 # open by configure.  Here we exec the FD to /dev/null, effectively closing
 # config.log, so it can be properly (re)opened and appended to by config.lt.
 lt_cl_success=:
-test "$silent" = yes &&
+test yes = "$silent" &&
   lt_config_lt_args="$lt_config_lt_args --quiet"
 exec AS_MESSAGE_LOG_FD>/dev/null
 $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
@@ -705,27 +715,30 @@ m4_defun([_LT_CONFIG],
 _LT_CONFIG_SAVE_COMMANDS([
   m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl
   m4_if(_LT_TAG, [C], [
-    # See if we are running on zsh, and set the options which allow our
+    # See if we are running on zsh, and set the options that allow our
     # commands through without removal of \ escapes.
-    if test -n "${ZSH_VERSION+set}" ; then
+    if test -n "${ZSH_VERSION+set}"; then
       setopt NO_GLOB_SUBST
     fi
 
-    cfgfile="${ofile}T"
+    cfgfile=${ofile}T
     trap "$RM \"$cfgfile\"; exit 1" 1 2 15
     $RM "$cfgfile"
 
     cat <<_LT_EOF >> "$cfgfile"
 #! $SHELL
-
-# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
-# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
+# Generated automatically by $as_me ($PACKAGE) $VERSION
 # NOTE: Changes made to this file will be lost: look at ltmain.sh.
-#
+
+# Provide generalized library-building support services.
+# Written by Gordon Matzigkeit, 1996
+
 _LT_COPYING
 _LT_LIBTOOL_TAGS
 
+# Configured defaults for sys_lib_dlsearch_path munging.
+: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"}
+
 # ### BEGIN LIBTOOL CONFIG
 _LT_LIBTOOL_CONFIG_VARS
 _LT_LIBTOOL_TAG_VARS
@@ -733,13 +746,24 @@ _LT_LIBTOOL_TAG_VARS
 
 _LT_EOF
 
+    cat <<'_LT_EOF' >> "$cfgfile"
+
+# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE
+
+_LT_PREPARE_MUNGE_PATH_LIST
+_LT_PREPARE_CC_BASENAME
+
+# ### END FUNCTIONS SHARED WITH CONFIGURE
+
+_LT_EOF
+
   case $host_os in
   aix3*)
     cat <<\_LT_EOF >> "$cfgfile"
 # AIX sometimes has problems with the GCC collect2 program.  For some
 # reason, if we set the COLLECT_NAMES environment variable, the problems
 # vanish in a puff of smoke.
-if test "X${COLLECT_NAMES+set}" != Xset; then
+if test set != "${COLLECT_NAMES+set}"; then
   COLLECT_NAMES=
   export COLLECT_NAMES
 fi
@@ -756,8 +780,6 @@ _LT_EOF
   sed '$q' "$ltmain" >> "$cfgfile" \
      || (rm -f "$cfgfile"; exit 1)
 
-  _LT_PROG_REPLACE_SHELLFNS
-
    mv -f "$cfgfile" "$ofile" ||
     (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
   chmod +x "$ofile"
@@ -775,7 +797,6 @@ _LT_EOF
 [m4_if([$1], [], [
     PACKAGE='$PACKAGE'
     VERSION='$VERSION'
-    TIMESTAMP='$TIMESTAMP'
     RM='$RM'
     ofile='$ofile'], [])
 ])dnl /_LT_CONFIG_SAVE_COMMANDS
@@ -974,7 +995,7 @@ m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[
 
     AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod],
       [lt_cv_apple_cc_single_mod=no
-      if test -z "${LT_MULTI_MODULE}"; then
+      if test -z "$LT_MULTI_MODULE"; then
        # By default we will add the -single_module flag. You can override
        # by either setting the environment variable LT_MULTI_MODULE
        # non-empty at configure time, or by adding -multi_module to the
@@ -992,7 +1013,7 @@ m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[
          cat conftest.err >&AS_MESSAGE_LOG_FD
        # Otherwise, if the output was created with a 0 exit code from
        # the compiler, it worked.
-       elif test -f libconftest.dylib && test $_lt_result -eq 0; then
+       elif test -f libconftest.dylib && test 0 = "$_lt_result"; then
          lt_cv_apple_cc_single_mod=yes
        else
          cat conftest.err >&AS_MESSAGE_LOG_FD
@@ -1010,7 +1031,7 @@ m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[
       AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
        [lt_cv_ld_exported_symbols_list=yes],
        [lt_cv_ld_exported_symbols_list=no])
-       LDFLAGS="$save_LDFLAGS"
+       LDFLAGS=$save_LDFLAGS
     ])
 
     AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load],
@@ -1032,7 +1053,7 @@ _LT_EOF
       _lt_result=$?
       if test -s conftest.err && $GREP force_load conftest.err; then
        cat conftest.err >&AS_MESSAGE_LOG_FD
-      elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then
+      elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then
        lt_cv_ld_force_load=yes
       else
        cat conftest.err >&AS_MESSAGE_LOG_FD
@@ -1042,32 +1063,32 @@ _LT_EOF
     ])
     case $host_os in
     rhapsody* | darwin1.[[012]])
-      _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;
+      _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;;
     darwin1.*)
-      _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
+      _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;
     darwin*) # darwin 5.x on
       # if running on 10.5 or later, the deployment target defaults
       # to the OS version, if on x86, and 10.4, the deployment
       # target defaults to 10.4. Don't you love it?
       case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
        10.0,*86*-darwin8*|10.0,*-darwin[[91]]*)
-         _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
-       10.[[012]]*)
-         _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
+         _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;
+       10.[[012]][[,.]]*)
+         _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;
        10.*)
-         _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
+         _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;
       esac
     ;;
   esac
-    if test "$lt_cv_apple_cc_single_mod" = "yes"; then
+    if test yes = "$lt_cv_apple_cc_single_mod"; then
       _lt_dar_single_mod='$single_module'
     fi
-    if test "$lt_cv_ld_exported_symbols_list" = "yes"; then
-      _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
+    if test yes = "$lt_cv_ld_exported_symbols_list"; then
+      _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym'
     else
-      _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}'
+      _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib'
     fi
-    if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then
+    if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then
       _lt_dsymutil='~$DSYMUTIL $lib || :'
     else
       _lt_dsymutil=
@@ -1087,29 +1108,29 @@ m4_defun([_LT_DARWIN_LINKER_FEATURES],
   _LT_TAGVAR(hardcode_direct, $1)=no
   _LT_TAGVAR(hardcode_automatic, $1)=yes
   _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
-  if test "$lt_cv_ld_force_load" = "yes"; then
-    _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
+  if test yes = "$lt_cv_ld_force_load"; then
+    _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
     m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes],
                   [FC],  [_LT_TAGVAR(compiler_needs_object, $1)=yes])
   else
     _LT_TAGVAR(whole_archive_flag_spec, $1)=''
   fi
   _LT_TAGVAR(link_all_deplibs, $1)=yes
-  _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined"
+  _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined
   case $cc_basename in
-     ifort*) _lt_dar_can_shared=yes ;;
+     ifort*|nagfor*) _lt_dar_can_shared=yes ;;
      *) _lt_dar_can_shared=$GCC ;;
   esac
-  if test "$_lt_dar_can_shared" = "yes"; then
+  if test yes = "$_lt_dar_can_shared"; then
     output_verbose_link_cmd=func_echo_all
-    _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}"
-    _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
-    _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
-    _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
+    _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil"
+    _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil"
+    _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil"
+    _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil"
     m4_if([$1], [CXX],
-[   if test "$lt_cv_apple_cc_single_mod" != "yes"; then
-      _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}"
-      _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}"
+[   if test yes != "$lt_cv_apple_cc_single_mod"; then
+      _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil"
+      _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil"
     fi
 ],[])
   else
@@ -1129,7 +1150,7 @@ m4_defun([_LT_DARWIN_LINKER_FEATURES],
 # Allow to override them for all tags through lt_cv_aix_libpath.
 m4_defun([_LT_SYS_MODULE_PATH_AIX],
 [m4_require([_LT_DECL_SED])dnl
-if test "${lt_cv_aix_libpath+set}" = set; then
+if test set = "${lt_cv_aix_libpath+set}"; then
   aix_libpath=$lt_cv_aix_libpath
 else
   AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])],
@@ -1147,7 +1168,7 @@ else
     _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
   fi],[])
   if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then
-    _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib"
+    _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib
   fi
   ])
   aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])
@@ -1167,8 +1188,8 @@ m4_define([_LT_SHELL_INIT],
 # -----------------------
 # Find how we can fake an echo command that does not interpret backslash.
 # In particular, with Autoconf 2.60 or later we add some code to the start
-# of the generated configure script which will find a shell with a builtin
-# printf (which we can use as an echo command).
+# of the generated configure script that will find a shell with a builtin
+# printf (that we can use as an echo command).
 m4_defun([_LT_PROG_ECHO_BACKSLASH],
 [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
 ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO
@@ -1196,10 +1217,10 @@ fi
 # Invoke $ECHO with all args, space-separated.
 func_echo_all ()
 {
-    $ECHO "$*" 
+    $ECHO "$*"
 }
 
-case "$ECHO" in
+case $ECHO in
   printf*) AC_MSG_RESULT([printf]) ;;
   print*) AC_MSG_RESULT([print -r]) ;;
   *) AC_MSG_RESULT([cat]) ;;
@@ -1225,16 +1246,17 @@ _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes])
 AC_DEFUN([_LT_WITH_SYSROOT],
 [AC_MSG_CHECKING([for sysroot])
 AC_ARG_WITH([sysroot],
-[  --with-sysroot[=DIR] Search for dependent libraries within DIR
-                        (or the compiler's sysroot if not specified).],
+[AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@],
+  [Search for dependent libraries within DIR (or the compiler's sysroot
+   if not specified).])],
 [], [with_sysroot=no])
 
 dnl lt_sysroot will always be passed unquoted.  We quote it here
 dnl in case the user passed a directory name.
 lt_sysroot=
-case ${with_sysroot} in #(
+case $with_sysroot in #(
  yes)
-   if test "$GCC" = yes; then
+   if test yes = "$GCC"; then
      lt_sysroot=`$CC --print-sysroot 2>/dev/null`
    fi
    ;; #(
@@ -1244,14 +1266,14 @@ case ${with_sysroot} in #(
  no|'')
    ;; #(
  *)
-   AC_MSG_RESULT([${with_sysroot}])
+   AC_MSG_RESULT([$with_sysroot])
    AC_MSG_ERROR([The sysroot must be an absolute path.])
    ;;
 esac
 
  AC_MSG_RESULT([${lt_sysroot:-no}])
 _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
-[dependent libraries, and in which our libraries should be installed.])])
+[dependent libraries, and where our libraries should be installed.])])
 
 # _LT_ENABLE_LOCK
 # ---------------
@@ -1259,31 +1281,33 @@ m4_defun([_LT_ENABLE_LOCK],
 [AC_ARG_ENABLE([libtool-lock],
   [AS_HELP_STRING([--disable-libtool-lock],
     [avoid locking (might break parallel builds)])])
-test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
+test no = "$enable_libtool_lock" || enable_libtool_lock=yes
 
 # Some flags need to be propagated to the compiler or linker for good
 # libtool support.
 case $host in
 ia64-*-hpux*)
-  # Find out which ABI we are using.
+  # Find out what ABI is being produced by ac_compile, and set mode
+  # options accordingly.
   echo 'int i;' > conftest.$ac_ext
   if AC_TRY_EVAL(ac_compile); then
     case `/usr/bin/file conftest.$ac_objext` in
       *ELF-32*)
-       HPUX_IA64_MODE="32"
+       HPUX_IA64_MODE=32
        ;;
       *ELF-64*)
-       HPUX_IA64_MODE="64"
+       HPUX_IA64_MODE=64
        ;;
     esac
   fi
   rm -rf conftest*
   ;;
 *-*-irix6*)
-  # Find out which ABI we are using.
+  # Find out what ABI is being produced by ac_compile, and set linker
+  # options accordingly.
   echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext
   if AC_TRY_EVAL(ac_compile); then
-    if test "$lt_cv_prog_gnu_ld" = yes; then
+    if test yes = "$lt_cv_prog_gnu_ld"; then
       case `/usr/bin/file conftest.$ac_objext` in
        *32-bit*)
          LD="${LD-ld} -melf32bsmip"
@@ -1312,9 +1336,46 @@ ia64-*-hpux*)
   rm -rf conftest*
   ;;
 
+mips64*-*linux*)
+  # Find out what ABI is being produced by ac_compile, and set linker
+  # options accordingly.
+  echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext
+  if AC_TRY_EVAL(ac_compile); then
+    emul=elf
+    case `/usr/bin/file conftest.$ac_objext` in
+      *32-bit*)
+       emul="${emul}32"
+       ;;
+      *64-bit*)
+       emul="${emul}64"
+       ;;
+    esac
+    case `/usr/bin/file conftest.$ac_objext` in
+      *MSB*)
+       emul="${emul}btsmip"
+       ;;
+      *LSB*)
+       emul="${emul}ltsmip"
+       ;;
+    esac
+    case `/usr/bin/file conftest.$ac_objext` in
+      *N32*)
+       emul="${emul}n32"
+       ;;
+    esac
+    LD="${LD-ld} -m $emul"
+  fi
+  rm -rf conftest*
+  ;;
+
 x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \
 s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
-  # Find out which ABI we are using.
+  # Find out what ABI is being produced by ac_compile, and set linker
+  # options accordingly.  Note that the listed cases only cover the
+  # situations where additional linker options are needed (such as when
+  # doing 32-bit compilation for a host where ld defaults to 64-bit, or
+  # vice versa); the common cases where no linker options are needed do
+  # not appear in the list.
   echo 'int i;' > conftest.$ac_ext
   if AC_TRY_EVAL(ac_compile); then
     case `/usr/bin/file conftest.o` in
@@ -1333,10 +1394,10 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
                ;;
            esac
            ;;
-         powerpc64le-*)
+         powerpc64le-*linux*)
            LD="${LD-ld} -m elf32lppclinux"
            ;;
-         powerpc64-*)
+         powerpc64-*linux*)
            LD="${LD-ld} -m elf32ppclinux"
            ;;
          s390x-*linux*)
@@ -1355,10 +1416,10 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
          x86_64-*linux*)
            LD="${LD-ld} -m elf_x86_64"
            ;;
-         powerpcle-*)
+         powerpcle-*linux*)
            LD="${LD-ld} -m elf64lppc"
            ;;
-         powerpc-*)
+         powerpc-*linux*)
            LD="${LD-ld} -m elf64ppc"
            ;;
          s390*-*linux*|s390*-*tpf*)
@@ -1376,19 +1437,20 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
 
 *-*-sco3.2v5*)
   # On SCO OpenServer 5, we need -belf to get full-featured binaries.
-  SAVE_CFLAGS="$CFLAGS"
+  SAVE_CFLAGS=$CFLAGS
   CFLAGS="$CFLAGS -belf"
   AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
     [AC_LANG_PUSH(C)
      AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
      AC_LANG_POP])
-  if test x"$lt_cv_cc_needs_belf" != x"yes"; then
+  if test yes != "$lt_cv_cc_needs_belf"; then
     # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
-    CFLAGS="$SAVE_CFLAGS"
+    CFLAGS=$SAVE_CFLAGS
   fi
   ;;
 *-*solaris*)
-  # Find out which ABI we are using.
+  # Find out what ABI is being produced by ac_compile, and set linker
+  # options accordingly.
   echo 'int i;' > conftest.$ac_ext
   if AC_TRY_EVAL(ac_compile); then
     case `/usr/bin/file conftest.o` in
@@ -1396,7 +1458,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
       case $lt_cv_prog_gnu_ld in
       yes*)
         case $host in
-        i?86-*-solaris*)
+        i?86-*-solaris*|x86_64-*-solaris*)
           LD="${LD-ld} -m elf_x86_64"
           ;;
         sparc*-*-solaris*)
@@ -1405,7 +1467,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
         esac
         # GNU ld 2.21 introduced _sol2 emulations.  Use them if available.
         if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then
-          LD="${LD-ld}_sol2"
+          LD=${LD-ld}_sol2
         fi
         ;;
       *)
@@ -1421,7 +1483,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
   ;;
 esac
 
-need_locks="$enable_libtool_lock"
+need_locks=$enable_libtool_lock
 ])# _LT_ENABLE_LOCK
 
 
@@ -1440,11 +1502,11 @@ AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file],
      [echo conftest.$ac_objext > conftest.lst
       lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD'
       AC_TRY_EVAL([lt_ar_try])
-      if test "$ac_status" -eq 0; then
+      if test 0 -eq "$ac_status"; then
        # Ensure the archiver fails upon bogus file names.
        rm -f conftest.$ac_objext libconftest.a
        AC_TRY_EVAL([lt_ar_try])
-       if test "$ac_status" -ne 0; then
+       if test 0 -ne "$ac_status"; then
           lt_cv_ar_at_file=@
         fi
       fi
@@ -1452,7 +1514,7 @@ AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file],
      ])
   ])
 
-if test "x$lt_cv_ar_at_file" = xno; then
+if test no = "$lt_cv_ar_at_file"; then
   archiver_list_spec=
 else
   archiver_list_spec=$lt_cv_ar_at_file
@@ -1483,7 +1545,7 @@ old_postuninstall_cmds=
 
 if test -n "$RANLIB"; then
   case $host_os in
-  openbsd*)
+  bitrig* | openbsd*)
     old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib"
     ;;
   *)
@@ -1519,7 +1581,7 @@ AC_CACHE_CHECK([$1], [$2],
   [$2=no
    m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
    echo "$lt_simple_compile_test_code" > conftest.$ac_ext
-   lt_compiler_flag="$3"
+   lt_compiler_flag="$3"  ## exclude from sc_useless_quotes_in_assignment
    # Insert the option either (1) after the last *FLAGS variable, or
    # (2) before a word containing "conftest.", or (3) at the end.
    # Note that $ac_compile itself does not contain backslashes and begins
@@ -1546,7 +1608,7 @@ AC_CACHE_CHECK([$1], [$2],
    $RM conftest*
 ])
 
-if test x"[$]$2" = xyes; then
+if test yes = "[$]$2"; then
     m4_if([$5], , :, [$5])
 else
     m4_if([$6], , :, [$6])
@@ -1568,7 +1630,7 @@ AC_DEFUN([_LT_LINKER_OPTION],
 m4_require([_LT_DECL_SED])dnl
 AC_CACHE_CHECK([$1], [$2],
   [$2=no
-   save_LDFLAGS="$LDFLAGS"
+   save_LDFLAGS=$LDFLAGS
    LDFLAGS="$LDFLAGS $3"
    echo "$lt_simple_link_test_code" > conftest.$ac_ext
    if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
@@ -1587,10 +1649,10 @@ AC_CACHE_CHECK([$1], [$2],
      fi
    fi
    $RM -r conftest*
-   LDFLAGS="$save_LDFLAGS"
+   LDFLAGS=$save_LDFLAGS
 ])
 
-if test x"[$]$2" = xyes; then
+if test yes = "[$]$2"; then
     m4_if([$4], , :, [$4])
 else
     m4_if([$5], , :, [$5])
@@ -1611,7 +1673,7 @@ AC_DEFUN([LT_CMD_MAX_LEN],
 AC_MSG_CHECKING([the maximum length of command line arguments])
 AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
   i=0
-  teststring="ABCD"
+  teststring=ABCD
 
   case $build_os in
   msdosdjgpp*)
@@ -1651,7 +1713,7 @@ AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
     lt_cv_sys_max_cmd_len=8192;
     ;;
 
-  netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
+  bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*)
     # This has been around since 386BSD, at least.  Likely further.
     if test -x /sbin/sysctl; then
       lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
@@ -1702,22 +1764,22 @@ AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
   *)
     lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
     if test -n "$lt_cv_sys_max_cmd_len" && \
-       test undefined != "$lt_cv_sys_max_cmd_len"; then
+       test undefined != "$lt_cv_sys_max_cmd_len"; then
       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
     else
       # Make teststring a little bigger before we do anything with it.
       # a 1K string should be a reasonable start.
-      for i in 1 2 3 4 5 6 7 8 ; do
+      for i in 1 2 3 4 5 6 7 8; do
         teststring=$teststring$teststring
       done
       SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
       # If test is not a shell built-in, we'll probably end up computing a
       # maximum length that is only half of the actual maximum length, but
       # we can't tell.
-      while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \
+      while { test X`env echo "$teststring$teststring" 2>/dev/null` \
                 = "X$teststring$teststring"; } >/dev/null 2>&1 &&
-             test $i != 17 # 1/2 MB should be enough
+             test 17 != "$i" # 1/2 MB should be enough
       do
         i=`expr $i + 1`
         teststring=$teststring$teststring
@@ -1733,7 +1795,7 @@ AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
     ;;
   esac
 ])
-if test -n $lt_cv_sys_max_cmd_len ; then
+if test -n "$lt_cv_sys_max_cmd_len"; then
   AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
 else
   AC_MSG_RESULT(none)
@@ -1761,7 +1823,7 @@ m4_defun([_LT_HEADER_DLFCN],
 # ----------------------------------------------------------------
 m4_defun([_LT_TRY_DLOPEN_SELF],
 [m4_require([_LT_HEADER_DLFCN])dnl
-if test "$cross_compiling" = yes; then :
+if test yes = "$cross_compiling"; then :
   [$4]
 else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
@@ -1808,9 +1870,9 @@ else
 #  endif
 #endif
 
-/* When -fvisbility=hidden is used, assume the code has been annotated
+/* When -fvisibility=hidden is used, assume the code has been annotated
    correspondingly for the symbols needed.  */
-#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
+#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
 int fnord () __attribute__((visibility("default")));
 #endif
 
@@ -1836,7 +1898,7 @@ int main ()
   return status;
 }]
 _LT_EOF
-  if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
+  if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then
     (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
     lt_status=$?
     case x$lt_status in
@@ -1857,7 +1919,7 @@ rm -fr conftest*
 # ------------------
 AC_DEFUN([LT_SYS_DLOPEN_SELF],
 [m4_require([_LT_HEADER_DLFCN])dnl
-if test "x$enable_dlopen" != xyes; then
+if test yes != "$enable_dlopen"; then
   enable_dlopen=unknown
   enable_dlopen_self=unknown
   enable_dlopen_self_static=unknown
@@ -1867,44 +1929,52 @@ else
 
   case $host_os in
   beos*)
-    lt_cv_dlopen="load_add_on"
+    lt_cv_dlopen=load_add_on
     lt_cv_dlopen_libs=
     lt_cv_dlopen_self=yes
     ;;
 
   mingw* | pw32* | cegcc*)
-    lt_cv_dlopen="LoadLibrary"
+    lt_cv_dlopen=LoadLibrary
     lt_cv_dlopen_libs=
     ;;
 
   cygwin*)
-    lt_cv_dlopen="dlopen"
+    lt_cv_dlopen=dlopen
     lt_cv_dlopen_libs=
     ;;
 
   darwin*)
-  # if libdl is installed we need to link against it
+    # if libdl is installed we need to link against it
     AC_CHECK_LIB([dl], [dlopen],
-               [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
-    lt_cv_dlopen="dyld"
+               [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[
+    lt_cv_dlopen=dyld
     lt_cv_dlopen_libs=
     lt_cv_dlopen_self=yes
     ])
     ;;
 
+  tpf*)
+    # Don't try to run any link tests for TPF.  We know it's impossible
+    # because TPF is a cross-compiler, and we know how we open DSOs.
+    lt_cv_dlopen=dlopen
+    lt_cv_dlopen_libs=
+    lt_cv_dlopen_self=no
+    ;;
+
   *)
     AC_CHECK_FUNC([shl_load],
-         [lt_cv_dlopen="shl_load"],
+         [lt_cv_dlopen=shl_load],
       [AC_CHECK_LIB([dld], [shl_load],
-           [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"],
+           [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld],
        [AC_CHECK_FUNC([dlopen],
-             [lt_cv_dlopen="dlopen"],
+             [lt_cv_dlopen=dlopen],
          [AC_CHECK_LIB([dl], [dlopen],
-               [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
+               [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],
            [AC_CHECK_LIB([svld], [dlopen],
-                 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
+                 [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld],
              [AC_CHECK_LIB([dld], [dld_link],
-                   [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"])
+                   [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld])
              ])
            ])
          ])
@@ -1913,21 +1983,21 @@ else
     ;;
   esac
 
-  if test "x$lt_cv_dlopen" != xno; then
-    enable_dlopen=yes
-  else
+  if test no = "$lt_cv_dlopen"; then
     enable_dlopen=no
+  else
+    enable_dlopen=yes
   fi
 
   case $lt_cv_dlopen in
   dlopen)
-    save_CPPFLAGS="$CPPFLAGS"
-    test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
+    save_CPPFLAGS=$CPPFLAGS
+    test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
 
-    save_LDFLAGS="$LDFLAGS"
+    save_LDFLAGS=$LDFLAGS
     wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
 
-    save_LIBS="$LIBS"
+    save_LIBS=$LIBS
     LIBS="$lt_cv_dlopen_libs $LIBS"
 
     AC_CACHE_CHECK([whether a program can dlopen itself],
@@ -1937,7 +2007,7 @@ else
            lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
     ])
 
-    if test "x$lt_cv_dlopen_self" = xyes; then
+    if test yes = "$lt_cv_dlopen_self"; then
       wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
       AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
          lt_cv_dlopen_self_static, [dnl
@@ -1947,9 +2017,9 @@ else
       ])
     fi
 
-    CPPFLAGS="$save_CPPFLAGS"
-    LDFLAGS="$save_LDFLAGS"
-    LIBS="$save_LIBS"
+    CPPFLAGS=$save_CPPFLAGS
+    LDFLAGS=$save_LDFLAGS
+    LIBS=$save_LIBS
     ;;
   esac
 
@@ -2041,8 +2111,8 @@ m4_defun([_LT_COMPILER_FILE_LOCKS],
 m4_require([_LT_FILEUTILS_DEFAULTS])dnl
 _LT_COMPILER_C_O([$1])
 
-hard_links="nottested"
-if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then
+hard_links=nottested
+if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; then
   # do not overwrite the value of need_locks provided by the user
   AC_MSG_CHECKING([if we can lock with hard links])
   hard_links=yes
@@ -2052,8 +2122,8 @@ if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" !=
   ln conftest.a conftest.b 2>&5 || hard_links=no
   ln conftest.a conftest.b 2>/dev/null && hard_links=no
   AC_MSG_RESULT([$hard_links])
-  if test "$hard_links" = no; then
-    AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
+  if test no = "$hard_links"; then
+    AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe])
     need_locks=warn
   fi
 else
@@ -2080,8 +2150,8 @@ objdir=$lt_cv_objdir
 _LT_DECL([], [objdir], [0],
          [The name of the directory that contains temporary libtool files])dnl
 m4_pattern_allow([LT_OBJDIR])dnl
-AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/",
-  [Define to the sub-directory in which libtool stores uninstalled libraries.])
+AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/",
+  [Define to the sub-directory where libtool stores uninstalled libraries.])
 ])# _LT_CHECK_OBJDIR
 
 
@@ -2093,15 +2163,15 @@ m4_defun([_LT_LINKER_HARDCODE_LIBPATH],
 _LT_TAGVAR(hardcode_action, $1)=
 if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" ||
    test -n "$_LT_TAGVAR(runpath_var, $1)" ||
-   test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then
+   test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then
 
   # We can hardcode non-existent directories.
-  if test "$_LT_TAGVAR(hardcode_direct, $1)" != no &&
+  if test no != "$_LT_TAGVAR(hardcode_direct, $1)" &&
      # If the only mechanism to avoid hardcoding is shlibpath_var, we
      # have to relink, otherwise we might link with an installed library
      # when we should be linking with a yet-to-be-installed one
-     ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no &&
-     test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then
+     ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" &&
+     test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then
     # Linking always hardcodes the temporary library directory.
     _LT_TAGVAR(hardcode_action, $1)=relink
   else
@@ -2115,12 +2185,12 @@ else
 fi
 AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)])
 
-if test "$_LT_TAGVAR(hardcode_action, $1)" = relink ||
-   test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then
+if test relink = "$_LT_TAGVAR(hardcode_action, $1)" ||
+   test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then
   # Fast installation is not supported
   enable_fast_install=no
-elif test "$shlibpath_overrides_runpath" = yes ||
-     test "$enable_shared" = no; then
+elif test yes = "$shlibpath_overrides_runpath" ||
+     test no = "$enable_shared"; then
   # Fast installation is not necessary
   enable_fast_install=needless
 fi
@@ -2144,7 +2214,7 @@ else
 # FIXME - insert some real tests, host_os isn't really good enough
   case $host_os in
   darwin*)
-    if test -n "$STRIP" ; then
+    if test -n "$STRIP"; then
       striplib="$STRIP -x"
       old_striplib="$STRIP -S"
       AC_MSG_RESULT([yes])
@@ -2162,6 +2232,47 @@ _LT_DECL([], [striplib], [1])
 ])# _LT_CMD_STRIPLIB
 
 
+# _LT_PREPARE_MUNGE_PATH_LIST
+# ---------------------------
+# Make sure func_munge_path_list() is defined correctly.
+m4_defun([_LT_PREPARE_MUNGE_PATH_LIST],
+[[# func_munge_path_list VARIABLE PATH
+# -----------------------------------
+# VARIABLE is name of variable containing _space_ separated list of
+# directories to be munged by the contents of PATH, which is string
+# having a format:
+# "DIR[:DIR]:"
+#       string "DIR[ DIR]" will be prepended to VARIABLE
+# ":DIR[:DIR]"
+#       string "DIR[ DIR]" will be appended to VARIABLE
+# "DIRP[:DIRP]::[DIRA:]DIRA"
+#       string "DIRP[ DIRP]" will be prepended to VARIABLE and string
+#       "DIRA[ DIRA]" will be appended to VARIABLE
+# "DIR[:DIR]"
+#       VARIABLE will be replaced by "DIR[ DIR]"
+func_munge_path_list ()
+{
+    case x@S|@2 in
+    x)
+        ;;
+    *:)
+        eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\"
+        ;;
+    x:*)
+        eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\"
+        ;;
+    *::*)
+        eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\"
+        eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\"
+        ;;
+    *)
+        eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\"
+        ;;
+    esac
+}
+]])# _LT_PREPARE_PATH_LIST
+
+
 # _LT_SYS_DYNAMIC_LINKER([TAG])
 # -----------------------------
 # PORTME Fill in your ld.so characteristics
@@ -2172,17 +2283,18 @@ m4_require([_LT_FILEUTILS_DEFAULTS])dnl
 m4_require([_LT_DECL_OBJDUMP])dnl
 m4_require([_LT_DECL_SED])dnl
 m4_require([_LT_CHECK_SHELL_FEATURES])dnl
+m4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl
 AC_MSG_CHECKING([dynamic linker characteristics])
 m4_if([$1],
        [], [
-if test "$GCC" = yes; then
+if test yes = "$GCC"; then
   case $host_os in
-    darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
-    *) lt_awk_arg="/^libraries:/" ;;
+    darwin*) lt_awk_arg='/^libraries:/,/LR/' ;;
+    *) lt_awk_arg='/^libraries:/' ;;
   esac
   case $host_os in
-    mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;;
-    *) lt_sed_strip_eq="s,=/,/,g" ;;
+    mingw* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;;
+    *) lt_sed_strip_eq='s|=/|/|g' ;;
   esac
   lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq`
   case $lt_search_path_spec in
@@ -2198,28 +2310,35 @@ if test "$GCC" = yes; then
     ;;
   esac
   # Ok, now we have the path, separated by spaces, we can step through it
-  # and add multilib dir if necessary.
+  # and add multilib dir if necessary...
   lt_tmp_lt_search_path_spec=
-  lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
+  lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
+  # ...but if some path component already ends with the multilib dir we assume
+  # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer).
+  case "$lt_multi_os_dir; $lt_search_path_spec " in
+  "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*)
+    lt_multi_os_dir=
+    ;;
+  esac
   for lt_sys_path in $lt_search_path_spec; do
-    if test -d "$lt_sys_path/$lt_multi_os_dir"; then
-      lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir"
-    else
+    if test -d "$lt_sys_path$lt_multi_os_dir"; then
+      lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir"
+    elif test -n "$lt_multi_os_dir"; then
       test -d "$lt_sys_path" && \
        lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
     fi
   done
   lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk '
-BEGIN {RS=" "; FS="/|\n";} {
-  lt_foo="";
-  lt_count=0;
+BEGIN {RS = " "; FS = "/|\n";} {
+  lt_foo = "";
+  lt_count = 0;
   for (lt_i = NF; lt_i > 0; lt_i--) {
     if ($lt_i != "" && $lt_i != ".") {
       if ($lt_i == "..") {
         lt_count++;
       } else {
         if (lt_count == 0) {
-          lt_foo="/" $lt_i lt_foo;
+          lt_foo = "/" $lt_i lt_foo;
         } else {
           lt_count--;
         }
@@ -2233,7 +2352,7 @@ BEGIN {RS=" "; FS="/|\n";} {
   # for these hosts.
   case $host_os in
     mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\
-      $SED 's,/\([[A-Za-z]]:\),\1,g'` ;;
+      $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;;
   esac
   sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP`
 else
@@ -2242,7 +2361,7 @@ fi])
 library_names_spec=
 libname_spec='lib$name'
 soname_spec=
-shrext_cmds=".so"
+shrext_cmds=.so
 postinstall_cmds=
 postuninstall_cmds=
 finish_cmds=
@@ -2259,14 +2378,17 @@ hardcode_into_libs=no
 # flags to be left without arguments
 need_version=unknown
 
+AC_ARG_VAR([LT_SYS_LIBRARY_PATH],
+[User-defined run-time library search path.])
+
 case $host_os in
 aix3*)
   version_type=linux # correct to gnu/linux during the next big refactor
-  library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname.a'
   shlibpath_var=LIBPATH
 
   # AIX 3 has no versioning support, so we append a major version to the name.
-  soname_spec='${libname}${release}${shared_ext}$major'
+  soname_spec='$libname$release$shared_ext$major'
   ;;
 
 aix[[4-9]]*)
@@ -2274,41 +2396,91 @@ aix[[4-9]]*)
   need_lib_prefix=no
   need_version=no
   hardcode_into_libs=yes
-  if test "$host_cpu" = ia64; then
+  if test ia64 = "$host_cpu"; then
     # AIX 5 supports IA64
-    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
+    library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext'
     shlibpath_var=LD_LIBRARY_PATH
   else
     # With GCC up to 2.95.x, collect2 would create an import file
     # for dependence libraries.  The import file would start with
-    # the line `#! .'.  This would cause the generated library to
-    # depend on `.', always an invalid library.  This was fixed in
+    # the line '#! .'.  This would cause the generated library to
+    # depend on '.', always an invalid library.  This was fixed in
     # development snapshots of GCC prior to 3.0.
     case $host_os in
       aix4 | aix4.[[01]] | aix4.[[01]].*)
       if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
           echo ' yes '
-          echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then
+          echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then
        :
       else
        can_build_shared=no
       fi
       ;;
     esac
-    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
+    # Using Import Files as archive members, it is possible to support
+    # filename-based versioning of shared library archives on AIX. While
+    # this would work for both with and without runtime linking, it will
+    # prevent static linking of such archives. So we do filename-based
+    # shared library versioning with .so extension only, which is used
+    # when both runtime linking and shared linking is enabled.
+    # Unfortunately, runtime linking may impact performance, so we do
+    # not want this to be the default eventually. Also, we use the
+    # versioned .so libs for executables only if there is the -brtl
+    # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only.
+    # To allow for filename-based versioning support, we need to create
+    # libNAME.so.V as an archive file, containing:
+    # *) an Import File, referring to the versioned filename of the
+    #    archive as well as the shared archive member, telling the
+    #    bitwidth (32 or 64) of that shared object, and providing the
+    #    list of exported symbols of that shared object, eventually
+    #    decorated with the 'weak' keyword
+    # *) the shared object with the F_LOADONLY flag set, to really avoid
+    #    it being seen by the linker.
+    # At run time we better use the real file rather than another symlink,
+    # but for link time we create the symlink libNAME.so -> libNAME.so.V
+
+    case $with_aix_soname,$aix_use_runtimelinking in
+    # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct
     # soname into executable. Probably we can add versioning support to
     # collect2, so additional links can be useful in future.
-    if test "$aix_use_runtimelinking" = yes; then
+    aix,yes) # traditional libtool
+      dynamic_linker='AIX unversionable lib.so'
       # If using run time linking (on AIX 4.2 or later) use lib<name>.so
       # instead of lib<name>.a to let people know that these are not
       # typical AIX shared libraries.
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-    else
+      library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+      ;;
+    aix,no) # traditional AIX only
+      dynamic_linker='AIX lib.a[(]lib.so.V[)]'
       # We preserve .a as extension for shared libraries through AIX4.2
       # and later when we are not doing run time linking.
-      library_names_spec='${libname}${release}.a $libname.a'
-      soname_spec='${libname}${release}${shared_ext}$major'
-    fi
+      library_names_spec='$libname$release.a $libname.a'
+      soname_spec='$libname$release$shared_ext$major'
+      ;;
+    svr4,*) # full svr4 only
+      dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]"
+      library_names_spec='$libname$release$shared_ext$major $libname$shared_ext'
+      # We do not specify a path in Import Files, so LIBPATH fires.
+      shlibpath_overrides_runpath=yes
+      ;;
+    *,yes) # both, prefer svr4
+      dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]"
+      library_names_spec='$libname$release$shared_ext$major $libname$shared_ext'
+      # unpreferred sharedlib libNAME.a needs extra handling
+      postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"'
+      postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"'
+      # We do not specify a path in Import Files, so LIBPATH fires.
+      shlibpath_overrides_runpath=yes
+      ;;
+    *,no) # both, prefer aix
+      dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]"
+      library_names_spec='$libname$release.a $libname.a'
+      soname_spec='$libname$release$shared_ext$major'
+      # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling
+      postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)'
+      postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"'
+      ;;
+    esac
     shlibpath_var=LIBPATH
   fi
   ;;
@@ -2318,18 +2490,18 @@ amigaos*)
   powerpc)
     # Since July 2007 AmigaOS4 officially supports .so libraries.
     # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
     ;;
   m68k)
     library_names_spec='$libname.ixlibrary $libname.a'
     # Create ${libname}_ixlibrary.a entries in /sys/libs.
-    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
+    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
     ;;
   esac
   ;;
 
 beos*)
-  library_names_spec='${libname}${shared_ext}'
+  library_names_spec='$libname$shared_ext'
   dynamic_linker="$host_os ld.so"
   shlibpath_var=LIBRARY_PATH
   ;;
@@ -2337,8 +2509,8 @@ beos*)
 bsdi[[45]]*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
   shlibpath_var=LD_LIBRARY_PATH
   sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
@@ -2350,7 +2522,7 @@ bsdi[[45]]*)
 
 cygwin* | mingw* | pw32* | cegcc*)
   version_type=windows
-  shrext_cmds=".dll"
+  shrext_cmds=.dll
   need_version=no
   need_lib_prefix=no
 
@@ -2359,8 +2531,8 @@ cygwin* | mingw* | pw32* | cegcc*)
     # gcc
     library_names_spec='$libname.dll.a'
     # DLL is installed to $(libdir)/../bin by postinstall_cmds
-    postinstall_cmds='base_file=`basename \${file}`~
-      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
+    postinstall_cmds='base_file=`basename \$file`~
+      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~
       dldir=$destdir/`dirname \$dlpath`~
       test -d \$dldir || mkdir -p \$dldir~
       $install_prog $dir/$dlname \$dldir/$dlname~
@@ -2376,17 +2548,17 @@ cygwin* | mingw* | pw32* | cegcc*)
     case $host_os in
     cygwin*)
       # Cygwin DLLs use 'cyg' prefix rather than 'lib'
-      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
+      soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
 m4_if([$1], [],[
       sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"])
       ;;
     mingw* | cegcc*)
       # MinGW DLLs use traditional 'lib' prefix
-      soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
+      soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
       ;;
     pw32*)
       # pw32 DLLs use 'pw' prefix rather than 'lib'
-      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
+      library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
       ;;
     esac
     dynamic_linker='Win32 ld.exe'
@@ -2395,8 +2567,8 @@ m4_if([$1], [],[
   *,cl*)
     # Native MSVC
     libname_spec='$name'
-    soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
-    library_names_spec='${libname}.dll.lib'
+    soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
+    library_names_spec='$libname.dll.lib'
 
     case $build_os in
     mingw*)
@@ -2423,7 +2595,7 @@ m4_if([$1], [],[
       sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
       ;;
     *)
-      sys_lib_search_path_spec="$LIB"
+      sys_lib_search_path_spec=$LIB
       if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then
         # It is most probably a Windows format PATH.
         sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
@@ -2436,8 +2608,8 @@ m4_if([$1], [],[
     esac
 
     # DLL is installed to $(libdir)/../bin by postinstall_cmds
-    postinstall_cmds='base_file=`basename \${file}`~
-      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
+    postinstall_cmds='base_file=`basename \$file`~
+      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~
       dldir=$destdir/`dirname \$dlpath`~
       test -d \$dldir || mkdir -p \$dldir~
       $install_prog $dir/$dlname \$dldir/$dlname'
@@ -2450,7 +2622,7 @@ m4_if([$1], [],[
 
   *)
     # Assume MSVC wrapper
-    library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
+    library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib'
     dynamic_linker='Win32 ld.exe'
     ;;
   esac
@@ -2463,8 +2635,8 @@ darwin* | rhapsody*)
   version_type=darwin
   need_lib_prefix=no
   need_version=no
-  library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
-  soname_spec='${libname}${release}${major}$shared_ext'
+  library_names_spec='$libname$release$major$shared_ext $libname$shared_ext'
+  soname_spec='$libname$release$major$shared_ext'
   shlibpath_overrides_runpath=yes
   shlibpath_var=DYLD_LIBRARY_PATH
   shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
@@ -2477,8 +2649,8 @@ dgux*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_lib_prefix=no
   need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   shlibpath_var=LD_LIBRARY_PATH
   ;;
 
@@ -2496,12 +2668,13 @@ freebsd* | dragonfly*)
   version_type=freebsd-$objformat
   case $version_type in
     freebsd-elf*)
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
+      library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+      soname_spec='$libname$release$shared_ext$major'
       need_version=no
       need_lib_prefix=no
       ;;
     freebsd-*)
-      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
+      library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'
       need_version=yes
       ;;
   esac
@@ -2531,10 +2704,10 @@ haiku*)
   need_lib_prefix=no
   need_version=no
   dynamic_linker="$host_os runtime_loader"
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   shlibpath_var=LIBRARY_PATH
-  shlibpath_overrides_runpath=yes
+  shlibpath_overrides_runpath=no
   sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'
   hardcode_into_libs=yes
   ;;
@@ -2552,14 +2725,15 @@ hpux9* | hpux10* | hpux11*)
     dynamic_linker="$host_os dld.so"
     shlibpath_var=LD_LIBRARY_PATH
     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-    soname_spec='${libname}${release}${shared_ext}$major'
-    if test "X$HPUX_IA64_MODE" = X32; then
+    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+    soname_spec='$libname$release$shared_ext$major'
+    if test 32 = "$HPUX_IA64_MODE"; then
       sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
+      sys_lib_dlsearch_path_spec=/usr/lib/hpux32
     else
       sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
+      sys_lib_dlsearch_path_spec=/usr/lib/hpux64
     fi
-    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
     ;;
   hppa*64*)
     shrext_cmds='.sl'
@@ -2567,8 +2741,8 @@ hpux9* | hpux10* | hpux11*)
     dynamic_linker="$host_os dld.sl"
     shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-    soname_spec='${libname}${release}${shared_ext}$major'
+    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+    soname_spec='$libname$release$shared_ext$major'
     sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
     ;;
@@ -2577,8 +2751,8 @@ hpux9* | hpux10* | hpux11*)
     dynamic_linker="$host_os dld.sl"
     shlibpath_var=SHLIB_PATH
     shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-    soname_spec='${libname}${release}${shared_ext}$major'
+    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+    soname_spec='$libname$release$shared_ext$major'
     ;;
   esac
   # HP-UX runs *really* slowly unless shared libraries are mode 555, ...
@@ -2591,8 +2765,8 @@ interix[[3-9]]*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_lib_prefix=no
   need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
   shlibpath_var=LD_LIBRARY_PATH
   shlibpath_overrides_runpath=no
@@ -2603,7 +2777,7 @@ irix5* | irix6* | nonstopux*)
   case $host_os in
     nonstopux*) version_type=nonstopux ;;
     *)
-       if test "$lt_cv_prog_gnu_ld" = yes; then
+       if test yes = "$lt_cv_prog_gnu_ld"; then
                version_type=linux # correct to gnu/linux during the next big refactor
        else
                version_type=irix
@@ -2611,8 +2785,8 @@ irix5* | irix6* | nonstopux*)
   esac
   need_lib_prefix=no
   need_version=no
-  soname_spec='${libname}${release}${shared_ext}$major'
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
+  soname_spec='$libname$release$shared_ext$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext'
   case $host_os in
   irix5* | nonstopux*)
     libsuff= shlibsuff=
@@ -2631,8 +2805,8 @@ irix5* | irix6* | nonstopux*)
   esac
   shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
   shlibpath_overrides_runpath=no
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
+  sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff"
+  sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff"
   hardcode_into_libs=yes
   ;;
 
@@ -2641,13 +2815,33 @@ linux*oldld* | linux*aout* | linux*coff*)
   dynamic_linker=no
   ;;
 
+linux*android*)
+  version_type=none # Android doesn't support versioned libraries.
+  need_lib_prefix=no
+  need_version=no
+  library_names_spec='$libname$release$shared_ext'
+  soname_spec='$libname$release$shared_ext'
+  finish_cmds=
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=yes
+
+  # This implies no fast_install, which is unacceptable.
+  # Some rework will be needed to allow for fast_install
+  # before this can be enabled.
+  hardcode_into_libs=yes
+
+  dynamic_linker='Android linker'
+  # Don't embed -rpath directories since the linker doesn't support them.
+  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
+  ;;
+
 # This must be glibc/ELF.
 linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_lib_prefix=no
   need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
   shlibpath_var=LD_LIBRARY_PATH
   shlibpath_overrides_runpath=no
@@ -2672,7 +2866,12 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
   # before this can be enabled.
   hardcode_into_libs=yes
 
-  # Append ld.so.conf contents to the search path
+  # Ideally, we could use ldconfig to report *all* directores which are
+  # searched for libraries, however this is still not possible.  Aside from not
+  # being certain /sbin/ldconfig is available, command
+  # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64,
+  # even though it is searched at run-time.  Try to do the best guess by
+  # appending ld.so.conf contents (and includes) to the search path.
   if test -f /etc/ld.so.conf; then
     lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[  ]*hwcap[        ]/d;s/[:,      ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '`
     sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
@@ -2704,12 +2903,12 @@ netbsd*)
   need_lib_prefix=no
   need_version=no
   if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
+    library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'
     finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
     dynamic_linker='NetBSD (a.out) ld.so'
   else
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
-    soname_spec='${libname}${release}${shared_ext}$major'
+    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+    soname_spec='$libname$release$shared_ext$major'
     dynamic_linker='NetBSD ld.elf_so'
   fi
   shlibpath_var=LD_LIBRARY_PATH
@@ -2719,7 +2918,7 @@ netbsd*)
 
 newsos6)
   version_type=linux # correct to gnu/linux during the next big refactor
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
   shlibpath_var=LD_LIBRARY_PATH
   shlibpath_overrides_runpath=yes
   ;;
@@ -2728,58 +2927,68 @@ newsos6)
   version_type=qnx
   need_lib_prefix=no
   need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   shlibpath_var=LD_LIBRARY_PATH
   shlibpath_overrides_runpath=no
   hardcode_into_libs=yes
   dynamic_linker='ldqnx.so'
   ;;
 
-openbsd*)
+openbsd* | bitrig*)
   version_type=sunos
-  sys_lib_dlsearch_path_spec="/usr/lib"
+  sys_lib_dlsearch_path_spec=/usr/lib
   need_lib_prefix=no
-  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
-  case $host_os in
-    openbsd3.3 | openbsd3.3.*) need_version=yes ;;
-    *)                         need_version=no  ;;
-  esac
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
-  shlibpath_var=LD_LIBRARY_PATH
-  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
-    case $host_os in
-      openbsd2.[[89]] | openbsd2.[[89]].*)
-       shlibpath_overrides_runpath=no
-       ;;
-      *)
-       shlibpath_overrides_runpath=yes
-       ;;
-      esac
+  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
+    need_version=no
   else
-    shlibpath_overrides_runpath=yes
+    need_version=yes
   fi
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'
+  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=yes
   ;;
 
 os2*)
   libname_spec='$name'
-  shrext_cmds=".dll"
+  version_type=windows
+  shrext_cmds=.dll
+  need_version=no
   need_lib_prefix=no
-  library_names_spec='$libname${shared_ext} $libname.a'
+  # OS/2 can only load a DLL with a base name of 8 characters or less.
+  soname_spec='`test -n "$os2dllname" && libname="$os2dllname";
+    v=$($ECHO $release$versuffix | tr -d .-);
+    n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _);
+    $ECHO $n$v`$shared_ext'
+  library_names_spec='${libname}_dll.$libext'
   dynamic_linker='OS/2 ld.exe'
-  shlibpath_var=LIBPATH
+  shlibpath_var=BEGINLIBPATH
+  sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
+  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
+  postinstall_cmds='base_file=`basename \$file`~
+    dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~
+    dldir=$destdir/`dirname \$dlpath`~
+    test -d \$dldir || mkdir -p \$dldir~
+    $install_prog $dir/$dlname \$dldir/$dlname~
+    chmod a+x \$dldir/$dlname~
+    if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
+      eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
+    fi'
+  postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~
+    dlpath=$dir/\$dldll~
+    $RM \$dlpath'
   ;;
 
 osf3* | osf4* | osf5*)
   version_type=osf
   need_lib_prefix=no
   need_version=no
-  soname_spec='${libname}${release}${shared_ext}$major'
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+  soname_spec='$libname$release$shared_ext$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
   shlibpath_var=LD_LIBRARY_PATH
   sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
-  sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
+  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
   ;;
 
 rdos*)
@@ -2790,8 +2999,8 @@ solaris*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_lib_prefix=no
   need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   shlibpath_var=LD_LIBRARY_PATH
   shlibpath_overrides_runpath=yes
   hardcode_into_libs=yes
@@ -2801,11 +3010,11 @@ solaris*)
 
 sunos4*)
   version_type=sunos
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'
   finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
   shlibpath_var=LD_LIBRARY_PATH
   shlibpath_overrides_runpath=yes
-  if test "$with_gnu_ld" = yes; then
+  if test yes = "$with_gnu_ld"; then
     need_lib_prefix=no
   fi
   need_version=yes
@@ -2813,8 +3022,8 @@ sunos4*)
 
 sysv4 | sysv4.3*)
   version_type=linux # correct to gnu/linux during the next big refactor
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   shlibpath_var=LD_LIBRARY_PATH
   case $host_vendor in
     sni)
@@ -2835,24 +3044,24 @@ sysv4 | sysv4.3*)
   ;;
 
 sysv4*MP*)
-  if test -d /usr/nec ;then
+  if test -d /usr/necthen
     version_type=linux # correct to gnu/linux during the next big refactor
-    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
-    soname_spec='$libname${shared_ext}.$major'
+    library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext'
+    soname_spec='$libname$shared_ext.$major'
     shlibpath_var=LD_LIBRARY_PATH
   fi
   ;;
 
 sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
-  version_type=freebsd-elf
+  version_type=sco
   need_lib_prefix=no
   need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   shlibpath_var=LD_LIBRARY_PATH
   shlibpath_overrides_runpath=yes
   hardcode_into_libs=yes
-  if test "$with_gnu_ld" = yes; then
+  if test yes = "$with_gnu_ld"; then
     sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
   else
     sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
@@ -2870,7 +3079,7 @@ tpf*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_lib_prefix=no
   need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
   shlibpath_var=LD_LIBRARY_PATH
   shlibpath_overrides_runpath=no
   hardcode_into_libs=yes
@@ -2878,8 +3087,8 @@ tpf*)
 
 uts4*)
   version_type=linux # correct to gnu/linux during the next big refactor
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+  soname_spec='$libname$release$shared_ext$major'
   shlibpath_var=LD_LIBRARY_PATH
   ;;
 
@@ -2888,20 +3097,30 @@ uts4*)
   ;;
 esac
 AC_MSG_RESULT([$dynamic_linker])
-test "$dynamic_linker" = no && can_build_shared=no
+test no = "$dynamic_linker" && can_build_shared=no
 
 variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
-if test "$GCC" = yes; then
+if test yes = "$GCC"; then
   variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
 fi
 
-if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
-  sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
+if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then
+  sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec
 fi
-if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
-  sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
+
+if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then
+  sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec
 fi
 
+# remember unaugmented sys_lib_dlsearch_path content for libtool script decls...
+configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec
+
+# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code
+func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH"
+
+# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool
+configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH
+
 _LT_DECL([], [variables_saved_for_relink], [1],
     [Variables whose values should be saved in libtool wrapper scripts and
     restored at link time])
@@ -2934,39 +3153,41 @@ _LT_DECL([], [hardcode_into_libs], [0],
     [Whether we should hardcode library paths into libraries])
 _LT_DECL([], [sys_lib_search_path_spec], [2],
     [Compile-time system search path for libraries])
-_LT_DECL([], [sys_lib_dlsearch_path_spec], [2],
-    [Run-time system search path for libraries])
+_LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2],
+    [Detected run-time system search path for libraries])
+_LT_DECL([], [configure_time_lt_sys_library_path], [2],
+    [Explicit LT_SYS_LIBRARY_PATH set during ./configure time])
 ])# _LT_SYS_DYNAMIC_LINKER
 
 
 # _LT_PATH_TOOL_PREFIX(TOOL)
 # --------------------------
-# find a file program which can recognize shared library
+# find a file program that can recognize shared library
 AC_DEFUN([_LT_PATH_TOOL_PREFIX],
 [m4_require([_LT_DECL_EGREP])dnl
 AC_MSG_CHECKING([for $1])
 AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
 [case $MAGIC_CMD in
 [[\\/*] |  ?:[\\/]*])
-  lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
+  lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.
   ;;
 *)
-  lt_save_MAGIC_CMD="$MAGIC_CMD"
-  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
+  lt_save_MAGIC_CMD=$MAGIC_CMD
+  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
 dnl $ac_dummy forces splitting on constant user-supplied paths.
 dnl POSIX.2 word splitting is done only on the output of word expansions,
 dnl not every word.  This closes a longstanding sh security hole.
   ac_dummy="m4_if([$2], , $PATH, [$2])"
   for ac_dir in $ac_dummy; do
-    IFS="$lt_save_ifs"
+    IFS=$lt_save_ifs
     test -z "$ac_dir" && ac_dir=.
-    if test -f $ac_dir/$1; then
-      lt_cv_path_MAGIC_CMD="$ac_dir/$1"
+    if test -f "$ac_dir/$1"; then
+      lt_cv_path_MAGIC_CMD=$ac_dir/"$1"
       if test -n "$file_magic_test_file"; then
        case $deplibs_check_method in
        "file_magic "*)
          file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
-         MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
+         MAGIC_CMD=$lt_cv_path_MAGIC_CMD
          if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
            $EGREP "$file_magic_regex" > /dev/null; then
            :
@@ -2989,11 +3210,11 @@ _LT_EOF
       break
     fi
   done
-  IFS="$lt_save_ifs"
-  MAGIC_CMD="$lt_save_MAGIC_CMD"
+  IFS=$lt_save_ifs
+  MAGIC_CMD=$lt_save_MAGIC_CMD
   ;;
 esac])
-MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
+MAGIC_CMD=$lt_cv_path_MAGIC_CMD
 if test -n "$MAGIC_CMD"; then
   AC_MSG_RESULT($MAGIC_CMD)
 else
@@ -3011,7 +3232,7 @@ dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], [])
 
 # _LT_PATH_MAGIC
 # --------------
-# find a file program which can recognize a shared library
+# find a file program that can recognize a shared library
 m4_defun([_LT_PATH_MAGIC],
 [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
 if test -z "$lt_cv_path_MAGIC_CMD"; then
@@ -3038,16 +3259,16 @@ m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
 AC_ARG_WITH([gnu-ld],
     [AS_HELP_STRING([--with-gnu-ld],
        [assume the C compiler uses GNU ld @<:@default=no@:>@])],
-    [test "$withval" = no || with_gnu_ld=yes],
+    [test no = "$withval" || with_gnu_ld=yes],
     [with_gnu_ld=no])dnl
 
 ac_prog=ld
-if test "$GCC" = yes; then
+if test yes = "$GCC"; then
   # Check if gcc -print-prog-name=ld gives a path.
   AC_MSG_CHECKING([for ld used by $CC])
   case $host in
   *-*-mingw*)
-    # gcc leaves a trailing carriage return which upsets mingw
+    # gcc leaves a trailing carriage return, which upsets mingw
     ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
   *)
     ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
@@ -3061,7 +3282,7 @@ if test "$GCC" = yes; then
       while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
        ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
       done
-      test -z "$LD" && LD="$ac_prog"
+      test -z "$LD" && LD=$ac_prog
       ;;
   "")
     # If it fails, then pretend we aren't using GCC.
@@ -3072,37 +3293,37 @@ if test "$GCC" = yes; then
     with_gnu_ld=unknown
     ;;
   esac
-elif test "$with_gnu_ld" = yes; then
+elif test yes = "$with_gnu_ld"; then
   AC_MSG_CHECKING([for GNU ld])
 else
   AC_MSG_CHECKING([for non-GNU ld])
 fi
 AC_CACHE_VAL(lt_cv_path_LD,
 [if test -z "$LD"; then
-  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
+  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
   for ac_dir in $PATH; do
-    IFS="$lt_save_ifs"
+    IFS=$lt_save_ifs
     test -z "$ac_dir" && ac_dir=.
     if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
-      lt_cv_path_LD="$ac_dir/$ac_prog"
+      lt_cv_path_LD=$ac_dir/$ac_prog
       # Check to see if the program is GNU ld.  I'd rather use --version,
       # but apparently some variants of GNU ld only accept -v.
       # Break only if it was the GNU/non-GNU ld that we prefer.
       case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
       *GNU* | *'with BFD'*)
-       test "$with_gnu_ld" != no && break
+       test no != "$with_gnu_ld" && break
        ;;
       *)
-       test "$with_gnu_ld" != yes && break
+       test yes != "$with_gnu_ld" && break
        ;;
       esac
     fi
   done
-  IFS="$lt_save_ifs"
+  IFS=$lt_save_ifs
 else
-  lt_cv_path_LD="$LD" # Let the user override the test with a path.
+  lt_cv_path_LD=$LD # Let the user override the test with a path.
 fi])
-LD="$lt_cv_path_LD"
+LD=$lt_cv_path_LD
 if test -n "$LD"; then
   AC_MSG_RESULT($LD)
 else
@@ -3156,13 +3377,13 @@ esac
 reload_cmds='$LD$reload_flag -o $output$reload_objs'
 case $host_os in
   cygwin* | mingw* | pw32* | cegcc*)
-    if test "$GCC" != yes; then
+    if test yes != "$GCC"; then
       reload_cmds=false
     fi
     ;;
   darwin*)
-    if test "$GCC" = yes; then
-      reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
+    if test yes = "$GCC"; then
+      reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs'
     else
       reload_cmds='$LD$reload_flag -o $output$reload_objs'
     fi
@@ -3173,6 +3394,43 @@ _LT_TAGDECL([], [reload_cmds], [2])dnl
 ])# _LT_CMD_RELOAD
 
 
+# _LT_PATH_DD
+# -----------
+# find a working dd
+m4_defun([_LT_PATH_DD],
+[AC_CACHE_CHECK([for a working dd], [ac_cv_path_lt_DD],
+[printf 0123456789abcdef0123456789abcdef >conftest.i
+cat conftest.i conftest.i >conftest2.i
+: ${lt_DD:=$DD}
+AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd],
+[if "$ac_path_lt_DD" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then
+  cmp -s conftest.i conftest.out \
+  && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=:
+fi])
+rm -f conftest.i conftest2.i conftest.out])
+])# _LT_PATH_DD
+
+
+# _LT_CMD_TRUNCATE
+# ----------------
+# find command to truncate a binary pipe
+m4_defun([_LT_CMD_TRUNCATE],
+[m4_require([_LT_PATH_DD])
+AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin],
+[printf 0123456789abcdef0123456789abcdef >conftest.i
+cat conftest.i conftest.i >conftest2.i
+lt_cv_truncate_bin=
+if "$ac_cv_path_lt_DD" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then
+  cmp -s conftest.i conftest.out \
+  && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1"
+fi
+rm -f conftest.i conftest2.i conftest.out
+test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"])
+_LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1],
+  [Command to truncate a binary pipe])
+])# _LT_CMD_TRUNCATE
+
+
 # _LT_CHECK_MAGIC_METHOD
 # ----------------------
 # how to check for library dependencies
@@ -3188,13 +3446,13 @@ lt_cv_deplibs_check_method='unknown'
 # Need to set the preceding variable on all platforms that support
 # interlibrary dependencies.
 # 'none' -- dependencies not supported.
-# `unknown' -- same as none, but documents that we really don't know.
+# 'unknown' -- same as none, but documents that we really don't know.
 # 'pass_all' -- all dependencies passed with no checks.
 # 'test_compile' -- check by making test program.
 # 'file_magic [[regex]]' -- check by looking for files in library path
-# which responds to the $file_magic_cmd with a given extended regex.
-# If you have `file' or equivalent on your system and you're not sure
-# whether `pass_all' will *always* work, you probably want this one.
+# that responds to the $file_magic_cmd with a given extended regex.
+# If you have 'file' or equivalent on your system and you're not sure
+# whether 'pass_all' will *always* work, you probably want this one.
 
 case $host_os in
 aix[[4-9]]*)
@@ -3221,8 +3479,7 @@ mingw* | pw32*)
   # Base MSYS/MinGW do not provide the 'file' command needed by
   # func_win32_libid shell function, so use a weaker test based on 'objdump',
   # unless we find 'file', for example because we are cross-compiling.
-  # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin.
-  if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then
+  if ( file / ) >/dev/null 2>&1; then
     lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
     lt_cv_file_magic_cmd='func_win32_libid'
   else
@@ -3318,8 +3575,8 @@ newos6*)
   lt_cv_deplibs_check_method=pass_all
   ;;
 
-openbsd*)
-  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+openbsd* | bitrig*)
+  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
   else
     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
@@ -3372,6 +3629,9 @@ sysv4 | sysv4.3*)
 tpf*)
   lt_cv_deplibs_check_method=pass_all
   ;;
+os2*)
+  lt_cv_deplibs_check_method=pass_all
+  ;;
 esac
 ])
 
@@ -3412,33 +3672,38 @@ AC_DEFUN([LT_PATH_NM],
 AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
 [if test -n "$NM"; then
   # Let the user override the test.
-  lt_cv_path_NM="$NM"
+  lt_cv_path_NM=$NM
 else
-  lt_nm_to_check="${ac_tool_prefix}nm"
+  lt_nm_to_check=${ac_tool_prefix}nm
   if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
     lt_nm_to_check="$lt_nm_to_check nm"
   fi
   for lt_tmp_nm in $lt_nm_to_check; do
-    lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
+    lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
     for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
-      IFS="$lt_save_ifs"
+      IFS=$lt_save_ifs
       test -z "$ac_dir" && ac_dir=.
-      tmp_nm="$ac_dir/$lt_tmp_nm"
-      if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
+      tmp_nm=$ac_dir/$lt_tmp_nm
+      if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then
        # Check to see if the nm accepts a BSD-compat flag.
-       # Adding the `sed 1q' prevents false positives on HP-UX, which says:
+       # Adding the 'sed 1q' prevents false positives on HP-UX, which says:
        #   nm: unknown option "B" ignored
        # Tru64's nm complains that /dev/null is an invalid object file
-       case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
-       */dev/null* | *'Invalid file or object type'*)
+       # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty
+       case $build_os in
+       mingw*) lt_bad_file=conftest.nm/nofile ;;
+       *) lt_bad_file=/dev/null ;;
+       esac
+       case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in
+       *$lt_bad_file* | *'Invalid file or object type'*)
          lt_cv_path_NM="$tmp_nm -B"
-         break
+         break 2
          ;;
        *)
          case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
          */dev/null*)
            lt_cv_path_NM="$tmp_nm -p"
-           break
+           break 2
            ;;
          *)
            lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
@@ -3449,21 +3714,21 @@ else
        esac
       fi
     done
-    IFS="$lt_save_ifs"
+    IFS=$lt_save_ifs
   done
   : ${lt_cv_path_NM=no}
 fi])
-if test "$lt_cv_path_NM" != "no"; then
-  NM="$lt_cv_path_NM"
+if test no != "$lt_cv_path_NM"; then
+  NM=$lt_cv_path_NM
 else
   # Didn't find any BSD compatible name lister, look for dumpbin.
   if test -n "$DUMPBIN"; then :
     # Let the user override the test.
   else
     AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
-    case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in
+    case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in
     *COFF*)
-      DUMPBIN="$DUMPBIN -symbols"
+      DUMPBIN="$DUMPBIN -symbols -headers"
       ;;
     *)
       DUMPBIN=:
@@ -3471,8 +3736,8 @@ else
     esac
   fi
   AC_SUBST([DUMPBIN])
-  if test "$DUMPBIN" != ":"; then
-    NM="$DUMPBIN"
+  if test : != "$DUMPBIN"; then
+    NM=$DUMPBIN
   fi
 fi
 test -z "$NM" && NM=nm
@@ -3518,8 +3783,8 @@ lt_cv_sharedlib_from_linklib_cmd,
 
 case $host_os in
 cygwin* | mingw* | pw32* | cegcc*)
-  # two different shell functions defined in ltmain.sh
-  # decide which to use based on capabilities of $DLLTOOL
+  # two different shell functions defined in ltmain.sh;
+  # decide which one to use based on capabilities of $DLLTOOL
   case `$DLLTOOL --help 2>&1` in
   *--identify-strict*)
     lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib
@@ -3531,7 +3796,7 @@ cygwin* | mingw* | pw32* | cegcc*)
   ;;
 *)
   # fallback: assume linklib IS sharedlib
-  lt_cv_sharedlib_from_linklib_cmd="$ECHO"
+  lt_cv_sharedlib_from_linklib_cmd=$ECHO
   ;;
 esac
 ])
@@ -3558,13 +3823,28 @@ AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool
     lt_cv_path_mainfest_tool=yes
   fi
   rm -f conftest*])
-if test "x$lt_cv_path_mainfest_tool" != xyes; then
+if test yes != "$lt_cv_path_mainfest_tool"; then
   MANIFEST_TOOL=:
 fi
 _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl
 ])# _LT_PATH_MANIFEST_TOOL
 
 
+# _LT_DLL_DEF_P([FILE])
+# ---------------------
+# True iff FILE is a Windows DLL '.def' file.
+# Keep in sync with func_dll_def_p in the libtool script
+AC_DEFUN([_LT_DLL_DEF_P],
+[dnl
+  test DEF = "`$SED -n dnl
+    -e '\''s/^[[        ]]*//'\'' dnl Strip leading whitespace
+    -e '\''/^\(;.*\)*$/d'\'' dnl      Delete empty lines and comments
+    -e '\''s/^\(EXPORTS\|LIBRARY\)\([[  ]].*\)*$/DEF/p'\'' dnl
+    -e q dnl                          Only consider the first "real" line
+    $1`" dnl
+])# _LT_DLL_DEF_P
+
+
 # LT_LIB_M
 # --------
 # check for math library
@@ -3576,11 +3856,11 @@ case $host in
   # These system don't have libm, or don't need it
   ;;
 *-ncr-sysv4.3*)
-  AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
+  AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw)
   AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
   ;;
 *)
-  AC_CHECK_LIB(m, cos, LIBM="-lm")
+  AC_CHECK_LIB(m, cos, LIBM=-lm)
   ;;
 esac
 AC_SUBST([LIBM])
@@ -3599,7 +3879,7 @@ m4_defun([_LT_COMPILER_NO_RTTI],
 
 _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
 
-if test "$GCC" = yes; then
+if test yes = "$GCC"; then
   case $cc_basename in
   nvcc*)
     _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;;
@@ -3651,7 +3931,7 @@ cygwin* | mingw* | pw32* | cegcc*)
   symcode='[[ABCDGISTW]]'
   ;;
 hpux*)
-  if test "$host_cpu" = ia64; then
+  if test ia64 = "$host_cpu"; then
     symcode='[[ABCDEGRST]]'
   fi
   ;;
@@ -3684,14 +3964,44 @@ case `$NM -V 2>&1` in
   symcode='[[ABCDGIRSTW]]' ;;
 esac
 
+if test "$lt_cv_nm_interface" = "MS dumpbin"; then
+  # Gets list of data symbols to import.
+  lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'"
+  # Adjust the below global symbol transforms to fixup imported variables.
+  lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'"
+  lt_c_name_hook=" -e 's/^I .* \(.*\)$/  {\"\1\", (void *) 0},/p'"
+  lt_c_name_lib_hook="\
+  -e 's/^I .* \(lib.*\)$/  {\"\1\", (void *) 0},/p'\
+  -e 's/^I .* \(.*\)$/  {\"lib\1\", (void *) 0},/p'"
+else
+  # Disable hooks by default.
+  lt_cv_sys_global_symbol_to_import=
+  lt_cdecl_hook=
+  lt_c_name_hook=
+  lt_c_name_lib_hook=
+fi
+
 # Transform an extracted symbol line into a proper C declaration.
 # Some systems (esp. on ia64) link data and code symbols differently,
 # so use this general approach.
-lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
+lt_cv_sys_global_symbol_to_cdecl="sed -n"\
+$lt_cdecl_hook\
+" -e 's/^T .* \(.*\)$/extern int \1();/p'"\
+" -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'"
 
 # Transform an extracted symbol line into symbol name and symbol address
-lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/  {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/  {\"\2\", (void *) \&\2},/p'"
-lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/  {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/  {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/  {\"lib\2\", (void *) \&\2},/p'"
+lt_cv_sys_global_symbol_to_c_name_address="sed -n"\
+$lt_c_name_hook\
+" -e 's/^: \(.*\) .*$/  {\"\1\", (void *) 0},/p'"\
+" -e 's/^$symcode$symcode* .* \(.*\)$/  {\"\1\", (void *) \&\1},/p'"
+
+# Transform an extracted symbol line into symbol name with lib prefix and
+# symbol address.
+lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\
+$lt_c_name_lib_hook\
+" -e 's/^: \(.*\) .*$/  {\"\1\", (void *) 0},/p'"\
+" -e 's/^$symcode$symcode* .* \(lib.*\)$/  {\"\1\", (void *) \&\1},/p'"\
+" -e 's/^$symcode$symcode* .* \(.*\)$/  {\"lib\1\", (void *) \&\1},/p'"
 
 # Handle CRLF in mingw tool chain
 opt_cr=
@@ -3709,21 +4019,24 @@ for ac_symprfx in "" "_"; do
 
   # Write the raw and C identifiers.
   if test "$lt_cv_nm_interface" = "MS dumpbin"; then
-    # Fake it for dumpbin and say T for any non-static function
-    # and D for any global variable.
+    # Fake it for dumpbin and say T for any non-static function,
+    # D for any global variable and I for any imported variable.
     # Also find C++ and __fastcall symbols from MSVC++,
     # which start with @ or ?.
     lt_cv_sys_global_symbol_pipe="$AWK ['"\
 "     {last_section=section; section=\$ 3};"\
 "     /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\
 "     /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\
+"     /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\
+"     /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\
+"     /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\
 "     \$ 0!~/External *\|/{next};"\
 "     / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\
 "     {if(hide[section]) next};"\
-"     {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\
-"     {split(\$ 0, a, /\||\r/); split(a[2], s)};"\
-"     s[1]~/^[@?]/{print s[1], s[1]; next};"\
-"     s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\
+"     {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\
+"     {split(\$ 0,a,/\||\r/); split(a[2],s)};"\
+"     s[1]~/^[@?]/{print f,s[1],s[1]; next};"\
+"     s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\
 "     ' prfx=^$ac_symprfx]"
   else
     lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[    ]]\($symcode$symcode*\)[[       ]][[    ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
@@ -3763,11 +4076,11 @@ _LT_EOF
        if $GREP ' nm_test_func$' "$nlist" >/dev/null; then
          cat <<_LT_EOF > conftest.$ac_ext
 /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */
-#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE)
-/* DATA imports from DLLs on WIN32 con't be const, because runtime
+#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE
+/* DATA imports from DLLs on WIN32 can't be const, because runtime
    relocations are performed -- see ld's documentation on pseudo-relocs.  */
 # define LT@&t@_DLSYM_CONST
-#elif defined(__osf__)
+#elif defined __osf__
 /* This system does not cope well with relocations in const data.  */
 # define LT@&t@_DLSYM_CONST
 #else
@@ -3793,7 +4106,7 @@ lt__PROGRAM__LTX_preloaded_symbols[[]] =
 {
   { "@PROGRAM@", (void *) 0 },
 _LT_EOF
-         $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/  {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext
+         $SED "s/^$symcode$symcode* .* \(.*\)$/  {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext
          cat <<\_LT_EOF >> conftest.$ac_ext
   {0, (void *) 0}
 };
@@ -3813,9 +4126,9 @@ _LT_EOF
          mv conftest.$ac_objext conftstm.$ac_objext
          lt_globsym_save_LIBS=$LIBS
          lt_globsym_save_CFLAGS=$CFLAGS
-         LIBS="conftstm.$ac_objext"
+         LIBS=conftstm.$ac_objext
          CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
-         if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
+         if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then
            pipe_works=yes
          fi
          LIBS=$lt_globsym_save_LIBS
@@ -3836,7 +4149,7 @@ _LT_EOF
   rm -rf conftest* conftst*
 
   # Do not use the global_symbol_pipe unless it works.
-  if test "$pipe_works" = yes; then
+  if test yes = "$pipe_works"; then
     break
   else
     lt_cv_sys_global_symbol_pipe=
@@ -3863,12 +4176,16 @@ _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1],
     [Take the output of nm and produce a listing of raw symbols and C names])
 _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1],
     [Transform the output of nm in a proper C declaration])
+_LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1],
+    [Transform the output of nm into a list of symbols to manually relocate])
 _LT_DECL([global_symbol_to_c_name_address],
     [lt_cv_sys_global_symbol_to_c_name_address], [1],
     [Transform the output of nm in a C name address pair])
 _LT_DECL([global_symbol_to_c_name_address_lib_prefix],
     [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1],
     [Transform the output of nm in a C name address pair when lib prefix is needed])
+_LT_DECL([nm_interface], [lt_cv_nm_interface], [1],
+    [The name lister interface])
 _LT_DECL([], [nm_file_list_spec], [1],
     [Specify filename containing input files for $NM])
 ]) # _LT_CMD_GLOBAL_SYMBOLS
@@ -3884,17 +4201,18 @@ _LT_TAGVAR(lt_prog_compiler_static, $1)=
 
 m4_if([$1], [CXX], [
   # C++ specific cases for pic, static, wl, etc.
-  if test "$GXX" = yes; then
+  if test yes = "$GXX"; then
     _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
     _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
 
     case $host_os in
     aix*)
       # All AIX code is PIC.
-      if test "$host_cpu" = ia64; then
+      if test ia64 = "$host_cpu"; then
        # AIX 5 now supports IA64 processor
        _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
       fi
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
       ;;
 
     amigaos*)
@@ -3905,8 +4223,8 @@ m4_if([$1], [CXX], [
         ;;
       m68k)
             # FIXME: we need at least 68020 code to build shared libraries, but
-            # adding the `-m68020' flag to GCC prevents building anything better,
-            # like `-m68040'.
+            # adding the '-m68020' flag to GCC prevents building anything better,
+            # like '-m68040'.
             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
         ;;
       esac
@@ -3922,6 +4240,11 @@ m4_if([$1], [CXX], [
       # (--disable-auto-import) libraries
       m4_if([$1], [GCJ], [],
        [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
+      case $host_os in
+      os2*)
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static'
+       ;;
+      esac
       ;;
     darwin* | rhapsody*)
       # PIC is the default on this platform
@@ -3971,7 +4294,7 @@ m4_if([$1], [CXX], [
     case $host_os in
       aix[[4-9]]*)
        # All AIX code is PIC.
-       if test "$host_cpu" = ia64; then
+       if test ia64 = "$host_cpu"; then
          # AIX 5 now supports IA64 processor
          _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
        else
@@ -4012,14 +4335,14 @@ m4_if([$1], [CXX], [
        case $cc_basename in
          CC*)
            _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-           _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
-           if test "$host_cpu" != ia64; then
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive'
+           if test ia64 != "$host_cpu"; then
              _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
            fi
            ;;
          aCC*)
            _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-           _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive'
            case $host_cpu in
            hppa*64*|ia64*)
              # +Z the default
@@ -4056,7 +4379,7 @@ m4_if([$1], [CXX], [
            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
            ;;
          ecpc* )
-           # old Intel C++ for x86_64 which still supported -KPIC.
+           # old Intel C++ for x86_64, which still supported -KPIC.
            _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
            _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
@@ -4201,17 +4524,18 @@ m4_if([$1], [CXX], [
   fi
 ],
 [
-  if test "$GCC" = yes; then
+  if test yes = "$GCC"; then
     _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
     _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
 
     case $host_os in
       aix*)
       # All AIX code is PIC.
-      if test "$host_cpu" = ia64; then
+      if test ia64 = "$host_cpu"; then
        # AIX 5 now supports IA64 processor
        _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
       fi
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
       ;;
 
     amigaos*)
@@ -4222,8 +4546,8 @@ m4_if([$1], [CXX], [
         ;;
       m68k)
             # FIXME: we need at least 68020 code to build shared libraries, but
-            # adding the `-m68020' flag to GCC prevents building anything better,
-            # like `-m68040'.
+            # adding the '-m68020' flag to GCC prevents building anything better,
+            # like '-m68040'.
             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
         ;;
       esac
@@ -4240,6 +4564,11 @@ m4_if([$1], [CXX], [
       # (--disable-auto-import) libraries
       m4_if([$1], [GCJ], [],
        [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
+      case $host_os in
+      os2*)
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static'
+       ;;
+      esac
       ;;
 
     darwin* | rhapsody*)
@@ -4310,7 +4639,7 @@ m4_if([$1], [CXX], [
     case $host_os in
     aix*)
       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-      if test "$host_cpu" = ia64; then
+      if test ia64 = "$host_cpu"; then
        # AIX 5 now supports IA64 processor
        _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
       else
@@ -4318,11 +4647,30 @@ m4_if([$1], [CXX], [
       fi
       ;;
 
+    darwin* | rhapsody*)
+      # PIC is the default on this platform
+      # Common symbols not allowed in MH_DYLIB files
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
+      case $cc_basename in
+      nagfor*)
+        # NAG Fortran compiler
+        _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,'
+        _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
+        _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+        ;;
+      esac
+      ;;
+
     mingw* | cygwin* | pw32* | os2* | cegcc*)
       # This hack is so that the source file can tell whether it is being
       # built for inclusion in a dll (and should export symbols for example).
       m4_if([$1], [GCJ], [],
        [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
+      case $host_os in
+      os2*)
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static'
+       ;;
+      esac
       ;;
 
     hpux9* | hpux10* | hpux11*)
@@ -4338,7 +4686,7 @@ m4_if([$1], [CXX], [
        ;;
       esac
       # Is there a better lt_prog_compiler_static that works with the bundled CC?
-      _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive'
       ;;
 
     irix5* | irix6* | nonstopux*)
@@ -4349,7 +4697,7 @@ m4_if([$1], [CXX], [
 
     linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
       case $cc_basename in
-      # old Intel for x86_64 which still supported -KPIC.
+      # old Intel for x86_64, which still supported -KPIC.
       ecc*)
        _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
        _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
@@ -4374,6 +4722,12 @@ m4_if([$1], [CXX], [
        _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
        _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
        ;;
+      tcc*)
+       # Fabrice Bellard et al's Tiny C Compiler
+       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
+       ;;
       pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
         # Portland Group compilers (*not* the Pentium gcc compiler,
        # which looks to be a dead project)
@@ -4471,7 +4825,7 @@ m4_if([$1], [CXX], [
       ;;
 
     sysv4*MP*)
-      if test -d /usr/nec ;then
+      if test -d /usr/necthen
        _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
        _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
       fi
@@ -4500,7 +4854,7 @@ m4_if([$1], [CXX], [
   fi
 ])
 case $host_os in
-  # For platforms which do not support PIC, -DPIC is meaningless:
+  # For platforms that do not support PIC, -DPIC is meaningless:
   *djgpp*)
     _LT_TAGVAR(lt_prog_compiler_pic, $1)=
     ;;
@@ -4566,17 +4920,21 @@ m4_if([$1], [CXX], [
   case $host_os in
   aix[[4-9]]*)
     # If we're using GNU nm, then we don't want the "-C" option.
-    # -C means demangle to AIX nm, but means don't demangle with GNU nm
-    # Also, AIX nm treats weak defined symbols like other global defined
-    # symbols, whereas GNU nm marks them as "W".
+    # -C means demangle to GNU nm, but means don't demangle to AIX nm.
+    # Without the "-l" option, or with the "-B" option, AIX nm treats
+    # weak defined symbols like other global defined symbols, whereas
+    # GNU nm marks them as "W".
+    # While the 'weak' keyword is ignored in the Export File, we need
+    # it in the Import File for the 'aix-soname' feature, so we have
+    # to replace the "-B" option with "-P" for AIX nm.
     if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
-      _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
+      _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols'
     else
-      _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
+      _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols'
     fi
     ;;
   pw32*)
-    _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds"
+    _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds
     ;;
   cygwin* | mingw* | cegcc*)
     case $cc_basename in
@@ -4625,9 +4983,9 @@ m4_if([$1], [CXX], [
   # included in the symbol list
   _LT_TAGVAR(include_expsyms, $1)=
   # exclude_expsyms can be an extended regexp of symbols to exclude
-  # it will be wrapped by ` (' and `)$', so one must not match beginning or
-  # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
-  # as well as any symbol that contains `d'.
+  # it will be wrapped by ' (' and ')$', so one must not match beginning or
+  # end of line.  Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc',
+  # as well as any symbol that contains 'd'.
   _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
   # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
   # platforms (ab)use it in PIC code, but their linkers get confused if
@@ -4643,7 +5001,7 @@ dnl Note also adjust exclude_expsyms for C++ above.
     # FIXME: the MSVC++ port hasn't been tested in a loooong time
     # When not using gcc, we currently assume that we are using
     # Microsoft Visual C++.
-    if test "$GCC" != yes; then
+    if test yes != "$GCC"; then
       with_gnu_ld=no
     fi
     ;;
@@ -4651,7 +5009,7 @@ dnl Note also adjust exclude_expsyms for C++ above.
     # we just hope/assume this is gcc and not c89 (= MSVC++)
     with_gnu_ld=yes
     ;;
-  openbsd*)
+  openbsd* | bitrig*)
     with_gnu_ld=no
     ;;
   linux* | k*bsd*-gnu | gnu*)
@@ -4664,7 +5022,7 @@ dnl Note also adjust exclude_expsyms for C++ above.
   # On some targets, GNU ld is compatible enough with the native linker
   # that we're better off using the native interface for both.
   lt_use_gnu_ld_interface=no
-  if test "$with_gnu_ld" = yes; then
+  if test yes = "$with_gnu_ld"; then
     case $host_os in
       aix*)
        # The AIX port of GNU ld has always aspired to compatibility
@@ -4686,24 +5044,24 @@ dnl Note also adjust exclude_expsyms for C++ above.
     esac
   fi
 
-  if test "$lt_use_gnu_ld_interface" = yes; then
+  if test yes = "$lt_use_gnu_ld_interface"; then
     # If archive_cmds runs LD, not CC, wlarc should be empty
-    wlarc='${wl}'
+    wlarc='$wl'
 
     # Set some defaults for GNU ld with shared library support. These
     # are reset later if shared libraries are not supported. Putting them
     # here allows them to be overridden if necessary.
     runpath_var=LD_RUN_PATH
-    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
-    _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
+    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
+    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'
     # ancient GNU ld didn't support --whole-archive et. al.
     if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then
-      _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
+      _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'
     else
       _LT_TAGVAR(whole_archive_flag_spec, $1)=
     fi
     supports_anon_versioning=no
-    case `$LD -v 2>&1` in
+    case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in
       *GNU\ gold*) supports_anon_versioning=yes ;;
       *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
       *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
@@ -4716,7 +5074,7 @@ dnl Note also adjust exclude_expsyms for C++ above.
     case $host_os in
     aix[[3-9]]*)
       # On AIX/PPC, the GNU linker is very broken
-      if test "$host_cpu" != ia64; then
+      if test ia64 != "$host_cpu"; then
        _LT_TAGVAR(ld_shlibs, $1)=no
        cat <<_LT_EOF 1>&2
 
@@ -4735,7 +5093,7 @@ _LT_EOF
       case $host_cpu in
       powerpc)
             # see comment about AmigaOS4 .so support
-            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
             _LT_TAGVAR(archive_expsym_cmds, $1)=''
         ;;
       m68k)
@@ -4751,7 +5109,7 @@ _LT_EOF
        _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
        # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
        # support --undefined.  This deserves some investigation.  FIXME
-       _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
       else
        _LT_TAGVAR(ld_shlibs, $1)=no
       fi
@@ -4761,7 +5119,7 @@ _LT_EOF
       # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
       # as there is no search path for DLLs.
       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
-      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols'
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols'
       _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
       _LT_TAGVAR(always_export_symbols, $1)=no
       _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
@@ -4769,61 +5127,89 @@ _LT_EOF
       _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname']
 
       if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
-        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
-       # If the export-symbols file already is a .def file (1st line
-       # is EXPORTS), use it as is; otherwise, prepend...
-       _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
-         cp $export_symbols $output_objdir/$soname.def;
-       else
-         echo EXPORTS > $output_objdir/$soname.def;
-         cat $export_symbols >> $output_objdir/$soname.def;
-       fi~
-       $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
+        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
+       # If the export-symbols file already is a .def file, use it as
+       # is; otherwise, prepend EXPORTS...
+       _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then
+          cp $export_symbols $output_objdir/$soname.def;
+        else
+          echo EXPORTS > $output_objdir/$soname.def;
+          cat $export_symbols >> $output_objdir/$soname.def;
+        fi~
+        $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
       else
        _LT_TAGVAR(ld_shlibs, $1)=no
       fi
       ;;
 
     haiku*)
-      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
       _LT_TAGVAR(link_all_deplibs, $1)=yes
       ;;
 
+    os2*)
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
+      _LT_TAGVAR(hardcode_minus_L, $1)=yes
+      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
+      shrext_cmds=.dll
+      _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
+       $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
+       $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
+       $ECHO EXPORTS >> $output_objdir/$libname.def~
+       emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~
+       $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~
+       emximp -o $lib $output_objdir/$libname.def'
+      _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
+       $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
+       $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
+       $ECHO EXPORTS >> $output_objdir/$libname.def~
+       prefix_cmds="$SED"~
+       if test EXPORTS = "`$SED 1q $export_symbols`"; then
+         prefix_cmds="$prefix_cmds -e 1d";
+       fi~
+       prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~
+       cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~
+       $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~
+       emximp -o $lib $output_objdir/$libname.def'
+      _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'
+      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
+      ;;
+
     interix[[3-9]]*)
       _LT_TAGVAR(hardcode_direct, $1)=no
       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
-      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
       # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
       # Instead, shared libraries are loaded at an image base (0x10000000 by
       # default) and relocated if they conflict, which is a slow very memory
       # consuming and fragmenting process.  To avoid this, we pick a random,
       # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
       # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
-      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
-      _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
+      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
+      _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
       ;;
 
     gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
       tmp_diet=no
-      if test "$host_os" = linux-dietlibc; then
+      if test linux-dietlibc = "$host_os"; then
        case $cc_basename in
          diet\ *) tmp_diet=yes;;       # linux-dietlibc with static linking (!diet-dyn)
        esac
       fi
       if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \
-        && test "$tmp_diet" = no
+        && test no = "$tmp_diet"
       then
        tmp_addflag=' $pic_flag'
        tmp_sharedflag='-shared'
        case $cc_basename,$host_cpu in
         pgcc*)                         # Portland Group C compiler
-         _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+         _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
          tmp_addflag=' $pic_flag'
          ;;
        pgf77* | pgf90* | pgf95* | pgfortran*)
                                        # Portland Group f77 and f90 compilers
-         _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+         _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
          tmp_addflag=' $pic_flag -Mnomain' ;;
        ecc*,ia64* | icc*,ia64*)        # Intel C compiler on ia64
          tmp_addflag=' -i_dynamic' ;;
@@ -4834,42 +5220,47 @@ _LT_EOF
        lf95*)                          # Lahey Fortran 8.1
          _LT_TAGVAR(whole_archive_flag_spec, $1)=
          tmp_sharedflag='--shared' ;;
+        nagfor*)                        # NAGFOR 5.3
+          tmp_sharedflag='-Wl,-shared' ;;
        xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below)
          tmp_sharedflag='-qmkshrobj'
          tmp_addflag= ;;
        nvcc*)  # Cuda Compiler Driver 2.2
-         _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+         _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
          _LT_TAGVAR(compiler_needs_object, $1)=yes
          ;;
        esac
        case `$CC -V 2>&1 | sed 5q` in
        *Sun\ C*)                       # Sun C 5.9
-         _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+         _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
          _LT_TAGVAR(compiler_needs_object, $1)=yes
          tmp_sharedflag='-G' ;;
        *Sun\ F*)                       # Sun Fortran 8.3
          tmp_sharedflag='-G' ;;
        esac
-       _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+       _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
 
-        if test "x$supports_anon_versioning" = xyes; then
+        if test yes = "$supports_anon_versioning"; then
           _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
-           cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
-           echo "local: *; };" >> $output_objdir/$libname.ver~
-           $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
+            cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
+            echo "local: *; };" >> $output_objdir/$libname.ver~
+            $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'
         fi
 
        case $cc_basename in
+       tcc*)
+         _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic'
+         ;;
        xlf* | bgf* | bgxlf* | mpixlf*)
          # IBM XL Fortran 10.1 on PPC cannot create shared libs itself
          _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive'
-         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
          _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'
-         if test "x$supports_anon_versioning" = xyes; then
+         if test yes = "$supports_anon_versioning"; then
            _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
-             cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
-             echo "local: *; };" >> $output_objdir/$libname.ver~
-             $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'
+              cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
+              echo "local: *; };" >> $output_objdir/$libname.ver~
+              $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'
          fi
          ;;
        esac
@@ -4883,8 +5274,8 @@ _LT_EOF
        _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
        wlarc=
       else
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
       fi
       ;;
 
@@ -4902,8 +5293,8 @@ _LT_EOF
 
 _LT_EOF
       elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
       else
        _LT_TAGVAR(ld_shlibs, $1)=no
       fi
@@ -4915,7 +5306,7 @@ _LT_EOF
        _LT_TAGVAR(ld_shlibs, $1)=no
        cat <<_LT_EOF 1>&2
 
-*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
+*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot
 *** reliably create shared libraries on SCO systems.  Therefore, libtool
 *** is disabling shared libraries support.  We urge you to upgrade GNU
 *** binutils to release 2.16.91.0.3 or newer.  Another option is to modify
@@ -4930,9 +5321,9 @@ _LT_EOF
          # DT_RUNPATH tag from executables and libraries.  But doing so
          # requires that you compile everything twice, which is a pain.
          if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
-           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
+           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
          else
            _LT_TAGVAR(ld_shlibs, $1)=no
          fi
@@ -4949,15 +5340,15 @@ _LT_EOF
 
     *)
       if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
       else
        _LT_TAGVAR(ld_shlibs, $1)=no
       fi
       ;;
     esac
 
-    if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then
+    if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then
       runpath_var=
       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
       _LT_TAGVAR(export_dynamic_flag_spec, $1)=
@@ -4973,7 +5364,7 @@ _LT_EOF
       # Note: this linker hardcodes the directories in LIBPATH if there
       # are no directories specified by -L.
       _LT_TAGVAR(hardcode_minus_L, $1)=yes
-      if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then
+      if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then
        # Neither direct hardcoding nor static linking is supported with a
        # broken collect2.
        _LT_TAGVAR(hardcode_direct, $1)=unsupported
@@ -4981,34 +5372,57 @@ _LT_EOF
       ;;
 
     aix[[4-9]]*)
-      if test "$host_cpu" = ia64; then
+      if test ia64 = "$host_cpu"; then
        # On IA64, the linker does run time linking by default, so we don't
        # have to do anything special.
        aix_use_runtimelinking=no
        exp_sym_flag='-Bexport'
-       no_entry_flag=""
+       no_entry_flag=
       else
        # If we're using GNU nm, then we don't want the "-C" option.
-       # -C means demangle to AIX nm, but means don't demangle with GNU nm
-       # Also, AIX nm treats weak defined symbols like other global
-       # defined symbols, whereas GNU nm marks them as "W".
+       # -C means demangle to GNU nm, but means don't demangle to AIX nm.
+       # Without the "-l" option, or with the "-B" option, AIX nm treats
+       # weak defined symbols like other global defined symbols, whereas
+       # GNU nm marks them as "W".
+       # While the 'weak' keyword is ignored in the Export File, we need
+       # it in the Import File for the 'aix-soname' feature, so we have
+       # to replace the "-B" option with "-P" for AIX nm.
        if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
-         _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
+         _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols'
        else
-         _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
+         _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols'
        fi
        aix_use_runtimelinking=no
 
        # Test if we are trying to use run time linking or normal
        # AIX style linking. If -brtl is somewhere in LDFLAGS, we
-       # need to do runtime linking.
+       # have runtime linking enabled, and use it for executables.
+       # For shared libraries, we enable/disable runtime linking
+       # depending on the kind of the shared library created -
+       # when "with_aix_soname,aix_use_runtimelinking" is:
+       # "aix,no"   lib.a(lib.so.V) shared, rtl:no,  for executables
+       # "aix,yes"  lib.so          shared, rtl:yes, for executables
+       #            lib.a           static archive
+       # "both,no"  lib.so.V(shr.o) shared, rtl:yes
+       #            lib.a(lib.so.V) shared, rtl:no,  for executables
+       # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables
+       #            lib.a(lib.so.V) shared, rtl:no
+       # "svr4,*"   lib.so.V(shr.o) shared, rtl:yes, for executables
+       #            lib.a           static archive
        case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
          for ld_flag in $LDFLAGS; do
-         if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
+         if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then
            aix_use_runtimelinking=yes
            break
          fi
          done
+         if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then
+           # With aix-soname=svr4, we create the lib.so.V shared archives only,
+           # so we don't have lib.a shared libs to link our executables.
+           # We have to force runtime linking in this case.
+           aix_use_runtimelinking=yes
+           LDFLAGS="$LDFLAGS -Wl,-brtl"
+         fi
          ;;
        esac
 
@@ -5027,13 +5441,21 @@ _LT_EOF
       _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
       _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
       _LT_TAGVAR(link_all_deplibs, $1)=yes
-      _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'
+      _LT_TAGVAR(file_list_spec, $1)='$wl-f,'
+      case $with_aix_soname,$aix_use_runtimelinking in
+      aix,*) ;; # traditional, no import file
+      svr4,* | *,yes) # use import file
+       # The Import File defines what to hardcode.
+       _LT_TAGVAR(hardcode_direct, $1)=no
+       _LT_TAGVAR(hardcode_direct_absolute, $1)=no
+       ;;
+      esac
 
-      if test "$GCC" = yes; then
+      if test yes = "$GCC"; then
        case $host_os in aix4.[[012]]|aix4.[[012]].*)
        # We only want to do this on AIX 4.2 and lower, the check
        # below for broken collect2 doesn't work under 4.3+
-         collect2name=`${CC} -print-prog-name=collect2`
+         collect2name=`$CC -print-prog-name=collect2`
          if test -f "$collect2name" &&
           strings "$collect2name" | $GREP resolve_lib_name >/dev/null
          then
@@ -5052,62 +5474,80 @@ _LT_EOF
          ;;
        esac
        shared_flag='-shared'
-       if test "$aix_use_runtimelinking" = yes; then
-         shared_flag="$shared_flag "'${wl}-G'
+       if test yes = "$aix_use_runtimelinking"; then
+         shared_flag="$shared_flag "'$wl-G'
        fi
-       _LT_TAGVAR(link_all_deplibs, $1)=no
+       # Need to ensure runtime linking is disabled for the traditional
+       # shared library, or the linker may eventually find shared libraries
+       # /with/ Import File - we do not want to mix them.
+       shared_flag_aix='-shared'
+       shared_flag_svr4='-shared $wl-G'
       else
        # not using gcc
-       if test "$host_cpu" = ia64; then
+       if test ia64 = "$host_cpu"; then
        # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
        # chokes on -Wl,-G. The following line is correct:
          shared_flag='-G'
        else
-         if test "$aix_use_runtimelinking" = yes; then
-           shared_flag='${wl}-G'
+         if test yes = "$aix_use_runtimelinking"; then
+           shared_flag='$wl-G'
          else
-           shared_flag='${wl}-bM:SRE'
+           shared_flag='$wl-bM:SRE'
          fi
+         shared_flag_aix='$wl-bM:SRE'
+         shared_flag_svr4='$wl-G'
        fi
       fi
 
-      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall'
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall'
       # It seems that -bexpall does not export symbols beginning with
       # underscore (_), so it is better to generate a list of symbols to export.
       _LT_TAGVAR(always_export_symbols, $1)=yes
-      if test "$aix_use_runtimelinking" = yes; then
+      if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then
        # Warning - without using the other runtime loading flags (-brtl),
        # -berok will link without error, but may produce a broken library.
        _LT_TAGVAR(allow_undefined_flag, $1)='-berok'
         # Determine the default libpath from the value encoded in an
         # empty executable.
         _LT_SYS_MODULE_PATH_AIX([$1])
-        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
-        _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
+        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath"
+        _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag
       else
-       if test "$host_cpu" = ia64; then
-         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
+       if test ia64 = "$host_cpu"; then
+         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib'
          _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
-         _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
+         _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols"
        else
         # Determine the default libpath from the value encoded in an
         # empty executable.
         _LT_SYS_MODULE_PATH_AIX([$1])
-        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
+        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath"
          # Warning - without using the other run time loading flags,
          # -berok will link without error, but may produce a broken library.
-         _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
-         _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
-         if test "$with_gnu_ld" = yes; then
+         _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok'
+         _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok'
+         if test yes = "$with_gnu_ld"; then
            # We only use this code for GNU lds that support --whole-archive.
-           _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
+           _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive'
          else
            # Exported symbols can be pulled into shared objects from archives
            _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
          fi
          _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
-         # This is similar to how AIX traditionally builds its shared libraries.
-         _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
+         _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d'
+         # -brtl affects multiple linker settings, -berok does not and is overridden later
+         compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`'
+         if test svr4 != "$with_aix_soname"; then
+           # This is similar to how AIX traditionally builds its shared libraries.
+           _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname'
+         fi
+         if test aix != "$with_aix_soname"; then
+           _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp'
+         else
+           # used by -dlpreopen to get the symbols
+           _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV  $output_objdir/$realname.d/$soname $output_objdir'
+         fi
+         _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d'
        fi
       fi
       ;;
@@ -5116,7 +5556,7 @@ _LT_EOF
       case $host_cpu in
       powerpc)
             # see comment about AmigaOS4 .so support
-            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
             _LT_TAGVAR(archive_expsym_cmds, $1)=''
         ;;
       m68k)
@@ -5146,16 +5586,17 @@ _LT_EOF
        # Tell ltmain to make .lib files, not .a files.
        libext=lib
        # Tell ltmain to make .dll files, not .so files.
-       shrext_cmds=".dll"
+       shrext_cmds=.dll
        # FIXME: Setting linknames here is a bad hack.
-       _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames='
-       _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
-           sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp;
-         else
-           sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp;
-         fi~
-         $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
-         linknames='
+       _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames='
+       _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then
+            cp "$export_symbols" "$output_objdir/$soname.def";
+            echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp";
+          else
+            $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp;
+          fi~
+          $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
+          linknames='
        # The linker will not automatically build a static lib if we build a DLL.
        # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
        _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
@@ -5164,18 +5605,18 @@ _LT_EOF
        # Don't use ranlib
        _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'
        _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~
-         lt_tool_outputfile="@TOOL_OUTPUT@"~
-         case $lt_outputfile in
-           *.exe|*.EXE) ;;
-           *)
-             lt_outputfile="$lt_outputfile.exe"
-             lt_tool_outputfile="$lt_tool_outputfile.exe"
-             ;;
-         esac~
-         if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then
-           $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
-           $RM "$lt_outputfile.manifest";
-         fi'
+          lt_tool_outputfile="@TOOL_OUTPUT@"~
+          case $lt_outputfile in
+            *.exe|*.EXE) ;;
+            *)
+              lt_outputfile=$lt_outputfile.exe
+              lt_tool_outputfile=$lt_tool_outputfile.exe
+              ;;
+          esac~
+          if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then
+            $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
+            $RM "$lt_outputfile.manifest";
+          fi'
        ;;
       *)
        # Assume MSVC wrapper
@@ -5184,7 +5625,7 @@ _LT_EOF
        # Tell ltmain to make .lib files, not .a files.
        libext=lib
        # Tell ltmain to make .dll files, not .so files.
-       shrext_cmds=".dll"
+       shrext_cmds=.dll
        # FIXME: Setting linknames here is a bad hack.
        _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames='
        # The linker will automatically build a .lib file if we build a DLL.
@@ -5234,33 +5675,33 @@ _LT_EOF
       ;;
 
     hpux9*)
-      if test "$GCC" = yes; then
-       _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
+      if test yes = "$GCC"; then
+       _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib'
       else
-       _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
+       _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib'
       fi
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'
       _LT_TAGVAR(hardcode_libdir_separator, $1)=:
       _LT_TAGVAR(hardcode_direct, $1)=yes
 
       # hardcode_minus_L: Not really in the search PATH,
       # but as the default location of the library.
       _LT_TAGVAR(hardcode_minus_L, $1)=yes
-      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
       ;;
 
     hpux10*)
-      if test "$GCC" = yes && test "$with_gnu_ld" = no; then
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
+      if test yes,no = "$GCC,$with_gnu_ld"; then
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
       else
        _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
       fi
-      if test "$with_gnu_ld" = no; then
-       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
+      if test no = "$with_gnu_ld"; then
+       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'
        _LT_TAGVAR(hardcode_libdir_separator, $1)=:
        _LT_TAGVAR(hardcode_direct, $1)=yes
        _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
-       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+       _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
        # hardcode_minus_L: Not really in the search PATH,
        # but as the default location of the library.
        _LT_TAGVAR(hardcode_minus_L, $1)=yes
@@ -5268,25 +5709,25 @@ _LT_EOF
       ;;
 
     hpux11*)
-      if test "$GCC" = yes && test "$with_gnu_ld" = no; then
+      if test yes,no = "$GCC,$with_gnu_ld"; then
        case $host_cpu in
        hppa*64*)
-         _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
+         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'
          ;;
        ia64*)
-         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
+         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
          ;;
        *)
-         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
+         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
          ;;
        esac
       else
        case $host_cpu in
        hppa*64*)
-         _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
+         _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'
          ;;
        ia64*)
-         _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
+         _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
          ;;
        *)
        m4_if($1, [], [
@@ -5294,14 +5735,14 @@ _LT_EOF
          # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)
          _LT_LINKER_OPTION([if $CC understands -b],
            _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b],
-           [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'],
+           [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'],
            [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])],
-         [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'])
+         [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'])
          ;;
        esac
       fi
-      if test "$with_gnu_ld" = no; then
-       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
+      if test no = "$with_gnu_ld"; then
+       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'
        _LT_TAGVAR(hardcode_libdir_separator, $1)=:
 
        case $host_cpu in
@@ -5312,7 +5753,7 @@ _LT_EOF
        *)
          _LT_TAGVAR(hardcode_direct, $1)=yes
          _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
-         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+         _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
 
          # hardcode_minus_L: Not really in the search PATH,
          # but as the default location of the library.
@@ -5323,16 +5764,16 @@ _LT_EOF
       ;;
 
     irix5* | irix6* | nonstopux*)
-      if test "$GCC" = yes; then
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
+      if test yes = "$GCC"; then
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
        # Try to use the -exported_symbol ld option, if it does not
        # work, assume that -exports_file does not work either and
        # implicitly export all symbols.
        # This should be the same for all languages, so no per-tag cache variable.
        AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol],
          [lt_cv_irix_exported_symbol],
-         [save_LDFLAGS="$LDFLAGS"
-          LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null"
+         [save_LDFLAGS=$LDFLAGS
+          LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null"
           AC_LINK_IFELSE(
             [AC_LANG_SOURCE(
                [AC_LANG_CASE([C], [[int foo (void) { return 0; }]],
@@ -5345,21 +5786,32 @@ _LT_EOF
       end]])])],
              [lt_cv_irix_exported_symbol=yes],
              [lt_cv_irix_exported_symbol=no])
-           LDFLAGS="$save_LDFLAGS"])
-       if test "$lt_cv_irix_exported_symbol" = yes; then
-          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib'
+           LDFLAGS=$save_LDFLAGS])
+       if test yes = "$lt_cv_irix_exported_symbol"; then
+          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib'
        fi
+       _LT_TAGVAR(link_all_deplibs, $1)=no
       else
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib'
       fi
       _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
       _LT_TAGVAR(hardcode_libdir_separator, $1)=:
       _LT_TAGVAR(inherit_rpath, $1)=yes
       _LT_TAGVAR(link_all_deplibs, $1)=yes
       ;;
 
+    linux*)
+      case $cc_basename in
+      tcc*)
+       # Fabrice Bellard et al's Tiny C Compiler
+       _LT_TAGVAR(ld_shlibs, $1)=yes
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
+       ;;
+      esac
+      ;;
+
     netbsd* | netbsdelf*-gnu)
       if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
        _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
@@ -5374,7 +5826,7 @@ _LT_EOF
     newsos6)
       _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
       _LT_TAGVAR(hardcode_direct, $1)=yes
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
       _LT_TAGVAR(hardcode_libdir_separator, $1)=:
       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
       ;;
@@ -5382,27 +5834,19 @@ _LT_EOF
     *nto* | *qnx*)
       ;;
 
-    openbsd*)
+    openbsd* | bitrig*)
       if test -f /usr/libexec/ld.so; then
        _LT_TAGVAR(hardcode_direct, $1)=yes
        _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
        _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
-       if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+       if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
          _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
-         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
-         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
-         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols'
+         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
+         _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
        else
-         case $host_os in
-          openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*)
-            _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
-            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
-            ;;
-          *)
-            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
-            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
-            ;;
-         esac
+         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
+         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
        fi
       else
        _LT_TAGVAR(ld_shlibs, $1)=no
@@ -5413,33 +5857,53 @@ _LT_EOF
       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
       _LT_TAGVAR(hardcode_minus_L, $1)=yes
       _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
-      _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def'
-      _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
+      shrext_cmds=.dll
+      _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
+       $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
+       $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
+       $ECHO EXPORTS >> $output_objdir/$libname.def~
+       emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~
+       $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~
+       emximp -o $lib $output_objdir/$libname.def'
+      _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
+       $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
+       $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
+       $ECHO EXPORTS >> $output_objdir/$libname.def~
+       prefix_cmds="$SED"~
+       if test EXPORTS = "`$SED 1q $export_symbols`"; then
+         prefix_cmds="$prefix_cmds -e 1d";
+       fi~
+       prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~
+       cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~
+       $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~
+       emximp -o $lib $output_objdir/$libname.def'
+      _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'
+      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
       ;;
 
     osf3*)
-      if test "$GCC" = yes; then
-       _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
+      if test yes = "$GCC"; then
+       _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
       else
        _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
       fi
       _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
       _LT_TAGVAR(hardcode_libdir_separator, $1)=:
       ;;
 
     osf4* | osf5*)     # as osf3* with the addition of -msym flag
-      if test "$GCC" = yes; then
-       _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
-       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+      if test yes = "$GCC"; then
+       _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
+       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
       else
        _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
        _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~
-       $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp'
+          $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp'
 
        # Both c and cxx compiler support -rpath directly
        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
@@ -5450,24 +5914,24 @@ _LT_EOF
 
     solaris*)
       _LT_TAGVAR(no_undefined_flag, $1)=' -z defs'
-      if test "$GCC" = yes; then
-       wlarc='${wl}'
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
+      if test yes = "$GCC"; then
+       wlarc='$wl'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'
        _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
-         $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
+          $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
       else
        case `$CC -V 2>&1` in
        *"Compilers 5.0"*)
          wlarc=''
-         _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
+         _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags'
          _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
-         $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'
+            $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'
          ;;
        *)
-         wlarc='${wl}'
-         _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags'
+         wlarc='$wl'
+         _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags'
          _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
-         $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
+            $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
          ;;
        esac
       fi
@@ -5477,11 +5941,11 @@ _LT_EOF
       solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
       *)
        # The compiler driver will combine and reorder linker options,
-       # but understands `-z linker_flag'.  GCC discards it without `$wl',
+       # but understands '-z linker_flag'.  GCC discards it without '$wl',
        # but is careful enough not to reorder.
        # Supported since Solaris 2.6 (maybe 2.5.1?)
-       if test "$GCC" = yes; then
-         _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
+       if test yes = "$GCC"; then
+         _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract'
        else
          _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
        fi
@@ -5491,10 +5955,10 @@ _LT_EOF
       ;;
 
     sunos4*)
-      if test "x$host_vendor" = xsequent; then
+      if test sequent = "$host_vendor"; then
        # Use $CC to link under sequent, because it throws in some extra .o
        # files that make .init and .fini sections work.
-       _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags'
       else
        _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
       fi
@@ -5543,43 +6007,43 @@ _LT_EOF
       ;;
 
     sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
-      _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
+      _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text'
       _LT_TAGVAR(archive_cmds_need_lc, $1)=no
       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
       runpath_var='LD_RUN_PATH'
 
-      if test "$GCC" = yes; then
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+      if test yes = "$GCC"; then
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
       else
-       _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
       fi
       ;;
 
     sysv5* | sco3.2v5* | sco5v6*)
-      # Note: We can NOT use -z defs as we might desire, because we do not
+      # Note: We CANNOT use -z defs as we might desire, because we do not
       # link with -lc, and that would cause any symbols used from libc to
       # always be unresolved, which means just about no library would
       # ever link correctly.  If we're not using GNU ld we use -z text
       # though, which does catch some bad symbols but isn't as heavy-handed
       # as -z defs.
-      _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
-      _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
+      _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text'
+      _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs'
       _LT_TAGVAR(archive_cmds_need_lc, $1)=no
       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir'
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir'
       _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
       _LT_TAGVAR(link_all_deplibs, $1)=yes
-      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport'
       runpath_var='LD_RUN_PATH'
 
-      if test "$GCC" = yes; then
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+      if test yes = "$GCC"; then
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
       else
-       _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
       fi
       ;;
 
@@ -5594,17 +6058,17 @@ _LT_EOF
       ;;
     esac
 
-    if test x$host_vendor = xsni; then
+    if test sni = "$host_vendor"; then
       case $host in
       sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
-       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym'
+       _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym'
        ;;
       esac
     fi
   fi
 ])
 AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
-test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
+test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no
 
 _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld
 
@@ -5621,7 +6085,7 @@ x|xyes)
   # Assume -lc should be added
   _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
 
-  if test "$enable_shared" = yes && test "$GCC" = yes; then
+  if test yes,yes = "$GCC,$enable_shared"; then
     case $_LT_TAGVAR(archive_cmds, $1) in
     *'~'*)
       # FIXME: we may have to deal with multi-command sequences.
@@ -5701,12 +6165,12 @@ _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1],
 _LT_TAGDECL([], [hardcode_libdir_separator], [1],
     [Whether we need a single "-rpath" flag with a separated argument])
 _LT_TAGDECL([], [hardcode_direct], [0],
-    [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
+    [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes
     DIR into the resulting binary])
 _LT_TAGDECL([], [hardcode_direct_absolute], [0],
-    [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
+    [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes
     DIR into the resulting binary and the resulting library dependency is
-    "absolute", i.e impossible to change by setting ${shlibpath_var} if the
+    "absolute", i.e impossible to change by setting $shlibpath_var if the
     library is relocated])
 _LT_TAGDECL([], [hardcode_minus_L], [0],
     [Set to "yes" if using the -LDIR flag during linking hardcodes DIR
@@ -5747,10 +6211,10 @@ dnl    [Compiler flag to generate thread safe objects])
 # ------------------------
 # Ensure that the configuration variables for a C compiler are suitably
 # defined.  These variables are subsequently used by _LT_CONFIG to write
-# the compiler configuration to `libtool'.
+# the compiler configuration to 'libtool'.
 m4_defun([_LT_LANG_C_CONFIG],
 [m4_require([_LT_DECL_EGREP])dnl
-lt_save_CC="$CC"
+lt_save_CC=$CC
 AC_LANG_PUSH(C)
 
 # Source file extension for C test sources.
@@ -5790,18 +6254,18 @@ if test -n "$compiler"; then
   LT_SYS_DLOPEN_SELF
   _LT_CMD_STRIPLIB
 
-  # Report which library types will actually be built
+  # Report what library types will actually be built
   AC_MSG_CHECKING([if libtool supports shared libraries])
   AC_MSG_RESULT([$can_build_shared])
 
   AC_MSG_CHECKING([whether to build shared libraries])
-  test "$can_build_shared" = "no" && enable_shared=no
+  test no = "$can_build_shared" && enable_shared=no
 
   # On AIX, shared libraries and static libraries use the same namespace, and
   # are all built from PIC.
   case $host_os in
   aix3*)
-    test "$enable_shared" = yes && enable_static=no
+    test yes = "$enable_shared" && enable_static=no
     if test -n "$RANLIB"; then
       archive_cmds="$archive_cmds~\$RANLIB \$lib"
       postinstall_cmds='$RANLIB $lib'
@@ -5809,8 +6273,12 @@ if test -n "$compiler"; then
     ;;
 
   aix[[4-9]]*)
-    if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
-      test "$enable_shared" = yes && enable_static=no
+    if test ia64 != "$host_cpu"; then
+      case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in
+      yes,aix,yes) ;;                  # shared object as lib.so file only
+      yes,svr4,*) ;;                   # shared object as lib.so archive member only
+      yes,*) enable_static=no ;;       # shared object in lib.a archive as well
+      esac
     fi
     ;;
   esac
@@ -5818,13 +6286,13 @@ if test -n "$compiler"; then
 
   AC_MSG_CHECKING([whether to build static libraries])
   # Make sure either enable_shared or enable_static is yes.
-  test "$enable_shared" = yes || enable_static=yes
+  test yes = "$enable_shared" || enable_static=yes
   AC_MSG_RESULT([$enable_static])
 
   _LT_CONFIG($1)
 fi
 AC_LANG_POP
-CC="$lt_save_CC"
+CC=$lt_save_CC
 ])# _LT_LANG_C_CONFIG
 
 
@@ -5832,14 +6300,14 @@ CC="$lt_save_CC"
 # --------------------------
 # Ensure that the configuration variables for a C++ compiler are suitably
 # defined.  These variables are subsequently used by _LT_CONFIG to write
-# the compiler configuration to `libtool'.
+# the compiler configuration to 'libtool'.
 m4_defun([_LT_LANG_CXX_CONFIG],
 [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
 m4_require([_LT_DECL_EGREP])dnl
 m4_require([_LT_PATH_MANIFEST_TOOL])dnl
-if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
-    ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
-    (test "X$CXX" != "Xg++"))) ; then
+if test -n "$CXX" && ( test no != "$CXX" &&
+    ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) ||
+    (test g++ != "$CXX"))); then
   AC_PROG_CXXCPP
 else
   _lt_caught_CXX_error=yes
@@ -5881,7 +6349,7 @@ _LT_TAGVAR(objext, $1)=$objext
 # the CXX compiler isn't working.  Some variables (like enable_shared)
 # are currently assumed to apply to all compilers on this platform,
 # and will be corrupted by setting them based on a non-working compiler.
-if test "$_lt_caught_CXX_error" != yes; then
+if test yes != "$_lt_caught_CXX_error"; then
   # Code to be used in simple compile tests
   lt_simple_compile_test_code="int some_variable = 0;"
 
@@ -5923,35 +6391,35 @@ if test "$_lt_caught_CXX_error" != yes; then
   if test -n "$compiler"; then
     # We don't want -fno-exception when compiling C++ code, so set the
     # no_builtin_flag separately
-    if test "$GXX" = yes; then
+    if test yes = "$GXX"; then
       _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
     else
       _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
     fi
 
-    if test "$GXX" = yes; then
+    if test yes = "$GXX"; then
       # Set up default GNU C++ configuration
 
       LT_PATH_LD
 
       # Check if GNU C++ uses GNU ld as the underlying linker, since the
       # archiving commands below assume that GNU ld is being used.
-      if test "$with_gnu_ld" = yes; then
-        _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
-        _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+      if test yes = "$with_gnu_ld"; then
+        _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'
+        _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
 
-        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
-        _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
+        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
+        _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'
 
         # If archive_cmds runs LD, not CC, wlarc should be empty
         # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
         #     investigate it a little bit more. (MM)
-        wlarc='${wl}'
+        wlarc='$wl'
 
         # ancient GNU ld didn't support --whole-archive et. al.
         if eval "`$CC -print-prog-name=ld` --help 2>&1" |
          $GREP 'no-whole-archive' > /dev/null; then
-          _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
+          _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'
         else
           _LT_TAGVAR(whole_archive_flag_spec, $1)=
         fi
@@ -5987,18 +6455,30 @@ if test "$_lt_caught_CXX_error" != yes; then
         _LT_TAGVAR(ld_shlibs, $1)=no
         ;;
       aix[[4-9]]*)
-        if test "$host_cpu" = ia64; then
+        if test ia64 = "$host_cpu"; then
           # On IA64, the linker does run time linking by default, so we don't
           # have to do anything special.
           aix_use_runtimelinking=no
           exp_sym_flag='-Bexport'
-          no_entry_flag=""
+          no_entry_flag=
         else
           aix_use_runtimelinking=no
 
           # Test if we are trying to use run time linking or normal
           # AIX style linking. If -brtl is somewhere in LDFLAGS, we
-          # need to do runtime linking.
+          # have runtime linking enabled, and use it for executables.
+          # For shared libraries, we enable/disable runtime linking
+          # depending on the kind of the shared library created -
+          # when "with_aix_soname,aix_use_runtimelinking" is:
+          # "aix,no"   lib.a(lib.so.V) shared, rtl:no,  for executables
+          # "aix,yes"  lib.so          shared, rtl:yes, for executables
+          #            lib.a           static archive
+          # "both,no"  lib.so.V(shr.o) shared, rtl:yes
+          #            lib.a(lib.so.V) shared, rtl:no,  for executables
+          # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables
+          #            lib.a(lib.so.V) shared, rtl:no
+          # "svr4,*"   lib.so.V(shr.o) shared, rtl:yes, for executables
+          #            lib.a           static archive
           case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
            for ld_flag in $LDFLAGS; do
              case $ld_flag in
@@ -6008,6 +6488,13 @@ if test "$_lt_caught_CXX_error" != yes; then
                ;;
              esac
            done
+           if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then
+             # With aix-soname=svr4, we create the lib.so.V shared archives only,
+             # so we don't have lib.a shared libs to link our executables.
+             # We have to force runtime linking in this case.
+             aix_use_runtimelinking=yes
+             LDFLAGS="$LDFLAGS -Wl,-brtl"
+           fi
            ;;
           esac
 
@@ -6026,13 +6513,21 @@ if test "$_lt_caught_CXX_error" != yes; then
         _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
         _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
         _LT_TAGVAR(link_all_deplibs, $1)=yes
-        _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'
+        _LT_TAGVAR(file_list_spec, $1)='$wl-f,'
+        case $with_aix_soname,$aix_use_runtimelinking in
+        aix,*) ;;      # no import file
+        svr4,* | *,yes) # use import file
+          # The Import File defines what to hardcode.
+          _LT_TAGVAR(hardcode_direct, $1)=no
+          _LT_TAGVAR(hardcode_direct_absolute, $1)=no
+          ;;
+        esac
 
-        if test "$GXX" = yes; then
+        if test yes = "$GXX"; then
           case $host_os in aix4.[[012]]|aix4.[[012]].*)
           # We only want to do this on AIX 4.2 and lower, the check
           # below for broken collect2 doesn't work under 4.3+
-         collect2name=`${CC} -print-prog-name=collect2`
+         collect2name=`$CC -print-prog-name=collect2`
          if test -f "$collect2name" &&
             strings "$collect2name" | $GREP resolve_lib_name >/dev/null
          then
@@ -6050,64 +6545,84 @@ if test "$_lt_caught_CXX_error" != yes; then
          fi
           esac
           shared_flag='-shared'
-         if test "$aix_use_runtimelinking" = yes; then
-           shared_flag="$shared_flag "'${wl}-G'
+         if test yes = "$aix_use_runtimelinking"; then
+           shared_flag=$shared_flag' $wl-G'
          fi
+         # Need to ensure runtime linking is disabled for the traditional
+         # shared library, or the linker may eventually find shared libraries
+         # /with/ Import File - we do not want to mix them.
+         shared_flag_aix='-shared'
+         shared_flag_svr4='-shared $wl-G'
         else
           # not using gcc
-          if test "$host_cpu" = ia64; then
+          if test ia64 = "$host_cpu"; then
          # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
          # chokes on -Wl,-G. The following line is correct:
          shared_flag='-G'
           else
-           if test "$aix_use_runtimelinking" = yes; then
-             shared_flag='${wl}-G'
+           if test yes = "$aix_use_runtimelinking"; then
+             shared_flag='$wl-G'
            else
-             shared_flag='${wl}-bM:SRE'
+             shared_flag='$wl-bM:SRE'
            fi
+           shared_flag_aix='$wl-bM:SRE'
+           shared_flag_svr4='$wl-G'
           fi
         fi
 
-        _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall'
+        _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall'
         # It seems that -bexpall does not export symbols beginning with
         # underscore (_), so it is better to generate a list of symbols to
        # export.
         _LT_TAGVAR(always_export_symbols, $1)=yes
-        if test "$aix_use_runtimelinking" = yes; then
+       if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then
           # Warning - without using the other runtime loading flags (-brtl),
           # -berok will link without error, but may produce a broken library.
-          _LT_TAGVAR(allow_undefined_flag, $1)='-berok'
+          # The "-G" linker flag allows undefined symbols.
+          _LT_TAGVAR(no_undefined_flag, $1)='-bernotok'
           # Determine the default libpath from the value encoded in an empty
           # executable.
           _LT_SYS_MODULE_PATH_AIX([$1])
-          _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
+          _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath"
 
-          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
+          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag
         else
-          if test "$host_cpu" = ia64; then
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
+          if test ia64 = "$host_cpu"; then
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib'
            _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
-           _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
+           _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols"
           else
            # Determine the default libpath from the value encoded in an
            # empty executable.
            _LT_SYS_MODULE_PATH_AIX([$1])
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath"
            # Warning - without using the other run time loading flags,
            # -berok will link without error, but may produce a broken library.
-           _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
-           _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
-           if test "$with_gnu_ld" = yes; then
+           _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok'
+           _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok'
+           if test yes = "$with_gnu_ld"; then
              # We only use this code for GNU lds that support --whole-archive.
-             _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
+             _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive'
            else
              # Exported symbols can be pulled into shared objects from archives
              _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
            fi
            _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
-           # This is similar to how AIX traditionally builds its shared
-           # libraries.
-           _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
+           _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d'
+           # -brtl affects multiple linker settings, -berok does not and is overridden later
+           compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`'
+           if test svr4 != "$with_aix_soname"; then
+             # This is similar to how AIX traditionally builds its shared
+             # libraries. Need -bnortl late, we may have -brtl in LDFLAGS.
+             _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname'
+           fi
+           if test aix != "$with_aix_soname"; then
+             _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp'
+           else
+             # used by -dlpreopen to get the symbols
+             _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV  $output_objdir/$realname.d/$soname $output_objdir'
+           fi
+           _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d'
           fi
         fi
         ;;
@@ -6117,7 +6632,7 @@ if test "$_lt_caught_CXX_error" != yes; then
          _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
          # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
          # support --undefined.  This deserves some investigation.  FIXME
-         _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+         _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
        else
          _LT_TAGVAR(ld_shlibs, $1)=no
        fi
@@ -6145,57 +6660,58 @@ if test "$_lt_caught_CXX_error" != yes; then
          # Tell ltmain to make .lib files, not .a files.
          libext=lib
          # Tell ltmain to make .dll files, not .so files.
-         shrext_cmds=".dll"
+         shrext_cmds=.dll
          # FIXME: Setting linknames here is a bad hack.
-         _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames='
-         _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
-             $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp;
-           else
-             $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp;
-           fi~
-           $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
-           linknames='
+         _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames='
+         _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then
+              cp "$export_symbols" "$output_objdir/$soname.def";
+              echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp";
+            else
+              $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp;
+            fi~
+            $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
+            linknames='
          # The linker will not automatically build a static lib if we build a DLL.
          # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
          _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
          # Don't use ranlib
          _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'
          _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~
-           lt_tool_outputfile="@TOOL_OUTPUT@"~
-           case $lt_outputfile in
-             *.exe|*.EXE) ;;
-             *)
-               lt_outputfile="$lt_outputfile.exe"
-               lt_tool_outputfile="$lt_tool_outputfile.exe"
-               ;;
-           esac~
-           func_to_tool_file "$lt_outputfile"~
-           if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then
-             $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
-             $RM "$lt_outputfile.manifest";
-           fi'
+            lt_tool_outputfile="@TOOL_OUTPUT@"~
+            case $lt_outputfile in
+              *.exe|*.EXE) ;;
+              *)
+                lt_outputfile=$lt_outputfile.exe
+                lt_tool_outputfile=$lt_tool_outputfile.exe
+                ;;
+            esac~
+            func_to_tool_file "$lt_outputfile"~
+            if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then
+              $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
+              $RM "$lt_outputfile.manifest";
+            fi'
          ;;
        *)
          # g++
          # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
          # as there is no search path for DLLs.
          _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
-         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols'
+         _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols'
          _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
          _LT_TAGVAR(always_export_symbols, $1)=no
          _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
 
          if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
-           _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
-           # If the export-symbols file already is a .def file (1st line
-           # is EXPORTS), use it as is; otherwise, prepend...
-           _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
-             cp $export_symbols $output_objdir/$soname.def;
-           else
-             echo EXPORTS > $output_objdir/$soname.def;
-             cat $export_symbols >> $output_objdir/$soname.def;
-           fi~
-           $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
+           _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
+           # If the export-symbols file already is a .def file, use it as
+           # is; otherwise, prepend EXPORTS...
+           _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then
+              cp $export_symbols $output_objdir/$soname.def;
+            else
+              echo EXPORTS > $output_objdir/$soname.def;
+              cat $export_symbols >> $output_objdir/$soname.def;
+            fi~
+            $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
          else
            _LT_TAGVAR(ld_shlibs, $1)=no
          fi
@@ -6206,6 +6722,34 @@ if test "$_lt_caught_CXX_error" != yes; then
         _LT_DARWIN_LINKER_FEATURES($1)
        ;;
 
+      os2*)
+       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
+       _LT_TAGVAR(hardcode_minus_L, $1)=yes
+       _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
+       shrext_cmds=.dll
+       _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
+         $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
+         $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
+         $ECHO EXPORTS >> $output_objdir/$libname.def~
+         emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~
+         $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~
+         emximp -o $lib $output_objdir/$libname.def'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
+         $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
+         $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
+         $ECHO EXPORTS >> $output_objdir/$libname.def~
+         prefix_cmds="$SED"~
+         if test EXPORTS = "`$SED 1q $export_symbols`"; then
+           prefix_cmds="$prefix_cmds -e 1d";
+         fi~
+         prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~
+         cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~
+         $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~
+         emximp -o $lib $output_objdir/$libname.def'
+       _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'
+       _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
+       ;;
+
       dgux*)
         case $cc_basename in
           ec++*)
@@ -6241,14 +6785,14 @@ if test "$_lt_caught_CXX_error" != yes; then
         ;;
 
       haiku*)
-        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
         _LT_TAGVAR(link_all_deplibs, $1)=yes
         ;;
 
       hpux9*)
-        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
+        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'
         _LT_TAGVAR(hardcode_libdir_separator, $1)=:
-        _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+        _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
         _LT_TAGVAR(hardcode_direct, $1)=yes
         _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
                                             # but as the default
@@ -6260,7 +6804,7 @@ if test "$_lt_caught_CXX_error" != yes; then
             _LT_TAGVAR(ld_shlibs, $1)=no
             ;;
           aCC*)
-            _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
+            _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib'
             # Commands to make compiler produce verbose output that lists
             # what "hidden" libraries, object files and flags are used when
             # linking a shared library.
@@ -6269,11 +6813,11 @@ if test "$_lt_caught_CXX_error" != yes; then
             # explicitly linking system object files so we need to strip them
             # from the output so that they don't get included in the library
             # dependencies.
-            output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
+            output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
             ;;
           *)
-            if test "$GXX" = yes; then
-              _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
+            if test yes = "$GXX"; then
+              _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib'
             else
               # FIXME: insert proper C++ library support
               _LT_TAGVAR(ld_shlibs, $1)=no
@@ -6283,15 +6827,15 @@ if test "$_lt_caught_CXX_error" != yes; then
         ;;
 
       hpux10*|hpux11*)
-        if test $with_gnu_ld = no; then
-         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
+        if test no = "$with_gnu_ld"; then
+         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'
          _LT_TAGVAR(hardcode_libdir_separator, $1)=:
 
           case $host_cpu in
             hppa*64*|ia64*)
               ;;
             *)
-             _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+             _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
               ;;
           esac
         fi
@@ -6317,13 +6861,13 @@ if test "$_lt_caught_CXX_error" != yes; then
           aCC*)
            case $host_cpu in
              hppa*64*)
-               _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+               _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
                ;;
              ia64*)
-               _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+               _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
                ;;
              *)
-               _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+               _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
                ;;
            esac
            # Commands to make compiler produce verbose output that lists
@@ -6334,20 +6878,20 @@ if test "$_lt_caught_CXX_error" != yes; then
            # explicitly linking system object files so we need to strip them
            # from the output so that they don't get included in the library
            # dependencies.
-           output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
+           output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
            ;;
           *)
-           if test "$GXX" = yes; then
-             if test $with_gnu_ld = no; then
+           if test yes = "$GXX"; then
+             if test no = "$with_gnu_ld"; then
                case $host_cpu in
                  hppa*64*)
-                   _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+                   _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
                    ;;
                  ia64*)
-                   _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+                   _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
                    ;;
                  *)
-                   _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+                   _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
                    ;;
                esac
              fi
@@ -6362,22 +6906,22 @@ if test "$_lt_caught_CXX_error" != yes; then
       interix[[3-9]]*)
        _LT_TAGVAR(hardcode_direct, $1)=no
        _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
-       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
+       _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
        # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
        # Instead, shared libraries are loaded at an image base (0x10000000 by
        # default) and relocated if they conflict, which is a slow very memory
        # consuming and fragmenting process.  To avoid this, we pick a random,
        # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
        # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
        ;;
       irix5* | irix6*)
         case $cc_basename in
           CC*)
            # SGI C++
-           _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
+           _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
 
            # Archives containing C++ object files must be created using
            # "CC -ar", where "CC" is the IRIX C++ compiler.  This is
@@ -6386,17 +6930,17 @@ if test "$_lt_caught_CXX_error" != yes; then
            _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'
            ;;
           *)
-           if test "$GXX" = yes; then
-             if test "$with_gnu_ld" = no; then
-               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
+           if test yes = "$GXX"; then
+             if test no = "$with_gnu_ld"; then
+               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
              else
-               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib'
+               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib'
              fi
            fi
            _LT_TAGVAR(link_all_deplibs, $1)=yes
            ;;
         esac
-        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
         _LT_TAGVAR(hardcode_libdir_separator, $1)=:
         _LT_TAGVAR(inherit_rpath, $1)=yes
         ;;
@@ -6409,8 +6953,8 @@ if test "$_lt_caught_CXX_error" != yes; then
            # KCC will only create a shared library if the output file
            # ends with ".so" (or ".sl" for HP-UX), so rename the library
            # to its proper name (with version) after linking.
-           _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
-           _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib'
+           _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
+           _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib'
            # Commands to make compiler produce verbose output that lists
            # what "hidden" libraries, object files and flags are used when
            # linking a shared library.
@@ -6419,10 +6963,10 @@ if test "$_lt_caught_CXX_error" != yes; then
            # explicitly linking system object files so we need to strip them
            # from the output so that they don't get included in the library
            # dependencies.
-           output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
+           output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
 
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
-           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
+           _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'
 
            # Archives containing C++ object files must be created using
            # "CC -Bstatic", where "CC" is the KAI C++ compiler.
@@ -6436,59 +6980,59 @@ if test "$_lt_caught_CXX_error" != yes; then
            # earlier do not add the objects themselves.
            case `$CC -V 2>&1` in
              *"Version 7."*)
-               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
-               _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'
+               _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
                ;;
              *)  # Version 8.0 or newer
                tmp_idyn=
                case $host_cpu in
                  ia64*) tmp_idyn=' -i_dynamic';;
                esac
-               _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-               _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+               _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+               _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
                ;;
            esac
            _LT_TAGVAR(archive_cmds_need_lc, $1)=no
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
-           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
-           _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
+           _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'
+           _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive'
            ;;
           pgCC* | pgcpp*)
             # Portland Group C++ compiler
            case `$CC -V` in
            *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*)
              _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~
-               rm -rf $tpldir~
-               $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~
-               compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"'
+               rm -rf $tpldir~
+               $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~
+               compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"'
              _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~
-               rm -rf $tpldir~
-               $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~
-               $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~
-               $RANLIB $oldlib'
+                rm -rf $tpldir~
+                $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~
+                $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~
+                $RANLIB $oldlib'
              _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~
-               rm -rf $tpldir~
-               $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
-               $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
+                rm -rf $tpldir~
+                $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
+                $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'
              _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~
-               rm -rf $tpldir~
-               $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
-               $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
+                rm -rf $tpldir~
+                $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
+                $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
              ;;
            *) # Version 6 and above use weak symbols
-             _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
-             _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
+             _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'
+             _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
              ;;
            esac
 
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
-           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
-           _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir'
+           _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'
+           _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
             ;;
          cxx*)
            # Compaq C++
-           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
-           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname  -o $lib ${wl}-retain-symbols-file $wl$export_symbols'
+           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'
+           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname  -o $lib $wl-retain-symbols-file $wl$export_symbols'
 
            runpath_var=LD_RUN_PATH
            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
@@ -6502,18 +7046,18 @@ if test "$_lt_caught_CXX_error" != yes; then
            # explicitly linking system object files so we need to strip them
            # from the output so that they don't get included in the library
            # dependencies.
-           output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed'
+           output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed'
            ;;
          xl* | mpixl* | bgxl*)
            # IBM XL 8.0 on PPC, with GNU ld
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
-           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
-           _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-           if test "x$supports_anon_versioning" = xyes; then
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
+           _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'
+           _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+           if test yes = "$supports_anon_versioning"; then
              _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
-               cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
-               echo "local: *; };" >> $output_objdir/$libname.ver~
-               $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
+                cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
+                echo "local: *; };" >> $output_objdir/$libname.ver~
+                $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'
            fi
            ;;
          *)
@@ -6521,10 +7065,10 @@ if test "$_lt_caught_CXX_error" != yes; then
            *Sun\ C*)
              # Sun C++ 5.9
              _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
-             _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
-             _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols'
+             _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+             _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols'
              _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
-             _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+             _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
              _LT_TAGVAR(compiler_needs_object, $1)=yes
 
              # Not sure whether something based on
@@ -6582,22 +7126,17 @@ if test "$_lt_caught_CXX_error" != yes; then
         _LT_TAGVAR(ld_shlibs, $1)=yes
        ;;
 
-      openbsd2*)
-        # C++ shared libraries are fairly broken
-       _LT_TAGVAR(ld_shlibs, $1)=no
-       ;;
-
-      openbsd*)
+      openbsd* | bitrig*)
        if test -f /usr/libexec/ld.so; then
          _LT_TAGVAR(hardcode_direct, $1)=yes
          _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
          _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
          _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
-         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
-         if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
-           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
-           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
-           _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
+         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
+         if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then
+           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib'
+           _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
+           _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'
          fi
          output_verbose_link_cmd=func_echo_all
        else
@@ -6613,9 +7152,9 @@ if test "$_lt_caught_CXX_error" != yes; then
            # KCC will only create a shared library if the output file
            # ends with ".so" (or ".sl" for HP-UX), so rename the library
            # to its proper name (with version) after linking.
-           _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
+           _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
 
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
            _LT_TAGVAR(hardcode_libdir_separator, $1)=:
 
            # Archives containing C++ object files must be created using
@@ -6633,17 +7172,17 @@ if test "$_lt_caught_CXX_error" != yes; then
           cxx*)
            case $host in
              osf3*)
-               _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
-               _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
-               _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+               _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*'
+               _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
+               _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
                ;;
              *)
                _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
-               _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
+               _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
                _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
-                 echo "-hidden">> $lib.exp~
-                 $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp  `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~
-                 $RM $lib.exp'
+                  echo "-hidden">> $lib.exp~
+                  $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp  `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~
+                  $RM $lib.exp'
                _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
                ;;
            esac
@@ -6658,21 +7197,21 @@ if test "$_lt_caught_CXX_error" != yes; then
            # explicitly linking system object files so we need to strip them
            # from the output so that they don't get included in the library
            # dependencies.
-           output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
+           output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
            ;;
          *)
-           if test "$GXX" = yes && test "$with_gnu_ld" = no; then
-             _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
+           if test yes,no = "$GXX,$with_gnu_ld"; then
+             _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*'
              case $host in
                osf3*)
-                 _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
+                 _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
                  ;;
                *)
-                 _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
+                 _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
                  ;;
              esac
 
-             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
              _LT_TAGVAR(hardcode_libdir_separator, $1)=:
 
              # Commands to make compiler produce verbose output that lists
@@ -6718,9 +7257,9 @@ if test "$_lt_caught_CXX_error" != yes; then
            # Sun C++ 4.2, 5.x and Centerline C++
             _LT_TAGVAR(archive_cmds_need_lc,$1)=yes
            _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
-           _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag}  -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+           _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
            _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
-             $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
+              $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
 
            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
            _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
@@ -6728,7 +7267,7 @@ if test "$_lt_caught_CXX_error" != yes; then
              solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
              *)
                # The compiler driver will combine and reorder linker options,
-               # but understands `-z linker_flag'.
+               # but understands '-z linker_flag'.
                # Supported since Solaris 2.6 (maybe 2.5.1?)
                _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
                ;;
@@ -6745,30 +7284,30 @@ if test "$_lt_caught_CXX_error" != yes; then
            ;;
           gcx*)
            # Green Hills C++ Compiler
-           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
+           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib'
 
            # The C++ compiler must be used to create the archive.
            _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
            ;;
           *)
            # GNU C++ compiler with Solaris linker
-           if test "$GXX" = yes && test "$with_gnu_ld" = no; then
-             _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs'
+           if test yes,no = "$GXX,$with_gnu_ld"; then
+             _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs'
              if $CC --version | $GREP -v '^2\.7' > /dev/null; then
-               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
+               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib'
                _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
-                 $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
+                  $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
 
                # Commands to make compiler produce verbose output that lists
                # what "hidden" libraries, object files and flags are used when
                # linking a shared library.
                output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
              else
-               # g++ 2.7 appears to require `-G' NOT `-shared' on this
+               # g++ 2.7 appears to require '-G' NOT '-shared' on this
                # platform.
-               _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
+               _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib'
                _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
-                 $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
+                  $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
 
                # Commands to make compiler produce verbose output that lists
                # what "hidden" libraries, object files and flags are used when
@@ -6776,11 +7315,11 @@ if test "$_lt_caught_CXX_error" != yes; then
                output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
              fi
 
-             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir'
+             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir'
              case $host_os in
                solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
                *)
-                 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
+                 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract'
                  ;;
              esac
            fi
@@ -6789,52 +7328,52 @@ if test "$_lt_caught_CXX_error" != yes; then
         ;;
 
     sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
-      _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
+      _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text'
       _LT_TAGVAR(archive_cmds_need_lc, $1)=no
       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
       runpath_var='LD_RUN_PATH'
 
       case $cc_basename in
         CC*)
-         _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+         _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
          ;;
        *)
-         _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
          ;;
       esac
       ;;
 
       sysv5* | sco3.2v5* | sco5v6*)
-       # Note: We can NOT use -z defs as we might desire, because we do not
+       # Note: We CANNOT use -z defs as we might desire, because we do not
        # link with -lc, and that would cause any symbols used from libc to
        # always be unresolved, which means just about no library would
        # ever link correctly.  If we're not using GNU ld we use -z text
        # though, which does catch some bad symbols but isn't as heavy-handed
        # as -z defs.
-       _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
-       _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
+       _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text'
+       _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs'
        _LT_TAGVAR(archive_cmds_need_lc, $1)=no
        _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir'
+       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir'
        _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
        _LT_TAGVAR(link_all_deplibs, $1)=yes
-       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
+       _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport'
        runpath_var='LD_RUN_PATH'
 
        case $cc_basename in
           CC*)
-           _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+           _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
            _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~
-             '"$_LT_TAGVAR(old_archive_cmds, $1)"
+              '"$_LT_TAGVAR(old_archive_cmds, $1)"
            _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~
-             '"$_LT_TAGVAR(reload_cmds, $1)"
+              '"$_LT_TAGVAR(reload_cmds, $1)"
            ;;
          *)
-           _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
            ;;
        esac
       ;;
@@ -6865,10 +7404,10 @@ if test "$_lt_caught_CXX_error" != yes; then
     esac
 
     AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
-    test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
+    test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no
 
-    _LT_TAGVAR(GCC, $1)="$GXX"
-    _LT_TAGVAR(LD, $1)="$LD"
+    _LT_TAGVAR(GCC, $1)=$GXX
+    _LT_TAGVAR(LD, $1)=$LD
 
     ## CAVEAT EMPTOR:
     ## There is no encapsulation within the following macros, do not change
@@ -6895,7 +7434,7 @@ if test "$_lt_caught_CXX_error" != yes; then
   lt_cv_path_LD=$lt_save_path_LD
   lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
   lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
-fi # test "$_lt_caught_CXX_error" != yes
+fi # test yes != "$_lt_caught_CXX_error"
 
 AC_LANG_POP
 ])# _LT_LANG_CXX_CONFIG
@@ -6917,13 +7456,14 @@ AC_REQUIRE([_LT_DECL_SED])
 AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])
 func_stripname_cnf ()
 {
-  case ${2} in
-  .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;;
-  *)  func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;;
+  case @S|@2 in
+  .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;;
+  *)  func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;;
   esac
 } # func_stripname_cnf
 ])# _LT_FUNC_STRIPNAME_CNF
 
+
 # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME])
 # ---------------------------------
 # Figure out "hidden" library dependencies from verbose
@@ -7007,13 +7547,13 @@ if AC_TRY_EVAL(ac_compile); then
   pre_test_object_deps_done=no
 
   for p in `eval "$output_verbose_link_cmd"`; do
-    case ${prev}${p} in
+    case $prev$p in
 
     -L* | -R* | -l*)
        # Some compilers place space between "-{L,R}" and the path.
        # Remove the space.
-       if test $p = "-L" ||
-          test $p = "-R"; then
+       if test x-L = "$p" ||
+          test x-R = "$p"; then
         prev=$p
         continue
        fi
@@ -7029,16 +7569,16 @@ if AC_TRY_EVAL(ac_compile); then
        case $p in
        =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;;
        esac
-       if test "$pre_test_object_deps_done" = no; then
-        case ${prev} in
+       if test no = "$pre_test_object_deps_done"; then
+        case $prev in
         -L | -R)
           # Internal compiler library paths should come after those
           # provided the user.  The postdeps already come after the
           # user supplied libs so there is no need to process them.
           if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then
-            _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}"
+            _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p
           else
-            _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}"
+            _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p"
           fi
           ;;
         # The "-l" case would never come before the object being
@@ -7046,9 +7586,9 @@ if AC_TRY_EVAL(ac_compile); then
         esac
        else
         if test -z "$_LT_TAGVAR(postdeps, $1)"; then
-          _LT_TAGVAR(postdeps, $1)="${prev}${p}"
+          _LT_TAGVAR(postdeps, $1)=$prev$p
         else
-          _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}"
+          _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p"
         fi
        fi
        prev=
@@ -7063,15 +7603,15 @@ if AC_TRY_EVAL(ac_compile); then
         continue
        fi
 
-       if test "$pre_test_object_deps_done" = no; then
+       if test no = "$pre_test_object_deps_done"; then
         if test -z "$_LT_TAGVAR(predep_objects, $1)"; then
-          _LT_TAGVAR(predep_objects, $1)="$p"
+          _LT_TAGVAR(predep_objects, $1)=$p
         else
           _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p"
         fi
        else
         if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then
-          _LT_TAGVAR(postdep_objects, $1)="$p"
+          _LT_TAGVAR(postdep_objects, $1)=$p
         else
           _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p"
         fi
@@ -7102,51 +7642,6 @@ interix[[3-9]]*)
   _LT_TAGVAR(postdep_objects,$1)=
   _LT_TAGVAR(postdeps,$1)=
   ;;
-
-linux*)
-  case `$CC -V 2>&1 | sed 5q` in
-  *Sun\ C*)
-    # Sun C++ 5.9
-
-    # The more standards-conforming stlport4 library is
-    # incompatible with the Cstd library. Avoid specifying
-    # it if it's in CXXFLAGS. Ignore libCrun as
-    # -library=stlport4 depends on it.
-    case " $CXX $CXXFLAGS " in
-    *" -library=stlport4 "*)
-      solaris_use_stlport4=yes
-      ;;
-    esac
-
-    if test "$solaris_use_stlport4" != yes; then
-      _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
-    fi
-    ;;
-  esac
-  ;;
-
-solaris*)
-  case $cc_basename in
-  CC* | sunCC*)
-    # The more standards-conforming stlport4 library is
-    # incompatible with the Cstd library. Avoid specifying
-    # it if it's in CXXFLAGS. Ignore libCrun as
-    # -library=stlport4 depends on it.
-    case " $CXX $CXXFLAGS " in
-    *" -library=stlport4 "*)
-      solaris_use_stlport4=yes
-      ;;
-    esac
-
-    # Adding this requires a known-good setup of shared libraries for
-    # Sun compiler versions before 5.6, else PIC objects from an old
-    # archive will be linked into the output, leading to subtle bugs.
-    if test "$solaris_use_stlport4" != yes; then
-      _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
-    fi
-    ;;
-  esac
-  ;;
 esac
 ])
 
@@ -7155,7 +7650,7 @@ case " $_LT_TAGVAR(postdeps, $1) " in
 esac
  _LT_TAGVAR(compiler_lib_search_dirs, $1)=
 if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then
- _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'`
+ _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'`
 fi
 _LT_TAGDECL([], [compiler_lib_search_dirs], [1],
     [The directories searched by this compiler when creating a shared library])
@@ -7175,10 +7670,10 @@ _LT_TAGDECL([], [compiler_lib_search_path], [1],
 # --------------------------
 # Ensure that the configuration variables for a Fortran 77 compiler are
 # suitably defined.  These variables are subsequently used by _LT_CONFIG
-# to write the compiler configuration to `libtool'.
+# to write the compiler configuration to 'libtool'.
 m4_defun([_LT_LANG_F77_CONFIG],
 [AC_LANG_PUSH(Fortran 77)
-if test -z "$F77" || test "X$F77" = "Xno"; then
+if test -z "$F77" || test no = "$F77"; then
   _lt_disable_F77=yes
 fi
 
@@ -7215,7 +7710,7 @@ _LT_TAGVAR(objext, $1)=$objext
 # the F77 compiler isn't working.  Some variables (like enable_shared)
 # are currently assumed to apply to all compilers on this platform,
 # and will be corrupted by setting them based on a non-working compiler.
-if test "$_lt_disable_F77" != yes; then
+if test yes != "$_lt_disable_F77"; then
   # Code to be used in simple compile tests
   lt_simple_compile_test_code="\
       subroutine t
@@ -7237,7 +7732,7 @@ if test "$_lt_disable_F77" != yes; then
   _LT_LINKER_BOILERPLATE
 
   # Allow CC to be a program name with arguments.
-  lt_save_CC="$CC"
+  lt_save_CC=$CC
   lt_save_GCC=$GCC
   lt_save_CFLAGS=$CFLAGS
   CC=${F77-"f77"}
@@ -7251,21 +7746,25 @@ if test "$_lt_disable_F77" != yes; then
     AC_MSG_RESULT([$can_build_shared])
 
     AC_MSG_CHECKING([whether to build shared libraries])
-    test "$can_build_shared" = "no" && enable_shared=no
+    test no = "$can_build_shared" && enable_shared=no
 
     # On AIX, shared libraries and static libraries use the same namespace, and
     # are all built from PIC.
     case $host_os in
       aix3*)
-        test "$enable_shared" = yes && enable_static=no
+        test yes = "$enable_shared" && enable_static=no
         if test -n "$RANLIB"; then
           archive_cmds="$archive_cmds~\$RANLIB \$lib"
           postinstall_cmds='$RANLIB $lib'
         fi
         ;;
       aix[[4-9]]*)
-       if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
-         test "$enable_shared" = yes && enable_static=no
+       if test ia64 != "$host_cpu"; then
+         case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in
+         yes,aix,yes) ;;               # shared object as lib.so file only
+         yes,svr4,*) ;;                # shared object as lib.so archive member only
+         yes,*) enable_static=no ;;    # shared object in lib.a archive as well
+         esac
        fi
         ;;
     esac
@@ -7273,11 +7772,11 @@ if test "$_lt_disable_F77" != yes; then
 
     AC_MSG_CHECKING([whether to build static libraries])
     # Make sure either enable_shared or enable_static is yes.
-    test "$enable_shared" = yes || enable_static=yes
+    test yes = "$enable_shared" || enable_static=yes
     AC_MSG_RESULT([$enable_static])
 
-    _LT_TAGVAR(GCC, $1)="$G77"
-    _LT_TAGVAR(LD, $1)="$LD"
+    _LT_TAGVAR(GCC, $1)=$G77
+    _LT_TAGVAR(LD, $1)=$LD
 
     ## CAVEAT EMPTOR:
     ## There is no encapsulation within the following macros, do not change
@@ -7294,9 +7793,9 @@ if test "$_lt_disable_F77" != yes; then
   fi # test -n "$compiler"
 
   GCC=$lt_save_GCC
-  CC="$lt_save_CC"
-  CFLAGS="$lt_save_CFLAGS"
-fi # test "$_lt_disable_F77" != yes
+  CC=$lt_save_CC
+  CFLAGS=$lt_save_CFLAGS
+fi # test yes != "$_lt_disable_F77"
 
 AC_LANG_POP
 ])# _LT_LANG_F77_CONFIG
@@ -7306,11 +7805,11 @@ AC_LANG_POP
 # -------------------------
 # Ensure that the configuration variables for a Fortran compiler are
 # suitably defined.  These variables are subsequently used by _LT_CONFIG
-# to write the compiler configuration to `libtool'.
+# to write the compiler configuration to 'libtool'.
 m4_defun([_LT_LANG_FC_CONFIG],
 [AC_LANG_PUSH(Fortran)
 
-if test -z "$FC" || test "X$FC" = "Xno"; then
+if test -z "$FC" || test no = "$FC"; then
   _lt_disable_FC=yes
 fi
 
@@ -7347,7 +7846,7 @@ _LT_TAGVAR(objext, $1)=$objext
 # the FC compiler isn't working.  Some variables (like enable_shared)
 # are currently assumed to apply to all compilers on this platform,
 # and will be corrupted by setting them based on a non-working compiler.
-if test "$_lt_disable_FC" != yes; then
+if test yes != "$_lt_disable_FC"; then
   # Code to be used in simple compile tests
   lt_simple_compile_test_code="\
       subroutine t
@@ -7369,7 +7868,7 @@ if test "$_lt_disable_FC" != yes; then
   _LT_LINKER_BOILERPLATE
 
   # Allow CC to be a program name with arguments.
-  lt_save_CC="$CC"
+  lt_save_CC=$CC
   lt_save_GCC=$GCC
   lt_save_CFLAGS=$CFLAGS
   CC=${FC-"f95"}
@@ -7385,21 +7884,25 @@ if test "$_lt_disable_FC" != yes; then
     AC_MSG_RESULT([$can_build_shared])
 
     AC_MSG_CHECKING([whether to build shared libraries])
-    test "$can_build_shared" = "no" && enable_shared=no
+    test no = "$can_build_shared" && enable_shared=no
 
     # On AIX, shared libraries and static libraries use the same namespace, and
     # are all built from PIC.
     case $host_os in
       aix3*)
-        test "$enable_shared" = yes && enable_static=no
+        test yes = "$enable_shared" && enable_static=no
         if test -n "$RANLIB"; then
           archive_cmds="$archive_cmds~\$RANLIB \$lib"
           postinstall_cmds='$RANLIB $lib'
         fi
         ;;
       aix[[4-9]]*)
-       if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
-         test "$enable_shared" = yes && enable_static=no
+       if test ia64 != "$host_cpu"; then
+         case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in
+         yes,aix,yes) ;;               # shared object as lib.so file only
+         yes,svr4,*) ;;                # shared object as lib.so archive member only
+         yes,*) enable_static=no ;;    # shared object in lib.a archive as well
+         esac
        fi
         ;;
     esac
@@ -7407,11 +7910,11 @@ if test "$_lt_disable_FC" != yes; then
 
     AC_MSG_CHECKING([whether to build static libraries])
     # Make sure either enable_shared or enable_static is yes.
-    test "$enable_shared" = yes || enable_static=yes
+    test yes = "$enable_shared" || enable_static=yes
     AC_MSG_RESULT([$enable_static])
 
-    _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu"
-    _LT_TAGVAR(LD, $1)="$LD"
+    _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu
+    _LT_TAGVAR(LD, $1)=$LD
 
     ## CAVEAT EMPTOR:
     ## There is no encapsulation within the following macros, do not change
@@ -7431,7 +7934,7 @@ if test "$_lt_disable_FC" != yes; then
   GCC=$lt_save_GCC
   CC=$lt_save_CC
   CFLAGS=$lt_save_CFLAGS
-fi # test "$_lt_disable_FC" != yes
+fi # test yes != "$_lt_disable_FC"
 
 AC_LANG_POP
 ])# _LT_LANG_FC_CONFIG
@@ -7441,7 +7944,7 @@ AC_LANG_POP
 # --------------------------
 # Ensure that the configuration variables for the GNU Java Compiler compiler
 # are suitably defined.  These variables are subsequently used by _LT_CONFIG
-# to write the compiler configuration to `libtool'.
+# to write the compiler configuration to 'libtool'.
 m4_defun([_LT_LANG_GCJ_CONFIG],
 [AC_REQUIRE([LT_PROG_GCJ])dnl
 AC_LANG_SAVE
@@ -7475,7 +7978,7 @@ CC=${GCJ-"gcj"}
 CFLAGS=$GCJFLAGS
 compiler=$CC
 _LT_TAGVAR(compiler, $1)=$CC
-_LT_TAGVAR(LD, $1)="$LD"
+_LT_TAGVAR(LD, $1)=$LD
 _LT_CC_BASENAME([$compiler])
 
 # GCJ did not exist at the time GCC didn't implicitly link libc in.
@@ -7512,7 +8015,7 @@ CFLAGS=$lt_save_CFLAGS
 # --------------------------
 # Ensure that the configuration variables for the GNU Go compiler
 # are suitably defined.  These variables are subsequently used by _LT_CONFIG
-# to write the compiler configuration to `libtool'.
+# to write the compiler configuration to 'libtool'.
 m4_defun([_LT_LANG_GO_CONFIG],
 [AC_REQUIRE([LT_PROG_GO])dnl
 AC_LANG_SAVE
@@ -7546,7 +8049,7 @@ CC=${GOC-"gccgo"}
 CFLAGS=$GOFLAGS
 compiler=$CC
 _LT_TAGVAR(compiler, $1)=$CC
-_LT_TAGVAR(LD, $1)="$LD"
+_LT_TAGVAR(LD, $1)=$LD
 _LT_CC_BASENAME([$compiler])
 
 # Go did not exist at the time GCC didn't implicitly link libc in.
@@ -7583,7 +8086,7 @@ CFLAGS=$lt_save_CFLAGS
 # -------------------------
 # Ensure that the configuration variables for the Windows resource compiler
 # are suitably defined.  These variables are subsequently used by _LT_CONFIG
-# to write the compiler configuration to `libtool'.
+# to write the compiler configuration to 'libtool'.
 m4_defun([_LT_LANG_RC_CONFIG],
 [AC_REQUIRE([LT_PROG_RC])dnl
 AC_LANG_SAVE
@@ -7599,7 +8102,7 @@ _LT_TAGVAR(objext, $1)=$objext
 lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }'
 
 # Code to be used in simple link tests
-lt_simple_link_test_code="$lt_simple_compile_test_code"
+lt_simple_link_test_code=$lt_simple_compile_test_code
 
 # ltmain only uses $CC for tagged configurations so make sure $CC is set.
 _LT_TAG_COMPILER
@@ -7609,7 +8112,7 @@ _LT_COMPILER_BOILERPLATE
 _LT_LINKER_BOILERPLATE
 
 # Allow CC to be a program name with arguments.
-lt_save_CC="$CC"
+lt_save_CC=$CC
 lt_save_CFLAGS=$CFLAGS
 lt_save_GCC=$GCC
 GCC=
@@ -7638,7 +8141,7 @@ AC_DEFUN([LT_PROG_GCJ],
 [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
   [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
     [AC_CHECK_TOOL(GCJ, gcj,)
-      test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
+      test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2"
       AC_SUBST(GCJFLAGS)])])[]dnl
 ])
 
@@ -7749,7 +8252,7 @@ lt_ac_count=0
 # Add /usr/xpg4/bin/sed as it is typically found on Solaris
 # along with /bin/sed that truncates output.
 for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
-  test ! -f $lt_ac_sed && continue
+  test ! -f "$lt_ac_sed" && continue
   cat /dev/null > conftest.in
   lt_ac_count=0
   echo $ECHO_N "0123456789$ECHO_C" >conftest.in
@@ -7766,9 +8269,9 @@ for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
     $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break
     cmp -s conftest.out conftest.nl || break
     # 10000 chars as input seems more than enough
-    test $lt_ac_count -gt 10 && break
+    test 10 -lt "$lt_ac_count" && break
     lt_ac_count=`expr $lt_ac_count + 1`
-    if test $lt_ac_count -gt $lt_ac_max; then
+    if test "$lt_ac_count" -gt "$lt_ac_max"; then
       lt_ac_max=$lt_ac_count
       lt_cv_path_SED=$lt_ac_sed
     fi
@@ -7792,27 +8295,7 @@ dnl AC_DEFUN([LT_AC_PROG_SED], [])
 # Find out whether the shell is Bourne or XSI compatible,
 # or has some other useful features.
 m4_defun([_LT_CHECK_SHELL_FEATURES],
-[AC_MSG_CHECKING([whether the shell understands some XSI constructs])
-# Try some XSI features
-xsi_shell=no
-( _lt_dummy="a/b/c"
-  test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \
-      = c,a/b,b/c, \
-    && eval 'test $(( 1 + 1 )) -eq 2 \
-    && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \
-  && xsi_shell=yes
-AC_MSG_RESULT([$xsi_shell])
-_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell'])
-
-AC_MSG_CHECKING([whether the shell understands "+="])
-lt_shell_append=no
-( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \
-    >/dev/null 2>&1 \
-  && lt_shell_append=yes
-AC_MSG_RESULT([$lt_shell_append])
-_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append'])
-
-if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
+[if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
   lt_unset=unset
 else
   lt_unset=false
@@ -7836,102 +8319,9 @@ _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl
 ])# _LT_CHECK_SHELL_FEATURES
 
 
-# _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY)
-# ------------------------------------------------------
-# In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and
-# '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY.
-m4_defun([_LT_PROG_FUNCTION_REPLACE],
-[dnl {
-sed -e '/^$1 ()$/,/^} # $1 /c\
-$1 ()\
-{\
-m4_bpatsubsts([$2], [$], [\\], [^\([    ]\)], [\\\1])
-} # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \
-  && mv -f "$cfgfile.tmp" "$cfgfile" \
-    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-test 0 -eq $? || _lt_function_replace_fail=:
-])
-
-
-# _LT_PROG_REPLACE_SHELLFNS
-# -------------------------
-# Replace existing portable implementations of several shell functions with
-# equivalent extended shell implementations where those features are available..
-m4_defun([_LT_PROG_REPLACE_SHELLFNS],
-[if test x"$xsi_shell" = xyes; then
-  _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl
-    case ${1} in
-      */*) func_dirname_result="${1%/*}${2}" ;;
-      *  ) func_dirname_result="${3}" ;;
-    esac])
-
-  _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl
-    func_basename_result="${1##*/}"])
-
-  _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl
-    case ${1} in
-      */*) func_dirname_result="${1%/*}${2}" ;;
-      *  ) func_dirname_result="${3}" ;;
-    esac
-    func_basename_result="${1##*/}"])
-
-  _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl
-    # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
-    # positional parameters, so assign one to ordinary parameter first.
-    func_stripname_result=${3}
-    func_stripname_result=${func_stripname_result#"${1}"}
-    func_stripname_result=${func_stripname_result%"${2}"}])
-
-  _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl
-    func_split_long_opt_name=${1%%=*}
-    func_split_long_opt_arg=${1#*=}])
-
-  _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl
-    func_split_short_opt_arg=${1#??}
-    func_split_short_opt_name=${1%"$func_split_short_opt_arg"}])
-
-  _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl
-    case ${1} in
-      *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
-      *)    func_lo2o_result=${1} ;;
-    esac])
-
-  _LT_PROG_FUNCTION_REPLACE([func_xform], [    func_xform_result=${1%.*}.lo])
-
-  _LT_PROG_FUNCTION_REPLACE([func_arith], [    func_arith_result=$(( $[*] ))])
-
-  _LT_PROG_FUNCTION_REPLACE([func_len], [    func_len_result=${#1}])
-fi
-
-if test x"$lt_shell_append" = xyes; then
-  _LT_PROG_FUNCTION_REPLACE([func_append], [    eval "${1}+=\\${2}"])
-
-  _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl
-    func_quote_for_eval "${2}"
-dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \
-    eval "${1}+=\\\\ \\$func_quote_for_eval_result"])
-
-  # Save a `func_append' function call where possible by direct use of '+='
-  sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \
-    && mv -f "$cfgfile.tmp" "$cfgfile" \
-      || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-  test 0 -eq $? || _lt_function_replace_fail=:
-else
-  # Save a `func_append' function call even when '+=' is not available
-  sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \
-    && mv -f "$cfgfile.tmp" "$cfgfile" \
-      || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-  test 0 -eq $? || _lt_function_replace_fail=:
-fi
-
-if test x"$_lt_function_replace_fail" = x":"; then
-  AC_MSG_WARN([Unable to substitute extended shell functions in $ofile])
-fi
-])
-
 # _LT_PATH_CONVERSION_FUNCTIONS
 # -----------------------------
-# Determine which file name conversion functions should be used by
+# Determine what file name conversion functions should be used by
 # func_to_host_file (and, implicitly, by func_to_host_path).  These are needed
 # for certain cross-compile configurations and native mingw.
 m4_defun([_LT_PATH_CONVERSION_FUNCTIONS],
index 5d9acd8..94b0829 100644 (file)
@@ -1,14 +1,14 @@
 # Helper functions for option handling.                    -*- Autoconf -*-
 #
-#   Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation,
-#   Inc.
+#   Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software
+#   Foundation, Inc.
 #   Written by Gary V. Vaughan, 2004
 #
 # This file is free software; the Free Software Foundation gives
 # unlimited permission to copy and/or distribute it, with or without
 # modifications, as long as this notice is preserved.
 
-# serial 7 ltoptions.m4
+# serial 8 ltoptions.m4
 
 # This is to help aclocal find these macros, as it can't see m4_define.
 AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
@@ -29,7 +29,7 @@ m4_define([_LT_SET_OPTION],
 [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl
 m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]),
         _LT_MANGLE_DEFUN([$1], [$2]),
-    [m4_warning([Unknown $1 option `$2'])])[]dnl
+    [m4_warning([Unknown $1 option '$2'])])[]dnl
 ])
 
 
@@ -75,13 +75,15 @@ m4_if([$1],[LT_INIT],[
   dnl
   dnl If no reference was made to various pairs of opposing options, then
   dnl we run the default mode handler for the pair.  For example, if neither
-  dnl `shared' nor `disable-shared' was passed, we enable building of shared
+  dnl 'shared' nor 'disable-shared' was passed, we enable building of shared
   dnl archives by default:
   _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED])
   _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC])
   _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])
   _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],
-                  [_LT_ENABLE_FAST_INSTALL])
+                  [_LT_ENABLE_FAST_INSTALL])
+  _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4],
+                  [_LT_WITH_AIX_SONAME([aix])])
   ])
 ])# _LT_SET_OPTIONS
 
@@ -112,7 +114,7 @@ AU_DEFUN([AC_LIBTOOL_DLOPEN],
 [_LT_SET_OPTION([LT_INIT], [dlopen])
 AC_DIAGNOSE([obsolete],
 [$0: Remove this warning and the call to _LT_SET_OPTION when you
-put the `dlopen' option into LT_INIT's first parameter.])
+put the 'dlopen' option into LT_INIT's first parameter.])
 ])
 
 dnl aclocal-1.4 backwards compatibility:
@@ -148,7 +150,7 @@ AU_DEFUN([AC_LIBTOOL_WIN32_DLL],
 _LT_SET_OPTION([LT_INIT], [win32-dll])
 AC_DIAGNOSE([obsolete],
 [$0: Remove this warning and the call to _LT_SET_OPTION when you
-put the `win32-dll' option into LT_INIT's first parameter.])
+put the 'win32-dll' option into LT_INIT's first parameter.])
 ])
 
 dnl aclocal-1.4 backwards compatibility:
@@ -157,9 +159,9 @@ dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])
 
 # _LT_ENABLE_SHARED([DEFAULT])
 # ----------------------------
-# implement the --enable-shared flag, and supports the `shared' and
-# `disable-shared' LT_INIT options.
-# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
+# implement the --enable-shared flag, and supports the 'shared' and
+# 'disable-shared' LT_INIT options.
+# DEFAULT is either 'yes' or 'no'.  If omitted, it defaults to 'yes'.
 m4_define([_LT_ENABLE_SHARED],
 [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl
 AC_ARG_ENABLE([shared],
@@ -172,14 +174,14 @@ AC_ARG_ENABLE([shared],
     *)
       enable_shared=no
       # Look at the argument we got.  We use all the common list separators.
-      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
+      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
       for pkg in $enableval; do
-       IFS="$lt_save_ifs"
+       IFS=$lt_save_ifs
        if test "X$pkg" = "X$p"; then
          enable_shared=yes
        fi
       done
-      IFS="$lt_save_ifs"
+      IFS=$lt_save_ifs
       ;;
     esac],
     [enable_shared=]_LT_ENABLE_SHARED_DEFAULT)
@@ -211,9 +213,9 @@ dnl AC_DEFUN([AM_DISABLE_SHARED], [])
 
 # _LT_ENABLE_STATIC([DEFAULT])
 # ----------------------------
-# implement the --enable-static flag, and support the `static' and
-# `disable-static' LT_INIT options.
-# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
+# implement the --enable-static flag, and support the 'static' and
+# 'disable-static' LT_INIT options.
+# DEFAULT is either 'yes' or 'no'.  If omitted, it defaults to 'yes'.
 m4_define([_LT_ENABLE_STATIC],
 [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl
 AC_ARG_ENABLE([static],
@@ -226,14 +228,14 @@ AC_ARG_ENABLE([static],
     *)
      enable_static=no
       # Look at the argument we got.  We use all the common list separators.
-      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
+      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
       for pkg in $enableval; do
-       IFS="$lt_save_ifs"
+       IFS=$lt_save_ifs
        if test "X$pkg" = "X$p"; then
          enable_static=yes
        fi
       done
-      IFS="$lt_save_ifs"
+      IFS=$lt_save_ifs
       ;;
     esac],
     [enable_static=]_LT_ENABLE_STATIC_DEFAULT)
@@ -265,9 +267,9 @@ dnl AC_DEFUN([AM_DISABLE_STATIC], [])
 
 # _LT_ENABLE_FAST_INSTALL([DEFAULT])
 # ----------------------------------
-# implement the --enable-fast-install flag, and support the `fast-install'
-# and `disable-fast-install' LT_INIT options.
-# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
+# implement the --enable-fast-install flag, and support the 'fast-install'
+# and 'disable-fast-install' LT_INIT options.
+# DEFAULT is either 'yes' or 'no'.  If omitted, it defaults to 'yes'.
 m4_define([_LT_ENABLE_FAST_INSTALL],
 [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl
 AC_ARG_ENABLE([fast-install],
@@ -280,14 +282,14 @@ AC_ARG_ENABLE([fast-install],
     *)
       enable_fast_install=no
       # Look at the argument we got.  We use all the common list separators.
-      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
+      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
       for pkg in $enableval; do
-       IFS="$lt_save_ifs"
+       IFS=$lt_save_ifs
        if test "X$pkg" = "X$p"; then
          enable_fast_install=yes
        fi
       done
-      IFS="$lt_save_ifs"
+      IFS=$lt_save_ifs
       ;;
     esac],
     [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)
@@ -304,14 +306,14 @@ AU_DEFUN([AC_ENABLE_FAST_INSTALL],
 [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
 AC_DIAGNOSE([obsolete],
 [$0: Remove this warning and the call to _LT_SET_OPTION when you put
-the `fast-install' option into LT_INIT's first parameter.])
+the 'fast-install' option into LT_INIT's first parameter.])
 ])
 
 AU_DEFUN([AC_DISABLE_FAST_INSTALL],
 [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
 AC_DIAGNOSE([obsolete],
 [$0: Remove this warning and the call to _LT_SET_OPTION when you put
-the `disable-fast-install' option into LT_INIT's first parameter.])
+the 'disable-fast-install' option into LT_INIT's first parameter.])
 ])
 
 dnl aclocal-1.4 backwards compatibility:
@@ -319,11 +321,64 @@ dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], [])
 dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])
 
 
+# _LT_WITH_AIX_SONAME([DEFAULT])
+# ----------------------------------
+# implement the --with-aix-soname flag, and support the `aix-soname=aix'
+# and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT
+# is either `aix', `both' or `svr4'.  If omitted, it defaults to `aix'.
+m4_define([_LT_WITH_AIX_SONAME],
+[m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl
+shared_archive_member_spec=
+case $host,$enable_shared in
+power*-*-aix[[5-9]]*,yes)
+  AC_MSG_CHECKING([which variant of shared library versioning to provide])
+  AC_ARG_WITH([aix-soname],
+    [AS_HELP_STRING([--with-aix-soname=aix|svr4|both],
+      [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])],
+    [case $withval in
+    aix|svr4|both)
+      ;;
+    *)
+      AC_MSG_ERROR([Unknown argument to --with-aix-soname])
+      ;;
+    esac
+    lt_cv_with_aix_soname=$with_aix_soname],
+    [AC_CACHE_VAL([lt_cv_with_aix_soname],
+      [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT)
+    with_aix_soname=$lt_cv_with_aix_soname])
+  AC_MSG_RESULT([$with_aix_soname])
+  if test aix != "$with_aix_soname"; then
+    # For the AIX way of multilib, we name the shared archive member
+    # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o',
+    # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File.
+    # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag,
+    # the AIX toolchain works better with OBJECT_MODE set (default 32).
+    if test 64 = "${OBJECT_MODE-32}"; then
+      shared_archive_member_spec=shr_64
+    else
+      shared_archive_member_spec=shr
+    fi
+  fi
+  ;;
+*)
+  with_aix_soname=aix
+  ;;
+esac
+
+_LT_DECL([], [shared_archive_member_spec], [0],
+    [Shared archive member basename, for filename based shared library versioning on AIX])dnl
+])# _LT_WITH_AIX_SONAME
+
+LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])])
+LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])])
+LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])])
+
+
 # _LT_WITH_PIC([MODE])
 # --------------------
-# implement the --with-pic flag, and support the `pic-only' and `no-pic'
+# implement the --with-pic flag, and support the 'pic-only' and 'no-pic'
 # LT_INIT options.
-# MODE is either `yes' or `no'.  If omitted, it defaults to `both'.
+# MODE is either 'yes' or 'no'.  If omitted, it defaults to 'both'.
 m4_define([_LT_WITH_PIC],
 [AC_ARG_WITH([pic],
     [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@],
@@ -334,19 +389,17 @@ m4_define([_LT_WITH_PIC],
     *)
       pic_mode=default
       # Look at the argument we got.  We use all the common list separators.
-      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
+      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
       for lt_pkg in $withval; do
-       IFS="$lt_save_ifs"
+       IFS=$lt_save_ifs
        if test "X$lt_pkg" = "X$lt_p"; then
          pic_mode=yes
        fi
       done
-      IFS="$lt_save_ifs"
+      IFS=$lt_save_ifs
       ;;
     esac],
-    [pic_mode=default])
-
-test -z "$pic_mode" && pic_mode=m4_default([$1], [default])
+    [pic_mode=m4_default([$1], [default])])
 
 _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl
 ])# _LT_WITH_PIC
@@ -359,7 +412,7 @@ AU_DEFUN([AC_LIBTOOL_PICMODE],
 [_LT_SET_OPTION([LT_INIT], [pic-only])
 AC_DIAGNOSE([obsolete],
 [$0: Remove this warning and the call to _LT_SET_OPTION when you
-put the `pic-only' option into LT_INIT's first parameter.])
+put the 'pic-only' option into LT_INIT's first parameter.])
 ])
 
 dnl aclocal-1.4 backwards compatibility:
index 9000a05..48bc934 100644 (file)
@@ -1,6 +1,7 @@
 # ltsugar.m4 -- libtool m4 base layer.                         -*-Autoconf-*-
 #
-# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
+# Copyright (C) 2004-2005, 2007-2008, 2011-2015 Free Software
+# Foundation, Inc.
 # Written by Gary V. Vaughan, 2004
 #
 # This file is free software; the Free Software Foundation gives
@@ -33,7 +34,7 @@ m4_define([_lt_join],
 # ------------
 # Manipulate m4 lists.
 # These macros are necessary as long as will still need to support
-# Autoconf-2.59 which quotes differently.
+# Autoconf-2.59, which quotes differently.
 m4_define([lt_car], [[$1]])
 m4_define([lt_cdr],
 [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])],
@@ -44,7 +45,7 @@ m4_define([lt_unquote], $1)
 
 # lt_append(MACRO-NAME, STRING, [SEPARATOR])
 # ------------------------------------------
-# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'.
+# Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'.
 # Note that neither SEPARATOR nor STRING are expanded; they are appended
 # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).
 # No SEPARATOR is output if MACRO-NAME was previously undefined (different
index 07a8602..fa04b52 100644 (file)
@@ -1,6 +1,6 @@
 # ltversion.m4 -- version numbers                      -*- Autoconf -*-
 #
-#   Copyright (C) 2004 Free Software Foundation, Inc.
+#   Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc.
 #   Written by Scott James Remnant, 2004
 #
 # This file is free software; the Free Software Foundation gives
@@ -9,15 +9,15 @@
 
 # @configure_input@
 
-# serial 3337 ltversion.m4
+# serial 4179 ltversion.m4
 # This file is part of GNU Libtool
 
-m4_define([LT_PACKAGE_VERSION], [2.4.2])
-m4_define([LT_PACKAGE_REVISION], [1.3337])
+m4_define([LT_PACKAGE_VERSION], [2.4.6])
+m4_define([LT_PACKAGE_REVISION], [2.4.6])
 
 AC_DEFUN([LTVERSION_VERSION],
-[macro_version='2.4.2'
-macro_revision='1.3337'
+[macro_version='2.4.6'
+macro_revision='2.4.6'
 _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
 _LT_DECL(, macro_revision, 0)
 ])
index c573da9..c6b26f8 100644 (file)
@@ -1,6 +1,7 @@
 # lt~obsolete.m4 -- aclocal satisfying obsolete definitions.    -*-Autoconf-*-
 #
-#   Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
+#   Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software
+#   Foundation, Inc.
 #   Written by Scott James Remnant, 2004.
 #
 # This file is free software; the Free Software Foundation gives
@@ -11,7 +12,7 @@
 
 # These exist entirely to fool aclocal when bootstrapping libtool.
 #
-# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN)
+# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN),
 # which have later been changed to m4_define as they aren't part of the
 # exported API, or moved to Autoconf or Automake where they belong.
 #
@@ -25,7 +26,7 @@
 # included after everything else.  This provides aclocal with the
 # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything
 # because those macros already exist, or will be overwritten later.
-# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. 
+# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6.
 #
 # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.
 # Yes, that means every name once taken will need to remain here until
index f53ad26..a087533 100644 (file)
@@ -90,6 +90,7 @@ subdir = init
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -994,6 +995,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
index 9f5e092..84e8e66 100644 (file)
@@ -91,6 +91,7 @@ subdir = init/systemd
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -965,6 +966,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
index 10b27b4..1eb40ce 100644 (file)
@@ -1 +1 @@
-d /var/cache/man 2755 man root 1w
+d /var/cache/man 0755 man man 1w
index c3ce5ee..f4b135d 100644 (file)
@@ -56,6 +56,8 @@ libman_la_SOURCES = \
        util.c \
        wordfnmatch.c \
        wordfnmatch.h \
+       xchown.c \
+       xchown.h \
        xregcomp.c \
        xregcomp.h
 
index ff8ddc4..9f4601b 100644 (file)
@@ -92,6 +92,7 @@ subdir = lib
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -344,7 +345,8 @@ am_libman_la_OBJECTS = libman_la-appendstr.lo libman_la-cleanup.lo \
        libman_la-linelength.lo libman_la-lower.lo \
        libman_la-orderfiles.lo libman_la-pathsearch.lo \
        libman_la-security.lo libman_la-tempfile.lo libman_la-util.lo \
-       libman_la-wordfnmatch.lo libman_la-xregcomp.lo
+       libman_la-wordfnmatch.lo libman_la-xchown.lo \
+       libman_la-xregcomp.lo
 libman_la_OBJECTS = $(am_libman_la_OBJECTS)
 AM_V_lt = $(am__v_lt_@AM_V@)
 am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
@@ -1026,6 +1028,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
@@ -1442,6 +1445,8 @@ libman_la_SOURCES = \
        util.c \
        wordfnmatch.c \
        wordfnmatch.h \
+       xchown.c \
+       xchown.h \
        xregcomp.c \
        xregcomp.h
 
@@ -1545,6 +1550,7 @@ distclean-compile:
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libman_la-tempfile.Plo@am__quote@
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libman_la-util.Plo@am__quote@
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libman_la-wordfnmatch.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libman_la-xchown.Plo@am__quote@
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libman_la-xregcomp.Plo@am__quote@
 
 .c.o:
@@ -1666,6 +1672,13 @@ libman_la-wordfnmatch.lo: wordfnmatch.c
 @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libman_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libman_la-wordfnmatch.lo `test -f 'wordfnmatch.c' || echo '$(srcdir)/'`wordfnmatch.c
 
+libman_la-xchown.lo: xchown.c
+@am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libman_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libman_la-xchown.lo -MD -MP -MF $(DEPDIR)/libman_la-xchown.Tpo -c -o libman_la-xchown.lo `test -f 'xchown.c' || echo '$(srcdir)/'`xchown.c
+@am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libman_la-xchown.Tpo $(DEPDIR)/libman_la-xchown.Plo
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='xchown.c' object='libman_la-xchown.lo' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libman_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libman_la-xchown.lo `test -f 'xchown.c' || echo '$(srcdir)/'`xchown.c
+
 libman_la-xregcomp.lo: xregcomp.c
 @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libman_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libman_la-xregcomp.lo -MD -MP -MF $(DEPDIR)/libman_la-xregcomp.Tpo -c -o libman_la-xregcomp.lo `test -f 'xregcomp.c' || echo '$(srcdir)/'`xregcomp.c
 @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libman_la-xregcomp.Tpo $(DEPDIR)/libman_la-xregcomp.Plo
index fb84104..5aa2e50 100644 (file)
@@ -234,12 +234,24 @@ push_cleanup (cleanup_fun fun, void *arg, int sigsafe)
 }
 
 
-/* Pop top cleanup function from the cleanup stack. */
+/* Remove topmost cleanup function from the cleanup stack that matches the
+ * given values.
+ */
 void
-pop_cleanup (void)
+pop_cleanup (cleanup_fun fun, void *arg)
 {
+  unsigned i, j;
+
   assert (tos > 0);
-  --tos;
+
+  for (i = tos; i > 0; --i) {
+    if (stack[i-1].fun == fun && stack[i-1].arg == arg) {
+      for (j = i; j < tos; ++j)
+        stack[j-1] = stack[j];
+      --tos;
+      break;
+    }
+  }
 
   if (tos == 0) untrap_abnormal_exits();
 }
index 7b73e87..555900d 100644 (file)
@@ -27,7 +27,7 @@ typedef void (*cleanup_fun) (void *);
 extern void do_cleanups_sigsafe (int);
 extern void do_cleanups (void);
 extern int push_cleanup (cleanup_fun, void *, int);
-extern void pop_cleanup (void);
+extern void pop_cleanup (cleanup_fun, void *);
 extern void pop_all_cleanups (void);
 
 #endif /* _CLEANUP_H */
index dd2e221..362db59 100644 (file)
@@ -61,6 +61,9 @@
 uid_t ruid;                            /* initial real user id */
 uid_t euid;                            /* initial effective user id */
 uid_t uid;                             /* current euid */
+gid_t rgid;                            /* initial real group id */
+gid_t egid;                            /* initial effective group id */
+gid_t gid;                             /* current egid */
 
 static struct passwd *man_owner;
 
@@ -69,7 +72,7 @@ static struct passwd *man_owner;
  */
 static int priv_drop_count = 0;
 
-static inline void gripe_set_euid (void)
+static void gripe_set_euid (void)
 {
        error (FATAL, errno, _("can't set effective uid"));
 }
@@ -79,6 +82,9 @@ void init_security (void)
        ruid = getuid ();
        uid = euid = geteuid ();
        debug ("ruid=%d, euid=%d\n", (int) ruid, (int) euid);
+       rgid = getgid ();
+       gid = egid = getegid ();
+       debug ("rgid=%d, egid=%d\n", (int) rgid, (int) egid);
        priv_drop_count = 0;
        drop_effective_privs ();
 }
@@ -119,6 +125,7 @@ void drop_effective_privs (void)
                if (idpriv_temp_drop ())
                        gripe_set_euid ();
                uid = ruid;
+               gid = rgid;
        }
 
        priv_drop_count++;
@@ -146,6 +153,7 @@ void regain_effective_privs (void)
                        gripe_set_euid ();
 
                uid = euid;
+               gid = egid;
        }
 #endif /* SECURE_MAN_UID */
 }
diff --git a/lib/xchown.c b/lib/xchown.c
new file mode 100644 (file)
index 0000000..7f284fa
--- /dev/null
@@ -0,0 +1,49 @@
+/*
+ * xchown.c: chown replacement function
+ *
+ * Copyright (C) 2016 Mihail Konev.
+ *
+ * man-db is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * man-db is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with man-db; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ * */
+
+#ifdef HAVE_CONFIG_H
+#  include "config.h"
+#endif /* HAVE_CONFIG_H */
+
+#include <unistd.h>
+
+#include "gettext.h"
+#define _(String) gettext (String)
+
+#include "error.h"
+#include "manconfig.h"
+
+void xchown (const char *path, uid_t owner, gid_t group)
+{
+       int rc;
+       rc = chown (path, owner, group);
+       if (rc)
+               error (FATAL, 0, _("can't chown %s"), path);
+}
+
+#ifdef HAVE_LCHOWN
+void xlchown (const char *path, uid_t owner, gid_t group)
+{
+       int rc;
+       rc = lchown (path, owner, group);
+       if (rc)
+               error (FATAL, 0, _("can't chown %s"), path);
+}
+#endif
diff --git a/lib/xchown.h b/lib/xchown.h
new file mode 100644 (file)
index 0000000..8a035b2
--- /dev/null
@@ -0,0 +1,29 @@
+/*
+ * xchown.h: chown replacement function
+ *
+ * Copyright (C) 2016 Mihail Konev.
+ *
+ * man-db is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * man-db is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with man-db; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ * */
+
+#ifndef _XCHOWN_H
+#define _XCHOWN_H
+
+void xchown (const char *path, uid_t owner, gid_t group);
+#ifdef HAVE_LCHOWN
+void xlchown (const char *path, uid_t owner, gid_t group);
+#endif /* HAVE_LCHOWN */
+
+#endif /* _XCHOWN_H */
index 51f089b..036fc6c 100644 (file)
@@ -92,6 +92,7 @@ subdir = libdb
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -1022,6 +1023,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
index 87cf4db..fa9d86b 100644 (file)
@@ -178,7 +178,7 @@ int btree_exists (DB *db, datum key)
 }
 
 /* initiate a sequential access */
-static inline datum btree_findkey (DB *db, u_int flags)
+static datum btree_findkey (DB *db, u_int flags)
 {
        datum key, data;
 
index d087eda..567e96a 100644 (file)
@@ -44,7 +44,7 @@
 #  include <gdbm.h>
 
 #  ifndef HAVE_GDBM_EXISTS
-extern inline int gdbm_exists(GDBM_FILE db, datum key);
+extern int gdbm_exists (GDBM_FILE db, datum key);
 #  endif /* !HAVE_GDBM_EXISTS */
 
 /* gdbm_nextkey() is not lexicographically sorted, so we need to keep the
diff --git a/m4/man-arg-cache-owner.m4 b/m4/man-arg-cache-owner.m4
new file mode 100644 (file)
index 0000000..dae9ecc
--- /dev/null
@@ -0,0 +1,27 @@
+# man-arg-cache-owner.m4 serial 1
+dnl MAN_ARG_CACHE_OWNER
+dnl Add an --enable-cache-owner option.
+
+AC_DEFUN([MAN_ARG_CACHE_OWNER],
+[
+AC_ARG_ENABLE([cache-owner],
+[AS_HELP_STRING([--enable-cache-owner[=ARG]], [make system-wide cache files be owned by user ARG [arg=man]])
+AS_HELP_STRING([--disable-cache-owner], [don't constrain ownership of system-wide cache files])],
+         [if test "$enableval" = "yes" 
+          then
+               enableval=man
+          fi
+          if test "$enableval" = "no" 
+          then
+               man_owner=
+               AC_MSG_NOTICE([System-wide cache files will have unconstrained ownership])
+          else
+               man_owner=$enableval
+               AC_MSG_NOTICE([System-wide cache files will be owned by $enableval])
+               AC_DEFINE_UNQUOTED([SECURE_MAN_UID], ["$man_owner"],
+                                  [Define as the owner of system-wide cache files.])
+          fi],
+         [man_owner=man
+          AC_DEFINE_UNQUOTED([SECURE_MAN_UID], ["$man_owner"])])
+AC_SUBST([man_owner])
+])
index e8de9e0..2190541 100644 (file)
@@ -1,31 +1,32 @@
-# man-arg-setuid.m4 serial 1
+# man-arg-setuid.m4 serial 3
 dnl MAN_ARG_SETUID
 dnl Add an --enable-setuid option.
 
 AC_DEFUN([MAN_ARG_SETUID],
 [
 AC_ARG_ENABLE([setuid],
-[AS_HELP_STRING([--enable-setuid[=ARG]], [install man setuid to user ARG [ARG=man]])
+[AS_HELP_STRING([--enable-setuid], [install man setuid])
 AS_HELP_STRING([--disable-setuid], [don't install man setuid])],
          [if test "$enableval" = "yes" 
           then
-               enableval=man
-          fi
-          if test "$enableval" = "no" 
+               if test -z "$man_owner"
+               then
+                       AC_MSG_ERROR([--enable-setuid is incompatible with --disable-cache-owner])
+               fi
+               man_mode="6755"
+               AC_MSG_NOTICE([Man will be installed setuid $man_owner])
+          elif test "$enableval" = "no" 
           then
-               man_owner=
                man_mode="755"
                AC_MSG_NOTICE([Man will not be installed setuid])
           else
-               man_owner=$enableval
-               man_mode="4755"
-               AC_MSG_NOTICE([Man will be installed setuid $enableval])
-               AC_DEFINE_UNQUOTED([SECURE_MAN_UID], ["$man_owner"],
-                                  [Define as the setuid owner of man or undefine if not installing setuid.])
+               AC_MSG_ERROR([--enable-setuid=$enableval is no longer valid; consider --enable-cache-owner=$enableval --enable-setuid instead])
           fi],
-         [man_owner=man
-          man_mode="4755"
-          AC_DEFINE_UNQUOTED([SECURE_MAN_UID], ["$man_owner"])])
-AC_SUBST([man_owner])
+         [if test -z "$man_owner"
+          then
+               man_mode="755"
+          else
+               man_mode="6755"
+          fi])
 AC_SUBST([man_mode])
 ])
index 57dccad..4ea7ada 100644 (file)
@@ -1 +1 @@
-da de fr id ja nl pl ru zh_CN
+da de fr id ja nl pl ru sv zh_CN
index 19fa3e5..eff09c0 100644 (file)
@@ -20,7 +20,7 @@
 ## Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 SUBDIRS = $(MAN_SUBDIRS)
-DIST_SUBDIRS = po4a da de es fr id it ja nl pl ru zh_CN
+DIST_SUBDIRS = po4a da de es fr id it ja nl pl ru sv zh_CN
 
 LINGUA = .
 
index e8571c7..e7e8bf3 100644 (file)
@@ -90,6 +90,7 @@ subdir = man
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -1205,6 +1206,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
@@ -1587,7 +1589,7 @@ unxz = @unxz@
 vgrind = @vgrind@
 xz = @xz@
 SUBDIRS = $(MAN_SUBDIRS)
-DIST_SUBDIRS = po4a da de es fr id it ja nl pl ru zh_CN
+DIST_SUBDIRS = po4a da de es fr id it ja nl pl ru sv zh_CN
 LINGUA = .
 man1_MANS = \
        man1/apropos.1 \
index 543d7b6..f7ab6ff 100644 (file)
@@ -20,6 +20,7 @@ Yasuaki Taniguchi <yasuakit@gmail.com>                        man/ja, ja.po
 Erwin Poeze <erwin.poeze@gmail.com>                    man/nl, nl.po
 Robert Luberda <robert@debian.org>                     man/pl, pl.po
 Yuri Kozlov <kozlov.y@gmail.com>                       man/ru, ru.po
+Sebastian Rasmussen <sebras@gmail.com>                 man/sv, sv.po
 Wylmer Wang <wantinghard@gmail.com>                    man/zh_CN
 zwpwjwtz <zwpwjwtz@126.com>                            man/zh_CN
 Jordi Mallach <jordi@gnu.org>                          ca.po
index 07fede8..5aa23a5 100644 (file)
@@ -90,6 +90,7 @@ subdir = man/da
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -1147,6 +1148,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
index db75fa3..172b834 100644 (file)
@@ -90,6 +90,7 @@ subdir = man/de
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -1147,6 +1148,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
index 3702d0e..65d6472 100644 (file)
@@ -90,6 +90,7 @@ subdir = man/es
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -1147,6 +1148,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
index d28e701..550f9e8 100644 (file)
@@ -51,8 +51,7 @@ l l l l.
 Nombre@Tipo@Asinc@Nombre de fichero
 _
 Berkeley db@Árbol binario@Sí@\fIindex.bt\fR
-GNU gdbm v >= 1.6@"Hashed"@Sí@\fIindex.db\fR
-GNU gdbm v <  1.6@"Hashed"@No@\fIindex.db\fR
+GNU gdbm@"Hashed"@Sí@\fIindex.db\fR
 UNIX ndbm@"Hashed"@No@\fIindex.(dir|pag)\fR
 .TE
 
index f743ecc..eadd2b0 100644 (file)
@@ -90,6 +90,7 @@ subdir = man/fr
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -1147,6 +1148,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
index fc7f8ab..4f293b6 100644 (file)
@@ -90,6 +90,7 @@ subdir = man/id
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -1147,6 +1148,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
index a6d2c3d..0e3eb9d 100644 (file)
@@ -90,6 +90,7 @@ subdir = man/it
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -1147,6 +1148,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
index 82e9035..0043ec1 100644 (file)
@@ -59,8 +59,7 @@ l l l l.
 Nome@Tipo@Asinc@NomeFile
 _
 Berkeley db@Binary tree@Sì@\fIindex.bt\fR
-GNU gdbm v >= 1.6@Hashed@Sì@\fIindex.db\fR
-GNU gdbm v <  1.6@Hashed@No@\fIindex.db\fR
+GNU gdbm@Hashed@Sì@\fIindex.db\fR
 UNIX ndbm@Hashed@No@\fIindex.(dir|pag)\fR
 .TE
 
index 794bb6b..e61b66b 100644 (file)
@@ -90,6 +90,7 @@ subdir = man/ja
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -1147,6 +1148,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
index 3d981c5..4df2823 100644 (file)
@@ -62,7 +62,7 @@
 .RI [\| dpi \|]\|]
 .RB [\| \-Z \|]
 .RI [\|[\| section \|]
-.IR page \ .\|.\|.\|]\ .\|.\|.\&
+.IR page [.\| section \|]\ \|.\|.\|.\|]\ \.\|.\|.\&
 .\" The apropos command line
 .br
 .B %man%
@@ -79,7 +79,7 @@
 .RB [\| \-S
 .IR list \|]
 .RB [\| \-i \||\| \-I \|]
-.RI [\| \-\-regex \|]
+.RB [\| \-\-regex \|]
 .RI [\| section \|]
 .IR term \ .\|.\|.\&
 .\" The whatis command line
@@ -285,6 +285,11 @@ Display the manual page for the
 (program)
 .IR ls .
 .TP
+\fB%man% \fIman\fR.\fI7
+Display the manual page for macro package
+.I man
+from section \fI7\fR.
+.TP
 .BI %man%\ \-a \ intro
 Display, in succession, all of the available
 .I intro
@@ -614,6 +619,12 @@ Search terms may be simple strings (the default), or regular expressions if
 the
 .B \-\-regex
 option is used.
+.IP
+Note that this searches the
+.I sources
+of the manual pages, not the rendered text, and so may include false
+positives due to things like comments in source files.
+Searching the rendered text would be much slower.
 .TP
 .if !'po4a'hide' .BR \-l ", " \-\-local\-file
 Activate `local' mode.
index a36a3bb..cf7c242 100644 (file)
@@ -55,18 +55,15 @@ can be compiled with support for any one of the following database types.
 
 .TS
 tab (@);
-l l l l.
+l lw(20m) l l.
 Name@Type@Async@Filename
 _
 Berkeley db@T{
 Binary tree
 T}@Yes@\fIindex.bt\fR
-GNU gdbm v >= 1.6@T{
+GNU gdbm@T{
 Hashed
 T}@Yes@\fIindex.db\fR
-GNU gdbm v <  1.6@T{
-Hashed
-T}@No@\fIindex.db\fR
 UNIX ndbm@T{
 Hashed
 T}@No@\fIindex.(dir|pag)\fR
index b01c287..df36f13 100644 (file)
@@ -90,6 +90,7 @@ subdir = man/nl
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -1147,6 +1148,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
index 727fb3e..99cecac 100644 (file)
@@ -90,6 +90,7 @@ subdir = man/pl
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -1147,6 +1148,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
index 9512a07..0a46e14 100644 (file)
@@ -49,7 +49,10 @@ use warnings;
 use vars qw(@ISA);
 @ISA = qw(Locale::Po4a::Man);
 
+use version;
+
 use Locale::Po4a::Man;
+use Locale::Po4a::TransTractor;
 
 sub initialize {
     my $self = shift;
@@ -57,13 +60,17 @@ sub initialize {
 
     $self->{manext_shift_tbl_state} = 0;
     $self->{manext_shift_tbl_lines} = [];
-    $self->{manext_translate_tbl_table} = 0;
     $self->{manext_push_tbl_state} = 0;
     $self->{manext_push_tbl_line} = '';
 }
 
 sub shiftline {
     my $self = shift;
+
+    if (version->parse($Locale::Po4a::TransTractor::VERSION) >= '0.47') {
+        return $self->SUPER::shiftline();
+    }
+
     my ($line, $ref);
 
     if (@{$self->{manext_shift_tbl_lines}}) {
@@ -90,11 +97,11 @@ NEXT_LINE:
     } elsif ($self->{manext_shift_tbl_state} == 2) {
         # Theoretically s/@/\t/g should be enough, but for some reason
         # Locale::Po4a::Man splits on /\\t/ rather than on /\t/.
-        if ($line =~ /T{$/) {
+        if ($line =~ /T\{$/) {
             my ($l2, $r2) = $self->SUPER::shiftline();
             while (defined $l2) {
                 $line .= $l2;
-                last if $l2 =~ /^T}/;
+                last if $l2 =~ /^T\}/;
                 ($l2, $r2) = $self->SUPER::shiftline();
             }
         }
@@ -113,6 +120,12 @@ NEXT_LINE:
 
 sub pushline {
     my ($self, $line) = (shift, shift);
+
+    if (version->parse($Locale::Po4a::TransTractor::VERSION) >= '0.47') {
+        $self->SUPER::pushline($line);
+        return;
+    }
+
     if ($line =~ /^\.TS/) {
         $self->{manext_push_tbl_state} = 1;
     } elsif ($line =~ /^\.TE/) {
@@ -141,14 +154,31 @@ sub translate {
     my %options = @_;
 
     if (defined $type and $type eq 'tbl table') {
-        if ($str =~ /^T{\n?(.*)T}(\n?)$/s) {
-            my $inner = $1;
-            chomp $inner;
-            return "T{\n" .
-                   $self->SUPER::translate($inner, $ref, $type, %options) .
-                   "\nT}$2";
+        if (version->parse($Locale::Po4a::TransTractor::VERSION) < '0.47') {
+            if ($str =~ /^T\{\n?(.*)T\}(\n?)$/s) {
+                my $inner = $1;
+                chomp $inner;
+                return "T{\n" .
+                       $self->SUPER::translate($inner, $ref, $type, %options) .
+                       "\nT}$2";
+            }
+        } else {
+            my $postline = '';
+            if (chomp $str) {
+                $postline = "\n";
+            }
+            if ($str =~ /@/) {
+                return join('@', map {
+                    $self->translate($_, $ref, 'tbl table manext')
+                } split (/@/, $str, -1)) . $postline;
+            } else {
+                return $self->translate($str, $ref, 'tbl table manext') .
+                       $postline;
+            }
         }
+    }
 
+    if (defined $type and $type =~ /^tbl table(?: manext)$/) {
         # Do not translate horizontal rules.
         return $str if $str =~ /^[-_=]$/;
 
@@ -175,6 +205,8 @@ sub translate {
         # Do not translate symbols used in the --ascii translation table in
         # man(1).
         return $str if $str =~ /^[o'x]$/;
+
+        $type =~ s/ manext$//;
     }
 
     return $self->SUPER::translate($str, $ref, $type, %options);
index 1f1d675..a021f6a 100644 (file)
@@ -28,6 +28,7 @@ POFILES = \
        po/nl.po \
        po/pl.po \
        po/ru.po \
+       po/sv.po \
        po/zh_CN.po
 
 EXTRA_DIST = po4a.cfg Locale/Po4a/Manext.pm po/$(DOMAIN).pot $(POFILES)
index 567d476..6d26dd4 100644 (file)
@@ -90,6 +90,7 @@ subdir = man/po4a
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -934,6 +935,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
@@ -1325,6 +1327,7 @@ POFILES = \
        po/nl.po \
        po/pl.po \
        po/ru.po \
+       po/sv.po \
        po/zh_CN.po
 
 EXTRA_DIST = po4a.cfg Locale/Po4a/Manext.pm po/$(DOMAIN).pot $(POFILES)
index e904249..2b7584d 100644 (file)
@@ -21,7 +21,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: man-db-manpages 2.7.0-pre1\n"
-"POT-Creation-Date: 2014-09-16 14:04+0100\n"
+"POT-Creation-Date: 2016-12-11 13:52+0000\n"
 "PO-Revision-Date: 2014-10-05 07:50+0200\n"
 "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
 "Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
@@ -163,20 +163,20 @@ msgstr ""
 
 #. type: SH
 #: ../../man/man1/apropos.man1:61 ../../man/man1/lexgrog.man1:45
-#: ../../man/man1/man.man1:553 ../../man/man1/manconv.man1:50
+#: ../../man/man1/man.man1:558 ../../man/man1/manconv.man1:50
 #: ../../man/man1/manpath.man1:37 ../../man/man1/whatis.man1:71
 #: ../../man/man1/zsoelim.man1:55 ../../man/man8/accessdb.man8:29
-#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:83
+#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:80
 #, no-wrap
 msgid "OPTIONS"
 msgstr "TILVALG"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:65 ../../man/man1/lexgrog.man1:49
-#: ../../man/man1/man.man1:567 ../../man/man1/manconv.man1:66
+#: ../../man/man1/man.man1:572 ../../man/man1/manconv.man1:66
 #: ../../man/man1/manpath.man1:44 ../../man/man1/whatis.man1:75
 #: ../../man/man8/accessdb.man8:33 ../../man/man8/catman.man8:59
-#: ../../man/man8/mandb.man8:87
+#: ../../man/man8/mandb.man8:84
 msgid "Print debugging information."
 msgstr "Vis fejlsøgningsinformation."
 
@@ -265,7 +265,7 @@ msgstr ""
 "præcise del af manualafsnittet."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:690
+#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:701
 #: ../../man/man1/manpath.man1:66 ../../man/man1/whatis.man1:133
 msgid ""
 "B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|, B<--systems=>I<system>\\|[\\|,.\\|."
@@ -300,7 +300,7 @@ msgstr ""
 "parameterstrengen. Dette tilvalg vil overskrive $B<SYSTEM>-miljøvariablen."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:709
+#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:720
 #: ../../man/man1/whatis.man1:152 ../../man/man8/catman.man8:59
 #, no-wrap
 msgid "B<-M\\ >I<path>,\\ B<--manpath=>I<path>"
@@ -317,14 +317,14 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:660
+#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:671
 #: ../../man/man1/whatis.man1:166
 #, no-wrap
 msgid "B<-L\\ >I<locale>,\\ B<--locale=>I<locale>"
 msgstr "B<-L\\ >I<sprog>,\\ B<--locale=>I<sprog>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:684
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:695
 #: ../../man/man1/whatis.man1:183
 msgid ""
 "B<%program%> will normally determine your current locale by a call to the C "
@@ -344,24 +344,24 @@ msgstr ""
 "blive vist i det oprindeligt bestemte sprog."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:560
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:565
 #: ../../man/man1/manpath.man1:85 ../../man/man1/whatis.man1:183
-#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:134
+#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:131
 #, no-wrap
 msgid "B<-C\\ >I<file>,\\ B<--config-file=>I<file>"
 msgstr "B<-C\\ >I<fil>,\\ B<--config-file=>I<fil>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:564
+#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:569
 #: ../../man/man1/manpath.man1:89 ../../man/man1/whatis.man1:187
-#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:138
+#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:135
 msgid ""
 "Use this user configuration file rather than the default of I<~/.manpath>."
 msgstr "Brug denne brugerkonfigurationsfil frem for standarden I<~/.manpath>."
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:186 ../../man/man1/lexgrog.man1:89
-#: ../../man/man1/man.man1:1163 ../../man/man1/manconv.man1:69
+#: ../../man/man1/man.man1:1174 ../../man/man1/manconv.man1:69
 #: ../../man/man1/manpath.man1:92 ../../man/man1/whatis.man1:190
 #: ../../man/man1/zsoelim.man1:67 ../../man/man8/accessdb.man8:36
 #: ../../man/man8/catman.man8:71
@@ -370,15 +370,15 @@ msgstr "Vis en hjælpebesked og afslut."
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:189 ../../man/man1/lexgrog.man1:92
-#: ../../man/man1/man.man1:1166 ../../man/man1/manpath.man1:95
+#: ../../man/man1/man.man1:1177 ../../man/man1/manpath.man1:95
 #: ../../man/man1/whatis.man1:193 ../../man/man8/accessdb.man8:39
-#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:144
+#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:141
 msgid "Print a short usage message and exit."
 msgstr "Vis en kort hjælpebesked og afslut."
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1180 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:196
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/accessdb.man8:42
 #: ../../man/man8/catman.man8:77
@@ -387,28 +387,28 @@ msgstr "Vis versionsinformation."
 
 #. type: SH
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/whatis.man1:196
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man1/man.man1:1180 ../../man/man1/whatis.man1:196
+#: ../../man/man8/mandb.man8:144
 #, no-wrap
 msgid "EXIT STATUS"
 msgstr "AFSLUT-STATUS"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:196 ../../man/man1/lexgrog.man1:99
-#: ../../man/man1/man.man1:1173 ../../man/man1/whatis.man1:200
-#: ../../man/man8/mandb.man8:151
+#: ../../man/man1/man.man1:1184 ../../man/man1/whatis.man1:200
+#: ../../man/man8/mandb.man8:148
 msgid "Successful program execution."
 msgstr "Programkørsel endt uden fejl."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1176
+#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1187
 #: ../../man/man1/whatis.man1:203
 msgid "Usage, syntax or configuration file error."
 msgstr "Brugs-, syntaks- eller konfigurationsfilfejl."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1179
-#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:157
+#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1190
+#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:154
 msgid "Operational error."
 msgstr "Operationel fejl."
 
@@ -418,7 +418,7 @@ msgid "Nothing was found that matched the criteria specified."
 msgstr "Intet blev fundet som matchede de angivne kriterier."
 
 #. type: SH
-#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1185
+#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1196
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:209
 #: ../../man/man8/catman.man8:77
 #, no-wrap
@@ -426,7 +426,7 @@ msgid "ENVIRONMENT"
 msgstr "MILJØ"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1282
+#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1293
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:218
 msgid ""
 "If $B<SYSTEM> is set, it will have the same effect as if it had been "
@@ -461,23 +461,23 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1347
+#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1358
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:236
-#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:194
+#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:191
 #, no-wrap
 msgid "FILES"
 msgstr "FILER"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1359
+#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1370
 #: ../../man/man1/whatis.man1:242 ../../man/man8/catman.man8:103
-#: ../../man/man8/mandb.man8:210
+#: ../../man/man8/mandb.man8:207
 msgid "A traditional global I<index> database cache."
 msgstr "Et traditionelt globalt I<index>-databasemellemlager."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1365
-#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:203
+#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1376
+#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:200
 msgid "An FHS compliant global I<index> database cache."
 msgstr "Et FHS-overholdende globalt I<index>-databasemellemlager."
 
@@ -488,10 +488,10 @@ msgstr "En traditionel B<whatis>-tekstdatabase."
 
 #. type: SH
 #: ../../man/man1/apropos.man1:258 ../../man/man1/lexgrog.man1:197
-#: ../../man/man1/man.man1:1365 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1376 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:128 ../../man/man1/whatis.man1:253
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/catman.man8:109
-#: ../../man/man8/mandb.man8:216
+#: ../../man/man8/mandb.man8:213
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "SE OGSÅ"
@@ -501,7 +501,7 @@ msgstr "SE OGSÅ"
 #: ../../man/man1/manconv.man1:75 ../../man/man1/manpath.man1:132
 #: ../../man/man1/whatis.man1:257 ../../man/man1/zsoelim.man1:75
 #: ../../man/man8/accessdb.man8:42 ../../man/man8/catman.man8:113
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 #, no-wrap
 msgid "AUTHOR"
 msgstr "FORFATTER"
@@ -786,6 +786,19 @@ msgstr "%man% - en grænseflade til referencemanualerne på nettet"
 #.  The apropos command line
 #. type: Plain text
 #: ../../man/man1/man.man1:67
+#, fuzzy
+#| msgid ""
+#| "B<%man%> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--"
+#| "warnings>\\|[\\|=I<warnings>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-L> "
+#| "I<locale>\\|] [\\|B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|] [\\|B<-M> "
+#| "I<path>\\|] [\\|B<-S> I<list>\\|] [\\|B<-e> I<extension>\\|] [\\|B<-i>\\||"
+#| "\\|B<-I>\\|] [\\|B<--regex>\\||\\|B<--wildcard>\\|] [\\|B<--names-only>"
+#| "\\|] [\\|B<-a>\\|] [\\|B<-u>\\|] [\\|B<--no-subpages>\\|] [\\|B<-P> "
+#| "I<pager>\\|] [\\|B<-r> I<prompt>\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>"
+#| "\\|] [\\|B<--no-hyphenation>\\|] [\\|B<--no-justification>\\|] [\\|B<-p> "
+#| "I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|[\\|I<device>\\|]\\|] [\\|B<-H>\\|"
+#| "[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|"
+#| "[\\|I<section>\\|] I<page>\\ .\\|.\\|.\\|]\\ .\\|.\\|.\\&"
 msgid ""
 "B<%man%> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--warnings>"
 "\\|[\\|=I<warnings>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-L> I<locale>"
@@ -796,8 +809,8 @@ msgid ""
 "\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>\\|] [\\|B<--no-hyphenation>\\|] [\\|"
 "B<--no-justification>\\|] [\\|B<-p> I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|"
 "[\\|I<device>\\|]\\|] [\\|B<-H>\\|[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|"
-"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>\\ .\\|.\\|."
-"\\|]\\ .\\|.\\|.\\&"
+"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>[.\\|I<section>"
+"\\|]\\ \\|.\\|.\\|.\\|]\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> [\\|B<-C> I<fil>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--warnings>"
 "\\|[\\|=I<advarsler>\\|]\\|] [\\|B<-R> I<kodning>\\|] [\\|B<-L> I<sprog>\\|] "
@@ -822,10 +835,10 @@ msgstr "B<%man%> B<-k> [\\|I<apropos> I<tilvalg>\\|] I<regexp> \\&.\\|.\\|.\\&"
 #: ../../man/man1/man.man1:86
 msgid ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<liste>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<afsnit>\\|] I<term>\\ .\\|.\\|.\\&"
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<afsnit>\\|] I<term>\\ .\\|.\\|.\\&"
 
 #.  The --local command line
 #. type: Plain text
@@ -909,43 +922,43 @@ msgstr ""
 "af sider de indeholder."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:189
+#: ../../man/man1/man.man1:191
 #, no-wrap
 msgid "Executable programs or shell commands"
 msgstr "Kørbare programmer eller skalkommandoer"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:192
+#: ../../man/man1/man.man1:194
 #, no-wrap
 msgid "System calls (functions provided by the kernel)"
 msgstr "Systemkald (funktioner stillet til rådighed af kernen)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:195
+#: ../../man/man1/man.man1:197
 #, no-wrap
 msgid "Library calls (functions within program libraries)"
 msgstr "Bibliotekskald (funktioner i programbiblioteker)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:198
+#: ../../man/man1/man.man1:200
 #, no-wrap
 msgid "Special files (usually found in I</dev\\/>)"
 msgstr "Specielle filer (normalt fundet i I</dev\\/>)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:201
+#: ../../man/man1/man.man1:203
 #, no-wrap
 msgid "File formats and conventions eg I</etc/passwd>"
 msgstr "Filformater og konventioner f.eks. I</etc/passwd>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:204
+#: ../../man/man1/man.man1:206
 #, no-wrap
 msgid "Games"
 msgstr "Spil"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:207
+#: ../../man/man1/man.man1:210
 #, no-wrap
 msgid ""
 "Miscellaneous (including macro packages and conventions),\n"
@@ -955,13 +968,13 @@ msgstr ""
 "f.eks.\\& B<man>(7), B<groff>(7)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:211
+#: ../../man/man1/man.man1:213
 #, no-wrap
 msgid "System administration commands (usually only for root)"
 msgstr "Kommandoer til systemadministration (normalt kun for root)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:214
+#: ../../man/man1/man.man1:216
 #, no-wrap
 msgid "Kernel routines [\\|Non standard\\|]"
 msgstr "Kernerutiner [\\|Ikkestandard\\|]"
@@ -1000,7 +1013,7 @@ msgid "B<bold text>"
 msgstr "B<fed tekst>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:250
+#: ../../man/man1/man.man1:252
 #, no-wrap
 msgid "type exactly as shown."
 msgstr "skriv præcis som vist."
@@ -1012,7 +1025,7 @@ msgid "I<italic text>"
 msgstr "I<kursiv>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:253
+#: ../../man/man1/man.man1:255
 #, no-wrap
 msgid "replace with appropriate argument."
 msgstr "erstat med passende argument."
@@ -1024,7 +1037,7 @@ msgid "[\\|B<-abc>\\|]"
 msgstr "[\\|B<-abc>\\|]"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:256
+#: ../../man/man1/man.man1:258
 #, no-wrap
 msgid "any or all arguments within [ ] are optional."
 msgstr "et eller alle argumenter inden i [ ] er valgfrie."
@@ -1036,7 +1049,7 @@ msgid "B<-a\\|>|\\|B<-b>"
 msgstr "B<-a\\|>|\\|B<-b>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:259
+#: ../../man/man1/man.man1:261
 #, no-wrap
 msgid "options delimited by | cannot be used together."
 msgstr "tilvalg afgrænset af | kan ikke bruges sammen."
@@ -1048,7 +1061,7 @@ msgid "I<argument> .\\|.\\|."
 msgstr "I<argument> .\\|.\\|."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:262
+#: ../../man/man1/man.man1:264
 #, no-wrap
 msgid "I<argument> is repeatable."
 msgstr "I<argument> kan gentages."
@@ -1060,7 +1073,7 @@ msgid "[\\|I<expression>\\|] .\\|.\\|."
 msgstr "[\\|I<udtryk>\\|] .\\|.\\|."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:265
+#: ../../man/man1/man.man1:267
 #, no-wrap
 msgid "entire I<expression>\\ within [ ] is repeatable."
 msgstr "hele I<udtrykket>\\ indenfor [ ] kan gentages."
@@ -1098,12 +1111,26 @@ msgstr "Vis manualsiden for I<punkt> (program) I<ls>."
 
 #. type: TP
 #: ../../man/man1/man.man1:287
+#, fuzzy, no-wrap
+#| msgid "B<%man%\\ -f>I<\\ smail>"
+msgid "B<%man% >I<man>.I<7>"
+msgstr "B<%man%\\ -f>I<\\ smail>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:292
+#, fuzzy
+#| msgid "Display the manual page for the I<item> (program)  I<ls>."
+msgid "Display the manual page for macro package I<man> from section I<7>."
+msgstr "Vis manualsiden for I<punkt> (program) I<ls>."
+
+#. type: TP
+#: ../../man/man1/man.man1:292
 #, no-wrap
 msgid "B<%man%\\ -a>I<\\ intro>"
 msgstr "B<%man%\\ -a>I<\\ intro>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 msgid ""
 "Display, in succession, all of the available I<intro> manual pages contained "
 "within the manual.  It is possible to quit between successive displays or "
@@ -1114,13 +1141,13 @@ msgstr ""
 "udelade nogle af dem."
 
 #. type: TP
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 #, no-wrap
 msgid "B<%man% -t >I<alias >|I< lpr -Pps>"
 msgstr "B<%man% -t >I<alias >|I< lpr -Pps>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 msgid ""
 "Format the manual page referenced by `I<alias>', usually a shell manual "
 "page, into the default B<troff> or B<groff> format and pipe it to the "
@@ -1130,13 +1157,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 #, no-wrap
 msgid "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
 msgstr "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 msgid ""
 "This command will decompress and format the nroff source manual page I<./"
 "foo.1x.gz> into a B<device independent (dvi)> file.  The redirection is "
@@ -1146,13 +1173,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 #, no-wrap
 msgid "B<%man%\\ -k>I<\\ printf>"
 msgstr "B<%man%\\ -k>I<\\ printf>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 msgid ""
 "Search the short descriptions and manual page names for the keyword "
 "I<printf> as regular expression.  Print out any matches.  Equivalent to B<"
@@ -1163,13 +1190,13 @@ msgstr ""
 "%>I<\\ printf>B<.>"
 
 #. type: TP
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 #, no-wrap
 msgid "B<%man%\\ -f>I<\\ smail>"
 msgstr "B<%man%\\ -f>I<\\ smail>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 msgid ""
 "Lookup the manual pages referenced by I<smail> and print out the short "
 "descriptions of any found.  Equivalent to B<%whatis%>I<\\ smail>B<.>"
@@ -1178,13 +1205,13 @@ msgstr ""
 "det fundne resultat. Svarer til B<%whatis%>I<\\ smail>B<.>"
 
 #. type: SH
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 #, no-wrap
 msgid "OVERVIEW"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:347
+#: ../../man/man1/man.man1:352
 msgid ""
 "Many options are available to B<%man%> in order to give as much flexibility "
 "as possible to the user.  Changes can be made to the search path, section "
@@ -1192,7 +1219,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:369
+#: ../../man/man1/man.man1:374
 msgid ""
 "If set, various environment variables are interrogated to determine the "
 "operation of B<%man%>.  It is possible to set the `catch all' variable "
@@ -1207,7 +1234,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:390
+#: ../../man/man1/man.man1:395
 msgid ""
 "The manual pager utilities packaged as B<man-db> make extensive use of "
 "B<index> database caches.  These caches contain information such as where "
@@ -1223,7 +1250,7 @@ msgstr ""
 #. .B index
 #. caches created `on the fly'.
 #. type: Plain text
-#: ../../man/man1/man.man1:412
+#: ../../man/man1/man.man1:417
 msgid ""
 "If B<%man%> cannot find a B<%mandb%> initiated B<index> database for a "
 "particular manual page hierarchy, it will still search for the requested "
@@ -1233,7 +1260,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:432
+#: ../../man/man1/man.man1:437
 msgid ""
 "These utilities support compressed source nroff files having, by default, "
 "the extensions of B<.Z>, B<.z> and B<.gz>.  It is possible to deal with any "
@@ -1248,7 +1275,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:445
+#: ../../man/man1/man.man1:450
 msgid ""
 "International support is available with this package.  Native language "
 "manual pages are accessible (if available on your system)  via use of "
@@ -1267,14 +1294,14 @@ msgstr ""
 #
 #.  Need a \c to make sure we don't get a space where we don't want one
 #. type: Plain text
-#: ../../man/man1/man.man1:456
+#: ../../man/man1/man.man1:461
 msgid ""
 "E<lt>I<language>E<gt>[\\|B<_>E<lt>I<territory>E<gt>\\|[\\|B<."
 ">E<lt>I<character-set>E<gt>\\|[\\|B<,>E<lt>I<version>E<gt>\\|]\\|]\\|]"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:461
+#: ../../man/man1/man.man1:466
 msgid ""
 "If the desired page is available in your I<locale>, it will be displayed in "
 "lieu of the standard (usually American English) page."
@@ -1283,7 +1310,7 @@ msgstr ""
 "stedet for standardsiden (normalt amerikansk-engelsk)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:468
+#: ../../man/man1/man.man1:473
 msgid ""
 "Support for international message catalogues is also featured in this "
 "package and can be activated in the same way, again if available.  If you "
@@ -1293,20 +1320,20 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 msgid ""
 "For information regarding other features and extensions available with this "
 "manual pager, please read the documents supplied with the package."
 msgstr ""
 
 #. type: SH
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 #, no-wrap
 msgid "DEFAULTS"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:491
+#: ../../man/man1/man.man1:496
 msgid ""
 "B<%man%> will search for the desired manual pages within the I<index> "
 "database caches. If the B<-u> option is given, a cache consistency check is "
@@ -1322,7 +1349,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:503
+#: ../../man/man1/man.man1:508
 msgid ""
 "Once a manual page has been located, a check is performed to find out if a "
 "relative preformatted `cat' file already exists and is newer than the nroff "
@@ -1334,7 +1361,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:508
+#: ../../man/man1/man.man1:513
 msgid ""
 "If a cat file can be produced (a relative cat directory exists and has "
 "appropriate permissions), B<%man%> will compress and store the cat file in "
@@ -1342,7 +1369,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:520
+#: ../../man/man1/man.man1:525
 msgid ""
 "The filters are deciphered by a number of means.  Firstly, the command line "
 "option B<-p> or the environment variable $B<MANROFFSEQ> is interrogated.  If "
@@ -1352,19 +1379,19 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:523
+#: ../../man/man1/man.man1:528
 msgid "B<'\\e\"> E<lt>B<string>E<gt>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:529
+#: ../../man/man1/man.man1:534
 msgid ""
 "where B<string> can be any combination of letters described by option B<-p> "
 "below."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:532
+#: ../../man/man1/man.man1:537
 msgid ""
 "If none of the above methods provide any filter information, a default set "
 "is used."
@@ -1372,7 +1399,7 @@ msgstr ""
 
 #.  ********************************************************************
 #. type: Plain text
-#: ../../man/man1/man.man1:553
+#: ../../man/man1/man.man1:558
 msgid ""
 "A formatting pipeline is formed from the filters and the primary formatter "
 "(B<nroff> or [B<tg>]B<roff> with B<-t>)  and executed.  Alternatively, if an "
@@ -1383,7 +1410,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 msgid ""
 "Non argument options that are duplicated either on the command line, in "
 "$B<MANOPT>, or both, are not harmful.  For options that require an argument, "
@@ -1391,13 +1418,13 @@ msgid ""
 msgstr ""
 
 #. type: SS
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 #, no-wrap
 msgid "General options"
 msgstr "Generelle tilvalg"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 msgid ""
 "This option is normally issued as the very first option and resets B<%man"
 "%'s> behaviour to its default.  Its use is to reset those options that may "
@@ -1406,13 +1433,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 #, no-wrap
 msgid "B<--warnings>[=I<warnings\\/>]"
 msgstr "B<--warnings>[=I<advarsler\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 msgid ""
 "Enable warnings from I<groff>.  This may be used to perform sanity checks on "
 "the source text of manual pages.  I<warnings> is a comma-separated list of "
@@ -1427,13 +1454,13 @@ msgstr ""
 "over tilgængelige advarselsnavne."
 
 #. type: SS
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 #, no-wrap
 msgid "Main modes of operation"
 msgstr "Hovedtilstande for operation"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:598
+#: ../../man/man1/man.man1:603
 msgid ""
 "Equivalent to B<%whatis%>.  Display a short description from the manual "
 "page, if available.  See B<%whatis%>(1)  for details."
@@ -1442,7 +1469,7 @@ msgstr ""
 "tilgængelig. Se B<%whatis%>(1) for detaljer."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:607
+#: ../../man/man1/man.man1:612
 msgid ""
 "Equivalent to B<%apropos%>.  Search the short manual page descriptions for "
 "keywords and display any matches.  See B<%apropos%>(1)  for details."
@@ -1451,7 +1478,7 @@ msgstr ""
 "og vis alle match. Se B<%apropos%>(1) for detaljer."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:617
+#: ../../man/man1/man.man1:622
 msgid ""
 "Search for text in all manual pages.  This is a brute-force search, and is "
 "likely to take some time; if you can, you should specify a section to reduce "
@@ -1460,11 +1487,19 @@ msgid ""
 "used."
 msgstr ""
 
+#. type: Plain text
+#: ../../man/man1/man.man1:628
+msgid ""
+"Note that this searches the I<sources> of the manual pages, not the rendered "
+"text, and so may include false positives due to things like comments in "
+"source files.  Searching the rendered text would be much slower."
+msgstr ""
+
 #.  Compressed nroff source files with a supported compression
 #.  extension will be decompressed by man prior to being displaying via the
 #.  usual filters.
 #. type: Plain text
-#: ../../man/man1/man.man1:633
+#: ../../man/man1/man.man1:644
 msgid ""
 "Activate `local' mode.  Format and display local manual files instead of "
 "searching through the system's manual collection.  Each manual page argument "
@@ -1477,7 +1512,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:637
+#: ../../man/man1/man.man1:648
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "source nroff files that would be formatted."
@@ -1486,7 +1521,7 @@ msgstr ""
 "som ville blive formateret."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:642
+#: ../../man/man1/man.man1:653
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "cat files that would be displayed.  If -w and -W are both specified, print "
@@ -1497,7 +1532,7 @@ msgstr ""
 "adskilt af mellemrum."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 msgid ""
 "This option is not for general use and should only be used by the B<%catman"
 "%> program."
@@ -1506,13 +1541,13 @@ msgstr ""
 "%catman%>."
 
 #. type: TP
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 #, no-wrap
 msgid "B<-R\\ >I<encoding>,\\ B<--recode>=I<encoding>"
 msgstr "B<-R\\ >I<kodning>,\\ B<--recode>=I<kodning>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 msgid ""
 "Instead of formatting the manual page in the usual way, output its source "
 "converted to the specified I<encoding>.  If you already know the encoding of "
@@ -1523,13 +1558,13 @@ msgid ""
 msgstr ""
 
 #. type: SS
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 #, no-wrap
 msgid "Finding manual pages"
 msgstr "Finde manualsider"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:697
+#: ../../man/man1/man.man1:708
 msgid ""
 "If this system has access to other operating system's manual pages, they can "
 "be accessed using this option.  To search for a manual page from NewOS's "
@@ -1540,7 +1575,7 @@ msgstr ""
 "manualsidesamling bruges tilvalget B<-m> B<NytOS>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:708
+#: ../../man/man1/man.man1:719
 msgid ""
 "The I<system> specified can be a combination of comma delimited operating "
 "system names.  To include a search of the native operating system's manual "
@@ -1553,7 +1588,7 @@ msgstr ""
 "argumentstrengen. Dette tilvalg vil overskrive miljøvariablen $B<SYSTEM>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:722
+#: ../../man/man1/man.man1:733
 msgid ""
 "Specify an alternate manpath to use.  By default, B<%man%> uses B<%manpath%> "
 "derived code to determine the path to search.  This option overrides the "
@@ -1564,7 +1599,7 @@ msgstr ""
 "miljøvariablen $B<MANPATH> og medfører at tilvalget B<-m> ignoreres."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 msgid ""
 "A path specified as a manpath must be the root of a manual page hierarchy "
 "structured into sections as described in the man-db manual (under \"The "
@@ -1573,13 +1608,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 #, no-wrap
 msgid "B<-S\\ >I<list>,\\ B<-s\\ >I<list>,\\ B<--sections=>I<list>"
 msgstr "B<-S\\ >I<liste>,\\ B<-s\\ >I<liste>,\\ B<--sections=>I<liste>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 msgid ""
 "List is a colon- or comma-separated list of `order specific' manual sections "
 "to search.  This option overrides the $B<MANSECT> environment variable.  "
@@ -1587,13 +1622,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 #, no-wrap
 msgid "B<-e\\ >I<sub-extension>,\\ B<--extension=>I<sub-extension>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:773
+#: ../../man/man1/man.man1:784
 msgid ""
 "Some systems incorporate large packages of manual pages, such as those that "
 "accompany the B<Tcl> package, into the main manual page hierarchy.  To get "
@@ -1611,17 +1646,17 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:777
+#: ../../man/man1/man.man1:788
 msgid "Ignore case when searching for manual pages.  This is the default."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:780
+#: ../../man/man1/man.man1:791
 msgid "Search for manual pages case-sensitively."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:790
+#: ../../man/man1/man.man1:801
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument as a regular expression, as with "
@@ -1630,7 +1665,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:805
+#: ../../man/man1/man.man1:816
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument using shell-style wildcards, as with "
@@ -1641,14 +1676,14 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:814
+#: ../../man/man1/man.man1:825
 msgid ""
 "If the B<--regex> or B<--wildcard> option is used, match only page names, "
 "not page descriptions, as with B<whatis>(1).  Otherwise, no effect."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:822
+#: ../../man/man1/man.man1:833
 msgid ""
 "By default, B<%man%> will exit after displaying the most suitable manual "
 "page it finds.  Using this option forces B<%man%> to display all the manual "
@@ -1659,7 +1694,7 @@ msgstr ""
 "alle manualsiderne med navne som matcher søgekriteriet."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:831
+#: ../../man/man1/man.man1:842
 msgid ""
 "This option causes B<%man%> to perform an `inode level' consistency check on "
 "its database caches to ensure that they are an accurate representation of "
@@ -1668,7 +1703,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:843
+#: ../../man/man1/man.man1:854
 msgid ""
 "By default, B<%man%> will try to interpret pairs of manual page names given "
 "on the command line as equivalent to a single manual page name containing a "
@@ -1679,24 +1714,24 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:852
+#: ../../man/man1/man.man1:863
 msgid "To disable this behaviour, use the B<--no-subpages> option."
 msgstr "For at deaktivere denne opførsel så brug tilvalget B<--no-subpages>."
 
 #. type: SS
-#: ../../man/man1/man.man1:859
+#: ../../man/man1/man.man1:870
 #, no-wrap
 msgid "Controlling formatted output"
 msgstr "Kontrol af formateret resultat"
 
 #. type: TP
-#: ../../man/man1/man.man1:860
+#: ../../man/man1/man.man1:871
 #, no-wrap
 msgid "B<-P\\ >I<pager>,\\ B<--pager=>I<pager>"
 msgstr "B<-P\\ >I<tekstviser>,\\ B<--pager=>I<tekstviser>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:876
+#: ../../man/man1/man.man1:887
 msgid ""
 "Specify which output pager to use.  By default, B<%man%> uses B<%pager%>.  "
 "This option overrides the $B<MANPAGER> environment variable, which in turn "
@@ -1705,7 +1740,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:882 ../../man/man1/man.man1:1239
+#: ../../man/man1/man.man1:893 ../../man/man1/man.man1:1250
 msgid ""
 "The value may be a simple command name or a command with arguments, and may "
 "use shell quoting (backslashes, single quotes, or double quotes).  It may "
@@ -1715,20 +1750,20 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:882
+#: ../../man/man1/man.man1:893
 #, no-wrap
 msgid "B<-r\\ >I<prompt>,\\ B<--prompt=>I<prompt>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:890
+#: ../../man/man1/man.man1:901
 msgid ""
 "If a recent version of B<less> is used as the pager, B<%man%> will attempt "
 "to set its prompt and some sensible options.  The default prompt looks like"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:894
+#: ../../man/man1/man.man1:905
 msgid "B<\\ Manual page>I<\\ name>B<(>I<sec>B<)>B<\\ line>I<\\ x>"
 msgstr ""
 
@@ -1737,7 +1772,7 @@ msgstr ""
 #. The actual default will depend on your chosen
 #. .BR locale .
 #. type: Plain text
-#: ../../man/man1/man.man1:909
+#: ../../man/man1/man.man1:920
 msgid ""
 "where I<name> denotes the manual page name, I<sec> denotes the section it "
 "was found under and I<x> the current line number.  This is achieved by using "
@@ -1749,7 +1784,7 @@ msgstr ""
 #. .B less
 #. rejects the default options or if you prefer a different prompt.
 #. type: Plain text
-#: ../../man/man1/man.man1:922
+#: ../../man/man1/man.man1:933
 msgid ""
 "Supplying B<-r> with a string will override this default.  The string may "
 "contain the text B<$MAN_PN> which will be expanded to the name of the "
@@ -1758,22 +1793,22 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:924
+#: ../../man/man1/man.man1:935
 msgid "B<\\e\\ Manual\\e\\ page\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:926
+#: ../../man/man1/man.man1:937
 msgid "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
 msgstr "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:928
+#: ../../man/man1/man.man1:939
 msgid "B<(press h for help or q to quit)>"
 msgstr "B<(tryk h for hjælp eller q for afslut)>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:943
+#: ../../man/man1/man.man1:954
 msgid ""
 "It is broken into three lines here for the sake of readability only.  For "
 "its meaning see the B<less>(1)  manual page.  The prompt string is first "
@@ -1784,14 +1819,14 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:948
+#: ../../man/man1/man.man1:959
 msgid ""
 "The $B<MANLESS> environment variable described below may be used to set a "
 "default prompt string if none is supplied on the command line."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:974
+#: ../../man/man1/man.man1:985
 msgid ""
 "When viewing a pure I<ascii>(7)  manual page on a 7 bit terminal or terminal "
 "emulator, some characters may not display correctly when using the "
@@ -1803,43 +1838,43 @@ msgid ""
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Description"
 msgstr "Beskrivelse"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Octal"
 msgstr "Oktal"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:985
+#: ../../man/man1/man.man1:998
 #, no-wrap
 msgid "continuation hyphen"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:988
+#: ../../man/man1/man.man1:1001
 #, no-wrap
 msgid "bullet (middle dot)"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:991
+#: ../../man/man1/man.man1:1004
 #, no-wrap
 msgid "acute accent"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:994
+#: ../../man/man1/man.man1:1007
 #, no-wrap
 msgid "multiplication sign"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1018
+#: ../../man/man1/man.man1:1029
 msgid ""
 "If the I<latin1> column displays correctly, your terminal may be set up for "
 "I<latin1> characters and this option is not necessary.  If the I<latin1> and "
@@ -1850,20 +1885,20 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 msgid ""
 "This option is ignored when using options B<-t>, B<-H>, B<-T>, or B<-Z> and "
 "may be useless for B<nroff> other than B<GNU's>."
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 #, no-wrap
 msgid "B<-E\\ >I<encoding>,\\ B<--encoding>=I<encoding>"
 msgstr "B<-E\\ >I<kodning>,\\ B<--encoding>=I<kodning>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1040
+#: ../../man/man1/man.man1:1051
 msgid ""
 "Generate output for a character encoding other than the default.  For "
 "backward compatibility, I<encoding> may be an B<nroff> device such as "
@@ -1872,7 +1907,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1049
+#: ../../man/man1/man.man1:1060
 msgid ""
 "Normally, B<nroff> will automatically hyphenate text at line breaks even in "
 "words that do not contain hyphens, if it is necessary to do so to lay out "
@@ -1882,7 +1917,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1058
+#: ../../man/man1/man.man1:1069
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "hyphenating a word at an inappropriate point, do not use this option, but "
@@ -1892,7 +1927,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1065
+#: ../../man/man1/man.man1:1076
 msgid ""
 "Normally, B<nroff> will automatically justify text to both margins.  This "
 "option disables full justification, leaving justified only to the left "
@@ -1900,7 +1935,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "justifying certain paragraphs, do not use this option, but consult the "
@@ -1910,13 +1945,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 #, no-wrap
 msgid "B<-p\\ >I<string>,\\ B<--preprocessor=>I<string>"
 msgstr "B<-p\\ >I<streng>,\\ B<--preprocessor=>I<streng>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1091
+#: ../../man/man1/man.man1:1102
 msgid ""
 "Specify the sequence of preprocessors to run before B<nroff> or B<troff>/"
 "B<groff>.  Not all installations will have a full set of preprocessors.  "
@@ -1927,7 +1962,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 msgid ""
 "Use I<%troff%> to format the manual page to stdout.  This option is not "
 "required in conjunction with B<-H>, B<-T>, or B<-Z>."
@@ -1936,13 +1971,13 @@ msgstr ""
 "ikke krævet sammen med B<-H>, B<-T> eller B<-Z>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 #, no-wrap
 msgid "B<-T>[I<device\\/>], B<--troff-device>[=I<device\\/>]"
 msgstr "B<-T>[I<enhed\\/>], B<--troff-device>[=I<enhed\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 msgid ""
 "This option is used to change B<groff> (or possibly B<troff's>)  output to "
 "be suitable for a device other than the default.  It implies B<-t>.  "
@@ -1955,13 +1990,13 @@ msgstr ""
 "B<latin1>, B<ps>, B<utf8>, B<X75> og B<X100>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 #, no-wrap
 msgid "B<-H>[I<browser\\/>], B<--html>[=I<browser\\/>]"
 msgstr "B<-H>[I<browser\\/>], B<--html>[=I<browser\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 msgid ""
 "This option will cause B<groff> to produce HTML output, and will display "
 "that output in a web browser.  The choice of browser is determined by the "
@@ -1972,13 +2007,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 #, no-wrap
 msgid "B<-X>[I<dpi\\/>], B<--gxditview>[=I<dpi\\/>]"
 msgstr "B<-X>[I<dpi\\/>], B<--gxditview>[=I<dpi\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1143
+#: ../../man/man1/man.man1:1154
 msgid ""
 "This option displays the output of B<groff> in a graphical window using the "
 "B<gxditview> program.  The I<dpi> (dots per inch) may be 75, 75-12, 100, or "
@@ -1988,7 +2023,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 msgid ""
 "B<groff> will run B<troff> and then use an appropriate post-processor to "
 "produce output suitable for the chosen device.  If I<%troff%> is B<groff>, "
@@ -2001,18 +2036,18 @@ msgstr ""
 "af en efterbrænder. B<-t> er underforstået."
 
 #. type: SS
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 #, no-wrap
 msgid "Getting help"
 msgstr "Få hjælp"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1182
+#: ../../man/man1/man.man1:1193
 msgid "A child process returned a non-zero exit status."
 msgstr "En underproces returnerede en afslutningsstatus forskellig fra nul."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1185
+#: ../../man/man1/man.man1:1196
 msgid ""
 "At least one of the pages/files/keywords didn't exist or wasn't matched."
 msgstr ""
@@ -2020,21 +2055,21 @@ msgstr ""
 "matchet."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1192
+#: ../../man/man1/man.man1:1203
 msgid ""
 "If $B<MANPATH> is set, its value is used as the path to search for manual "
 "pages."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1203
+#: ../../man/man1/man.man1:1214
 msgid ""
 "The contents of $B<MANROFFOPT> are added to the command line every time "
 "B<man> invokes the formatter (B<nroff>, B<troff>, or B<groff>)."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1210
+#: ../../man/man1/man.man1:1221
 msgid ""
 "If $B<MANROFFSEQ> is set, its value is used to determine the set of "
 "preprocessors to pass each manual page through.  The default preprocessor "
@@ -2042,7 +2077,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1220 ../../man/man8/catman.man8:88
+#: ../../man/man1/man.man1:1231 ../../man/man8/catman.man8:88
 msgid ""
 "If $B<MANSECT> is set, its value is a colon-delimited list of sections and "
 "it is used to determine which manual sections to search and in what order.  "
@@ -2051,7 +2086,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1233
+#: ../../man/man1/man.man1:1244
 msgid ""
 "If $B<MANPAGER> or $B<PAGER> is set ($B<MANPAGER> is used in preference), "
 "its value is used as the name of the program used to display the manual "
@@ -2059,7 +2094,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1258
+#: ../../man/man1/man.man1:1269
 msgid ""
 "If $B<MANLESS> is set, its value will be used as the default prompt string "
 "for the B<less> pager, as if it had been passed using the B<-r> option (so "
@@ -2070,7 +2105,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1274
+#: ../../man/man1/man.man1:1285
 msgid ""
 "If $B<BROWSER> is set, its value is a colon-delimited list of commands, each "
 "of which in turn is used to try to start a web browser for B<man> B<--"
@@ -2080,7 +2115,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1297
+#: ../../man/man1/man.man1:1308
 msgid ""
 "If $B<MANOPT> is set, it will be parsed prior to B<%man%'s> command line and "
 "is expected to be in a similar format.  As all of the other B<%man%> "
@@ -2091,7 +2126,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1311
+#: ../../man/man1/man.man1:1322
 msgid ""
 "If $B<MANWIDTH> is set, its value is used as the line length for which "
 "manual pages should be formatted.  If it is not set, manual pages will be "
@@ -2103,7 +2138,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1322
+#: ../../man/man1/man.man1:1333
 msgid ""
 "Normally, when output is not being directed to a terminal (such as to a file "
 "or a pipe), formatting characters are discarded to make it easier to read "
@@ -2114,7 +2149,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1335
+#: ../../man/man1/man.man1:1346
 msgid ""
 "Normally, when output is being directed to a terminal (usually to a pager), "
 "any error output from the command used to produce formatted versions of "
@@ -2127,7 +2162,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1347
+#: ../../man/man1/man.man1:1358
 msgid ""
 "Depending on system and implementation, either or both of $B<LANG> and "
 "$B<LC_MESSAGES> will be interrogated for the current message locale.  B<%man"
@@ -2140,36 +2175,36 @@ msgstr ""
 "for mere udførlige detaljer."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1351 ../../man/man1/manpath.man1:128
-#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:198
+#: ../../man/man1/man.man1:1362 ../../man/man1/manpath.man1:128
+#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:195
 msgid "man-db configuration file."
 msgstr "konfigurationsfil for man-db."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1354
+#: ../../man/man1/man.man1:1365
 msgid "A global manual page hierarchy."
 msgstr "Et globalt manualsidehierarki."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 msgid "the man-db package manual, B<FSSTND>"
 msgstr "Manual for pakken man-db, B<FSSTND>"
 
 #. type: SH
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 #, no-wrap
 msgid "HISTORY"
 msgstr "HISTORIK"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1385
+#: ../../man/man1/man.man1:1396
 msgid ""
 "1990, 1991 \\(en Originally written by John W.\\& Eaton (jwe@che.utexas.edu)."
 msgstr ""
 "1990, 1991 \\(en oprindelig skrevet af John W.\\& Eaton (jwe@che.utexas.edu)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1388
+#: ../../man/man1/man.man1:1399
 msgid ""
 "Dec 23 1992: Rik Faith (faith@cs.unc.edu) applied bug fixes supplied by "
 "Willem Kasdorp (wkasdo@nikhefk.nikef.nl)."
@@ -2178,7 +2213,7 @@ msgstr ""
 "Kasdorp (wkasdo@nikhefk.nikef.nl)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1392
+#: ../../man/man1/man.man1:1403
 msgid ""
 "30th April 1994 \\(en 23rd February 2000: Wilf. (G.Wilford@ee.surrey.ac.uk)  "
 "has been developing and maintaining this package with the help of a few "
@@ -2189,7 +2224,7 @@ msgstr ""
 "personer."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1396
+#: ../../man/man1/man.man1:1407
 msgid ""
 "30th October 1996 \\(en 30th March 2001: Fabrizio Polacco "
 "E<lt>fpolacco@debian.orgE<gt> maintained and enhanced this package for the "
@@ -2200,7 +2235,7 @@ msgstr ""
 "hjælp fra hele fællesskabet."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1398
+#: ../../man/man1/man.man1:1409
 msgid ""
 "31st March 2001 \\(en present day: Colin Watson E<lt>cjwatson@debian."
 "orgE<gt> is now developing and maintaining man-db."
@@ -2882,7 +2917,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:216
+#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:213
 msgid "An alternate or FSSTND compliant global I<index> database cache."
 msgstr ""
 
@@ -2985,19 +3020,19 @@ msgid "Berkeley db"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "Binary tree"
 msgstr "Binært træ"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61 ../../man/man8/mandb.man8:64
+#: ../../man/man8/mandb.man8:63 ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "Yes"
 msgstr "Ja"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "I<index.bt>"
 msgstr ""
@@ -3005,18 +3040,17 @@ msgstr ""
 #. type: tbl table
 #: ../../man/man8/mandb.man8:64
 #, no-wrap
-msgid "GNU gdbm v E<gt>= 1.6"
-msgstr "GNU gdbm v E<gt>= 1.6"
+msgid "GNU gdbm"
+msgstr "GNU gdbm"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:66 ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "Hashed"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
+#: ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "I<index.db>"
 msgstr ""
@@ -3024,29 +3058,23 @@ msgstr ""
 #. type: tbl table
 #: ../../man/man8/mandb.man8:67
 #, no-wrap
-msgid "GNU gdbm v E<lt>  1.6"
-msgstr "GNU gdbm v E<lt>  1.6"
+msgid "UNIX ndbm"
+msgstr "UNIX ndbm"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:67 ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "No"
 msgstr "Nej"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:70
-#, no-wrap
-msgid "UNIX ndbm"
-msgstr "UNIX ndbm"
-
-#. type: tbl table
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "I<index.(dir|pag)>"
 msgstr "I<index.(dir|pag)>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:83
+#: ../../man/man8/mandb.man8:80
 msgid ""
 "Those database types that support asynchronous updates provide enhanced "
 "speed at the cost of possible corruption in the event of unusual "
@@ -3061,12 +3089,12 @@ msgstr ""
 "genskabe databaserne fra bunden af."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:90
+#: ../../man/man8/mandb.man8:87
 msgid "Produce no warnings."
 msgstr "Lav ingen advarsler."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:94
+#: ../../man/man8/mandb.man8:91
 msgid ""
 "Do not spend time looking for or adding information to the databases "
 "regarding stray cats."
@@ -3075,14 +3103,14 @@ msgstr ""
 "angående vildfarne katalogsider."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:98
+#: ../../man/man8/mandb.man8:95
 msgid ""
 "Do not spend time checking for deleted manual pages and purging them from "
 "the databases."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:110
+#: ../../man/man8/mandb.man8:107
 msgid ""
 "By default, B<%mandb%> will try to update any previously created databases.  "
 "If a database does not exist, it will create it.  This option forces B<%mandb"
@@ -3092,7 +3120,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:114
+#: ../../man/man8/mandb.man8:111
 msgid ""
 "Create user databases only, even with write permissions necessary to create "
 "system databases."
@@ -3101,7 +3129,7 @@ msgstr ""
 "oprette systemdatabaser."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:120
+#: ../../man/man8/mandb.man8:117
 msgid ""
 "Perform correctness checks on manual pages in the hierarchy search path.  "
 "With this option, B<%mandb%> will not alter existing databases."
@@ -3110,7 +3138,7 @@ msgstr ""
 "dette tilvalg vil B<%mandb%> ikke ændre eksisterende databaser."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:134
+#: ../../man/man8/mandb.man8:131
 msgid ""
 "Update only the entries for the given filename.  This option is not for "
 "general use; it is used internally by B<%man%> when it has been compiled "
@@ -3119,45 +3147,45 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:141
+#: ../../man/man8/mandb.man8:138
 msgid "Show the usage message, then exit."
 msgstr "Vis brugsbeskeden, afslut så."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man8/mandb.man8:144
 msgid "Show the version, then exit."
 msgstr "Vis versionen og afslut."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:154
+#: ../../man/man8/mandb.man8:151
 msgid "Usage, syntax, or configuration file error."
 msgstr "Brugs- syntaks- eller konfigurationsfilfejl."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 msgid "A child process failed."
 msgstr "En underproces mislykkedes."
 
 #. type: SH
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 #, no-wrap
 msgid "DIAGNOSTICS"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 msgid "The following warning messages can be emitted during database building."
 msgstr ""
 "De følgende advarselsbeskeder kan udelades under opbygning af database."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: whatis parse for page(sec) failed>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 msgid ""
 "An attempt to extract whatis line(s) from the given E<lt>filenameE<gt> "
 "failed.  This is usually due to a poorly written manual page, but if many "
@@ -3167,13 +3195,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: is a dangling symlink>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 msgid ""
 "E<lt>filenameE<gt> does not exist but is referenced by a symbolic link.  "
 "Further diagnostics are usually emitted to identify the E<lt>filenameE<gt> "
@@ -3181,26 +3209,26 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: bad symlink or ROFF `.so' request>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 msgid ""
 "E<lt>filenameE<gt> is either a symbolic link to, or contains a ROFF include "
 "request to, a non existent file."
 msgstr ""
 
 #. type: TP
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: ignoring bogus filename>"
 msgstr "B<E<lt>filnavnE<gt>: ignorerer falske filnavne>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 msgid ""
 "The E<lt>filenameE<gt> may or may not be a valid manual page but its name is "
 "invalid.  This is usually due to a manual page with sectional extension "
@@ -3208,13 +3236,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 #, no-wrap
 msgid "B<E<lt>filename_maskE<gt>: competing extensions>"
 msgstr "B<E<lt>filename_maskE<gt>: konkurrerende udvidelser>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:194
+#: ../../man/man8/mandb.man8:191
 msgid ""
 "The wildcard E<lt>filename_maskE<gt> is not unique.  This is usually caused "
 "by the existence of both a compressed and uncompressed version of the same "
@@ -3225,12 +3253,12 @@ msgstr ""
 "Alle undtagen de seneste ignoreres"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:205
+#: ../../man/man8/mandb.man8:202
 msgid "Older locations for the database cache included:"
 msgstr "Tidligere placeringer for databasens mellemlager inkluderede:"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 msgid ""
 "The B<WHATIS PARSING> section formerly in this manual page is now part of "
 "B<lexgrog>(1)."
index 03dc50b..180f9b5 100644 (file)
@@ -15,7 +15,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db-manpages 2.7.0-pre1\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2014-09-16 14:04+0100\n"
+"POT-Creation-Date: 2016-12-11 13:52+0000\n"
 "PO-Revision-Date: 2014-09-18 09:58+0100\n"
 "Last-Translator: Mario Blättermann <mario.blaettermann@gmail.com>\n"
 "Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
@@ -195,10 +195,10 @@ msgstr ""
 # Beschreibung der beiden Optionen nachzulesen.
 #. type: SH
 #: ../../man/man1/apropos.man1:61 ../../man/man1/lexgrog.man1:45
-#: ../../man/man1/man.man1:553 ../../man/man1/manconv.man1:50
+#: ../../man/man1/man.man1:558 ../../man/man1/manconv.man1:50
 #: ../../man/man1/manpath.man1:37 ../../man/man1/whatis.man1:71
 #: ../../man/man1/zsoelim.man1:55 ../../man/man8/accessdb.man8:29
-#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:83
+#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:80
 #, no-wrap
 msgid "OPTIONS"
 msgstr "OPTIONEN"
@@ -211,10 +211,10 @@ msgstr "OPTIONEN"
 # # Für die, die das Repository nicht mit verfolgen: Tobias verwendet eins.
 #. type: Plain text
 #: ../../man/man1/apropos.man1:65 ../../man/man1/lexgrog.man1:49
-#: ../../man/man1/man.man1:567 ../../man/man1/manconv.man1:66
+#: ../../man/man1/man.man1:572 ../../man/man1/manconv.man1:66
 #: ../../man/man1/manpath.man1:44 ../../man/man1/whatis.man1:75
 #: ../../man/man8/accessdb.man8:33 ../../man/man8/catman.man8:59
-#: ../../man/man8/mandb.man8:87
+#: ../../man/man8/mandb.man8:84
 msgid "Print debugging information."
 msgstr "Ausgabe von Debug-Informationen"
 
@@ -317,7 +317,7 @@ msgstr ""
 "speziellen Unterabschnitt gesucht."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:690
+#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:701
 #: ../../man/man1/manpath.man1:66 ../../man/man1/whatis.man1:133
 msgid ""
 "B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|, B<--systems=>I<system>\\|[\\|,.\\|."
@@ -358,7 +358,7 @@ msgstr ""
 "$B<SYSTEM> außer Kraft."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:709
+#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:720
 #: ../../man/man1/whatis.man1:152 ../../man/man8/catman.man8:59
 #, no-wrap
 msgid "B<-M\\ >I<path>,\\ B<--manpath=>I<path>"
@@ -386,7 +386,7 @@ msgstr ""
 "Option überschreibt den Inhalt von $B<MANPATH>."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:660
+#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:671
 #: ../../man/man1/whatis.man1:166
 #, no-wrap
 msgid "B<-L\\ >I<locale>,\\ B<--locale=>I<locale>"
@@ -395,7 +395,7 @@ msgstr "B<-L\\ >I<Locale>,\\ B<--locale=>I<Locale>"
 # #-#-#-#-#  apropos.1.po (man-db 2.5.7)  #-#-#-#-#
 # Statt Ausgaben vielleicht Programm-Meldungen/Meldungen des Programms?
 #. type: Plain text
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:684
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:695
 #: ../../man/man1/whatis.man1:183
 msgid ""
 "B<%program%> will normally determine your current locale by a call to the C "
@@ -416,17 +416,17 @@ msgstr ""
 "Locale angezeigt werden."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:560
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:565
 #: ../../man/man1/manpath.man1:85 ../../man/man1/whatis.man1:183
-#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:134
+#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:131
 #, no-wrap
 msgid "B<-C\\ >I<file>,\\ B<--config-file=>I<file>"
 msgstr "B<-C\\ >I<Datei>,\\ B<--config-file=>I<Datei>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:564
+#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:569
 #: ../../man/man1/manpath.man1:89 ../../man/man1/whatis.man1:187
-#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:138
+#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:135
 msgid ""
 "Use this user configuration file rather than the default of I<~/.manpath>."
 msgstr ""
@@ -435,7 +435,7 @@ msgstr ""
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:186 ../../man/man1/lexgrog.man1:89
-#: ../../man/man1/man.man1:1163 ../../man/man1/manconv.man1:69
+#: ../../man/man1/man.man1:1174 ../../man/man1/manconv.man1:69
 #: ../../man/man1/manpath.man1:92 ../../man/man1/whatis.man1:190
 #: ../../man/man1/zsoelim.man1:67 ../../man/man8/accessdb.man8:36
 #: ../../man/man8/catman.man8:71
@@ -444,9 +444,9 @@ msgstr "Hilfetext anzeigen und beenden"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:189 ../../man/man1/lexgrog.man1:92
-#: ../../man/man1/man.man1:1166 ../../man/man1/manpath.man1:95
+#: ../../man/man1/man.man1:1177 ../../man/man1/manpath.man1:95
 #: ../../man/man1/whatis.man1:193 ../../man/man8/accessdb.man8:39
-#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:144
+#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:141
 msgid "Print a short usage message and exit."
 msgstr ""
 "zeigt eine kurze Anwendungszusammenfassung an und beendet das Programm."
@@ -456,7 +456,7 @@ msgstr ""
 # nicht hervor.
 #. type: Plain text
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1180 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:196
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/accessdb.man8:42
 #: ../../man/man8/catman.man8:77
@@ -467,28 +467,28 @@ msgstr "Versionsinformation anzeigen und beenden"
 # So steht es in der Wortliste.
 #. type: SH
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/whatis.man1:196
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man1/man.man1:1180 ../../man/man1/whatis.man1:196
+#: ../../man/man8/mandb.man8:144
 #, no-wrap
 msgid "EXIT STATUS"
 msgstr "EXIT-STATUS"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:196 ../../man/man1/lexgrog.man1:99
-#: ../../man/man1/man.man1:1173 ../../man/man1/whatis.man1:200
-#: ../../man/man8/mandb.man8:151
+#: ../../man/man1/man.man1:1184 ../../man/man1/whatis.man1:200
+#: ../../man/man8/mandb.man8:148
 msgid "Successful program execution."
 msgstr "erfolgreiche Programmausführung"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1176
+#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1187
 #: ../../man/man1/whatis.man1:203
 msgid "Usage, syntax or configuration file error."
 msgstr "Fehler beim Aufruf, in der Syntax oder in der Konfigurationsdatei"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1179
-#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:157
+#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1190
+#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:154
 msgid "Operational error."
 msgstr "betriebsbedingter Fehler"
 
@@ -503,7 +503,7 @@ msgid "Nothing was found that matched the criteria specified."
 msgstr "keine Ergebnisse für die angegebenen Suchkriterien"
 
 #. type: SH
-#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1185
+#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1196
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:209
 #: ../../man/man8/catman.man8:77
 #, no-wrap
@@ -513,7 +513,7 @@ msgstr "UMGEBUNGSVARIABLEN"
 # #-#-#-#-#  apropos.1.po (man-db 2.5.7)  #-#-#-#-#
 # Was ist gemeint, was ist eine gute Übersetzung?
 #. type: Plain text
-#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1282
+#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1293
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:218
 msgid ""
 "If $B<SYSTEM> is set, it will have the same effect as if it had been "
@@ -562,9 +562,9 @@ msgstr ""
 "ausgeführt. Heutzutage ist dies sowieso das Standardverhalten."
 
 #. type: SH
-#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1347
+#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1358
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:236
-#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:194
+#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:191
 #, no-wrap
 msgid "FILES"
 msgstr "DATEIEN"
@@ -574,17 +574,17 @@ msgstr "DATEIEN"
 # Für mich schon. Mehr als eine Eigenschaft für den Cache.
 # Vielleicht doch Cache statt Zwischenpeicher?
 #. type: Plain text
-#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1359
+#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1370
 #: ../../man/man1/whatis.man1:242 ../../man/man8/catman.man8:103
-#: ../../man/man8/mandb.man8:210
+#: ../../man/man8/mandb.man8:207
 msgid "A traditional global I<index> database cache."
 msgstr "ein traditioneller, globaler Cache für die I<Index>-Datenbank"
 
 # #-#-#-#-#  apropos.1.po (man-db 2.5.7)  #-#-#-#-#
 # Komma s.o.
 #. type: Plain text
-#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1365
-#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:203
+#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1376
+#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:200
 msgid "An FHS compliant global I<index> database cache."
 msgstr "ein FHS-konformer, globaler Cache für die I<Index>-Datenbank"
 
@@ -595,10 +595,10 @@ msgstr "eine traditionelle B<whatis>-Textdatenbank"
 
 #. type: SH
 #: ../../man/man1/apropos.man1:258 ../../man/man1/lexgrog.man1:197
-#: ../../man/man1/man.man1:1365 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1376 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:128 ../../man/man1/whatis.man1:253
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/catman.man8:109
-#: ../../man/man8/mandb.man8:216
+#: ../../man/man8/mandb.man8:213
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "SIEHE AUCH"
@@ -608,7 +608,7 @@ msgstr "SIEHE AUCH"
 #: ../../man/man1/manconv.man1:75 ../../man/man1/manpath.man1:132
 #: ../../man/man1/whatis.man1:257 ../../man/man1/zsoelim.man1:75
 #: ../../man/man8/accessdb.man8:42 ../../man/man8/catman.man8:113
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 #, no-wrap
 msgid "AUTHOR"
 msgstr "AUTOR"
@@ -941,6 +941,19 @@ msgstr "%man% - eine Oberfläche für die Online-Referenzhandbücher"
 #.  The apropos command line
 #. type: Plain text
 #: ../../man/man1/man.man1:67
+#, fuzzy
+#| msgid ""
+#| "B<%man%> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--"
+#| "warnings>\\|[\\|=I<warnings>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-L> "
+#| "I<locale>\\|] [\\|B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|] [\\|B<-M> "
+#| "I<path>\\|] [\\|B<-S> I<list>\\|] [\\|B<-e> I<extension>\\|] [\\|B<-i>\\||"
+#| "\\|B<-I>\\|] [\\|B<--regex>\\||\\|B<--wildcard>\\|] [\\|B<--names-only>"
+#| "\\|] [\\|B<-a>\\|] [\\|B<-u>\\|] [\\|B<--no-subpages>\\|] [\\|B<-P> "
+#| "I<pager>\\|] [\\|B<-r> I<prompt>\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>"
+#| "\\|] [\\|B<--no-hyphenation>\\|] [\\|B<--no-justification>\\|] [\\|B<-p> "
+#| "I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|[\\|I<device>\\|]\\|] [\\|B<-H>\\|"
+#| "[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|"
+#| "[\\|I<section>\\|] I<page>\\ .\\|.\\|.\\|]\\ .\\|.\\|.\\&"
 msgid ""
 "B<%man%> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--warnings>"
 "\\|[\\|=I<warnings>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-L> I<locale>"
@@ -951,8 +964,8 @@ msgid ""
 "\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>\\|] [\\|B<--no-hyphenation>\\|] [\\|"
 "B<--no-justification>\\|] [\\|B<-p> I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|"
 "[\\|I<device>\\|]\\|] [\\|B<-H>\\|[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|"
-"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>\\ .\\|.\\|."
-"\\|]\\ .\\|.\\|.\\&"
+"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>[.\\|I<section>"
+"\\|]\\ \\|.\\|.\\|.\\|]\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> [\\|B<-C> I<Datei>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--warnings>"
 "\\|[\\|=I<Warnungen>\\|]\\|] [\\|B<-R> I<Kodierung>\\|] [\\|B<-L> I<Locale>"
@@ -979,10 +992,10 @@ msgstr ""
 #: ../../man/man1/man.man1:86
 msgid ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<Liste>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<Abschnitt>\\|] I<Terminal>\\ .\\|.\\|."
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<Abschnitt>\\|] I<Terminal>\\ .\\|.\\|."
 "\\&"
 
 #.  The --local command line
@@ -1071,43 +1084,43 @@ msgstr ""
 "und den Typ der dort zu findenden Seiten."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:189
+#: ../../man/man1/man.man1:191
 #, no-wrap
 msgid "Executable programs or shell commands"
 msgstr "Ausführbare Programme oder Shell-Befehle"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:192
+#: ../../man/man1/man.man1:194
 #, no-wrap
 msgid "System calls (functions provided by the kernel)"
 msgstr "Systemaufrufe (Kernel-Funktionen)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:195
+#: ../../man/man1/man.man1:197
 #, no-wrap
 msgid "Library calls (functions within program libraries)"
 msgstr "Bibliotheksaufrufe (Funktionen in Programmbibliotheken)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:198
+#: ../../man/man1/man.man1:200
 #, no-wrap
 msgid "Special files (usually found in I</dev\\/>)"
 msgstr "Spezielle Dateien (gewöhnlich in I</dev\\/>)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:201
+#: ../../man/man1/man.man1:203
 #, no-wrap
 msgid "File formats and conventions eg I</etc/passwd>"
 msgstr "Dateiformate und Konventionen, z. B. I</etc/passwd>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:204
+#: ../../man/man1/man.man1:206
 #, no-wrap
 msgid "Games"
 msgstr "Spiele"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:207
+#: ../../man/man1/man.man1:210
 #, no-wrap
 msgid ""
 "Miscellaneous (including macro packages and conventions),\n"
@@ -1117,13 +1130,13 @@ msgstr ""
 "z. B.\\& B<man>(7), B<groff>(7)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:211
+#: ../../man/man1/man.man1:213
 #, no-wrap
 msgid "System administration commands (usually only for root)"
 msgstr "Befehle für die Systemverwaltung (in der Regel nur für root)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:214
+#: ../../man/man1/man.man1:216
 #, no-wrap
 msgid "Kernel routines [\\|Non standard\\|]"
 msgstr "Kernel-Routinen [\\|nicht Standard\\|]"
@@ -1163,7 +1176,7 @@ msgid "B<bold text>"
 msgstr "B<Fettdruck>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:250
+#: ../../man/man1/man.man1:252
 #, no-wrap
 msgid "type exactly as shown."
 msgstr "genau wie angegeben eingeben"
@@ -1175,7 +1188,7 @@ msgid "I<italic text>"
 msgstr "I<Kursivdruck>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:253
+#: ../../man/man1/man.man1:255
 #, no-wrap
 msgid "replace with appropriate argument."
 msgstr "durch passendes Argument ersetzen"
@@ -1187,7 +1200,7 @@ msgid "[\\|B<-abc>\\|]"
 msgstr "[\\|B<-abc>\\|]"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:256
+#: ../../man/man1/man.man1:258
 #, no-wrap
 msgid "any or all arguments within [ ] are optional."
 msgstr ""
@@ -1201,7 +1214,7 @@ msgid "B<-a\\|>|\\|B<-b>"
 msgstr "B<-a\\|>|\\|B<-b>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:259
+#: ../../man/man1/man.man1:261
 #, no-wrap
 msgid "options delimited by | cannot be used together."
 msgstr ""
@@ -1215,7 +1228,7 @@ msgid "I<argument> .\\|.\\|."
 msgstr "I<Argument> .\\|.\\|."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:262
+#: ../../man/man1/man.man1:264
 #, no-wrap
 msgid "I<argument> is repeatable."
 msgstr "Das I<Argument> kann wiederholt werden."
@@ -1227,7 +1240,7 @@ msgid "[\\|I<expression>\\|] .\\|.\\|."
 msgstr "[\\|I<Ausdruck>\\|] .\\|.\\|."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:265
+#: ../../man/man1/man.man1:267
 #, no-wrap
 msgid "entire I<expression>\\ within [ ] is repeatable."
 msgstr ""
@@ -1271,12 +1284,26 @@ msgstr "Zeigt die Handbuchseite für den I<Begriff> (das Programm) I<ls> an."
 
 #. type: TP
 #: ../../man/man1/man.man1:287
+#, fuzzy, no-wrap
+#| msgid "B<%man%\\ -f>I<\\ smail>"
+msgid "B<%man% >I<man>.I<7>"
+msgstr "B<%man%\\ -f>I<\\ smail>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:292
+#, fuzzy
+#| msgid "Display the manual page for the I<item> (program)  I<ls>."
+msgid "Display the manual page for macro package I<man> from section I<7>."
+msgstr "Zeigt die Handbuchseite für den I<Begriff> (das Programm) I<ls> an."
+
+#. type: TP
+#: ../../man/man1/man.man1:292
 #, no-wrap
 msgid "B<%man%\\ -a>I<\\ intro>"
 msgstr "B<%man%\\ -a>I<\\ intro>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 msgid ""
 "Display, in succession, all of the available I<intro> manual pages contained "
 "within the manual.  It is possible to quit between successive displays or "
@@ -1287,13 +1314,13 @@ msgstr ""
 "beliebige Seiten überspringen."
 
 #. type: TP
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 #, no-wrap
 msgid "B<%man% -t >I<alias >|I< lpr -Pps>"
 msgstr "B<%man% -t >I<Alias >|I< lpr -Pps>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 msgid ""
 "Format the manual page referenced by `I<alias>', usually a shell manual "
 "page, into the default B<troff> or B<groff> format and pipe it to the "
@@ -1308,13 +1335,13 @@ msgstr ""
 "ist."
 
 #. type: TP
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 #, no-wrap
 msgid "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
 msgstr "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 msgid ""
 "This command will decompress and format the nroff source manual page I<./"
 "foo.1x.gz> into a B<device independent (dvi)> file.  The redirection is "
@@ -1330,13 +1357,13 @@ msgstr ""
 "B<dvips> zu PostScript weiterverarbeitet werden."
 
 #. type: TP
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 #, no-wrap
 msgid "B<%man%\\ -k>I<\\ printf>"
 msgstr "B<%man%\\ -k>I<\\ printf>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 msgid ""
 "Search the short descriptions and manual page names for the keyword "
 "I<printf> as regular expression.  Print out any matches.  Equivalent to B<"
@@ -1347,13 +1374,13 @@ msgstr ""
 "Fundstellen aus. Diese Option entspricht B<%apropos%> I<\\ printf>B<.>"
 
 #. type: TP
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 #, no-wrap
 msgid "B<%man%\\ -f>I<\\ smail>"
 msgstr "B<%man%\\ -f>I<\\ smail>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 msgid ""
 "Lookup the manual pages referenced by I<smail> and print out the short "
 "descriptions of any found.  Equivalent to B<%whatis%>I<\\ smail>B<.>"
@@ -1363,13 +1390,13 @@ msgstr ""
 "%apropos%> I<\\ printf>B<.>"
 
 #. type: SH
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 #, no-wrap
 msgid "OVERVIEW"
 msgstr "ÜBERSICHT"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:347
+#: ../../man/man1/man.man1:352
 msgid ""
 "Many options are available to B<%man%> in order to give as much flexibility "
 "as possible to the user.  Changes can be made to the search path, section "
@@ -1382,7 +1409,7 @@ msgstr ""
 "beschrieben."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:369
+#: ../../man/man1/man.man1:374
 msgid ""
 "If set, various environment variables are interrogated to determine the "
 "operation of B<%man%>.  It is possible to set the `catch all' variable "
@@ -1409,7 +1436,7 @@ msgstr ""
 "weiterhin gültig gewesen sein mussten. "
 
 #. type: Plain text
-#: ../../man/man1/man.man1:390
+#: ../../man/man1/man.man1:395
 msgid ""
 "The manual pager utilities packaged as B<man-db> make extensive use of "
 "B<index> database caches.  These caches contain information such as where "
@@ -1433,7 +1460,7 @@ msgstr ""
 #. .B index
 #. caches created `on the fly'.
 #. type: Plain text
-#: ../../man/man1/man.man1:412
+#: ../../man/man1/man.man1:417
 msgid ""
 "If B<%man%> cannot find a B<%mandb%> initiated B<index> database for a "
 "particular manual page hierarchy, it will still search for the requested "
@@ -1452,7 +1479,7 @@ msgstr ""
 # glob,  globfree  -  find pathnames matching a pattern, free memory from
 #       glob()
 #. type: Plain text
-#: ../../man/man1/man.man1:432
+#: ../../man/man1/man.man1:437
 msgid ""
 "These utilities support compressed source nroff files having, by default, "
 "the extensions of B<.Z>, B<.z> and B<.gz>.  It is possible to deal with any "
@@ -1479,7 +1506,7 @@ msgstr ""
 "empfohlen wird, lesen sie den Standard."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:445
+#: ../../man/man1/man.man1:450
 msgid ""
 "International support is available with this package.  Native language "
 "manual pages are accessible (if available on your system)  via use of "
@@ -1498,7 +1525,7 @@ msgstr ""
 
 #.  Need a \c to make sure we don't get a space where we don't want one
 #. type: Plain text
-#: ../../man/man1/man.man1:456
+#: ../../man/man1/man.man1:461
 msgid ""
 "E<lt>I<language>E<gt>[\\|B<_>E<lt>I<territory>E<gt>\\|[\\|B<."
 ">E<lt>I<character-set>E<gt>\\|[\\|B<,>E<lt>I<version>E<gt>\\|]\\|]\\|]"
@@ -1507,7 +1534,7 @@ msgstr ""
 ">E<lt>I<Zeichensatz>E<gt>\\|[\\|B<,>E<lt>I<Version>E<gt>\\|]\\|]\\|]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:461
+#: ../../man/man1/man.man1:466
 msgid ""
 "If the desired page is available in your I<locale>, it will be displayed in "
 "lieu of the standard (usually American English) page."
@@ -1517,7 +1544,7 @@ msgstr ""
 "Standardseite angezeigt."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:468
+#: ../../man/man1/man.man1:473
 msgid ""
 "Support for international message catalogues is also featured in this "
 "package and can be activated in the same way, again if available.  If you "
@@ -1533,7 +1560,7 @@ msgstr ""
 "dann die Übersetzung koordiniert."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 msgid ""
 "For information regarding other features and extensions available with this "
 "manual pager, please read the documents supplied with the package."
@@ -1543,13 +1570,13 @@ msgstr ""
 "verteilten Dokumente."
 
 #. type: SH
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 #, no-wrap
 msgid "DEFAULTS"
 msgstr "VOREINSTELLUNGEN"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:491
+#: ../../man/man1/man.man1:496
 msgid ""
 "B<%man%> will search for the desired manual pages within the I<index> "
 "database caches. If the B<-u> option is given, a cache consistency check is "
@@ -1583,7 +1610,7 @@ msgstr ""
 # eingegangen.
 # FIXME: will fall back to a default is, dritter Satz
 #. type: Plain text
-#: ../../man/man1/man.man1:503
+#: ../../man/man1/man.man1:508
 msgid ""
 "Once a manual page has been located, a check is performed to find out if a "
 "relative preformatted `cat' file already exists and is newer than the nroff "
@@ -1604,7 +1631,7 @@ msgstr ""
 "gefiltert und unverzüglich angezeigt."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:508
+#: ../../man/man1/man.man1:513
 msgid ""
 "If a cat file can be produced (a relative cat directory exists and has "
 "appropriate permissions), B<%man%> will compress and store the cat file in "
@@ -1615,7 +1642,7 @@ msgstr ""
 "im Hintergrund erzeugen und abspeichern."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:520
+#: ../../man/man1/man.man1:525
 msgid ""
 "The filters are deciphered by a number of means.  Firstly, the command line "
 "option B<-p> or the environment variable $B<MANROFFSEQ> is interrogated.  If "
@@ -1631,12 +1658,12 @@ msgstr ""
 "zu enthalten, muss die erste Zeile "
 
 #. type: Plain text
-#: ../../man/man1/man.man1:523
+#: ../../man/man1/man.man1:528
 msgid "B<'\\e\"> E<lt>B<string>E<gt>"
 msgstr "B<'\\e\"> E<lt>B<Zeichenkette>E<gt>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:529
+#: ../../man/man1/man.man1:534
 msgid ""
 "where B<string> can be any combination of letters described by option B<-p> "
 "below."
@@ -1645,7 +1672,7 @@ msgstr ""
 "Buchstabenkombination sein kann."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:532
+#: ../../man/man1/man.man1:537
 msgid ""
 "If none of the above methods provide any filter information, a default set "
 "is used."
@@ -1656,7 +1683,7 @@ msgstr ""
 #  FIXME: [B<tg>]B<roff> / "device"
 #.  ********************************************************************
 #. type: Plain text
-#: ../../man/man1/man.man1:553
+#: ../../man/man1/man.man1:558
 msgid ""
 "A formatting pipeline is formed from the filters and the primary formatter "
 "(B<nroff> or [B<tg>]B<roff> with B<-t>)  and executed.  Alternatively, if an "
@@ -1675,7 +1702,7 @@ msgstr ""
 "übergeben."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 msgid ""
 "Non argument options that are duplicated either on the command line, in "
 "$B<MANOPT>, or both, are not harmful.  For options that require an argument, "
@@ -1686,13 +1713,13 @@ msgstr ""
 "ein Argument benötigen, überschreibt jedes Duplikat den vorhergehenden Wert."
 
 #. type: SS
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 #, no-wrap
 msgid "General options"
 msgstr "Allgemeine Optionen"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 msgid ""
 "This option is normally issued as the very first option and resets B<%man"
 "%'s> behaviour to its default.  Its use is to reset those options that may "
@@ -1706,13 +1733,13 @@ msgstr ""
 "wieder ihren normalen Effekt."
 
 #. type: TP
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 #, no-wrap
 msgid "B<--warnings>[=I<warnings\\/>]"
 msgstr "B<--warnings>[=I<Warnmeldungen\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 msgid ""
 "Enable warnings from I<groff>.  This may be used to perform sanity checks on "
 "the source text of manual pages.  I<warnings> is a comma-separated list of "
@@ -1727,13 +1754,13 @@ msgstr ""
 "Liste verfügbarer Warnungen)."
 
 #. type: SS
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 #, no-wrap
 msgid "Main modes of operation"
 msgstr "Haupt-Betriebsarten"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:598
+#: ../../man/man1/man.man1:603
 msgid ""
 "Equivalent to B<%whatis%>.  Display a short description from the manual "
 "page, if available.  See B<%whatis%>(1)  for details."
@@ -1743,7 +1770,7 @@ msgstr ""
 "Details siehe B<%whatis%>(1)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:607
+#: ../../man/man1/man.man1:612
 msgid ""
 "Equivalent to B<%apropos%>.  Search the short manual page descriptions for "
 "keywords and display any matches.  See B<%apropos%>(1)  for details."
@@ -1753,7 +1780,7 @@ msgstr ""
 "alle Treffer angezeigt. Zu Details siehe B<%apropos%>(1)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:617
+#: ../../man/man1/man.man1:622
 msgid ""
 "Search for text in all manual pages.  This is a brute-force search, and is "
 "likely to take some time; if you can, you should specify a section to reduce "
@@ -1768,12 +1795,20 @@ msgstr ""
 "(Voreinstellung) oder bei Verwendung der Option B<--regex> reguläre "
 "Ausdrücke sein."
 
+#. type: Plain text
+#: ../../man/man1/man.man1:628
+msgid ""
+"Note that this searches the I<sources> of the manual pages, not the rendered "
+"text, and so may include false positives due to things like comments in "
+"source files.  Searching the rendered text would be much slower."
+msgstr ""
+
 # FIXME: B<man>
 #.  Compressed nroff source files with a supported compression
 #.  extension will be decompressed by man prior to being displaying via the
 #.  usual filters.
 #. type: Plain text
-#: ../../man/man1/man.man1:633
+#: ../../man/man1/man.man1:644
 msgid ""
 "Activate `local' mode.  Format and display local manual files instead of "
 "searching through the system's manual collection.  Each manual page argument "
@@ -1794,7 +1829,7 @@ msgstr ""
 "nach einer exakten Übereinstimmung, bevor es eine Fehlermeldung anzeigt."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:637
+#: ../../man/man1/man.man1:648
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "source nroff files that would be formatted."
@@ -1804,7 +1839,7 @@ msgstr ""
 
 # FIXME: Bold forgotten in English text?
 #. type: Plain text
-#: ../../man/man1/man.man1:642
+#: ../../man/man1/man.man1:653
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "cat files that would be displayed.  If -w and -W are both specified, print "
@@ -1815,7 +1850,7 @@ msgstr ""
 "beides, getrennt durch ein Leerzeichen, ausgegeben."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 msgid ""
 "This option is not for general use and should only be used by the B<%catman"
 "%> program."
@@ -1824,13 +1859,13 @@ msgstr ""
 "von dem Programm B<%catman%> verwendet werden."
 
 #. type: TP
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 #, no-wrap
 msgid "B<-R\\ >I<encoding>,\\ B<--recode>=I<encoding>"
 msgstr "B<-R\\ >I<Kodierung>,\\ B<--recode>=I<Kodierung>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 msgid ""
 "Instead of formatting the manual page in the usual way, output its source "
 "converted to the specified I<encoding>.  If you already know the encoding of "
@@ -1848,13 +1883,13 @@ msgstr ""
 "installiert sind."
 
 #. type: SS
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 #, no-wrap
 msgid "Finding manual pages"
 msgstr "Handbuchseiten finden"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:697
+#: ../../man/man1/man.man1:708
 msgid ""
 "If this system has access to other operating system's manual pages, they can "
 "be accessed using this option.  To search for a manual page from NewOS's "
@@ -1866,7 +1901,7 @@ msgstr ""
 "verwenden Sie die Option B<-m> B<NewOS>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:708
+#: ../../man/man1/man.man1:719
 msgid ""
 "The I<system> specified can be a combination of comma delimited operating "
 "system names.  To include a search of the native operating system's manual "
@@ -1880,7 +1915,7 @@ msgstr ""
 "$B<SYSTEM>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:722
+#: ../../man/man1/man.man1:733
 msgid ""
 "Specify an alternate manpath to use.  By default, B<%man%> uses B<%manpath%> "
 "derived code to determine the path to search.  This option overrides the "
@@ -1893,7 +1928,7 @@ msgstr ""
 
 # Das Handbuch ist nicht übersetzt!
 #. type: Plain text
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 msgid ""
 "A path specified as a manpath must be the root of a manual page hierarchy "
 "structured into sections as described in the man-db manual (under \"The "
@@ -1906,13 +1941,13 @@ msgstr ""
 "außerhalb solcher Hierarchien siehe die Option B<-l>)."
 
 #. type: TP
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 #, no-wrap
 msgid "B<-S\\ >I<list>,\\ B<-s\\ >I<list>,\\ B<--sections=>I<list>"
 msgstr "B<-S\\ >I<Liste>,\\ B<-s\\ >I<Liste>,\\ B<--sections=>I<Liste>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 msgid ""
 "List is a colon- or comma-separated list of `order specific' manual sections "
 "to search.  This option overrides the $B<MANSECT> environment variable.  "
@@ -1924,13 +1959,13 @@ msgstr ""
 "s> ist kompatibel mit System V.)"
 
 #. type: TP
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 #, no-wrap
 msgid "B<-e\\ >I<sub-extension>,\\ B<--extension=>I<sub-extension>"
 msgstr "B<-e\\ >I<Unter-Erweiterung>,\\ B<--extension=>I<Unter-Erweiterung>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:773
+#: ../../man/man1/man.man1:784
 msgid ""
 "Some systems incorporate large packages of manual pages, such as those that "
 "accompany the B<Tcl> package, into the main manual page hierarchy.  To get "
@@ -1961,19 +1996,19 @@ msgstr ""
 "beschränken."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:777
+#: ../../man/man1/man.man1:788
 msgid "Ignore case when searching for manual pages.  This is the default."
 msgstr ""
 "bei der Suche nach Handbuchseiten Groß- und Kleinschreibung ignorieren "
 "(Voreinstellung)"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:780
+#: ../../man/man1/man.man1:791
 msgid "Search for manual pages case-sensitively."
 msgstr "Handbuchseiten-Suche unter Beachtung von Groß- und Kleinschreibung"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:790
+#: ../../man/man1/man.man1:801
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument as a regular expression, as with "
@@ -1987,7 +2022,7 @@ msgstr ""
 "impliziert diese Option B<-a>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:805
+#: ../../man/man1/man.man1:816
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument using shell-style wildcards, as with "
@@ -2005,7 +2040,7 @@ msgstr ""
 "impliziert diese Option B<-a>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:814
+#: ../../man/man1/man.man1:825
 msgid ""
 "If the B<--regex> or B<--wildcard> option is used, match only page names, "
 "not page descriptions, as with B<whatis>(1).  Otherwise, no effect."
@@ -2015,7 +2050,7 @@ msgstr ""
 "gesucht, Ansonsten hat diese Option keine Auswirkung."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:822
+#: ../../man/man1/man.man1:833
 msgid ""
 "By default, B<%man%> will exit after displaying the most suitable manual "
 "page it finds.  Using this option forces B<%man%> to display all the manual "
@@ -2026,7 +2061,7 @@ msgstr ""
 "passenden Handbuchseiten nacheinander angezeigt."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:831
+#: ../../man/man1/man.man1:842
 msgid ""
 "This option causes B<%man%> to perform an `inode level' consistency check on "
 "its database caches to ensure that they are an accurate representation of "
@@ -2040,7 +2075,7 @@ msgstr ""
 "gesetzt wurde."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:843
+#: ../../man/man1/man.man1:854
 msgid ""
 "By default, B<%man%> will try to interpret pairs of manual page names given "
 "on the command line as equivalent to a single manual page name containing a "
@@ -2058,24 +2093,24 @@ msgstr ""
 "Beispiel:"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:852
+#: ../../man/man1/man.man1:863
 msgid "To disable this behaviour, use the B<--no-subpages> option."
 msgstr "Dieses Verhalten deaktivieren Sie mit der Option B<--no-subpages>."
 
 #. type: SS
-#: ../../man/man1/man.man1:859
+#: ../../man/man1/man.man1:870
 #, no-wrap
 msgid "Controlling formatted output"
 msgstr "Steuerung der Ausgabeformatierung"
 
 #. type: TP
-#: ../../man/man1/man.man1:860
+#: ../../man/man1/man.man1:871
 #, no-wrap
 msgid "B<-P\\ >I<pager>,\\ B<--pager=>I<pager>"
 msgstr "B<-P\\ >I<Anzeigeprogramm>,\\ B<--pager=>I<Anzeigeprogramm>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:876
+#: ../../man/man1/man.man1:887
 msgid ""
 "Specify which output pager to use.  By default, B<%man%> uses B<%pager%>.  "
 "This option overrides the $B<MANPAGER> environment variable, which in turn "
@@ -2089,7 +2124,7 @@ msgstr ""
 "verwendet."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:882 ../../man/man1/man.man1:1239
+#: ../../man/man1/man.man1:893 ../../man/man1/man.man1:1250
 msgid ""
 "The value may be a simple command name or a command with arguments, and may "
 "use shell quoting (backslashes, single quotes, or double quotes).  It may "
@@ -2105,14 +2140,14 @@ msgstr ""
 "Standardeingabe liest."
 
 #. type: TP
-#: ../../man/man1/man.man1:882
+#: ../../man/man1/man.man1:893
 #, no-wrap
 msgid "B<-r\\ >I<prompt>,\\ B<--prompt=>I<prompt>"
 msgstr "B<-r\\ >I<Prompt>,\\ B<--prompt=>I<Prompt>"
 
 # FIXME: B<less>(1)
 #. type: Plain text
-#: ../../man/man1/man.man1:890
+#: ../../man/man1/man.man1:901
 msgid ""
 "If a recent version of B<less> is used as the pager, B<%man%> will attempt "
 "to set its prompt and some sensible options.  The default prompt looks like"
@@ -2122,7 +2157,7 @@ msgstr ""
 "Standard-Eingabeaufforderung ähnelt"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:894
+#: ../../man/man1/man.man1:905
 msgid "B<\\ Manual page>I<\\ name>B<(>I<sec>B<)>B<\\ line>I<\\ x>"
 msgstr "B<\\ Handbuchseite>I<\\ Name>B<(>I<Abschnitt>B<)>B<\\ Zeile>I<\\ x>"
 
@@ -2131,7 +2166,7 @@ msgstr "B<\\ Handbuchseite>I<\\ Name>B<(>I<Abschnitt>B<)>B<\\ Zeile>I<\\ x>"
 #. The actual default will depend on your chosen
 #. .BR locale .
 #. type: Plain text
-#: ../../man/man1/man.man1:909
+#: ../../man/man1/man.man1:920
 msgid ""
 "where I<name> denotes the manual page name, I<sec> denotes the section it "
 "was found under and I<x> the current line number.  This is achieved by using "
@@ -2146,7 +2181,7 @@ msgstr ""
 #. .B less
 #. rejects the default options or if you prefer a different prompt.
 #. type: Plain text
-#: ../../man/man1/man.man1:922
+#: ../../man/man1/man.man1:933
 msgid ""
 "Supplying B<-r> with a string will override this default.  The string may "
 "contain the text B<$MAN_PN> which will be expanded to the name of the "
@@ -2160,23 +2195,23 @@ msgstr ""
 "Voreinstellung könnte als"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:924
+#: ../../man/man1/man.man1:935
 msgid "B<\\e\\ Manual\\e\\ page\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
 msgstr "B<\\e\\ Manual\\e\\ page\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:926
+#: ../../man/man1/man.man1:937
 msgid "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
 msgstr "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:928
+#: ../../man/man1/man.man1:939
 msgid "B<(press h for help or q to quit)>"
 msgstr "B<h gibt einen Hilfstext aus, q beendet das Programm>"
 
 # FIXME: second less in bold
 #. type: Plain text
-#: ../../man/man1/man.man1:943
+#: ../../man/man1/man.man1:954
 msgid ""
 "It is broken into three lines here for the sake of readability only.  For "
 "its meaning see the B<less>(1)  manual page.  The prompt string is first "
@@ -2195,7 +2230,7 @@ msgstr ""
 "ix8>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:948
+#: ../../man/man1/man.man1:959
 msgid ""
 "The $B<MANLESS> environment variable described below may be used to set a "
 "default prompt string if none is supplied on the command line."
@@ -2207,7 +2242,7 @@ msgstr ""
 # FIXME: ascii bold, sense: when do I know the display is right
 # FIXME: l<latin1>(7)
 #. type: Plain text
-#: ../../man/man1/man.man1:974
+#: ../../man/man1/man.man1:985
 msgid ""
 "When viewing a pure I<ascii>(7)  manual page on a 7 bit terminal or terminal "
 "emulator, some characters may not display correctly when using the "
@@ -2228,43 +2263,43 @@ msgstr ""
 "B<GNU Nroff> verwendet wird."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Description"
 msgstr "Beschreibung"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Octal"
 msgstr "oktal"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:985
+#: ../../man/man1/man.man1:998
 #, no-wrap
 msgid "continuation hyphen"
 msgstr "Bindestrich"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:988
+#: ../../man/man1/man.man1:1001
 #, no-wrap
 msgid "bullet (middle dot)"
 msgstr "Aufzählungszeichen (middle dot)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:991
+#: ../../man/man1/man.man1:1004
 #, no-wrap
 msgid "acute accent"
 msgstr "Accent aigu"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:994
+#: ../../man/man1/man.man1:1007
 #, no-wrap
 msgid "multiplication sign"
 msgstr "Multiplikationszeichen"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1018
+#: ../../man/man1/man.man1:1029
 msgid ""
 "If the I<latin1> column displays correctly, your terminal may be set up for "
 "I<latin1> characters and this option is not necessary.  If the I<latin1> and "
@@ -2282,7 +2317,7 @@ msgstr ""
 "Option ansehen."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 msgid ""
 "This option is ignored when using options B<-t>, B<-H>, B<-T>, or B<-Z> and "
 "may be useless for B<nroff> other than B<GNU's>."
@@ -2292,13 +2327,13 @@ msgstr ""
 "Version von B<Nroff> verwenden."
 
 #. type: TP
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 #, no-wrap
 msgid "B<-E\\ >I<encoding>,\\ B<--encoding>=I<encoding>"
 msgstr "B<-E\\ >I<Kodierung>,\\ B<--encoding>=I<Kodierung>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1040
+#: ../../man/man1/man.man1:1051
 msgid ""
 "Generate output for a character encoding other than the default.  For "
 "backward compatibility, I<encoding> may be an B<nroff> device such as "
@@ -2311,7 +2346,7 @@ msgstr ""
 "wie B<UTF-8> sein."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1049
+#: ../../man/man1/man.man1:1060
 msgid ""
 "Normally, B<nroff> will automatically hyphenate text at line breaks even in "
 "words that do not contain hyphens, if it is necessary to do so to lay out "
@@ -2326,7 +2361,7 @@ msgstr ""
 "enthalten."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1058
+#: ../../man/man1/man.man1:1069
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "hyphenating a word at an inappropriate point, do not use this option, but "
@@ -2342,7 +2377,7 @@ msgstr ""
 "trennbar kennzeichnen."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1065
+#: ../../man/man1/man.man1:1076
 msgid ""
 "Normally, B<nroff> will automatically justify text to both margins.  This "
 "option disables full justification, leaving justified only to the left "
@@ -2353,7 +2388,7 @@ msgstr ""
 "damit an der rechten Seite unterschiedliche Leerräume (»ragged right«)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "justifying certain paragraphs, do not use this option, but consult the "
@@ -2368,13 +2403,13 @@ msgstr ""
 "Ausrichten und Füllen zu deaktivieren."
 
 #. type: TP
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 #, no-wrap
 msgid "B<-p\\ >I<string>,\\ B<--preprocessor=>I<string>"
 msgstr "B<-p\\ >I<Zeichenkette>B<,\\ --preprocessor=>I<Zeichenkette>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1091
+#: ../../man/man1/man.man1:1102
 msgid ""
 "Specify the sequence of preprocessors to run before B<nroff> or B<troff>/"
 "B<groff>.  Not all installations will have a full set of preprocessors.  "
@@ -2392,7 +2427,7 @@ msgstr ""
 "erster gestartet."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 msgid ""
 "Use I<%troff%> to format the manual page to stdout.  This option is not "
 "required in conjunction with B<-H>, B<-T>, or B<-Z>."
@@ -2402,14 +2437,14 @@ msgstr ""
 "B<-T> oder B<-Z> ist diese Option nicht erforderlich."
 
 #. type: TP
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 #, no-wrap
 msgid "B<-T>[I<device\\/>], B<--troff-device>[=I<device\\/>]"
 msgstr "B<-T>[I<Gerät\\/>], B<--troff-device>[=I<Gerät\\/>]"
 
 # FIXME: groff 1.17
 #. type: Plain text
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 msgid ""
 "This option is used to change B<groff> (or possibly B<troff's>)  output to "
 "be suitable for a device other than the default.  It implies B<-t>.  "
@@ -2423,14 +2458,14 @@ msgstr ""
 "B<X75> und B<X100>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 #, no-wrap
 msgid "B<-H>[I<browser\\/>], B<--html>[=I<browser\\/>]"
 msgstr "B<-H>[I<Browser\\/>], B<--html>[=I<Browser\\/>]"
 
 # FIXME: The compile time default should be set, not unset?
 #. type: Plain text
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 msgid ""
 "This option will cause B<groff> to produce HTML output, and will display "
 "that output in a web browser.  The choice of browser is determined by the "
@@ -2447,13 +2482,13 @@ msgstr ""
 "arbeiten."
 
 #. type: TP
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 #, no-wrap
 msgid "B<-X>[I<dpi\\/>], B<--gxditview>[=I<dpi\\/>]"
 msgstr "B<-X>[I<dpi\\/>], B<--gxditview>[=I<dpi\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1143
+#: ../../man/man1/man.man1:1154
 msgid ""
 "This option displays the output of B<groff> in a graphical window using the "
 "B<gxditview> program.  The I<dpi> (dots per inch) may be 75, 75-12, 100, or "
@@ -2468,7 +2503,7 @@ msgstr ""
 "X75-12, X100 oder X100-12 jeweils B<-T>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 msgid ""
 "B<groff> will run B<troff> and then use an appropriate post-processor to "
 "produce output suitable for the chosen device.  If I<%troff%> is B<groff>, "
@@ -2481,18 +2516,18 @@ msgstr ""
 "den Gebrauch eines Postprozessors. Diese Option impliziert B<-t>."
 
 #. type: SS
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 #, no-wrap
 msgid "Getting help"
 msgstr "Hilfe bekommen"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1182
+#: ../../man/man1/man.man1:1193
 msgid "A child process returned a non-zero exit status."
 msgstr "Ein Kind-Prozess gab einen von Null verschiedenen EXIT-Status zurück."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1185
+#: ../../man/man1/man.man1:1196
 msgid ""
 "At least one of the pages/files/keywords didn't exist or wasn't matched."
 msgstr ""
@@ -2500,7 +2535,7 @@ msgstr ""
 "wurden keine Treffer dafür gefunden."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1192
+#: ../../man/man1/man.man1:1203
 msgid ""
 "If $B<MANPATH> is set, its value is used as the path to search for manual "
 "pages."
@@ -2509,7 +2544,7 @@ msgstr ""
 "Handbuchseiten benutzt."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1203
+#: ../../man/man1/man.man1:1214
 msgid ""
 "The contents of $B<MANROFFOPT> are added to the command line every time "
 "B<man> invokes the formatter (B<nroff>, B<troff>, or B<groff>)."
@@ -2519,7 +2554,7 @@ msgstr ""
 "Befehlszeile angehängt."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1210
+#: ../../man/man1/man.man1:1221
 msgid ""
 "If $B<MANROFFSEQ> is set, its value is used to determine the set of "
 "preprocessors to pass each manual page through.  The default preprocessor "
@@ -2531,7 +2566,7 @@ msgstr ""
 "B<tbl> (B<t>)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1220 ../../man/man8/catman.man8:88
+#: ../../man/man1/man.man1:1231 ../../man/man8/catman.man8:88
 msgid ""
 "If $B<MANSECT> is set, its value is a colon-delimited list of sections and "
 "it is used to determine which manual sections to search and in what order.  "
@@ -2545,7 +2580,7 @@ msgstr ""
 "%manpath_config_file%> außer Kraft gesetzt."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1233
+#: ../../man/man1/man.man1:1244
 msgid ""
 "If $B<MANPAGER> or $B<PAGER> is set ($B<MANPAGER> is used in preference), "
 "its value is used as the name of the program used to display the manual "
@@ -2556,7 +2591,7 @@ msgstr ""
 "Standardmäßig wird B<%pager%> verwendet."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1258
+#: ../../man/man1/man.man1:1269
 msgid ""
 "If $B<MANLESS> is set, its value will be used as the default prompt string "
 "for the B<less> pager, as if it had been passed using the B<-r> option (so "
@@ -2575,7 +2610,7 @@ msgstr ""
 "diese Umgebungsvariable außer Kraft gesetzt."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1274
+#: ../../man/man1/man.man1:1285
 msgid ""
 "If $B<BROWSER> is set, its value is a colon-delimited list of commands, each "
 "of which in turn is used to try to start a web browser for B<man> B<--"
@@ -2590,7 +2625,7 @@ msgstr ""
 "Prozentzeichen und I<%c> durch einen Doppelpunkt (:) ersetzt."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1297
+#: ../../man/man1/man.man1:1308
 msgid ""
 "If $B<MANOPT> is set, it will be parsed prior to B<%man%'s> command line and "
 "is expected to be in a similar format.  As all of the other B<%man%> "
@@ -2608,7 +2643,7 @@ msgstr ""
 "Arguments interpretiert werden sollen, geschützt werden."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1311
+#: ../../man/man1/man.man1:1322
 msgid ""
 "If $B<MANWIDTH> is set, its value is used as the line length for which "
 "manual pages should be formatted.  If it is not set, manual pages will be "
@@ -2628,7 +2663,7 @@ msgstr ""
 "Zeilenlänge zwischen zwischen 66 und 80 Zeichen liegt."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1322
+#: ../../man/man1/man.man1:1333
 msgid ""
 "Normally, when output is not being directed to a terminal (such as to a file "
 "or a pipe), formatting characters are discarded to make it easier to read "
@@ -2645,7 +2680,7 @@ msgstr ""
 "%man%> interpretieren und Formatierungszeichen verarbeiten können."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1335
+#: ../../man/man1/man.man1:1346
 msgid ""
 "Normally, when output is being directed to a terminal (usually to a pager), "
 "any error output from the command used to produce formatted versions of "
@@ -2667,7 +2702,7 @@ msgstr ""
 "gewohnt angezeigt werden."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1347
+#: ../../man/man1/man.man1:1358
 msgid ""
 "Depending on system and implementation, either or both of $B<LANG> and "
 "$B<LC_MESSAGES> will be interrogated for the current message locale.  B<%man"
@@ -2680,29 +2715,29 @@ msgstr ""
 "I<Locale> anzeigen. Für genaue Details siehe B<setlocale>(3)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1351 ../../man/man1/manpath.man1:128
-#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:198
+#: ../../man/man1/man.man1:1362 ../../man/man1/manpath.man1:128
+#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:195
 msgid "man-db configuration file."
 msgstr "Konfigurationsdatei für Man-db"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1354
+#: ../../man/man1/man.man1:1365
 msgid "A global manual page hierarchy."
 msgstr "globale Handbuchhierarchie."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 msgid "the man-db package manual, B<FSSTND>"
 msgstr "das Handbuch zum Paket man-db, B<FSSTND>"
 
 #. type: SH
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 #, no-wrap
 msgid "HISTORY"
 msgstr "GESCHICHTE"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1385
+#: ../../man/man1/man.man1:1396
 msgid ""
 "1990, 1991 \\(en Originally written by John W.\\& Eaton (jwe@che.utexas.edu)."
 msgstr ""
@@ -2710,7 +2745,7 @@ msgstr ""
 "Version."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1388
+#: ../../man/man1/man.man1:1399
 msgid ""
 "Dec 23 1992: Rik Faith (faith@cs.unc.edu) applied bug fixes supplied by "
 "Willem Kasdorp (wkasdo@nikhefk.nikef.nl)."
@@ -2719,7 +2754,7 @@ msgstr ""
 "unterstützt durch Willem Kasdorp (wkasdo@nikhefk.nikef.nl)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1392
+#: ../../man/man1/man.man1:1403
 msgid ""
 "30th April 1994 \\(en 23rd February 2000: Wilf. (G.Wilford@ee.surrey.ac.uk)  "
 "has been developing and maintaining this package with the help of a few "
@@ -2730,7 +2765,7 @@ msgstr ""
 "weiterentwickelt und gewartet."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1396
+#: ../../man/man1/man.man1:1407
 msgid ""
 "30th October 1996 \\(en 30th March 2001: Fabrizio Polacco "
 "E<lt>fpolacco@debian.orgE<gt> maintained and enhanced this package for the "
@@ -2741,7 +2776,7 @@ msgstr ""
 "Paket für das Debian-Projekt."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1398
+#: ../../man/man1/man.man1:1409
 msgid ""
 "31st March 2001 \\(en present day: Colin Watson E<lt>cjwatson@debian."
 "orgE<gt> is now developing and maintaining man-db."
@@ -3594,7 +3629,7 @@ msgstr ""
 # #-#-#-#-#  catman.8.po (man-db 2.5.7)  #-#-#-#-#
 # Fehler im Original: alternate?
 #. type: Plain text
-#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:216
+#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:213
 msgid "An alternate or FSSTND compliant global I<index> database cache."
 msgstr ""
 "ein alternativer oder FSSTND-konformer, globaler I<Index>-Datenbank-Cache"
@@ -3712,19 +3747,19 @@ msgid "Berkeley db"
 msgstr "Berkeley-Datenbank"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "Binary tree"
 msgstr "Binärbaum"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61 ../../man/man8/mandb.man8:64
+#: ../../man/man8/mandb.man8:63 ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "Yes"
 msgstr "Ja"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "I<index.bt>"
 msgstr "I<index.bt>"
@@ -3733,18 +3768,17 @@ msgstr "I<index.bt>"
 #. type: tbl table
 #: ../../man/man8/mandb.man8:64
 #, no-wrap
-msgid "GNU gdbm v E<gt>= 1.6"
-msgstr "GNU gdbm v E<gt>= 1.6"
+msgid "GNU gdbm"
+msgstr "GNU gdbm"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:66 ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "Hashed"
 msgstr "Hash-Tabelle"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
+#: ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "I<index.db>"
 msgstr "I<index.db>"
@@ -3752,29 +3786,23 @@ msgstr "I<index.db>"
 #. type: tbl table
 #: ../../man/man8/mandb.man8:67
 #, no-wrap
-msgid "GNU gdbm v E<lt>  1.6"
-msgstr "GNU gdbm v E<lt>  1.6"
+msgid "UNIX ndbm"
+msgstr "UNIX ndbm"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:67 ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "No"
 msgstr "Nein"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:70
-#, no-wrap
-msgid "UNIX ndbm"
-msgstr "UNIX ndbm"
-
-#. type: tbl table
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "I<index.(dir|pag)>"
 msgstr "I<index.(dir|pag)>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:83
+#: ../../man/man8/mandb.man8:80
 msgid ""
 "Those database types that support asynchronous updates provide enhanced "
 "speed at the cost of possible corruption in the event of unusual "
@@ -3790,12 +3818,12 @@ msgstr ""
 "neu zu erstellen."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:90
+#: ../../man/man8/mandb.man8:87
 msgid "Produce no warnings."
 msgstr "keine Warnmeldungen erzeugen"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:94
+#: ../../man/man8/mandb.man8:91
 msgid ""
 "Do not spend time looking for or adding information to the databases "
 "regarding stray cats."
@@ -3804,7 +3832,7 @@ msgstr ""
 "in die Datenbank aufnehmen."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:98
+#: ../../man/man8/mandb.man8:95
 msgid ""
 "Do not spend time checking for deleted manual pages and purging them from "
 "the databases."
@@ -3814,7 +3842,7 @@ msgstr ""
 
 # http://de.wikipedia.org/wiki/Schema_(Informatik)
 #. type: Plain text
-#: ../../man/man8/mandb.man8:110
+#: ../../man/man8/mandb.man8:107
 msgid ""
 "By default, B<%mandb%> will try to update any previously created databases.  "
 "If a database does not exist, it will create it.  This option forces B<%mandb"
@@ -3829,7 +3857,7 @@ msgstr ""
 "Datenbank beschädigt oder das Datenbank-Schema geändert wird. "
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:114
+#: ../../man/man8/mandb.man8:111
 msgid ""
 "Create user databases only, even with write permissions necessary to create "
 "system databases."
@@ -3838,7 +3866,7 @@ msgstr ""
 "systemweite Handbuchhierarchien bestehen."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:120
+#: ../../man/man8/mandb.man8:117
 msgid ""
 "Perform correctness checks on manual pages in the hierarchy search path.  "
 "With this option, B<%mandb%> will not alter existing databases."
@@ -3847,7 +3875,7 @@ msgstr ""
 "dieser Option wird B<%mandb%> keine existierenden Datenbanken ändern."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:134
+#: ../../man/man8/mandb.man8:131
 msgid ""
 "Update only the entries for the given filename.  This option is not for "
 "general use; it is used internally by B<%man%> when it has been compiled "
@@ -3861,46 +3889,46 @@ msgstr ""
 "c> und B<-s> ab."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:141
+#: ../../man/man8/mandb.man8:138
 msgid "Show the usage message, then exit."
 msgstr "Gebrauchsanweisung anzeigen und beenden."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man8/mandb.man8:144
 msgid "Show the version, then exit."
 msgstr "Programmversion anzeigen und beenden."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:154
+#: ../../man/man8/mandb.man8:151
 msgid "Usage, syntax, or configuration file error."
 msgstr "Verwendungs-, Syntax- oder Konfigurationsdateien-Fehler."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 msgid "A child process failed."
 msgstr "Ein Kindprozess ist fehlgeschlagen."
 
 #. type: SH
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 #, no-wrap
 msgid "DIAGNOSTICS"
 msgstr "DIAGNOSE"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 msgid "The following warning messages can be emitted during database building."
 msgstr ""
 "Die folgenden Warnmeldungen können bei der Erstellung der Datenbank "
 "auftreten."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: whatis parse for page(sec) failed>"
 msgstr "B<E<lt>DateinameE<gt>: Whatis-Auswertung für Seite(Abschnitt) fehlgeschlagen>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 msgid ""
 "An attempt to extract whatis line(s) from the given E<lt>filenameE<gt> "
 "failed.  This is usually due to a poorly written manual page, but if many "
@@ -3919,13 +3947,13 @@ msgstr ""
 # Noch erlaubt die Wortliste auch symbolische Links. Und die sind mit
 # sympathischer als Verweise.
 #. type: TP
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: is a dangling symlink>"
 msgstr "B<E<lt>DateinameE<gt>: Ist ein toter symbolischer Link>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 msgid ""
 "E<lt>filenameE<gt> does not exist but is referenced by a symbolic link.  "
 "Further diagnostics are usually emitted to identify the E<lt>filenameE<gt> "
@@ -3936,13 +3964,13 @@ msgstr ""
 "E<lt>DateinamensE<gt> des betreffenden Links."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: bad symlink or ROFF `.so' request>"
 msgstr "B<E<lt>DateinameE<gt>: Schlechter symbolischer Link oder schlechte ROFF».so«-Anfrage>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 msgid ""
 "E<lt>filenameE<gt> is either a symbolic link to, or contains a ROFF include "
 "request to, a non existent file."
@@ -3951,13 +3979,13 @@ msgstr ""
 "ROFF-haltige Anfrage zu einer nicht existierenden Datei."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: ignoring bogus filename>"
 msgstr "B<E<lt>DateinameE<gt>: Schein-Dateiname ignoriert>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 msgid ""
 "The E<lt>filenameE<gt> may or may not be a valid manual page but its name is "
 "invalid.  This is usually due to a manual page with sectional extension "
@@ -3969,13 +3997,13 @@ msgstr ""
 "E<lt>yE<gt> eingefügt wurde."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 #, no-wrap
 msgid "B<E<lt>filename_maskE<gt>: competing extensions>"
 msgstr "B<E<lt>filename_maskE<gt>: Konkurrierende Erweiterungen>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:194
+#: ../../man/man8/mandb.man8:191
 msgid ""
 "The wildcard E<lt>filename_maskE<gt> is not unique.  This is usually caused "
 "by the existence of both a compressed and uncompressed version of the same "
@@ -3987,12 +4015,12 @@ msgstr ""
 "werden ignoriert."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:205
+#: ../../man/man8/mandb.man8:202
 msgid "Older locations for the database cache included:"
 msgstr "Frühere Speicherorte für den Datenbank-Cache waren unter anderen:"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 msgid ""
 "The B<WHATIS PARSING> section formerly in this manual page is now part of "
 "B<lexgrog>(1)."
index 40e1d51..75495b2 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: man-db-manpages 2.7.0-pre1\n"
-"POT-Creation-Date: 2014-09-16 14:04+0100\n"
+"POT-Creation-Date: 2016-12-11 13:52+0000\n"
 "PO-Revision-Date: 2014-11-11 10:34-0400\n"
 "Last-Translator: David Prévot <david@tilapin.org>\n"
 "Language-Team: French <traduc@traduc.org>\n"
@@ -154,20 +154,20 @@ msgstr ""
 
 #. type: SH
 #: ../../man/man1/apropos.man1:61 ../../man/man1/lexgrog.man1:45
-#: ../../man/man1/man.man1:553 ../../man/man1/manconv.man1:50
+#: ../../man/man1/man.man1:558 ../../man/man1/manconv.man1:50
 #: ../../man/man1/manpath.man1:37 ../../man/man1/whatis.man1:71
 #: ../../man/man1/zsoelim.man1:55 ../../man/man8/accessdb.man8:29
-#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:83
+#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:80
 #, no-wrap
 msgid "OPTIONS"
 msgstr "OPTIONS"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:65 ../../man/man1/lexgrog.man1:49
-#: ../../man/man1/man.man1:567 ../../man/man1/manconv.man1:66
+#: ../../man/man1/man.man1:572 ../../man/man1/manconv.man1:66
 #: ../../man/man1/manpath.man1:44 ../../man/man1/whatis.man1:75
 #: ../../man/man8/accessdb.man8:33 ../../man/man8/catman.man8:59
-#: ../../man/man8/mandb.man8:87
+#: ../../man/man8/mandb.man8:84
 msgid "Print debugging information."
 msgstr "Affiche les informations de mise au point."
 
@@ -267,7 +267,7 @@ msgstr ""
 "liste n'inclura que les pages de cette partie de section."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:690
+#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:701
 #: ../../man/man1/manpath.man1:66 ../../man/man1/whatis.man1:133
 msgid ""
 "B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|, B<--systems=>I<system>\\|[\\|,.\\|."
@@ -303,7 +303,7 @@ msgstr ""
 "d'environnement $B<SYSTEM>."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:709
+#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:720
 #: ../../man/man1/whatis.man1:152 ../../man/man8/catman.man8:59
 #, no-wrap
 msgid "B<-M\\ >I<path>,\\ B<--manpath=>I<path>"
@@ -326,14 +326,14 @@ msgstr ""
 "d'environnement $B<PATH>. Cette option remplace le contenu de $B<MANPATH>."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:660
+#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:671
 #: ../../man/man1/whatis.man1:166
 #, no-wrap
 msgid "B<-L\\ >I<locale>,\\ B<--locale=>I<locale>"
 msgstr "B<-L\\ >I<locale>,\\ B<--locale=>I<locale>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:684
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:695
 #: ../../man/man1/whatis.man1:183
 msgid ""
 "B<%program%> will normally determine your current locale by a call to the C "
@@ -355,17 +355,17 @@ msgstr ""
 "déterminée."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:560
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:565
 #: ../../man/man1/manpath.man1:85 ../../man/man1/whatis.man1:183
-#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:134
+#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:131
 #, no-wrap
 msgid "B<-C\\ >I<file>,\\ B<--config-file=>I<file>"
 msgstr "B<-C\\ >I<fichier>,\\ B<--config-file=>I<fichier>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:564
+#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:569
 #: ../../man/man1/manpath.man1:89 ../../man/man1/whatis.man1:187
-#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:138
+#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:135
 msgid ""
 "Use this user configuration file rather than the default of I<~/.manpath>."
 msgstr ""
@@ -374,7 +374,7 @@ msgstr ""
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:186 ../../man/man1/lexgrog.man1:89
-#: ../../man/man1/man.man1:1163 ../../man/man1/manconv.man1:69
+#: ../../man/man1/man.man1:1174 ../../man/man1/manconv.man1:69
 #: ../../man/man1/manpath.man1:92 ../../man/man1/whatis.man1:190
 #: ../../man/man1/zsoelim.man1:67 ../../man/man8/accessdb.man8:36
 #: ../../man/man8/catman.man8:71
@@ -383,15 +383,15 @@ msgstr "Affiche un message d'aide et s'arrête."
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:189 ../../man/man1/lexgrog.man1:92
-#: ../../man/man1/man.man1:1166 ../../man/man1/manpath.man1:95
+#: ../../man/man1/man.man1:1177 ../../man/man1/manpath.man1:95
 #: ../../man/man1/whatis.man1:193 ../../man/man8/accessdb.man8:39
-#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:144
+#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:141
 msgid "Print a short usage message and exit."
 msgstr "Affiche un court mode d'emploi et s'arrête."
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1180 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:196
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/accessdb.man8:42
 #: ../../man/man8/catman.man8:77
@@ -400,28 +400,28 @@ msgstr "Affiche le numéro de version."
 
 #. type: SH
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/whatis.man1:196
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man1/man.man1:1180 ../../man/man1/whatis.man1:196
+#: ../../man/man8/mandb.man8:144
 #, no-wrap
 msgid "EXIT STATUS"
 msgstr "CODE DE RETOUR"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:196 ../../man/man1/lexgrog.man1:99
-#: ../../man/man1/man.man1:1173 ../../man/man1/whatis.man1:200
-#: ../../man/man8/mandb.man8:151
+#: ../../man/man1/man.man1:1184 ../../man/man1/whatis.man1:200
+#: ../../man/man8/mandb.man8:148
 msgid "Successful program execution."
 msgstr "Programme exécuté sans erreur."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1176
+#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1187
 #: ../../man/man1/whatis.man1:203
 msgid "Usage, syntax or configuration file error."
 msgstr "Erreur d'utilisation, de syntaxe ou de fichier de configuration."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1179
-#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:157
+#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1190
+#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:154
 msgid "Operational error."
 msgstr "Erreur d'exécution."
 
@@ -431,7 +431,7 @@ msgid "Nothing was found that matched the criteria specified."
 msgstr "Rien n'a été trouvé selon les critères indiqués."
 
 #. type: SH
-#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1185
+#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1196
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:209
 #: ../../man/man8/catman.man8:77
 #, no-wrap
@@ -439,7 +439,7 @@ msgid "ENVIRONMENT"
 msgstr "ENVIRONNEMENT"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1282
+#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1293
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:218
 msgid ""
 "If $B<SYSTEM> is set, it will have the same effect as if it had been "
@@ -486,23 +486,23 @@ msgstr ""
 "comportement par défaut."
 
 #. type: SH
-#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1347
+#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1358
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:236
-#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:194
+#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:191
 #, no-wrap
 msgid "FILES"
 msgstr "FICHIERS"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1359
+#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1370
 #: ../../man/man1/whatis.man1:242 ../../man/man8/catman.man8:103
-#: ../../man/man8/mandb.man8:210
+#: ../../man/man8/mandb.man8:207
 msgid "A traditional global I<index> database cache."
 msgstr "B<Base de données d'indexation> globale habituelle."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1365
-#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:203
+#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1376
+#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:200
 msgid "An FHS compliant global I<index> database cache."
 msgstr "B<Base de données d'indexation> globale, conforme à FHS."
 
@@ -513,10 +513,10 @@ msgstr "Base de données texte B<whatis> traditionnelle."
 
 #. type: SH
 #: ../../man/man1/apropos.man1:258 ../../man/man1/lexgrog.man1:197
-#: ../../man/man1/man.man1:1365 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1376 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:128 ../../man/man1/whatis.man1:253
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/catman.man8:109
-#: ../../man/man8/mandb.man8:216
+#: ../../man/man8/mandb.man8:213
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "VOIR AUSSI"
@@ -526,7 +526,7 @@ msgstr "VOIR AUSSI"
 #: ../../man/man1/manconv.man1:75 ../../man/man1/manpath.man1:132
 #: ../../man/man1/whatis.man1:257 ../../man/man1/zsoelim.man1:75
 #: ../../man/man8/accessdb.man8:42 ../../man/man8/catman.man8:113
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 #, no-wrap
 msgid "AUTHOR"
 msgstr "AUTEUR"
@@ -855,6 +855,19 @@ msgstr "%man% - Interface de consultation des manuels de référence en ligne"
 #.  The apropos command line
 #. type: Plain text
 #: ../../man/man1/man.man1:67
+#, fuzzy
+#| msgid ""
+#| "B<%man%> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--"
+#| "warnings>\\|[\\|=I<warnings>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-L> "
+#| "I<locale>\\|] [\\|B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|] [\\|B<-M> "
+#| "I<path>\\|] [\\|B<-S> I<list>\\|] [\\|B<-e> I<extension>\\|] [\\|B<-i>\\||"
+#| "\\|B<-I>\\|] [\\|B<--regex>\\||\\|B<--wildcard>\\|] [\\|B<--names-only>"
+#| "\\|] [\\|B<-a>\\|] [\\|B<-u>\\|] [\\|B<--no-subpages>\\|] [\\|B<-P> "
+#| "I<pager>\\|] [\\|B<-r> I<prompt>\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>"
+#| "\\|] [\\|B<--no-hyphenation>\\|] [\\|B<--no-justification>\\|] [\\|B<-p> "
+#| "I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|[\\|I<device>\\|]\\|] [\\|B<-H>\\|"
+#| "[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|"
+#| "[\\|I<section>\\|] I<page>\\ .\\|.\\|.\\|]\\ .\\|.\\|.\\&"
 msgid ""
 "B<%man%> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--warnings>"
 "\\|[\\|=I<warnings>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-L> I<locale>"
@@ -865,8 +878,8 @@ msgid ""
 "\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>\\|] [\\|B<--no-hyphenation>\\|] [\\|"
 "B<--no-justification>\\|] [\\|B<-p> I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|"
 "[\\|I<device>\\|]\\|] [\\|B<-H>\\|[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|"
-"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>\\ .\\|.\\|."
-"\\|]\\ .\\|.\\|.\\&"
+"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>[.\\|I<section>"
+"\\|]\\ \\|.\\|.\\|.\\|]\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> [\\|B<-C> I<fichier>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--"
 "warnings>\\|[\\|=I<avertissements>\\|]\\|] [\\|B<-R> I<encodage>\\|] [\\|B<-"
@@ -893,10 +906,10 @@ msgstr ""
 #: ../../man/man1/man.man1:86
 msgid ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<liste>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
 
 #.  The --local command line
 #. type: Plain text
@@ -981,43 +994,43 @@ msgstr ""
 "le type de pages qu'elles contiennent."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:189
+#: ../../man/man1/man.man1:191
 #, no-wrap
 msgid "Executable programs or shell commands"
 msgstr "Programmes exécutables ou commandes de l'interpréteur de commandes (shell)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:192
+#: ../../man/man1/man.man1:194
 #, no-wrap
 msgid "System calls (functions provided by the kernel)"
 msgstr "Appels système (fonctions fournies par le noyau)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:195
+#: ../../man/man1/man.man1:197
 #, no-wrap
 msgid "Library calls (functions within program libraries)"
 msgstr "Appels de bibliothèque (fonctions fournies par les bibliothèques des programmes)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:198
+#: ../../man/man1/man.man1:200
 #, no-wrap
 msgid "Special files (usually found in I</dev\\/>)"
 msgstr "Fichiers spéciaux (situés généralement dans I</dev\\/>)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:201
+#: ../../man/man1/man.man1:203
 #, no-wrap
 msgid "File formats and conventions eg I</etc/passwd>"
 msgstr "Formats des fichiers et conventions. Par exemple I</etc/passwd>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:204
+#: ../../man/man1/man.man1:206
 #, no-wrap
 msgid "Games"
 msgstr "Jeux"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:207
+#: ../../man/man1/man.man1:210
 #, no-wrap
 msgid ""
 "Miscellaneous (including macro packages and conventions),\n"
@@ -1027,13 +1040,13 @@ msgstr ""
 "par exemple B<man>(7), B<groff>(7)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:211
+#: ../../man/man1/man.man1:213
 #, no-wrap
 msgid "System administration commands (usually only for root)"
 msgstr "Commandes de gestion du système (généralement réservées au superutilisateur)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:214
+#: ../../man/man1/man.man1:216
 #, no-wrap
 msgid "Kernel routines [\\|Non standard\\|]"
 msgstr "Sous-programmes du noyau [\\|hors standard\\|]"
@@ -1073,7 +1086,7 @@ msgid "B<bold text>"
 msgstr "B<texte gras>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:250
+#: ../../man/man1/man.man1:252
 #, no-wrap
 msgid "type exactly as shown."
 msgstr "à taper exactement comme indiqué\\ ;"
@@ -1085,7 +1098,7 @@ msgid "I<italic text>"
 msgstr "I<texte italique>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:253
+#: ../../man/man1/man.man1:255
 #, no-wrap
 msgid "replace with appropriate argument."
 msgstr "à remplacer par l'argument approprié\\ ;"
@@ -1097,7 +1110,7 @@ msgid "[\\|B<-abc>\\|]"
 msgstr "[\\|B<-abc>\\|]"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:256
+#: ../../man/man1/man.man1:258
 #, no-wrap
 msgid "any or all arguments within [ ] are optional."
 msgstr "tous les arguments entre [\\ ] sont facultatifs\\ ;"
@@ -1109,7 +1122,7 @@ msgid "B<-a\\|>|\\|B<-b>"
 msgstr "B<-a\\|>|\\|B<-b>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:259
+#: ../../man/man1/man.man1:261
 #, no-wrap
 msgid "options delimited by | cannot be used together."
 msgstr "les options séparées par | ne peuvent pas être utilisées simultanément\\ ;"
@@ -1121,7 +1134,7 @@ msgid "I<argument> .\\|.\\|."
 msgstr "I<argument> .\\|.\\|."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:262
+#: ../../man/man1/man.man1:264
 #, no-wrap
 msgid "I<argument> is repeatable."
 msgstr "I<argument> peut être répété\\ ;"
@@ -1133,7 +1146,7 @@ msgid "[\\|I<expression>\\|] .\\|.\\|."
 msgstr "[\\|I<expression>\\|] .\\|.\\|."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:265
+#: ../../man/man1/man.man1:267
 #, no-wrap
 msgid "entire I<expression>\\ within [ ] is repeatable."
 msgstr "toute l'I<expression>\\ située à l'intérieur de [\\ ] peut être répétée."
@@ -1175,12 +1188,26 @@ msgstr "Affiche la page de manuel de l'I<élément> (du programme) I<ls>."
 
 #. type: TP
 #: ../../man/man1/man.man1:287
+#, fuzzy, no-wrap
+#| msgid "B<%man%\\ -f>I<\\ smail>"
+msgid "B<%man% >I<man>.I<7>"
+msgstr "B<%man%\\ -f>I<\\ smail>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:292
+#, fuzzy
+#| msgid "Display the manual page for the I<item> (program)  I<ls>."
+msgid "Display the manual page for macro package I<man> from section I<7>."
+msgstr "Affiche la page de manuel de l'I<élément> (du programme) I<ls>."
+
+#. type: TP
+#: ../../man/man1/man.man1:292
 #, no-wrap
 msgid "B<%man%\\ -a>I<\\ intro>"
 msgstr "B<%man%\\ -a>I<\\ intro>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 msgid ""
 "Display, in succession, all of the available I<intro> manual pages contained "
 "within the manual.  It is possible to quit between successive displays or "
@@ -1191,13 +1218,13 @@ msgstr ""
 "ou de sauter n'importe quelle page."
 
 #. type: TP
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 #, no-wrap
 msgid "B<%man% -t >I<alias >|I< lpr -Pps>"
 msgstr "B<%man% -t >I<alias >|I< lpr -Pps>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 msgid ""
 "Format the manual page referenced by `I<alias>', usually a shell manual "
 "page, into the default B<troff> or B<groff> format and pipe it to the "
@@ -1212,13 +1239,13 @@ msgstr ""
 "help> devrait préciser le format associé à l'option B<-t>."
 
 #. type: TP
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 #, no-wrap
 msgid "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
 msgstr "B<%man% -l -T>I<dvi ./toto.1x.gz>B< E<gt> >I<./toto.1x.dvi>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 msgid ""
 "This command will decompress and format the nroff source manual page I<./"
 "foo.1x.gz> into a B<device independent (dvi)> file.  The redirection is "
@@ -1235,13 +1262,13 @@ msgstr ""
 "un programme comme B<dvips>."
 
 #. type: TP
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 #, no-wrap
 msgid "B<%man%\\ -k>I<\\ printf>"
 msgstr "B<%man%\\ -k>I<\\ printf>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 msgid ""
 "Search the short descriptions and manual page names for the keyword "
 "I<printf> as regular expression.  Print out any matches.  Equivalent to B<"
@@ -1253,13 +1280,13 @@ msgstr ""
 "printf>B<.>"
 
 #. type: TP
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 #, no-wrap
 msgid "B<%man%\\ -f>I<\\ smail>"
 msgstr "B<%man%\\ -f>I<\\ smail>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 msgid ""
 "Lookup the manual pages referenced by I<smail> and print out the short "
 "descriptions of any found.  Equivalent to B<%whatis%>I<\\ smail>B<.>"
@@ -1268,13 +1295,13 @@ msgstr ""
 "descriptions courtes. Équivalent à B<%whatis%>I<\\ smail>B<.>"
 
 #. type: SH
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 #, no-wrap
 msgid "OVERVIEW"
 msgstr "VUE D'ENSEMBLE"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:347
+#: ../../man/man1/man.man1:352
 msgid ""
 "Many options are available to B<%man%> in order to give as much flexibility "
 "as possible to the user.  Changes can be made to the search path, section "
@@ -1287,7 +1314,7 @@ msgstr ""
 "ceci est détaillé ci-après."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:369
+#: ../../man/man1/man.man1:374
 msgid ""
 "If set, various environment variables are interrogated to determine the "
 "operation of B<%man%>.  It is possible to set the `catch all' variable "
@@ -1315,7 +1342,7 @@ msgstr ""
 "Toutefois, celles-ci doivent quand même être valides."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:390
+#: ../../man/man1/man.man1:395
 msgid ""
 "The manual pager utilities packaged as B<man-db> make extensive use of "
 "B<index> database caches.  These caches contain information such as where "
@@ -1342,7 +1369,7 @@ msgstr ""
 #. .B index
 #. caches created `on the fly'.
 #. type: Plain text
-#: ../../man/man1/man.man1:412
+#: ../../man/man1/man.man1:417
 msgid ""
 "If B<%man%> cannot find a B<%mandb%> initiated B<index> database for a "
 "particular manual page hierarchy, it will still search for the requested "
@@ -1359,7 +1386,7 @@ msgstr ""
 "depuis une base de données I<whatis> traditionnelle."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:432
+#: ../../man/man1/man.man1:437
 msgid ""
 "These utilities support compressed source nroff files having, by default, "
 "the extensions of B<.Z>, B<.z> and B<.gz>.  It is possible to deal with any "
@@ -1388,7 +1415,7 @@ msgstr ""
 "des précisions sur les raisons de le faire, lire la norme."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:445
+#: ../../man/man1/man.man1:450
 msgid ""
 "International support is available with this package.  Native language "
 "manual pages are accessible (if available on your system)  via use of "
@@ -1407,7 +1434,7 @@ msgstr ""
 
 #.  Need a \c to make sure we don't get a space where we don't want one
 #. type: Plain text
-#: ../../man/man1/man.man1:456
+#: ../../man/man1/man.man1:461
 msgid ""
 "E<lt>I<language>E<gt>[\\|B<_>E<lt>I<territory>E<gt>\\|[\\|B<."
 ">E<lt>I<character-set>E<gt>\\|[\\|B<,>E<lt>I<version>E<gt>\\|]\\|]\\|]"
@@ -1416,7 +1443,7 @@ msgstr ""
 ">E<lt>I<jeu_de_caractères>E<gt>\\|[\\|B<,>E<lt>I<version>E<gt>\\|]\\|]\\|]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:461
+#: ../../man/man1/man.man1:466
 msgid ""
 "If the desired page is available in your I<locale>, it will be displayed in "
 "lieu of the standard (usually American English) page."
@@ -1426,7 +1453,7 @@ msgstr ""
 "écrite le plus souvent dans le dialecte anglo-américain (en_US)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:468
+#: ../../man/man1/man.man1:473
 msgid ""
 "Support for international message catalogues is also featured in this "
 "package and can be activated in the same way, again if available.  If you "
@@ -1442,7 +1469,7 @@ msgstr ""
 "coordonnera cette activité."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 msgid ""
 "For information regarding other features and extensions available with this "
 "manual pager, please read the documents supplied with the package."
@@ -1452,13 +1479,13 @@ msgstr ""
 "programme."
 
 #. type: SH
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 #, no-wrap
 msgid "DEFAULTS"
 msgstr "COMPORTEMENT PAR DÉFAUT"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:491
+#: ../../man/man1/man.man1:496
 msgid ""
 "B<%man%> will search for the desired manual pages within the I<index> "
 "database caches. If the B<-u> option is given, a cache consistency check is "
@@ -1491,7 +1518,7 @@ msgstr ""
 "n'existait."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:503
+#: ../../man/man1/man.man1:508
 msgid ""
 "Once a manual page has been located, a check is performed to find out if a "
 "relative preformatted `cat' file already exists and is newer than the nroff "
@@ -1511,7 +1538,7 @@ msgstr ""
 "divers programmes et affiché immédiatement."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:508
+#: ../../man/man1/man.man1:513
 msgid ""
 "If a cat file can be produced (a relative cat directory exists and has "
 "appropriate permissions), B<%man%> will compress and store the cat file in "
@@ -1522,7 +1549,7 @@ msgstr ""
 "compressera et enregistrera le fichier «\\ cat\\ » en arrière plan."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:520
+#: ../../man/man1/man.man1:525
 msgid ""
 "The filters are deciphered by a number of means.  Firstly, the command line "
 "option B<-p> or the environment variable $B<MANROFFSEQ> is interrogated.  If "
@@ -1538,12 +1565,12 @@ msgstr ""
 "préprocesseur soit valide, la première ligne doit ressembler à\\ :"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:523
+#: ../../man/man1/man.man1:528
 msgid "B<'\\e\"> E<lt>B<string>E<gt>"
 msgstr "B<'\\e\"> E<lt>B<chaîne>E<gt>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:529
+#: ../../man/man1/man.man1:534
 msgid ""
 "where B<string> can be any combination of letters described by option B<-p> "
 "below."
@@ -1552,7 +1579,7 @@ msgstr ""
 "décrite par l'option B<-p> ci-dessous."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:532
+#: ../../man/man1/man.man1:537
 msgid ""
 "If none of the above methods provide any filter information, a default set "
 "is used."
@@ -1562,7 +1589,7 @@ msgstr ""
 
 #.  ********************************************************************
 #. type: Plain text
-#: ../../man/man1/man.man1:553
+#: ../../man/man1/man.man1:558
 msgid ""
 "A formatting pipeline is formed from the filters and the primary formatter "
 "(B<nroff> or [B<tg>]B<roff> with B<-t>)  and executed.  Alternatively, if an "
@@ -1580,7 +1607,7 @@ msgstr ""
 "périphérique indiqué par les arguments de B<-T> ou B<-E>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 msgid ""
 "Non argument options that are duplicated either on the command line, in "
 "$B<MANOPT>, or both, are not harmful.  For options that require an argument, "
@@ -1592,13 +1619,13 @@ msgstr ""
 "donnée à l'argument."
 
 #. type: SS
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 #, no-wrap
 msgid "General options"
 msgstr "Options générales"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 msgid ""
 "This option is normally issued as the very first option and resets B<%man"
 "%'s> behaviour to its default.  Its use is to reset those options that may "
@@ -1612,13 +1639,13 @@ msgstr ""
 "leur effet habituel."
 
 #. type: TP
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 #, no-wrap
 msgid "B<--warnings>[=I<warnings\\/>]"
 msgstr "B<--warnings>[=I<avertissements\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 msgid ""
 "Enable warnings from I<groff>.  This may be used to perform sanity checks on "
 "the source text of manual pages.  I<warnings> is a comma-separated list of "
@@ -1633,13 +1660,13 @@ msgstr ""
 "groff> pour une liste de noms d'avertissement disponibles."
 
 #. type: SS
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 #, no-wrap
 msgid "Main modes of operation"
 msgstr "Modes opératoires principaux"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:598
+#: ../../man/man1/man.man1:603
 msgid ""
 "Equivalent to B<%whatis%>.  Display a short description from the manual "
 "page, if available.  See B<%whatis%>(1)  for details."
@@ -1649,7 +1676,7 @@ msgstr ""
 "précisions."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:607
+#: ../../man/man1/man.man1:612
 msgid ""
 "Equivalent to B<%apropos%>.  Search the short manual page descriptions for "
 "keywords and display any matches.  See B<%apropos%>(1)  for details."
@@ -1659,7 +1686,7 @@ msgstr ""
 "%apropos%>(1) pour obtenir des précisions."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:617
+#: ../../man/man1/man.man1:622
 msgid ""
 "Search for text in all manual pages.  This is a brute-force search, and is "
 "likely to take some time; if you can, you should specify a section to reduce "
@@ -1674,11 +1701,19 @@ msgstr ""
 "(par défaut) ou des expressions rationnelles si l'option B<--regex> est "
 "utilisée."
 
+#. type: Plain text
+#: ../../man/man1/man.man1:628
+msgid ""
+"Note that this searches the I<sources> of the manual pages, not the rendered "
+"text, and so may include false positives due to things like comments in "
+"source files.  Searching the rendered text would be much slower."
+msgstr ""
+
 #.  Compressed nroff source files with a supported compression
 #.  extension will be decompressed by man prior to being displaying via the
 #.  usual filters.
 #. type: Plain text
-#: ../../man/man1/man.man1:633
+#: ../../man/man1/man.man1:644
 msgid ""
 "Activate `local' mode.  Format and display local manual files instead of "
 "searching through the system's manual collection.  Each manual page argument "
@@ -1701,7 +1736,7 @@ msgstr ""
 "actuel."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:637
+#: ../../man/man1/man.man1:648
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "source nroff files that would be formatted."
@@ -1710,7 +1745,7 @@ msgstr ""
 "fichiers source nroff qui auraient dû être mis en forme."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:642
+#: ../../man/man1/man.man1:653
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "cat files that would be displayed.  If -w and -W are both specified, print "
@@ -1721,7 +1756,7 @@ msgstr ""
 "indiqués conjointement, les deux affichages seront séparés par une espace."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 msgid ""
 "This option is not for general use and should only be used by the B<%catman"
 "%> program."
@@ -1730,13 +1765,13 @@ msgstr ""
 "par le programme B<%catman%>."
 
 #. type: TP
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 #, no-wrap
 msgid "B<-R\\ >I<encoding>,\\ B<--recode>=I<encoding>"
 msgstr "B<-R\\ >I<encodage>,\\ B<--recode>=I<encodage>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 msgid ""
 "Instead of formatting the manual page in the usual way, output its source "
 "converted to the specified I<encoding>.  If you already know the encoding of "
@@ -1754,13 +1789,13 @@ msgstr ""
 "la hiérarchie des pages de manuel."
 
 #. type: SS
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 #, no-wrap
 msgid "Finding manual pages"
 msgstr "Trouver des pages de manuel"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:697
+#: ../../man/man1/man.man1:708
 msgid ""
 "If this system has access to other operating system's manual pages, they can "
 "be accessed using this option.  To search for a manual page from NewOS's "
@@ -1772,7 +1807,7 @@ msgstr ""
 "m> I<NouveauSE>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:708
+#: ../../man/man1/man.man1:719
 msgid ""
 "The I<system> specified can be a combination of comma delimited operating "
 "system names.  To include a search of the native operating system's manual "
@@ -1787,7 +1822,7 @@ msgstr ""
 "valeur). Cette option remplace la variable d'environnement $B<SYSTEM>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:722
+#: ../../man/man1/man.man1:733
 msgid ""
 "Specify an alternate manpath to use.  By default, B<%man%> uses B<%manpath%> "
 "derived code to determine the path to search.  This option overrides the "
@@ -1799,7 +1834,7 @@ msgstr ""
 "d'environnement $B<MANPATH> et entraîne l'inefficience de l'option B<-m>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 msgid ""
 "A path specified as a manpath must be the root of a manual page hierarchy "
 "structured into sections as described in the man-db manual (under \"The "
@@ -1813,13 +1848,13 @@ msgstr ""
 "utilisez l'option B<-l>."
 
 #. type: TP
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 #, no-wrap
 msgid "B<-S\\ >I<list>,\\ B<-s\\ >I<list>,\\ B<--sections=>I<list>"
 msgstr "B<-S\\ >I<liste>,\\ B<-s\\ >I<liste>,\\ B<--sections=>I<liste>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 msgid ""
 "List is a colon- or comma-separated list of `order specific' manual sections "
 "to search.  This option overrides the $B<MANSECT> environment variable.  "
@@ -1831,13 +1866,13 @@ msgstr ""
 "compatibilité avec System V)."
 
 #. type: TP
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 #, no-wrap
 msgid "B<-e\\ >I<sub-extension>,\\ B<--extension=>I<sub-extension>"
 msgstr "B<-e\\ >I<sous-extension>,\\ B<--extension=>I<sous-extension>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:773
+#: ../../man/man1/man.man1:784
 msgid ""
 "Some systems incorporate large packages of manual pages, such as those that "
 "accompany the B<Tcl> package, into the main manual page hierarchy.  To get "
@@ -1868,19 +1903,19 @@ msgstr ""
 "limitera la recherche aux pages ayant une extension B<*tcl>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:777
+#: ../../man/man1/man.man1:788
 msgid "Ignore case when searching for manual pages.  This is the default."
 msgstr ""
 "Ignore la casse lors de la recherche de la page de manuel. C'est le "
 "comportement par défaut."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:780
+#: ../../man/man1/man.man1:791
 msgid "Search for manual pages case-sensitively."
 msgstr "Cherche la page de manuel en tenant compte de la casse."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:790
+#: ../../man/man1/man.man1:801
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument as a regular expression, as with "
@@ -1894,7 +1929,7 @@ msgstr ""
 "rationnelle, cette option induit B<-a>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:805
+#: ../../man/man1/man.man1:816
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument using shell-style wildcards, as with "
@@ -1911,7 +1946,7 @@ msgstr ""
 "« meilleure » page lors d'une recherche de joker, cette option induit B<-a>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:814
+#: ../../man/man1/man.man1:825
 msgid ""
 "If the B<--regex> or B<--wildcard> option is used, match only page names, "
 "not page descriptions, as with B<whatis>(1).  Otherwise, no effect."
@@ -1921,7 +1956,7 @@ msgstr ""
 "sans effet sinon."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:822
+#: ../../man/man1/man.man1:833
 msgid ""
 "By default, B<%man%> will exit after displaying the most suitable manual "
 "page it finds.  Using this option forces B<%man%> to display all the manual "
@@ -1932,7 +1967,7 @@ msgstr ""
 "toutes les pages de manuel dont les noms satisfont les critères de recherche."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:831
+#: ../../man/man1/man.man1:842
 msgid ""
 "This option causes B<%man%> to perform an `inode level' consistency check on "
 "its database caches to ensure that they are an accurate representation of "
@@ -1945,7 +1980,7 @@ msgstr ""
 "d'effet que si B<%man%> est installé avec le bit setuid."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:843
+#: ../../man/man1/man.man1:854
 msgid ""
 "By default, B<%man%> will try to interpret pairs of manual page names given "
 "on the command line as equivalent to a single manual page name containing a "
@@ -1963,24 +1998,24 @@ msgstr ""
 "exemple :"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:852
+#: ../../man/man1/man.man1:863
 msgid "To disable this behaviour, use the B<--no-subpages> option."
 msgstr "Pour désactiver ce comportement, utilisez l'option B<--no-subpages> :"
 
 #. type: SS
-#: ../../man/man1/man.man1:859
+#: ../../man/man1/man.man1:870
 #, no-wrap
 msgid "Controlling formatted output"
 msgstr "Contrôle du format d'affichage"
 
 #. type: TP
-#: ../../man/man1/man.man1:860
+#: ../../man/man1/man.man1:871
 #, no-wrap
 msgid "B<-P\\ >I<pager>,\\ B<--pager=>I<pager>"
 msgstr "B<-P\\ >I<afficheur>,\\ B<--pager=>I<afficheur>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:876
+#: ../../man/man1/man.man1:887
 msgid ""
 "Specify which output pager to use.  By default, B<%man%> uses B<%pager%>.  "
 "This option overrides the $B<MANPAGER> environment variable, which in turn "
@@ -1993,7 +2028,7 @@ msgstr ""
 "avec B<-f> ou B<-k>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:882 ../../man/man1/man.man1:1239
+#: ../../man/man1/man.man1:893 ../../man/man1/man.man1:1250
 msgid ""
 "The value may be a simple command name or a command with arguments, and may "
 "use shell quoting (backslashes, single quotes, or double quotes).  It may "
@@ -2009,13 +2044,13 @@ msgstr ""
 "afficher ou l'entrée standard."
 
 #. type: TP
-#: ../../man/man1/man.man1:882
+#: ../../man/man1/man.man1:893
 #, no-wrap
 msgid "B<-r\\ >I<prompt>,\\ B<--prompt=>I<prompt>"
 msgstr "B<-r\\ >I<invite>,\\ B<--prompt=>I<invite>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:890
+#: ../../man/man1/man.man1:901
 msgid ""
 "If a recent version of B<less> is used as the pager, B<%man%> will attempt "
 "to set its prompt and some sensible options.  The default prompt looks like"
@@ -2025,7 +2060,7 @@ msgstr ""
 "ressemble à\\ :"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:894
+#: ../../man/man1/man.man1:905
 msgid "B<\\ Manual page>I<\\ name>B<(>I<sec>B<)>B<\\ line>I<\\ x>"
 msgstr "B<\\ Manual Page>I<\\ nom>B<(>I<section>B<)>B<\\ line>I<\\ x>"
 
@@ -2034,7 +2069,7 @@ msgstr "B<\\ Manual Page>I<\\ nom>B<(>I<section>B<)>B<\\ line>I<\\ x>"
 #. The actual default will depend on your chosen
 #. .BR locale .
 #. type: Plain text
-#: ../../man/man1/man.man1:909
+#: ../../man/man1/man.man1:920
 msgid ""
 "where I<name> denotes the manual page name, I<sec> denotes the section it "
 "was found under and I<x> the current line number.  This is achieved by using "
@@ -2049,7 +2084,7 @@ msgstr ""
 #. .B less
 #. rejects the default options or if you prefer a different prompt.
 #. type: Plain text
-#: ../../man/man1/man.man1:922
+#: ../../man/man1/man.man1:933
 msgid ""
 "Supplying B<-r> with a string will override this default.  The string may "
 "contain the text B<$MAN_PN> which will be expanded to the name of the "
@@ -2063,22 +2098,22 @@ msgstr ""
 "pour obtenir la valeur par défaut ressemble à\\ :"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:924
+#: ../../man/man1/man.man1:935
 msgid "B<\\e\\ Manual\\e\\ page\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
 msgstr "B<\\e\\ Manual\\e\\ page\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:926
+#: ../../man/man1/man.man1:937
 msgid "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
 msgstr "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:928
+#: ../../man/man1/man.man1:939
 msgid "B<(press h for help or q to quit)>"
 msgstr "B<(tapez h pour l'aide ou q pour quitter)>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:943
+#: ../../man/man1/man.man1:954
 msgid ""
 "It is broken into three lines here for the sake of readability only.  For "
 "its meaning see the B<less>(1)  manual page.  The prompt string is first "
@@ -2097,7 +2132,7 @@ msgstr ""
 "de B<less>. Par défaut, B<%man%> utilise l'option B<-ix8>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:948
+#: ../../man/man1/man.man1:959
 msgid ""
 "The $B<MANLESS> environment variable described below may be used to set a "
 "default prompt string if none is supplied on the command line."
@@ -2107,7 +2142,7 @@ msgstr ""
 "sur la ligne de commande."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:974
+#: ../../man/man1/man.man1:985
 msgid ""
 "When viewing a pure I<ascii>(7)  manual page on a 7 bit terminal or terminal "
 "emulator, some characters may not display correctly when using the "
@@ -2128,43 +2163,43 @@ msgstr ""
 "utilisant un périphérique I<latin1> conforme à B<GNU> B<nroff>."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Description"
 msgstr "Description"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Octal"
 msgstr "Octal"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:985
+#: ../../man/man1/man.man1:998
 #, no-wrap
 msgid "continuation hyphen"
 msgstr "trait d'union"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:988
+#: ../../man/man1/man.man1:1001
 #, no-wrap
 msgid "bullet (middle dot)"
 msgstr "point médian"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:991
+#: ../../man/man1/man.man1:1004
 #, no-wrap
 msgid "acute accent"
 msgstr "accent aigu"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:994
+#: ../../man/man1/man.man1:1007
 #, no-wrap
 msgid "multiplication sign"
 msgstr "symbole de multiplication"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1018
+#: ../../man/man1/man.man1:1029
 msgid ""
 "If the I<latin1> column displays correctly, your terminal may be set up for "
 "I<latin1> characters and this option is not necessary.  If the I<latin1> and "
@@ -2181,7 +2216,7 @@ msgstr ""
 "vous devriez utilisez cette option."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 msgid ""
 "This option is ignored when using options B<-t>, B<-H>, B<-T>, or B<-Z> and "
 "may be useless for B<nroff> other than B<GNU's>."
@@ -2190,13 +2225,13 @@ msgstr ""
 "B<-Z> et peut être omise pour les B<nroff> autres que ceux du B<GNU>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 #, no-wrap
 msgid "B<-E\\ >I<encoding>,\\ B<--encoding>=I<encoding>"
 msgstr "B<-E\\ >I<encodage>,\\ B<--encoding>=I<encodage>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1040
+#: ../../man/man1/man.man1:1051
 msgid ""
 "Generate output for a character encoding other than the default.  For "
 "backward compatibility, I<encoding> may be an B<nroff> device such as "
@@ -2209,7 +2244,7 @@ msgstr ""
 "qu'une réelle valeur d'encodage comme B<UTF-8>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1049
+#: ../../man/man1/man.man1:1060
 msgid ""
 "Normally, B<nroff> will automatically hyphenate text at line breaks even in "
 "words that do not contain hyphens, if it is necessary to do so to lay out "
@@ -2224,7 +2259,7 @@ msgstr ""
 "contiennent déjà un trait d'union."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1058
+#: ../../man/man1/man.man1:1069
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "hyphenating a word at an inappropriate point, do not use this option, but "
@@ -2239,7 +2274,7 @@ msgstr ""
 "% » au début d'un mot pour l'empêcher d'être coupé."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1065
+#: ../../man/man1/man.man1:1076
 msgid ""
 "Normally, B<nroff> will automatically justify text to both margins.  This "
 "option disables full justification, leaving justified only to the left "
@@ -2250,7 +2285,7 @@ msgstr ""
 "droite, aussi appelé « drapeau gauche »."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "justifying certain paragraphs, do not use this option, but consult the "
@@ -2265,13 +2300,13 @@ msgstr ""
 "et le remplissage."
 
 #. type: TP
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 #, no-wrap
 msgid "B<-p\\ >I<string>,\\ B<--preprocessor=>I<string>"
 msgstr "B<-p\\ >I<chaîne>,\\ B<--preprocessor=>I<chaîne>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1091
+#: ../../man/man1/man.man1:1102
 msgid ""
 "Specify the sequence of preprocessors to run before B<nroff> or B<troff>/"
 "B<groff>.  Not all installations will have a full set of preprocessors.  "
@@ -2289,7 +2324,7 @@ msgstr ""
 "comme le tout premier préprocesseur."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 msgid ""
 "Use I<%troff%> to format the manual page to stdout.  This option is not "
 "required in conjunction with B<-H>, B<-T>, or B<-Z>."
@@ -2298,13 +2333,13 @@ msgstr ""
 "standard. Cette option n'est pas nécessaire avec B<-H>, B<-T>, ou B<-Z>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 #, no-wrap
 msgid "B<-T>[I<device\\/>], B<--troff-device>[=I<device\\/>]"
 msgstr "B<-T>[I<périphérique\\/>], B<--troff-device>[=I<périphérique\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 msgid ""
 "This option is used to change B<groff> (or possibly B<troff's>)  output to "
 "be suitable for a device other than the default.  It implies B<-t>.  "
@@ -2318,13 +2353,13 @@ msgstr ""
 "B<ps>, B<utf8>, B<X75> et B<X100>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 #, no-wrap
 msgid "B<-H>[I<browser\\/>], B<--html>[=I<browser\\/>]"
 msgstr "B<-H>[I<navigateur\\/>], B<--html>[=I<navigateur\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 msgid ""
 "This option will cause B<groff> to produce HTML output, and will display "
 "that output in a web browser.  The choice of browser is determined by the "
@@ -2341,13 +2376,13 @@ msgstr ""
 "option induit B<-t> et ne fonctionne qu'avec les B<troff> B<GNU>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 #, no-wrap
 msgid "B<-X>[I<dpi\\/>], B<--gxditview>[=I<dpi\\/>]"
 msgstr "B<-X>[I<ppp\\/>], B<--gxditview>[=I<ppp\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1143
+#: ../../man/man1/man.man1:1154
 msgid ""
 "This option displays the output of B<groff> in a graphical window using the "
 "B<gxditview> program.  The I<dpi> (dots per inch) may be 75, 75-12, 100, or "
@@ -2362,7 +2397,7 @@ msgstr ""
 "X75, X75-12, X100 ou X100-12."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 msgid ""
 "B<groff> will run B<troff> and then use an appropriate post-processor to "
 "produce output suitable for the chosen device.  If I<%troff%> is B<groff>, "
@@ -2375,18 +2410,18 @@ msgstr ""
 "postprocesseur ne sera exécuté. Cette option induit B<-t>."
 
 #. type: SS
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 #, no-wrap
 msgid "Getting help"
 msgstr "Obtenir de l'aide"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1182
+#: ../../man/man1/man.man1:1193
 msgid "A child process returned a non-zero exit status."
 msgstr "Un processus fils a produit une valeur de retour non nulle."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1185
+#: ../../man/man1/man.man1:1196
 msgid ""
 "At least one of the pages/files/keywords didn't exist or wasn't matched."
 msgstr ""
@@ -2394,7 +2429,7 @@ msgstr ""
 "ou n'a pas été trouvé."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1192
+#: ../../man/man1/man.man1:1203
 msgid ""
 "If $B<MANPATH> is set, its value is used as the path to search for manual "
 "pages."
@@ -2403,7 +2438,7 @@ msgstr ""
 "recherche des pages de manuel."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1203
+#: ../../man/man1/man.man1:1214
 msgid ""
 "The contents of $B<MANROFFOPT> are added to the command line every time "
 "B<man> invokes the formatter (B<nroff>, B<troff>, or B<groff>)."
@@ -2412,7 +2447,7 @@ msgstr ""
 "que B<man> appelle le processeur de format (B<nroff>, B<troff> ou B<groff>)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1210
+#: ../../man/man1/man.man1:1221
 msgid ""
 "If $B<MANROFFSEQ> is set, its value is used to determine the set of "
 "preprocessors to pass each manual page through.  The default preprocessor "
@@ -2423,7 +2458,7 @@ msgstr ""
 "liste des préprocesseurs est dépendante du système utilisé."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1220 ../../man/man8/catman.man8:88
+#: ../../man/man1/man.man1:1231 ../../man/man8/catman.man8:88
 msgid ""
 "If $B<MANSECT> is set, its value is a colon-delimited list of sections and "
 "it is used to determine which manual sections to search and in what order.  "
@@ -2437,7 +2472,7 @@ msgstr ""
 "%manpath_config_file%>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1233
+#: ../../man/man1/man.man1:1244
 msgid ""
 "If $B<MANPAGER> or $B<PAGER> is set ($B<MANPAGER> is used in preference), "
 "its value is used as the name of the program used to display the manual "
@@ -2448,7 +2483,7 @@ msgstr ""
 "pages de manuel. Par défaut, B<%pager%> est utilisé."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1258
+#: ../../man/man1/man.man1:1269
 msgid ""
 "If $B<MANLESS> is set, its value will be used as the default prompt string "
 "for the B<less> pager, as if it had been passed using the B<-r> option (so "
@@ -2466,7 +2501,7 @@ msgstr ""
 "l’option B<-r> écrasera cette variable d’environnement."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1274
+#: ../../man/man1/man.man1:1285
 msgid ""
 "If $B<BROWSER> is set, its value is a colon-delimited list of commands, each "
 "of which in turn is used to try to start a web browser for B<man> B<--"
@@ -2482,7 +2517,7 @@ msgstr ""
 "par un simple signe «\\ %\\ » et I<%c> est remplacé par «\\ :\\ »."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1297
+#: ../../man/man1/man.man1:1308
 msgid ""
 "If $B<MANOPT> is set, it will be parsed prior to B<%man%'s> command line and "
 "is expected to be in a similar format.  As all of the other B<%man%> "
@@ -2502,7 +2537,7 @@ msgstr ""
 "protégées."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1311
+#: ../../man/man1/man.man1:1322
 msgid ""
 "If $B<MANWIDTH> is set, its value is used as the line length for which "
 "manual pages should be formatted.  If it is not set, manual pages will be "
@@ -2523,7 +2558,7 @@ msgstr ""
 "entre 66 et 80 colonnes."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1322
+#: ../../man/man1/man.man1:1333
 msgid ""
 "Normally, when output is not being directed to a terminal (such as to a file "
 "or a pipe), formatting characters are discarded to make it easier to read "
@@ -2540,7 +2575,7 @@ msgstr ""
 "autour de B<%man%> capable d'interpréter ces caractères de mise en page."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1335
+#: ../../man/man1/man.man1:1346
 msgid ""
 "Normally, when output is being directed to a terminal (usually to a pager), "
 "any error output from the command used to produce formatted versions of "
@@ -2563,7 +2598,7 @@ msgstr ""
 "sera affichée comme d'habitude."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1347
+#: ../../man/man1/man.man1:1358
 msgid ""
 "Depending on system and implementation, either or both of $B<LANG> and "
 "$B<LC_MESSAGES> will be interrogated for the current message locale.  B<%man"
@@ -2576,29 +2611,29 @@ msgstr ""
 "(s'ils sont disponibles). Consultez B<setlocale>(3) pour plus de précisions."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1351 ../../man/man1/manpath.man1:128
-#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:198
+#: ../../man/man1/man.man1:1362 ../../man/man1/manpath.man1:128
+#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:195
 msgid "man-db configuration file."
 msgstr "Fichier de configuration de man-db."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1354
+#: ../../man/man1/man.man1:1365
 msgid "A global manual page hierarchy."
 msgstr "Structure hiérarchique de pages de manuel globale"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 msgid "the man-db package manual, B<FSSTND>"
 msgstr "le manuel du programme man-db, B<FSSTND>"
 
 #. type: SH
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 #, no-wrap
 msgid "HISTORY"
 msgstr "HISTORIQUE"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1385
+#: ../../man/man1/man.man1:1396
 msgid ""
 "1990, 1991 \\(en Originally written by John W.\\& Eaton (jwe@che.utexas.edu)."
 msgstr ""
@@ -2606,7 +2641,7 @@ msgstr ""
 "utexas.edu)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1388
+#: ../../man/man1/man.man1:1399
 msgid ""
 "Dec 23 1992: Rik Faith (faith@cs.unc.edu) applied bug fixes supplied by "
 "Willem Kasdorp (wkasdo@nikhefk.nikef.nl)."
@@ -2615,7 +2650,7 @@ msgstr ""
 "fournis par Willem Kasdorp (wkasdo@nikhefk.nikef.nl)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1392
+#: ../../man/man1/man.man1:1403
 msgid ""
 "30th April 1994 \\(en 23rd February 2000: Wilf. (G.Wilford@ee.surrey.ac.uk)  "
 "has been developing and maintaining this package with the help of a few "
@@ -2626,7 +2661,7 @@ msgstr ""
 "personnes motivées."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1396
+#: ../../man/man1/man.man1:1407
 msgid ""
 "30th October 1996 \\(en 30th March 2001: Fabrizio Polacco "
 "E<lt>fpolacco@debian.orgE<gt> maintained and enhanced this package for the "
@@ -2637,7 +2672,7 @@ msgstr ""
 "Debian avec l'aide de toute la communauté."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1398
+#: ../../man/man1/man.man1:1409
 msgid ""
 "31st March 2001 \\(en present day: Colin Watson E<lt>cjwatson@debian."
 "orgE<gt> is now developing and maintaining man-db."
@@ -3511,7 +3546,7 @@ msgstr ""
 "configuration de man-db."
 
 #. type: Plain text
-#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:216
+#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:213
 msgid "An alternate or FSSTND compliant global I<index> database cache."
 msgstr ""
 "B<Base de données d'indexation> globale de remplacement ou conforme à FSSTND."
@@ -3633,19 +3668,19 @@ msgid "Berkeley db"
 msgstr "Berkeley db"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "Binary tree"
 msgstr "Arbre Binaire"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61 ../../man/man8/mandb.man8:64
+#: ../../man/man8/mandb.man8:63 ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "Yes"
 msgstr "Oui"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "I<index.bt>"
 msgstr "I<index.bt>"
@@ -3653,18 +3688,17 @@ msgstr "I<index.bt>"
 #. type: tbl table
 #: ../../man/man8/mandb.man8:64
 #, no-wrap
-msgid "GNU gdbm v E<gt>= 1.6"
-msgstr "GNU gdbm v E<gt>= 1.6"
+msgid "GNU gdbm"
+msgstr "GNU gdbm"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:66 ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "Hashed"
 msgstr "Hachage"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
+#: ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "I<index.db>"
 msgstr "I<index.db>"
@@ -3672,29 +3706,23 @@ msgstr "I<index.db>"
 #. type: tbl table
 #: ../../man/man8/mandb.man8:67
 #, no-wrap
-msgid "GNU gdbm v E<lt>  1.6"
-msgstr "GNU gdbm v E<lt> 1.6"
+msgid "UNIX ndbm"
+msgstr "UNIX ndbm"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:67 ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "No"
 msgstr "Non"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:70
-#, no-wrap
-msgid "UNIX ndbm"
-msgstr "UNIX ndbm"
-
-#. type: tbl table
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "I<index.(dir|pag)>"
 msgstr "I<index.(dir|pag)>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:83
+#: ../../man/man8/mandb.man8:80
 msgid ""
 "Those database types that support asynchronous updates provide enhanced "
 "speed at the cost of possible corruption in the event of unusual "
@@ -3709,12 +3737,12 @@ msgstr ""
 "bases de données à partir de zéro."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:90
+#: ../../man/man8/mandb.man8:87
 msgid "Produce no warnings."
 msgstr "Ne crée pas d'avertissement."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:94
+#: ../../man/man8/mandb.man8:91
 msgid ""
 "Do not spend time looking for or adding information to the databases "
 "regarding stray cats."
@@ -3723,7 +3751,7 @@ msgstr ""
 "des informations concernant les fichiers «\\ cat\\ » parasites."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:98
+#: ../../man/man8/mandb.man8:95
 msgid ""
 "Do not spend time checking for deleted manual pages and purging them from "
 "the databases."
@@ -3732,7 +3760,7 @@ msgstr ""
 "purger des bases de données."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:110
+#: ../../man/man8/mandb.man8:107
 msgid ""
 "By default, B<%mandb%> will try to update any previously created databases.  "
 "If a database does not exist, it will create it.  This option forces B<%mandb"
@@ -3748,7 +3776,7 @@ msgstr ""
 "un nouveau système de gestion de base de données est implanté à l'avenir."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:114
+#: ../../man/man8/mandb.man8:111
 msgid ""
 "Create user databases only, even with write permissions necessary to create "
 "system databases."
@@ -3758,7 +3786,7 @@ msgstr ""
 "système\\ »."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:120
+#: ../../man/man8/mandb.man8:117
 msgid ""
 "Perform correctness checks on manual pages in the hierarchy search path.  "
 "With this option, B<%mandb%> will not alter existing databases."
@@ -3768,7 +3796,7 @@ msgstr ""
 "%> ne modifie pas les bases de données existantes."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:134
+#: ../../man/man8/mandb.man8:131
 msgid ""
 "Update only the entries for the given filename.  This option is not for "
 "general use; it is used internally by B<%man%> when it has been compiled "
@@ -3782,46 +3810,46 @@ msgstr ""
 "les options B<-c> et B<-s>."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:141
+#: ../../man/man8/mandb.man8:138
 msgid "Show the usage message, then exit."
 msgstr "Affiche un mode d'emploi puis s'arrête."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man8/mandb.man8:144
 msgid "Show the version, then exit."
 msgstr "Affiche la version puis s'arrête."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:154
+#: ../../man/man8/mandb.man8:151
 msgid "Usage, syntax, or configuration file error."
 msgstr "Erreur d'utilisation, de syntaxe ou de fichier de configuration"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 msgid "A child process failed."
 msgstr "Un processus fils a échoué."
 
 #. type: SH
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 #, no-wrap
 msgid "DIAGNOSTICS"
 msgstr "DIAGNOSTICS"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 msgid "The following warning messages can be emitted during database building."
 msgstr ""
 "Les messages d'avertissement suivants peuvent être générés pendant la "
 "construction de la base de données."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: whatis parse for page(sec) failed>"
 msgstr "B<E<lt>nom_de_fichierE<gt>: la recherche de whatis sur page(sec) a échoué>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 msgid ""
 "An attempt to extract whatis line(s) from the given E<lt>filenameE<gt> "
 "failed.  This is usually due to a poorly written manual page, but if many "
@@ -3837,13 +3865,13 @@ msgstr ""
 "section B<ANALYSE WHATIS> de B<lexgrog>(1) pour plus d'informations."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: is a dangling symlink>"
 msgstr "B<E<lt>nom_de_fichierE<gt>: est un lien symbolique flottant>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 msgid ""
 "E<lt>filenameE<gt> does not exist but is referenced by a symbolic link.  "
 "Further diagnostics are usually emitted to identify the E<lt>filenameE<gt> "
@@ -3854,13 +3882,13 @@ msgstr ""
 "identifier le E<lt>nom_de_fichierE<gt> du lien «\\ en l'air\\ »."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: bad symlink or ROFF `.so' request>"
 msgstr "B<E<lt>nom_de_fichierE<gt>: lien symbolique ou directive ROFF .so incorrect>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 msgid ""
 "E<lt>filenameE<gt> is either a symbolic link to, or contains a ROFF include "
 "request to, a non existent file."
@@ -3869,13 +3897,13 @@ msgstr ""
 "ROFF, vers un fichier inexistant."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: ignoring bogus filename>"
 msgstr "B<E<lt>nom_de_fichierE<gt>: nom de fichier erroné, ignoré>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 msgid ""
 "The E<lt>filenameE<gt> may or may not be a valid manual page but its name is "
 "invalid.  This is usually due to a manual page with sectional extension "
@@ -3887,13 +3915,13 @@ msgstr ""
 "des pages de manuel."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 #, no-wrap
 msgid "B<E<lt>filename_maskE<gt>: competing extensions>"
 msgstr "B<E<lt>nom_de_fichier_génériqueE<gt>: extentions en conflit>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:194
+#: ../../man/man8/mandb.man8:191
 msgid ""
 "The wildcard E<lt>filename_maskE<gt> is not unique.  This is usually caused "
 "by the existence of both a compressed and uncompressed version of the same "
@@ -3906,12 +3934,12 @@ msgstr ""
 "exploité."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:205
+#: ../../man/man8/mandb.man8:202
 msgid "Older locations for the database cache included:"
 msgstr "Anciens emplacements du cache de la base de données :"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 msgid ""
 "The B<WHATIS PARSING> section formerly in this manual page is now part of "
 "B<lexgrog>(1)."
index f8fd4f5..29b4501 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: man-db-manpages 2.6.6-pre2\n"
-"POT-Creation-Date: 2014-09-16 14:04+0100\n"
+"POT-Creation-Date: 2016-12-11 13:52+0000\n"
 "PO-Revision-Date: 2014-08-10 09:25+0700\n"
 "Last-Translator: Arif E. Nugroho <arif_endro@yahoo.com>\n"
 "Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\n"
@@ -148,20 +148,20 @@ msgstr ""
 
 #. type: SH
 #: ../../man/man1/apropos.man1:61 ../../man/man1/lexgrog.man1:45
-#: ../../man/man1/man.man1:553 ../../man/man1/manconv.man1:50
+#: ../../man/man1/man.man1:558 ../../man/man1/manconv.man1:50
 #: ../../man/man1/manpath.man1:37 ../../man/man1/whatis.man1:71
 #: ../../man/man1/zsoelim.man1:55 ../../man/man8/accessdb.man8:29
-#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:83
+#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:80
 #, no-wrap
 msgid "OPTIONS"
 msgstr "PILIHAN"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:65 ../../man/man1/lexgrog.man1:49
-#: ../../man/man1/man.man1:567 ../../man/man1/manconv.man1:66
+#: ../../man/man1/man.man1:572 ../../man/man1/manconv.man1:66
 #: ../../man/man1/manpath.man1:44 ../../man/man1/whatis.man1:75
 #: ../../man/man8/accessdb.man8:33 ../../man/man8/catman.man8:59
-#: ../../man/man8/mandb.man8:87
+#: ../../man/man8/mandb.man8:84
 msgid "Print debugging information."
 msgstr "Tampilkan informasi penelusuran."
 
@@ -258,7 +258,7 @@ msgstr ""
 "buku panduan."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:690
+#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:701
 #: ../../man/man1/manpath.man1:66 ../../man/man1/whatis.man1:133
 msgid ""
 "B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|, B<--systems=>I<system>\\|[\\|,.\\|."
@@ -293,7 +293,7 @@ msgstr ""
 "$B<SYSTEM>."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:709
+#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:720
 #: ../../man/man1/whatis.man1:152 ../../man/man8/catman.man8:59
 #, no-wrap
 msgid "B<-M\\ >I<path>,\\ B<--manpath=>I<path>"
@@ -315,14 +315,14 @@ msgstr ""
 "lingkungan anda $B<PATH>. Pilihan ini mengesampingkan isi dari $B<MANPATH>."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:660
+#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:671
 #: ../../man/man1/whatis.man1:166
 #, no-wrap
 msgid "B<-L\\ >I<locale>,\\ B<--locale=>I<locale>"
 msgstr "B<-L\\ >I<lokal>,\\ B<--locale=>I<lokal>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:684
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:695
 #: ../../man/man1/whatis.man1:183
 msgid ""
 "B<%program%> will normally determine your current locale by a call to the C "
@@ -343,24 +343,24 @@ msgstr ""
 "diawal."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:560
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:565
 #: ../../man/man1/manpath.man1:85 ../../man/man1/whatis.man1:183
-#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:134
+#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:131
 #, no-wrap
 msgid "B<-C\\ >I<file>,\\ B<--config-file=>I<file>"
 msgstr "B<-C\\ >I<berkas>,\\ B<--config-file=>I<berkas>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:564
+#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:569
 #: ../../man/man1/manpath.man1:89 ../../man/man1/whatis.man1:187
-#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:138
+#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:135
 msgid ""
 "Use this user configuration file rather than the default of I<~/.manpath>."
 msgstr "Gunakan berkas konfigurasi pengguna ini daripada I<~/.manpath>."
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:186 ../../man/man1/lexgrog.man1:89
-#: ../../man/man1/man.man1:1163 ../../man/man1/manconv.man1:69
+#: ../../man/man1/man.man1:1174 ../../man/man1/manconv.man1:69
 #: ../../man/man1/manpath.man1:92 ../../man/man1/whatis.man1:190
 #: ../../man/man1/zsoelim.man1:67 ../../man/man8/accessdb.man8:36
 #: ../../man/man8/catman.man8:71
@@ -369,15 +369,15 @@ msgstr "Tampilkan sebuah pesan bantuan dan keluar."
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:189 ../../man/man1/lexgrog.man1:92
-#: ../../man/man1/man.man1:1166 ../../man/man1/manpath.man1:95
+#: ../../man/man1/man.man1:1177 ../../man/man1/manpath.man1:95
 #: ../../man/man1/whatis.man1:193 ../../man/man8/accessdb.man8:39
-#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:144
+#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:141
 msgid "Print a short usage message and exit."
 msgstr "Tampilkan sebuah pesan bantuan dan keluar."
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1180 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:196
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/accessdb.man8:42
 #: ../../man/man8/catman.man8:77
@@ -386,28 +386,28 @@ msgstr "Tampilkan informasi versi."
 
 #. type: SH
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/whatis.man1:196
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man1/man.man1:1180 ../../man/man1/whatis.man1:196
+#: ../../man/man8/mandb.man8:144
 #, no-wrap
 msgid "EXIT STATUS"
 msgstr "STATUS KELUAR"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:196 ../../man/man1/lexgrog.man1:99
-#: ../../man/man1/man.man1:1173 ../../man/man1/whatis.man1:200
-#: ../../man/man8/mandb.man8:151
+#: ../../man/man1/man.man1:1184 ../../man/man1/whatis.man1:200
+#: ../../man/man8/mandb.man8:148
 msgid "Successful program execution."
 msgstr "Eksekusi aplikasi sukses."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1176
+#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1187
 #: ../../man/man1/whatis.man1:203
 msgid "Usage, syntax or configuration file error."
 msgstr "Penggunaan, sintaks atau berkas konfigurasi error."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1179
-#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:157
+#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1190
+#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:154
 msgid "Operational error."
 msgstr "Operasional error."
 
@@ -418,7 +418,7 @@ msgstr ""
 "Tidak ditemukan apapun yang cocok dengan kriteria yang dispesifikasikan."
 
 #. type: SH
-#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1185
+#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1196
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:209
 #: ../../man/man8/catman.man8:77
 #, no-wrap
@@ -426,7 +426,7 @@ msgid "ENVIRONMENT"
 msgstr "LINGKUNGAN"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1282
+#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1293
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:218
 msgid ""
 "If $B<SYSTEM> is set, it will have the same effect as if it had been "
@@ -476,23 +476,23 @@ msgstr ""
 "adalah perilaku baku."
 
 #. type: SH
-#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1347
+#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1358
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:236
-#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:194
+#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:191
 #, no-wrap
 msgid "FILES"
 msgstr "BERKAS"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1359
+#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1370
 #: ../../man/man1/whatis.man1:242 ../../man/man8/catman.man8:103
-#: ../../man/man8/mandb.man8:210
+#: ../../man/man8/mandb.man8:207
 msgid "A traditional global I<index> database cache."
 msgstr "Sebuah persediaan basis data I<indeks> menyeluruh tradisional."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1365
-#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:203
+#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1376
+#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:200
 msgid "An FHS compliant global I<index> database cache."
 msgstr "Sebuah persediaan basis data I<indeks> menyeluruh sesuai dengan FHS."
 
@@ -503,10 +503,10 @@ msgstr "Sebuah basis data teks B<whatis> tradisional."
 
 #. type: SH
 #: ../../man/man1/apropos.man1:258 ../../man/man1/lexgrog.man1:197
-#: ../../man/man1/man.man1:1365 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1376 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:128 ../../man/man1/whatis.man1:253
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/catman.man8:109
-#: ../../man/man8/mandb.man8:216
+#: ../../man/man8/mandb.man8:213
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "LIHAT JUGA"
@@ -516,7 +516,7 @@ msgstr "LIHAT JUGA"
 #: ../../man/man1/manconv.man1:75 ../../man/man1/manpath.man1:132
 #: ../../man/man1/whatis.man1:257 ../../man/man1/zsoelim.man1:75
 #: ../../man/man8/accessdb.man8:42 ../../man/man8/catman.man8:113
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 #, no-wrap
 msgid "AUTHOR"
 msgstr "PENGARANG"
@@ -864,8 +864,8 @@ msgid ""
 "\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>\\|] [\\|B<--no-hyphenation>\\|] [\\|"
 "B<--no-justification>\\|] [\\|B<-p> I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|"
 "[\\|I<device>\\|]\\|] [\\|B<-H>\\|[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|"
-"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>\\ .\\|.\\|."
-"\\|]\\ .\\|.\\|.\\&"
+"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>[.\\|I<section>"
+"\\|]\\ \\|.\\|.\\|.\\|]\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> [\\|B<-C> I<berkas>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--"
 "warnings>\\|[\\|=I<peringatan>\\|]\\|] [\\|B<-R> I<pengkodean>\\|] [\\|B<-L> "
@@ -893,13 +893,13 @@ msgstr "B<%man%> B<-k> [\\|I<apropos> I<pilihan>\\|] I<regexp> \\&.\\|.\\|."
 #, fuzzy
 #| msgid ""
 #| "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>"
-#| "\\||\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|."
+#| "\\||\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|."
 msgid ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<daftar>\\|] [\\|B<-i>"
-"\\||\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<bagian>\\|] I<term>\\.\\|.\\|."
+"\\||\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<bagian>\\|] I<term>\\.\\|.\\|."
 
 #.  The --local command line
 #. type: Plain text
@@ -1012,44 +1012,44 @@ msgstr ""
 "tipe dari halaman yang mereka isi."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:189
+#: ../../man/man1/man.man1:191
 #, no-wrap
 msgid "Executable programs or shell commands"
 msgstr "Aplikasi dapat dijalankan atau perintah shell"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:192
+#: ../../man/man1/man.man1:194
 #, no-wrap
 msgid "System calls (functions provided by the kernel)"
 msgstr "Panggilan sistem (fungsi yang disediakan oleh kernel)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:195
+#: ../../man/man1/man.man1:197
 #, no-wrap
 msgid "Library calls (functions within program libraries)"
 msgstr "Panggilan perpustakaan (fungsi yang ada dalam perpustakaan aplikasi)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:198
+#: ../../man/man1/man.man1:200
 #, fuzzy, no-wrap
 #| msgid "Special files (usually found in I</dev>)"
 msgid "Special files (usually found in I</dev\\/>)"
 msgstr "Berkas spesial (biasanya ditemukan dalam I</dev>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:201
+#: ../../man/man1/man.man1:203
 #, no-wrap
 msgid "File formats and conventions eg I</etc/passwd>"
 msgstr "Format berkas dan konvensi contoh: I</etc/passwd>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:204
+#: ../../man/man1/man.man1:206
 #, no-wrap
 msgid "Games"
 msgstr "Permainan"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:207
+#: ../../man/man1/man.man1:210
 #, fuzzy, no-wrap
 #| msgid ""
 #| "Miscellaneous (including macro packages and conventions),\n"
@@ -1062,13 +1062,13 @@ msgstr ""
 "e.g. B<man>(7), B<groff>(7)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:211
+#: ../../man/man1/man.man1:213
 #, no-wrap
 msgid "System administration commands (usually only for root)"
 msgstr "Perintah administrasi sistem (biasanya hanya untuk root)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:214
+#: ../../man/man1/man.man1:216
 #, no-wrap
 msgid "Kernel routines [\\|Non standard\\|]"
 msgstr "Rutinitas kernel [\\|Bukan standar\\|]"
@@ -1107,7 +1107,7 @@ msgid "B<bold text>"
 msgstr "B<bold text>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:250
+#: ../../man/man1/man.man1:252
 #, no-wrap
 msgid "type exactly as shown."
 msgstr "ketik tepat seperti yang terlihat."
@@ -1119,7 +1119,7 @@ msgid "I<italic text>"
 msgstr "I<italic text>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:253
+#: ../../man/man1/man.man1:255
 #, no-wrap
 msgid "replace with appropriate argument."
 msgstr "ganti dengan argumen yang sesuai."
@@ -1131,7 +1131,7 @@ msgid "[\\|B<-abc>\\|]"
 msgstr "[\\|B<-abc>\\|]"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:256
+#: ../../man/man1/man.man1:258
 #, no-wrap
 msgid "any or all arguments within [ ] are optional."
 msgstr "apapun atau seluruh argumen didalam [ ] adalah opsional."
@@ -1143,7 +1143,7 @@ msgid "B<-a\\|>|\\|B<-b>"
 msgstr "B<-a\\|>|\\|B<-b>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:259
+#: ../../man/man1/man.man1:261
 #, no-wrap
 msgid "options delimited by | cannot be used together."
 msgstr "pilihan dipisahkan oleh | tidak dapat digunakan bersama."
@@ -1155,7 +1155,7 @@ msgid "I<argument> .\\|.\\|."
 msgstr "I<argument> .\\|.\\|"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:262
+#: ../../man/man1/man.man1:264
 #, no-wrap
 msgid "I<argument> is repeatable."
 msgstr "I<argumen> adalah dapat diulang."
@@ -1167,7 +1167,7 @@ msgid "[\\|I<expression>\\|] .\\|.\\|."
 msgstr "[\\|I<expression>\\|] .\\|.\\|."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:265
+#: ../../man/man1/man.man1:267
 #, no-wrap
 msgid "entire I<expression>\\ within [ ] is repeatable."
 msgstr "seluruh I<ekspresi>\\ didalam [ ] adalah dapat diulang."
@@ -1210,12 +1210,26 @@ msgstr "Tampilkan halaman buku panduan untuk (aplikasi) I<item> I<ls>."
 
 #. type: TP
 #: ../../man/man1/man.man1:287
+#, fuzzy, no-wrap
+#| msgid "B<%man%\\ -f>I<\\ smail>"
+msgid "B<%man% >I<man>.I<7>"
+msgstr "B<%man%\\ -f>I<\\ smail>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:292
+#, fuzzy
+#| msgid "Display the manual page for the I<item> (program)  I<ls>."
+msgid "Display the manual page for macro package I<man> from section I<7>."
+msgstr "Tampilkan halaman buku panduan untuk (aplikasi) I<item> I<ls>."
+
+#. type: TP
+#: ../../man/man1/man.man1:292
 #, no-wrap
 msgid "B<%man%\\ -a>I<\\ intro>"
 msgstr "B<%man%\\ -a>I<\\ intro>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 msgid ""
 "Display, in succession, all of the available I<intro> manual pages contained "
 "within the manual.  It is possible to quit between successive displays or "
@@ -1226,13 +1240,13 @@ msgstr ""
 "diantara penampilan atau lewati beberapa dari itu."
 
 #. type: TP
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 #, no-wrap
 msgid "B<%man% -t >I<alias >|I< lpr -Pps>"
 msgstr "B<%man% -t >I<alias >|I< lpr -Pps>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 msgid ""
 "Format the manual page referenced by `I<alias>', usually a shell manual "
 "page, into the default B<troff> or B<groff> format and pipe it to the "
@@ -1247,14 +1261,14 @@ msgstr ""
 "ke pilihan B<-t>."
 
 #. type: TP
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 #, fuzzy, no-wrap
 #| msgid "B<%man%\\ -l\\ -T>I<dvi\\ ./foo.1x.gz>B<\\ E<gt>\\ >I<./foo.1x.dvi>"
 msgid "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
 msgstr "B<%man%\\ -l\\ -T>I<dvi\\ ./foo.1x.gz>B<\\ E<gt>\\ >I<./foo.1x.dvi>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 msgid ""
 "This command will decompress and format the nroff source manual page I<./"
 "foo.1x.gz> into a B<device independent (dvi)> file.  The redirection is "
@@ -1270,13 +1284,13 @@ msgstr ""
 "menggunakan sebuah aplikasi seperti B<dvips.>"
 
 #. type: TP
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 #, no-wrap
 msgid "B<%man%\\ -k>I<\\ printf>"
 msgstr "B<%man%\\ -k>I<\\ printf>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 msgid ""
 "Search the short descriptions and manual page names for the keyword "
 "I<printf> as regular expression.  Print out any matches.  Equivalent to B<"
@@ -1287,13 +1301,13 @@ msgstr ""
 "%apropos%>I<\\ printf>B<.>"
 
 #. type: TP
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 #, no-wrap
 msgid "B<%man%\\ -f>I<\\ smail>"
 msgstr "B<%man%\\ -f>I<\\ smail>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 msgid ""
 "Lookup the manual pages referenced by I<smail> and print out the short "
 "descriptions of any found.  Equivalent to B<%whatis%>I<\\ smail>B<.>"
@@ -1303,13 +1317,13 @@ msgstr ""
 "smail>B<.>"
 
 #. type: SH
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 #, no-wrap
 msgid "OVERVIEW"
 msgstr "OVERVIEW"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:347
+#: ../../man/man1/man.man1:352
 msgid ""
 "Many options are available to B<%man%> in order to give as much flexibility "
 "as possible to the user.  Changes can be made to the search path, section "
@@ -1321,7 +1335,7 @@ msgstr ""
 "operasi detail dibawah."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:369
+#: ../../man/man1/man.man1:374
 msgid ""
 "If set, various environment variables are interrogated to determine the "
 "operation of B<%man%>.  It is possible to set the `catch all' variable "
@@ -1347,7 +1361,7 @@ msgstr ""
 "dispesifikasikan dalam $B<MANOPT> walaupun mereka tetap harus valid."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:390
+#: ../../man/man1/man.man1:395
 msgid ""
 "The manual pager utilities packaged as B<man-db> make extensive use of "
 "B<index> database caches.  These caches contain information such as where "
@@ -1373,7 +1387,7 @@ msgstr ""
 #. .B index
 #. caches created `on the fly'.
 #. type: Plain text
-#: ../../man/man1/man.man1:412
+#: ../../man/man1/man.man1:417
 msgid ""
 "If B<%man%> cannot find a B<%mandb%> initiated B<index> database for a "
 "particular manual page hierarchy, it will still search for the requested "
@@ -1389,7 +1403,7 @@ msgstr ""
 "untuk mengekstrak informasi dari sebuah basis data tradisional I<whatis>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:432
+#: ../../man/man1/man.man1:437
 msgid ""
 "These utilities support compressed source nroff files having, by default, "
 "the extensions of B<.Z>, B<.z> and B<.gz>.  It is possible to deal with any "
@@ -1416,7 +1430,7 @@ msgstr ""
 "B<manpath>(5). Untuk lebih detailnya kenapa melakukan hal ini, baca standar."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:445
+#: ../../man/man1/man.man1:450
 msgid ""
 "International support is available with this package.  Native language "
 "manual pages are accessible (if available on your system)  via use of "
@@ -1435,7 +1449,7 @@ msgstr ""
 #
 #.  Need a \c to make sure we don't get a space where we don't want one
 #. type: Plain text
-#: ../../man/man1/man.man1:456
+#: ../../man/man1/man.man1:461
 msgid ""
 "E<lt>I<language>E<gt>[\\|B<_>E<lt>I<territory>E<gt>\\|[\\|B<."
 ">E<lt>I<character-set>E<gt>\\|[\\|B<,>E<lt>I<version>E<gt>\\|]\\|]\\|]"
@@ -1444,7 +1458,7 @@ msgstr ""
 "karakter>E<gt>\\|[\\|B<,>E<lt>I<versi>E<gt>\\|]\\|]\\|]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:461
+#: ../../man/man1/man.man1:466
 msgid ""
 "If the desired page is available in your I<locale>, it will be displayed in "
 "lieu of the standard (usually American English) page."
@@ -1453,7 +1467,7 @@ msgstr ""
 "ditampilkan seketika dari halaman (biasanya Bahasa Inggris Amerika) standar."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:468
+#: ../../man/man1/man.man1:473
 msgid ""
 "Support for international message catalogues is also featured in this "
 "package and can be activated in the same way, again if available.  If you "
@@ -1468,7 +1482,7 @@ msgstr ""
 "maintainer yang akan mengkoordinasi aktivitas seperti itu."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 msgid ""
 "For information regarding other features and extensions available with this "
 "manual pager, please read the documents supplied with the package."
@@ -1477,13 +1491,13 @@ msgstr ""
 "halaman buku panduan, mohon baca dokumen diberikan dengan paket."
 
 #. type: SH
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 #, no-wrap
 msgid "DEFAULTS"
 msgstr "BAKU"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:491
+#: ../../man/man1/man.man1:496
 msgid ""
 "B<%man%> will search for the desired manual pages within the I<index> "
 "database caches. If the B<-u> option is given, a cache consistency check is "
@@ -1513,7 +1527,7 @@ msgstr ""
 "persediaan yang ada."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:503
+#: ../../man/man1/man.man1:508
 msgid ""
 "Once a manual page has been located, a check is performed to find out if a "
 "relative preformatted `cat' file already exists and is newer than the nroff "
@@ -1534,7 +1548,7 @@ msgstr ""
 "secara langsung."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:508
+#: ../../man/man1/man.man1:513
 msgid ""
 "If a cat file can be produced (a relative cat directory exists and has "
 "appropriate permissions), B<%man%> will compress and store the cat file in "
@@ -1545,7 +1559,7 @@ msgstr ""
 "dalam background."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:520
+#: ../../man/man1/man.man1:525
 #, fuzzy
 #| msgid ""
 #| "The filters are deciphered by a number of means. Firstly, the command "
@@ -1569,12 +1583,12 @@ msgstr ""
 "merepresentasikan"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:523
+#: ../../man/man1/man.man1:528
 msgid "B<'\\e\"> E<lt>B<string>E<gt>"
 msgstr "B<'\\e\"> E<lt>B<string>E<gt>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:529
+#: ../../man/man1/man.man1:534
 msgid ""
 "where B<string> can be any combination of letters described by option B<-p> "
 "below."
@@ -1583,7 +1597,7 @@ msgstr ""
 "pilihan B<-p> dibawah."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:532
+#: ../../man/man1/man.man1:537
 msgid ""
 "If none of the above methods provide any filter information, a default set "
 "is used."
@@ -1593,7 +1607,7 @@ msgstr ""
 
 #.  ********************************************************************
 #. type: Plain text
-#: ../../man/man1/man.man1:553
+#: ../../man/man1/man.man1:558
 msgid ""
 "A formatting pipeline is formed from the filters and the primary formatter "
 "(B<nroff> or [B<tg>]B<roff> with B<-t>)  and executed.  Alternatively, if an "
@@ -1610,7 +1624,7 @@ msgstr ""
 "perangkat yang dispesifikasikan dengan B<-T> atau B<-E> sebagai arguments."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 msgid ""
 "Non argument options that are duplicated either on the command line, in "
 "$B<MANOPT>, or both, are not harmful.  For options that require an argument, "
@@ -1622,13 +1636,13 @@ msgstr ""
 "sebelumnya."
 
 #. type: SS
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 #, no-wrap
 msgid "General options"
 msgstr "Pilihan umum"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 msgid ""
 "This option is normally issued as the very first option and resets B<%man"
 "%'s> behaviour to its default.  Its use is to reset those options that may "
@@ -1641,14 +1655,14 @@ msgstr ""
 "mengikuti B<-D> akan memiliki efek biasanya"
 
 #. type: TP
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 #, fuzzy, no-wrap
 #| msgid "B<--warnings>[=I<warnings>]"
 msgid "B<--warnings>[=I<warnings\\/>]"
 msgstr "B<--warnigs>[=I<warnings>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 msgid ""
 "Enable warnings from I<groff>.  This may be used to perform sanity checks on "
 "the source text of manual pages.  I<warnings> is a comma-separated list of "
@@ -1662,13 +1676,13 @@ msgstr ""
 "jika tidak disupli, baku adalah \"mac\"."
 
 #. type: SS
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 #, no-wrap
 msgid "Main modes of operation"
 msgstr "Mode operasi utama"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:598
+#: ../../man/man1/man.man1:603
 #, fuzzy
 #| msgid ""
 #| "Equivalent to B<%whatis%>.  Display a short description from the manual "
@@ -1681,7 +1695,7 @@ msgstr ""
 "buku panduan, jika tersedia. Lihat B<%whatis%>(1) untuk details."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:607
+#: ../../man/man1/man.man1:612
 msgid ""
 "Equivalent to B<%apropos%>.  Search the short manual page descriptions for "
 "keywords and display any matches.  See B<%apropos%>(1)  for details."
@@ -1691,7 +1705,7 @@ msgstr ""
 "lengkapnya."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:617
+#: ../../man/man1/man.man1:622
 msgid ""
 "Search for text in all manual pages.  This is a brute-force search, and is "
 "likely to take some time; if you can, you should specify a section to reduce "
@@ -1705,11 +1719,19 @@ msgstr ""
 "dicari. Kata pencarian mungkin dapat berupa kata sederhana (baku), atau "
 "ekspresi umum jika opsi B<--regex> digunakan."
 
+#. type: Plain text
+#: ../../man/man1/man.man1:628
+msgid ""
+"Note that this searches the I<sources> of the manual pages, not the rendered "
+"text, and so may include false positives due to things like comments in "
+"source files.  Searching the rendered text would be much slower."
+msgstr ""
+
 #.  Compressed nroff source files with a supported compression
 #.  extension will be decompressed by man prior to being displaying via the
 #.  usual filters.
 #. type: Plain text
-#: ../../man/man1/man.man1:633
+#: ../../man/man1/man.man1:644
 msgid ""
 "Activate `local' mode.  Format and display local manual files instead of "
 "searching through the system's manual collection.  Each manual page argument "
@@ -1731,7 +1753,7 @@ msgstr ""
 "nama berkas dan mencari untuk sebuah pencocokan tepat."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:637
+#: ../../man/man1/man.man1:648
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "source nroff files that would be formatted."
@@ -1740,7 +1762,7 @@ msgstr ""
 "pencetakan lokasi dari berkas sumber nroff yang akan diformat."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:642
+#: ../../man/man1/man.man1:653
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "cat files that would be displayed.  If -w and -W are both specified, print "
@@ -1751,7 +1773,7 @@ msgstr ""
 "keduanya dispesifikasikan, cetak keduanya dipisahkan oleh sebuah spasi."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 msgid ""
 "This option is not for general use and should only be used by the B<%catman"
 "%> program."
@@ -1760,13 +1782,13 @@ msgstr ""
 "aplikasi B<%catman%>."
 
 #. type: TP
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 #, no-wrap
 msgid "B<-R\\ >I<encoding>,\\ B<--recode>=I<encoding>"
 msgstr "B<-R\\ >I<pengkodean>,\\ B<--recode>=I<pengkodean>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 msgid ""
 "Instead of formatting the manual page in the usual way, output its source "
 "converted to the specified I<encoding>.  If you already know the encoding of "
@@ -1785,13 +1807,13 @@ msgstr ""
 "struktur yang sama ke sebuah struktur halaman buku panduan."
 
 #. type: SS
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 #, no-wrap
 msgid "Finding manual pages"
 msgstr "Mencari halaman buku panduan"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:697
+#: ../../man/man1/man.man1:708
 msgid ""
 "If this system has access to other operating system's manual pages, they can "
 "be accessed using this option.  To search for a manual page from NewOS's "
@@ -1803,7 +1825,7 @@ msgstr ""
 "m> B<OS-Baru>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:708
+#: ../../man/man1/man.man1:719
 msgid ""
 "The I<system> specified can be a combination of comma delimited operating "
 "system names.  To include a search of the native operating system's manual "
@@ -1817,7 +1839,7 @@ msgstr ""
 "$B<SYSTEM>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:722
+#: ../../man/man1/man.man1:733
 msgid ""
 "Specify an alternate manpath to use.  By default, B<%man%> uses B<%manpath%> "
 "derived code to determine the path to search.  This option overrides the "
@@ -1829,7 +1851,7 @@ msgstr ""
 "dapat menyebabkan pilihan B<-m> untuk diabaikan."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 msgid ""
 "A path specified as a manpath must be the root of a manual page hierarchy "
 "structured into sections as described in the man-db manual (under \"The "
@@ -1843,13 +1865,13 @@ msgstr ""
 "lihat pilihan B<-l>."
 
 #. type: TP
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 #, no-wrap
 msgid "B<-S\\ >I<list>,\\ B<-s\\ >I<list>,\\ B<--sections=>I<list>"
 msgstr "B<-S\\ >I<daftar>,\\ B<-s\\ >I<daftar>,\\ B<--sections=>I<daftar>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 msgid ""
 "List is a colon- or comma-separated list of `order specific' manual sections "
 "to search.  This option overrides the $B<MANSECT> environment variable.  "
@@ -1861,13 +1883,13 @@ msgstr ""
 "dengan Sistem V.)"
 
 #. type: TP
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 #, no-wrap
 msgid "B<-e\\ >I<sub-extension>,\\ B<--extension=>I<sub-extension>"
 msgstr "B<-e\\ >I<sub-ekstensi>,\\ B<--extension=>I<sub-extension>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:773
+#: ../../man/man1/man.man1:784
 msgid ""
 "Some systems incorporate large packages of manual pages, such as those that "
 "accompany the B<Tcl> package, into the main manual page hierarchy.  To get "
@@ -1899,19 +1921,19 @@ msgstr ""
 "halaman memiliki sebuah ekstensi dari B<*tcl>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:777
+#: ../../man/man1/man.man1:788
 msgid "Ignore case when searching for manual pages.  This is the default."
 msgstr ""
 "Abaikan besar huruf ketika mencari untuk halaman buku panduan. Ini adalah "
 "baku."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:780
+#: ../../man/man1/man.man1:791
 msgid "Search for manual pages case-sensitively."
 msgstr "Cari untuk halaman buku panduan dengan mempertimbangkan besar huruf."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:790
+#: ../../man/man1/man.man1:801
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument as a regular expression, as with "
@@ -1925,7 +1947,7 @@ msgstr ""
 "ketika mencari untuk sebuah ekspresi umum, pilihan ini mengimplikasi B<-a>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:805
+#: ../../man/man1/man.man1:816
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument using shell-style wildcards, as with "
@@ -1943,7 +1965,7 @@ msgstr ""
 "karakter bebas, pilihan ini mengimplikasikan -B<-a>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:814
+#: ../../man/man1/man.man1:825
 msgid ""
 "If the B<--regex> or B<--wildcard> option is used, match only page names, "
 "not page descriptions, as with B<whatis>(1).  Otherwise, no effect."
@@ -1953,7 +1975,7 @@ msgstr ""
 "tidak ada efek."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:822
+#: ../../man/man1/man.man1:833
 msgid ""
 "By default, B<%man%> will exit after displaying the most suitable manual "
 "page it finds.  Using this option forces B<%man%> to display all the manual "
@@ -1965,7 +1987,7 @@ msgstr ""
 "kriteria pencarian."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:831
+#: ../../man/man1/man.man1:842
 msgid ""
 "This option causes B<%man%> to perform an `inode level' consistency check on "
 "its database caches to ensure that they are an accurate representation of "
@@ -1978,7 +2000,7 @@ msgstr ""
 "memiliki efek berguna jika B<%man%> dipasang dengan setuid bit diset."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:843
+#: ../../man/man1/man.man1:854
 msgid ""
 "By default, B<%man%> will try to interpret pairs of manual page names given "
 "on the command line as equivalent to a single manual page name containing a "
@@ -1996,24 +2018,24 @@ msgstr ""
 "Sebagai contoh:"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:852
+#: ../../man/man1/man.man1:863
 msgid "To disable this behaviour, use the B<--no-subpages> option."
 msgstr "Untuk menonaktifkan perilaku ini, gunakan pilihan B<--no-subpages>."
 
 #. type: SS
-#: ../../man/man1/man.man1:859
+#: ../../man/man1/man.man1:870
 #, no-wrap
 msgid "Controlling formatted output"
 msgstr "Mengotronl keluaran terformat"
 
 #. type: TP
-#: ../../man/man1/man.man1:860
+#: ../../man/man1/man.man1:871
 #, no-wrap
 msgid "B<-P\\ >I<pager>,\\ B<--pager=>I<pager>"
 msgstr "B<-P\\ >I<pager>,\\ B<--pager=>I<pager>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:876
+#: ../../man/man1/man.man1:887
 msgid ""
 "Specify which output pager to use.  By default, B<%man%> uses B<%pager%>.  "
 "This option overrides the $B<MANPAGER> environment variable, which in turn "
@@ -2026,7 +2048,7 @@ msgstr ""
 "Ini tidak digunakan dengan konjungsi dengan B<-f> atau B<-k>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:882 ../../man/man1/man.man1:1239
+#: ../../man/man1/man.man1:893 ../../man/man1/man.man1:1250
 msgid ""
 "The value may be a simple command name or a command with arguments, and may "
 "use shell quoting (backslashes, single quotes, or double quotes).  It may "
@@ -2041,13 +2063,13 @@ msgstr ""
 "standard input."
 
 #. type: TP
-#: ../../man/man1/man.man1:882
+#: ../../man/man1/man.man1:893
 #, no-wrap
 msgid "B<-r\\ >I<prompt>,\\ B<--prompt=>I<prompt>"
 msgstr "B<-r\\ >I<prompt>,\\ B<--prompt=>I<prompt>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:890
+#: ../../man/man1/man.man1:901
 msgid ""
 "If a recent version of B<less> is used as the pager, B<%man%> will attempt "
 "to set its prompt and some sensible options.  The default prompt looks like"
@@ -2057,7 +2079,7 @@ msgstr ""
 "tampak "
 
 #. type: Plain text
-#: ../../man/man1/man.man1:894
+#: ../../man/man1/man.man1:905
 msgid "B<\\ Manual page>I<\\ name>B<(>I<sec>B<)>B<\\ line>I<\\ x>"
 msgstr "B<\\ Halaman buku panduan>I<\\ nama>B<(>I<sec>B<)>B<\\ baris>I<\\ x>"
 
@@ -2066,7 +2088,7 @@ msgstr "B<\\ Halaman buku panduan>I<\\ nama>B<(>I<sec>B<)>B<\\ baris>I<\\ x>"
 #. The actual default will depend on your chosen
 #. .BR locale .
 #. type: Plain text
-#: ../../man/man1/man.man1:909
+#: ../../man/man1/man.man1:920
 msgid ""
 "where I<name> denotes the manual page name, I<sec> denotes the section it "
 "was found under and I<x> the current line number.  This is achieved by using "
@@ -2081,7 +2103,7 @@ msgstr ""
 #. .B less
 #. rejects the default options or if you prefer a different prompt.
 #. type: Plain text
-#: ../../man/man1/man.man1:922
+#: ../../man/man1/man.man1:933
 msgid ""
 "Supplying B<-r> with a string will override this default.  The string may "
 "contain the text B<$MAN_PN> which will be expanded to the name of the "
@@ -2094,22 +2116,22 @@ msgstr ""
 "`)'. String digunakan untuk menghasilkan baku dapat diekspresikan sebagai"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:924
+#: ../../man/man1/man.man1:935
 msgid "B<\\e\\ Manual\\e\\ page\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
 msgstr "B<\\e\\ Manual\\e\\ page\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:926
+#: ../../man/man1/man.man1:937
 msgid "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
 msgstr "B<byte\\e\\ %bB?s/%s..?\\e\\ (AKHIR):?pB\\e\\ %pB\\e\\e%..>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:928
+#: ../../man/man1/man.man1:939
 msgid "B<(press h for help or q to quit)>"
 msgstr "B<(press h for help or q to quit)>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:943
+#: ../../man/man1/man.man1:954
 msgid ""
 "It is broken into three lines here for the sake of readability only.  For "
 "its meaning see the B<less>(1)  manual page.  The prompt string is first "
@@ -2127,7 +2149,7 @@ msgstr ""
 "%man%> menset pilihan B<-ix8>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:948
+#: ../../man/man1/man.man1:959
 msgid ""
 "The $B<MANLESS> environment variable described below may be used to set a "
 "default prompt string if none is supplied on the command line."
@@ -2136,7 +2158,7 @@ msgstr ""
 "default prompt string if none is supplied on the command line."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:974
+#: ../../man/man1/man.man1:985
 msgid ""
 "When viewing a pure I<ascii>(7)  manual page on a 7 bit terminal or terminal "
 "emulator, some characters may not display correctly when using the "
@@ -2157,43 +2179,43 @@ msgstr ""
 "I<latin1>(7)."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Description"
 msgstr "Description"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Octal"
 msgstr "Octal"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:985
+#: ../../man/man1/man.man1:998
 #, no-wrap
 msgid "continuation hyphen"
 msgstr "kelanjutan hyphen"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:988
+#: ../../man/man1/man.man1:1001
 #, no-wrap
 msgid "bullet (middle dot)"
 msgstr "bullet (tengah titik)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:991
+#: ../../man/man1/man.man1:1004
 #, no-wrap
 msgid "acute accent"
 msgstr "acute accent"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:994
+#: ../../man/man1/man.man1:1007
 #, no-wrap
 msgid "multiplication sign"
 msgstr "perkalian tanda"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1018
+#: ../../man/man1/man.man1:1029
 msgid ""
 "If the I<latin1> column displays correctly, your terminal may be set up for "
 "I<latin1> characters and this option is not necessary.  If the I<latin1> and "
@@ -2211,7 +2233,7 @@ msgstr ""
 "pilihan ini."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 msgid ""
 "This option is ignored when using options B<-t>, B<-H>, B<-T>, or B<-Z> and "
 "may be useless for B<nroff> other than B<GNU's>."
@@ -2220,13 +2242,13 @@ msgstr ""
 "B<-Z> dan mungkin tidak berguna untuk B<nroff> selain dari B<GNU's>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 #, no-wrap
 msgid "B<-E\\ >I<encoding>,\\ B<--encoding>=I<encoding>"
 msgstr "B<-E\\ >I<pengkodean>,\\ B<--encoding>=I<pengkodean>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1040
+#: ../../man/man1/man.man1:1051
 msgid ""
 "Generate output for a character encoding other than the default.  For "
 "backward compatibility, I<encoding> may be an B<nroff> device such as "
@@ -2239,7 +2261,7 @@ msgstr ""
 "karakter benar seperti B<UTF-8>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1049
+#: ../../man/man1/man.man1:1060
 msgid ""
 "Normally, B<nroff> will automatically hyphenate text at line breaks even in "
 "words that do not contain hyphens, if it is necessary to do so to lay out "
@@ -2254,7 +2276,7 @@ msgstr ""
 "telah berisi hyphens."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1058
+#: ../../man/man1/man.man1:1069
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "hyphenating a word at an inappropriate point, do not use this option, but "
@@ -2270,7 +2292,7 @@ msgstr ""
 "meletakan \"\\e%\" diawal dari sebuah kata untuk menjaga itu dari hyphenasi."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1065
+#: ../../man/man1/man.man1:1076
 msgid ""
 "Normally, B<nroff> will automatically justify text to both margins.  This "
 "option disables full justification, leaving justified only to the left "
@@ -2281,7 +2303,7 @@ msgstr ""
 "margin, sometimes called \"ragged-right\" text."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "justifying certain paragraphs, do not use this option, but consult the "
@@ -2297,13 +2319,13 @@ msgstr ""
 "meletakan \"\\e%\" diawal dari sebuah kata untuk menjaga itu dari hyphenasi."
 
 #. type: TP
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 #, no-wrap
 msgid "B<-p\\ >I<string>,\\ B<--preprocessor=>I<string>"
 msgstr "B<-p\\ >I<string>,\\ B<--preprocessor=>I<string>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1091
+#: ../../man/man1/man.man1:1102
 msgid ""
 "Specify the sequence of preprocessors to run before B<nroff> or B<troff>/"
 "B<groff>.  Not all installations will have a full set of preprocessors.  "
@@ -2321,7 +2343,7 @@ msgstr ""
 "pertaman."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 msgid ""
 "Use I<%troff%> to format the manual page to stdout.  This option is not "
 "required in conjunction with B<-H>, B<-T>, or B<-Z>."
@@ -2330,14 +2352,14 @@ msgstr ""
 "ini tidak dibutuhkan dalam konjungsi dengan B<-H>, B<-T>, atau B<-Z>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 #, fuzzy, no-wrap
 #| msgid "B<-T>[I<device>], B<--troff-device>[=I<device>]"
 msgid "B<-T>[I<device\\/>], B<--troff-device>[=I<device\\/>]"
 msgstr "B<-T>[I<perangkat>], B<-troff-device>[=I<perangkat>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 msgid ""
 "This option is used to change B<groff> (or possibly B<troff's>)  output to "
 "be suitable for a device other than the default.  It implies B<-t>.  "
@@ -2350,14 +2372,14 @@ msgstr ""
 "B<latin1>, B<ps>, B<utf8>, B<X75> dan B<X100>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 #, fuzzy, no-wrap
 #| msgid "B<-H>[I<browser>], B<--html>[=I<browser>]"
 msgid "B<-H>[I<browser\\/>], B<--html>[=I<browser\\/>]"
 msgstr "B<-H>[I<browser>], B<--html>[=I<browser>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 msgid ""
 "This option will cause B<groff> to produce HTML output, and will display "
 "that output in a web browser.  The choice of browser is determined by the "
@@ -2374,14 +2396,14 @@ msgstr ""
 "bekerja dengan B<GNU> B<troff>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 #, fuzzy, no-wrap
 #| msgid "B<-X>[I<dpi>], B<--gxditview>[=I<dpi>]"
 msgid "B<-X>[I<dpi\\/>], B<--gxditview>[=I<dpi\\/>]"
 msgstr "B<-X>[I<dpi>], B<-gxditview>[=I<dpi>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1143
+#: ../../man/man1/man.man1:1154
 msgid ""
 "This option displays the output of B<groff> in a graphical window using the "
 "B<gxditview> program.  The I<dpi> (dots per inch) may be 75, 75-12, 100, or "
@@ -2396,7 +2418,7 @@ msgstr ""
 "atau X100-12 perangkat."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 msgid ""
 "B<groff> will run B<troff> and then use an appropriate post-processor to "
 "produce output suitable for the chosen device.  If I<%troff%> is B<groff>, "
@@ -2409,25 +2431,25 @@ msgstr ""
 "penggunaan dari sebuah post-prosesor. Ini mengimplikasikan B<-t>."
 
 #. type: SS
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 #, no-wrap
 msgid "Getting help"
 msgstr "Mendapatkan bantuan"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1182
+#: ../../man/man1/man.man1:1193
 msgid "A child process returned a non-zero exit status."
 msgstr "Sebuah proses anak mengembalikan sebuah status kembali tidak nol."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1185
+#: ../../man/man1/man.man1:1196
 msgid ""
 "At least one of the pages/files/keywords didn't exist or wasn't matched."
 msgstr ""
 "Paling tidak satu dari halaman/berkas/kata kunci tidak ada atau tidak cocok."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1192
+#: ../../man/man1/man.man1:1203
 msgid ""
 "If $B<MANPATH> is set, its value is used as the path to search for manual "
 "pages."
@@ -2436,7 +2458,7 @@ msgstr ""
 "halaman buku panduan."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1203
+#: ../../man/man1/man.man1:1214
 msgid ""
 "The contents of $B<MANROFFOPT> are added to the command line every time "
 "B<man> invokes the formatter (B<nroff>, B<troff>, or B<groff>)."
@@ -2445,7 +2467,7 @@ msgstr ""
 "memanggil pemformat (B<nroff>, B<troff>, atau B<groff>)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1210
+#: ../../man/man1/man.man1:1221
 msgid ""
 "If $B<MANROFFSEQ> is set, its value is used to determine the set of "
 "preprocessors to pass each manual page through.  The default preprocessor "
@@ -2456,7 +2478,7 @@ msgstr ""
 "preprosesor adalah tergantung dari sistem."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1220 ../../man/man8/catman.man8:88
+#: ../../man/man1/man.man1:1231 ../../man/man8/catman.man8:88
 msgid ""
 "If $B<MANSECT> is set, its value is a colon-delimited list of sections and "
 "it is used to determine which manual sections to search and in what order.  "
@@ -2468,7 +2490,7 @@ msgstr ""
 "untuk dicari dan dalam urutan apa."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1233
+#: ../../man/man1/man.man1:1244
 msgid ""
 "If $B<MANPAGER> or $B<PAGER> is set ($B<MANPAGER> is used in preference), "
 "its value is used as the name of the program used to display the manual "
@@ -2479,7 +2501,7 @@ msgstr ""
 "untuk menampilkan halaman buku panduan. Secara baku, B<%pager%> digunakan."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1258
+#: ../../man/man1/man.man1:1269
 msgid ""
 "If $B<MANLESS> is set, its value will be used as the default prompt string "
 "for the B<less> pager, as if it had been passed using the B<-r> option (so "
@@ -2495,7 +2517,7 @@ msgstr ""
 "prompt string\\(rq, set $B<MANLESS> ke \\(oqB<-Psmy\\ prompt\\ string>\\(cq."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1274
+#: ../../man/man1/man.man1:1285
 msgid ""
 "If $B<BROWSER> is set, its value is a colon-delimited list of commands, each "
 "of which in turn is used to try to start a web browser for B<man> B<--"
@@ -2510,7 +2532,7 @@ msgstr ""
 "sebuah tanda persen tunggal (%) dan I<%c> digantikan oleh sebuah kolon (:)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1297
+#: ../../man/man1/man.man1:1308
 #, fuzzy
 #| msgid ""
 #| "If $B<MANOPT> is set, it will be parsed prior to B<%man%'s> command line "
@@ -2536,7 +2558,7 @@ msgstr ""
 "keluar."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1311
+#: ../../man/man1/man.man1:1322
 #, fuzzy
 #| msgid ""
 #| "If $B<MANWIDTH> is set, its value is used as the line length for which "
@@ -2564,7 +2586,7 @@ msgstr ""
 "baris terminal berada diantara 66 dan 80 karakter."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1322
+#: ../../man/man1/man.man1:1333
 msgid ""
 "Normally, when output is not being directed to a terminal (such as to a file "
 "or a pipe), formatting characters are discarded to make it easier to read "
@@ -2581,7 +2603,7 @@ msgstr ""
 "dapat diinterpretasikan pemformatan karakter."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1335
+#: ../../man/man1/man.man1:1346
 msgid ""
 "Normally, when output is being directed to a terminal (usually to a pager), "
 "any error output from the command used to produce formatted versions of "
@@ -2603,7 +2625,7 @@ msgstr ""
 "apapun yang tidak kosong, keluaran error akan ditampilkan seperti biasa."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1347
+#: ../../man/man1/man.man1:1358
 msgid ""
 "Depending on system and implementation, either or both of $B<LANG> and "
 "$B<LC_MESSAGES> will be interrogated for the current message locale.  B<%man"
@@ -2616,29 +2638,29 @@ msgstr ""
 "B<setlocale>(3) untuk detail lebih tepatnya."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1351 ../../man/man1/manpath.man1:128
-#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:198
+#: ../../man/man1/man.man1:1362 ../../man/man1/manpath.man1:128
+#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:195
 msgid "man-db configuration file."
 msgstr "berkas konfigurasi man-db."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1354
+#: ../../man/man1/man.man1:1365
 msgid "A global manual page hierarchy."
 msgstr "Sebuah hierarki halaman buku panduan global."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 msgid "the man-db package manual, B<FSSTND>"
 msgstr "the man-db package manual, B<FSSTND>"
 
 #. type: SH
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 #, no-wrap
 msgid "HISTORY"
 msgstr "SEJARAH"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1385
+#: ../../man/man1/man.man1:1396
 #, fuzzy
 #| msgid ""
 #| "1990, 1991 - Originally written by John W. Eaton (jwe@che.utexas.edu)."
@@ -2647,7 +2669,7 @@ msgid ""
 msgstr "1990, 1991 - Awalnya ditulis oleh John W. Eaton (jwe@che.utexas.edu)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1388
+#: ../../man/man1/man.man1:1399
 msgid ""
 "Dec 23 1992: Rik Faith (faith@cs.unc.edu) applied bug fixes supplied by "
 "Willem Kasdorp (wkasdo@nikhefk.nikef.nl)."
@@ -2656,7 +2678,7 @@ msgstr ""
 "Willem Kasdorp (wkasdo@nikhefk.nikef.nl)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1392
+#: ../../man/man1/man.man1:1403
 #, fuzzy
 #| msgid ""
 #| "30th April 1994 - 23rd February 2000: Wilf. (G.Wilford@ee.surrey.ac.uk)  "
@@ -2672,7 +2694,7 @@ msgstr ""
 "orang berdedikasi."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1396
+#: ../../man/man1/man.man1:1407
 #, fuzzy
 #| msgid ""
 #| "30th October 1996 - 30th March 2001: Fabrizio Polacco "
@@ -2688,7 +2710,7 @@ msgstr ""
 "bantuan dari seluruh komunitas."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1398
+#: ../../man/man1/man.man1:1409
 #, fuzzy
 #| msgid ""
 #| "31st March 2001 - present day: Colin Watson E<lt>cjwatson@debian.orgE<gt> "
@@ -3524,7 +3546,7 @@ msgstr ""
 "sebagai hierarki sistem dalam berkas konfigurasi man-db."
 
 #. type: Plain text
-#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:216
+#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:213
 msgid "An alternate or FSSTND compliant global I<index> database cache."
 msgstr ""
 "Sebuah persediaan basis data I<indeks> menyeluruh alternatif atau sesuai "
@@ -3642,19 +3664,19 @@ msgid "Berkeley db"
 msgstr "Berkeley db"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "Binary tree"
 msgstr "Binary tree"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61 ../../man/man8/mandb.man8:64
+#: ../../man/man8/mandb.man8:63 ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "Yes"
 msgstr "Yes"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "I<index.bt>"
 msgstr "I<index.bt>"
@@ -3662,18 +3684,17 @@ msgstr "I<index.bt>"
 #. type: tbl table
 #: ../../man/man8/mandb.man8:64
 #, no-wrap
-msgid "GNU gdbm v E<gt>= 1.6"
-msgstr "GNU gdbm v E<gt>= 1.6"
+msgid "GNU gdbm"
+msgstr "GNU gdbm"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:66 ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "Hashed"
 msgstr "Hashed"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
+#: ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "I<index.db>"
 msgstr "I<index.db>"
@@ -3681,29 +3702,23 @@ msgstr "I<index.db>"
 #. type: tbl table
 #: ../../man/man8/mandb.man8:67
 #, no-wrap
-msgid "GNU gdbm v E<lt>  1.6"
-msgstr "GNU gdbm v E<lt> 1.6"
+msgid "UNIX ndbm"
+msgstr "UNIX ndbm"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:67 ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "No"
 msgstr "No"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:70
-#, no-wrap
-msgid "UNIX ndbm"
-msgstr "UNIX ndbm"
-
-#. type: tbl table
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "I<index.(dir|pag)>"
 msgstr "I<index.(dir|pag)>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:83
+#: ../../man/man8/mandb.man8:80
 msgid ""
 "Those database types that support asynchronous updates provide enhanced "
 "speed at the cost of possible corruption in the event of unusual "
@@ -3718,12 +3733,12 @@ msgstr ""
 "kembali basis data dari awal."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:90
+#: ../../man/man8/mandb.man8:87
 msgid "Produce no warnings."
 msgstr "Tidak menghasilkan peringatan."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:94
+#: ../../man/man8/mandb.man8:91
 msgid ""
 "Do not spend time looking for or adding information to the databases "
 "regarding stray cats."
@@ -3732,7 +3747,7 @@ msgstr ""
 "mengenai berkas cat yang salah."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:98
+#: ../../man/man8/mandb.man8:95
 msgid ""
 "Do not spend time checking for deleted manual pages and purging them from "
 "the databases."
@@ -3741,7 +3756,7 @@ msgstr ""
 "hapus mereka dari basis data."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:110
+#: ../../man/man8/mandb.man8:107
 msgid ""
 "By default, B<%mandb%> will try to update any previously created databases.  "
 "If a database does not exist, it will create it.  This option forces B<%mandb"
@@ -3757,7 +3772,7 @@ msgstr ""
 "data baru dikenalkan dalam masa depan."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:114
+#: ../../man/man8/mandb.man8:111
 msgid ""
 "Create user databases only, even with write permissions necessary to create "
 "system databases."
@@ -3766,7 +3781,7 @@ msgstr ""
 "untuk membuat basis data sistem."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:120
+#: ../../man/man8/mandb.man8:117
 msgid ""
 "Perform correctness checks on manual pages in the hierarchy search path.  "
 "With this option, B<%mandb%> will not alter existing databases."
@@ -3776,7 +3791,7 @@ msgstr ""
 "yang sudah ada."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:134
+#: ../../man/man8/mandb.man8:131
 msgid ""
 "Update only the entries for the given filename.  This option is not for "
 "general use; it is used internally by B<%man%> when it has been compiled "
@@ -3790,45 +3805,45 @@ msgstr ""
 "menonaktifkan B<-c> dan B<-s>."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:141
+#: ../../man/man8/mandb.man8:138
 msgid "Show the usage message, then exit."
 msgstr "Tampilkan pesan penggunaan, kemudian keluar."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man8/mandb.man8:144
 msgid "Show the version, then exit."
 msgstr "Tampilkan versi, kemudian keluar."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:154
+#: ../../man/man8/mandb.man8:151
 msgid "Usage, syntax, or configuration file error."
 msgstr "Penggunaan, sintaks, atau berkas konfigurasi error."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 msgid "A child process failed."
 msgstr "Sebuah proses anak gagal."
 
 #. type: SH
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 #, no-wrap
 msgid "DIAGNOSTICS"
 msgstr "DIAGNOSA"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 msgid "The following warning messages can be emitted during database building."
 msgstr ""
 "Pesan peringatan berikut dapat dikeluarkan selama pembuatan basis data."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: whatis parse for page(sec) failed>"
 msgstr "B<E<lt>nama berkasE<gt>: whatis pengambilan untuk halaman(sec) gagal>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 msgid ""
 "An attempt to extract whatis line(s) from the given E<lt>filenameE<gt> "
 "failed.  This is usually due to a poorly written manual page, but if many "
@@ -3844,13 +3859,13 @@ msgstr ""
 "B<lexgrog>(1) untuk informasi lebih lanjut."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: is a dangling symlink>"
 msgstr "B<E<lt>nama berkasE<gt>: adlaah sebuah simlink dangling>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 msgid ""
 "E<lt>filenameE<gt> does not exist but is referenced by a symbolic link.  "
 "Further diagnostics are usually emitted to identify the E<lt>filenameE<gt> "
@@ -3861,13 +3876,13 @@ msgstr ""
 "mengidentifikasikan E<lt>nama berkasE<gt> dari offending link."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: bad symlink or ROFF `.so' request>"
 msgstr "B<E<lt>nama berkasE<gt>: symlink buruk atau permintaan `.so' ROFF>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 msgid ""
 "E<lt>filenameE<gt> is either a symbolic link to, or contains a ROFF include "
 "request to, a non existent file."
@@ -3876,13 +3891,13 @@ msgstr ""
 "termasuk permintaan ke, sebuah berkas yang tidak ada."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: ignoring bogus filename>"
 msgstr "B<E<lt>nama berkasE<gt>: mengabaikan nama berkas palsu>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 msgid ""
 "The E<lt>filenameE<gt> may or may not be a valid manual page but its name is "
 "invalid.  This is usually due to a manual page with sectional extension "
@@ -3894,13 +3909,13 @@ msgstr ""
 "bagian halaman buku panduan E<lt>yE<gt>."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 #, no-wrap
 msgid "B<E<lt>filename_maskE<gt>: competing extensions>"
 msgstr "B<E<lt>filename_maskE<gt>: ekstensi berkompetensi>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:194
+#: ../../man/man8/mandb.man8:191
 msgid ""
 "The wildcard E<lt>filename_maskE<gt> is not unique.  This is usually caused "
 "by the existence of both a compressed and uncompressed version of the same "
@@ -3911,12 +3926,12 @@ msgstr ""
 "panduan yang sama. Seluruh tetapi yang paling baru diabaikan."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:205
+#: ../../man/man8/mandb.man8:202
 msgid "Older locations for the database cache included:"
 msgstr "Lokasi lebih lama untuk persediaan basis data dimasukan:"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 msgid ""
 "The B<WHATIS PARSING> section formerly in this manual page is now part of "
 "B<lexgrog>(1)."
index 385c808..dcd51c6 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: man-db-manpages 2.6.0.2\n"
-"POT-Creation-Date: 2014-09-16 14:04+0100\n"
+"POT-Creation-Date: 2016-12-11 13:52+0000\n"
 "PO-Revision-Date: 2011-09-11 22:32+0900\n"
 "Last-Translator: Yasuaki Taniguchi <yasuakit@gmail.com>\n"
 "Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
@@ -154,20 +154,20 @@ msgstr ""
 
 #. type: SH
 #: ../../man/man1/apropos.man1:61 ../../man/man1/lexgrog.man1:45
-#: ../../man/man1/man.man1:553 ../../man/man1/manconv.man1:50
+#: ../../man/man1/man.man1:558 ../../man/man1/manconv.man1:50
 #: ../../man/man1/manpath.man1:37 ../../man/man1/whatis.man1:71
 #: ../../man/man1/zsoelim.man1:55 ../../man/man8/accessdb.man8:29
-#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:83
+#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:80
 #, no-wrap
 msgid "OPTIONS"
 msgstr "オプション"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:65 ../../man/man1/lexgrog.man1:49
-#: ../../man/man1/man.man1:567 ../../man/man1/manconv.man1:66
+#: ../../man/man1/man.man1:572 ../../man/man1/manconv.man1:66
 #: ../../man/man1/manpath.man1:44 ../../man/man1/whatis.man1:75
 #: ../../man/man8/accessdb.man8:33 ../../man/man8/catman.man8:59
-#: ../../man/man8/mandb.man8:87
+#: ../../man/man8/mandb.man8:84
 msgid "Print debugging information."
 msgstr "デバッグ情報を表示します。"
 
@@ -259,7 +259,7 @@ msgstr ""
 "のみ含まれるようになります。"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:690
+#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:701
 #: ../../man/man1/manpath.man1:66 ../../man/man1/whatis.man1:133
 msgid ""
 "B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|, B<--systems=>I<system>\\|[\\|,.\\|."
@@ -293,7 +293,7 @@ msgstr ""
 "上書きします。"
 
 #. type: TP
-#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:709
+#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:720
 #: ../../man/man1/whatis.man1:152 ../../man/man8/catman.man8:59
 #, no-wrap
 msgid "B<-M\\ >I<path>,\\ B<--manpath=>I<path>"
@@ -315,14 +315,14 @@ msgstr ""
 "の内容を上書きします。"
 
 #. type: TP
-#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:660
+#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:671
 #: ../../man/man1/whatis.man1:166
 #, no-wrap
 msgid "B<-L\\ >I<locale>,\\ B<--locale=>I<locale>"
 msgstr "B<-L\\ >I<locale>,\\ B<--locale=>I<locale>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:684
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:695
 #: ../../man/man1/whatis.man1:183
 msgid ""
 "B<%program%> will normally determine your current locale by a call to the C "
@@ -341,17 +341,17 @@ msgstr ""
 "セージなどは常に初期に決定されたロケールによって表示されます。"
 
 #. type: TP
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:560
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:565
 #: ../../man/man1/manpath.man1:85 ../../man/man1/whatis.man1:183
-#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:134
+#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:131
 #, no-wrap
 msgid "B<-C\\ >I<file>,\\ B<--config-file=>I<file>"
 msgstr "B<-C\\ >I<file>,\\ B<--config-file=>I<file>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:564
+#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:569
 #: ../../man/man1/manpath.man1:89 ../../man/man1/whatis.man1:187
-#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:138
+#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:135
 msgid ""
 "Use this user configuration file rather than the default of I<~/.manpath>."
 msgstr ""
@@ -359,7 +359,7 @@ msgstr ""
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:186 ../../man/man1/lexgrog.man1:89
-#: ../../man/man1/man.man1:1163 ../../man/man1/manconv.man1:69
+#: ../../man/man1/man.man1:1174 ../../man/man1/manconv.man1:69
 #: ../../man/man1/manpath.man1:92 ../../man/man1/whatis.man1:190
 #: ../../man/man1/zsoelim.man1:67 ../../man/man8/accessdb.man8:36
 #: ../../man/man8/catman.man8:71
@@ -368,9 +368,9 @@ msgstr "ヘルプメッセージを表示して終了します。"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:189 ../../man/man1/lexgrog.man1:92
-#: ../../man/man1/man.man1:1166 ../../man/man1/manpath.man1:95
+#: ../../man/man1/man.man1:1177 ../../man/man1/manpath.man1:95
 #: ../../man/man1/whatis.man1:193 ../../man/man8/accessdb.man8:39
-#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:144
+#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:141
 #, fuzzy
 #| msgid "Print a help message and exit."
 msgid "Print a short usage message and exit."
@@ -378,7 +378,7 @@ msgstr "ヘルプメッセージを表示して終了します。"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1180 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:196
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/accessdb.man8:42
 #: ../../man/man8/catman.man8:77
@@ -387,28 +387,28 @@ msgstr "バージョン情報を表示します。"
 
 #. type: SH
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/whatis.man1:196
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man1/man.man1:1180 ../../man/man1/whatis.man1:196
+#: ../../man/man8/mandb.man8:144
 #, no-wrap
 msgid "EXIT STATUS"
 msgstr "終了ステータス"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:196 ../../man/man1/lexgrog.man1:99
-#: ../../man/man1/man.man1:1173 ../../man/man1/whatis.man1:200
-#: ../../man/man8/mandb.man8:151
+#: ../../man/man1/man.man1:1184 ../../man/man1/whatis.man1:200
+#: ../../man/man8/mandb.man8:148
 msgid "Successful program execution."
 msgstr "プログラムが正常に実行されました。"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1176
+#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1187
 #: ../../man/man1/whatis.man1:203
 msgid "Usage, syntax or configuration file error."
 msgstr "使用法、構文または設定ファイルのエラーです。"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1179
-#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:157
+#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1190
+#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:154
 msgid "Operational error."
 msgstr "操作のエラーです。"
 
@@ -418,7 +418,7 @@ msgid "Nothing was found that matched the criteria specified."
 msgstr "指定したキーワードにマッチしたページが見つかりませんでした。"
 
 #. type: SH
-#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1185
+#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1196
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:209
 #: ../../man/man8/catman.man8:77
 #, no-wrap
@@ -426,7 +426,7 @@ msgid "ENVIRONMENT"
 msgstr "環境変数"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1282
+#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1293
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:218
 msgid ""
 "If $B<SYSTEM> is set, it will have the same effect as if it had been "
@@ -476,23 +476,23 @@ msgstr ""
 "が常にデフォルトです。"
 
 #. type: SH
-#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1347
+#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1358
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:236
-#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:194
+#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:191
 #, no-wrap
 msgid "FILES"
 msgstr "ファイル"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1359
+#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1370
 #: ../../man/man1/whatis.man1:242 ../../man/man8/catman.man8:103
-#: ../../man/man8/mandb.man8:210
+#: ../../man/man8/mandb.man8:207
 msgid "A traditional global I<index> database cache."
 msgstr "伝統的な大域I<インデックス型>データベースキャッシュです。"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1365
-#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:203
+#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1376
+#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:200
 msgid "An FHS compliant global I<index> database cache."
 msgstr "FHS 準拠の大域I<インデックス型>データベースキャッシュです。"
 
@@ -503,10 +503,10 @@ msgstr "伝統的な B<whatis> テキスト型データベースです。"
 
 #. type: SH
 #: ../../man/man1/apropos.man1:258 ../../man/man1/lexgrog.man1:197
-#: ../../man/man1/man.man1:1365 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1376 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:128 ../../man/man1/whatis.man1:253
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/catman.man8:109
-#: ../../man/man8/mandb.man8:216
+#: ../../man/man8/mandb.man8:213
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "関連項目"
@@ -516,7 +516,7 @@ msgstr "関連項目"
 #: ../../man/man1/manconv.man1:75 ../../man/man1/manpath.man1:132
 #: ../../man/man1/whatis.man1:257 ../../man/man1/zsoelim.man1:75
 #: ../../man/man8/accessdb.man8:42 ../../man/man8/catman.man8:113
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 #, no-wrap
 msgid "AUTHOR"
 msgstr "著者"
@@ -794,8 +794,8 @@ msgid ""
 "\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>\\|] [\\|B<--no-hyphenation>\\|] [\\|"
 "B<--no-justification>\\|] [\\|B<-p> I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|"
 "[\\|I<device>\\|]\\|] [\\|B<-H>\\|[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|"
-"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>\\ .\\|.\\|."
-"\\|]\\ .\\|.\\|.\\&"
+"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>[.\\|I<section>"
+"\\|]\\ \\|.\\|.\\|.\\|]\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--warnings>"
 "\\|[\\|=I<warnings>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-L> I<locale>"
@@ -823,13 +823,13 @@ msgstr "B<%man%> B<-k> [\\|I<apropos> I<options>\\|] I<regexp> \\&.\\|.\\|."
 #, fuzzy
 #| msgid ""
 #| "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>"
-#| "\\||\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|."
+#| "\\||\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|."
 msgid ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|."
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|."
 
 #.  The --local command line
 #. type: Plain text
@@ -941,44 +941,44 @@ msgstr ""
 "種類を示します。"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:189
+#: ../../man/man1/man.man1:191
 #, no-wrap
 msgid "Executable programs or shell commands"
 msgstr "実行プログラムまたはシェルコマンド"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:192
+#: ../../man/man1/man.man1:194
 #, no-wrap
 msgid "System calls (functions provided by the kernel)"
 msgstr "システムコール (カーネルが提供する関数)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:195
+#: ../../man/man1/man.man1:197
 #, no-wrap
 msgid "Library calls (functions within program libraries)"
 msgstr "ライブラリー呼び出し (プログラムライブラリーに含まれる関数)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:198
+#: ../../man/man1/man.man1:200
 #, fuzzy, no-wrap
 #| msgid "Special files (usually found in I</dev>)"
 msgid "Special files (usually found in I</dev\\/>)"
 msgstr "特殊ファイル (通常 I</dev> 配下に存在するファイル)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:201
+#: ../../man/man1/man.man1:203
 #, no-wrap
 msgid "File formats and conventions eg I</etc/passwd>"
 msgstr "ファイルの書式と慣習 (例: I</etc/passwd>)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:204
+#: ../../man/man1/man.man1:206
 #, no-wrap
 msgid "Games"
 msgstr "ゲーム"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:207
+#: ../../man/man1/man.man1:210
 #, fuzzy, no-wrap
 #| msgid ""
 #| "Miscellaneous (including macro packages and conventions),\n"
@@ -991,13 +991,13 @@ msgstr ""
 "例えば B<man>(7) や B<groff>(7)。"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:211
+#: ../../man/man1/man.man1:213
 #, no-wrap
 msgid "System administration commands (usually only for root)"
 msgstr "システム管理コマンド (通常は root 用)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:214
+#: ../../man/man1/man.man1:216
 #, no-wrap
 msgid "Kernel routines [\\|Non standard\\|]"
 msgstr "カーネルルーチン [\\|非標準\\|]"
@@ -1039,7 +1039,7 @@ msgid "B<bold text>"
 msgstr "B<太字\\ (bold)>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:250
+#: ../../man/man1/man.man1:252
 #, no-wrap
 msgid "type exactly as shown."
 msgstr "表示されている通りに入力します。"
@@ -1051,7 +1051,7 @@ msgid "I<italic text>"
 msgstr "I<イタリック体・斜体(italic)>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:253
+#: ../../man/man1/man.man1:255
 #, no-wrap
 msgid "replace with appropriate argument."
 msgstr "適切な引数に置換します。"
@@ -1063,7 +1063,7 @@ msgid "[\\|B<-abc>\\|]"
 msgstr "[\\|B<-abc>\\|]"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:256
+#: ../../man/man1/man.man1:258
 #, no-wrap
 msgid "any or all arguments within [ ] are optional."
 msgstr "[ ] 内の引数はオプションです。"
@@ -1075,7 +1075,7 @@ msgid "B<-a\\|>|\\|B<-b>"
 msgstr "B<-a\\|>|\\|B<-b>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:259
+#: ../../man/man1/man.man1:261
 #, no-wrap
 msgid "options delimited by | cannot be used together."
 msgstr "| で区切られたオプションは同時に指定できません。"
@@ -1087,7 +1087,7 @@ msgid "I<argument> .\\|.\\|."
 msgstr "I<argument> .\\|.\\|."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:262
+#: ../../man/man1/man.man1:264
 #, no-wrap
 msgid "I<argument> is repeatable."
 msgstr "I<argument> は繰り返し指定できます。"
@@ -1099,7 +1099,7 @@ msgid "[\\|I<expression>\\|] .\\|.\\|."
 msgstr "[\\|I<expression>\\|] .\\|.\\|."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:265
+#: ../../man/man1/man.man1:267
 #, no-wrap
 msgid "entire I<expression>\\ within [ ] is repeatable."
 msgstr "[ ] 内の I<expression>\\ 全体は繰り返し指定できます。"
@@ -1140,12 +1140,26 @@ msgstr "I<項目> (プログラム) I<ls> のマニュアルページを表示
 
 #. type: TP
 #: ../../man/man1/man.man1:287
+#, fuzzy, no-wrap
+#| msgid "B<%man%\\ -f>I<\\ smail>"
+msgid "B<%man% >I<man>.I<7>"
+msgstr "B<%man%\\ -f>I<\\ smail>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:292
+#, fuzzy
+#| msgid "Display the manual page for the I<item> (program)  I<ls>."
+msgid "Display the manual page for macro package I<man> from section I<7>."
+msgstr "I<項目> (プログラム) I<ls> のマニュアルページを表示します。"
+
+#. type: TP
+#: ../../man/man1/man.man1:292
 #, no-wrap
 msgid "B<%man%\\ -a>I<\\ intro>"
 msgstr "B<%man%\\ -a>I<\\ intro>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 msgid ""
 "Display, in succession, all of the available I<intro> manual pages contained "
 "within the manual.  It is possible to quit between successive displays or "
@@ -1155,13 +1169,13 @@ msgstr ""
 "表示します。連続表示の途中でやめたり、スキップすることもできます。"
 
 #. type: TP
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 #, no-wrap
 msgid "B<%man% -t >I<alias >|I< lpr -Pps>"
 msgstr "B<%man% -t >I<alias >|I< lpr -Pps>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 msgid ""
 "Format the manual page referenced by `I<alias>', usually a shell manual "
 "page, into the default B<troff> or B<groff> format and pipe it to the "
@@ -1176,14 +1190,14 @@ msgstr ""
 "系 (プログラム) が分かります。"
 
 #. type: TP
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 #, fuzzy, no-wrap
 #| msgid "B<%man%\\ -l\\ -T>I<dvi\\ ./foo.1x.gz>B<\\ E<gt>\\ >I<./foo.1x.dvi>"
 msgid "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
 msgstr "B<%man%\\ -l\\ -T>I<dvi\\ ./foo.1x.gz>B<\\ E<gt>\\ >I<./foo.1x.dvi>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 msgid ""
 "This command will decompress and format the nroff source manual page I<./"
 "foo.1x.gz> into a B<device independent (dvi)> file.  The redirection is "
@@ -1198,13 +1212,13 @@ msgstr ""
 "に Postscript に変換します。"
 
 #. type: TP
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 #, no-wrap
 msgid "B<%man%\\ -k>I<\\ printf>"
 msgstr "B<%man%\\ -k>I<\\ printf>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 msgid ""
 "Search the short descriptions and manual page names for the keyword "
 "I<printf> as regular expression.  Print out any matches.  Equivalent to B<"
@@ -1215,13 +1229,13 @@ msgstr ""
 "printf> と同様です。"
 
 #. type: TP
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 #, no-wrap
 msgid "B<%man%\\ -f>I<\\ smail>"
 msgstr "B<%man%\\ -f>I<\\ smail>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 msgid ""
 "Lookup the manual pages referenced by I<smail> and print out the short "
 "descriptions of any found.  Equivalent to B<%whatis%>I<\\ smail>B<.>"
@@ -1230,13 +1244,13 @@ msgstr ""
 "表示します。 B<%whatis%>I<\\ smail> と同様です。"
 
 #. type: SH
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 #, no-wrap
 msgid "OVERVIEW"
 msgstr "概要"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:347
+#: ../../man/man1/man.man1:352
 msgid ""
 "Many options are available to B<%man%> in order to give as much flexibility "
 "as possible to the user.  Changes can be made to the search path, section "
@@ -1247,7 +1261,7 @@ msgstr ""
 "更することができます。操作方法については次で説明します。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:369
+#: ../../man/man1/man.man1:374
 msgid ""
 "If set, various environment variables are interrogated to determine the "
 "operation of B<%man%>.  It is possible to set the `catch all' variable "
@@ -1271,7 +1285,7 @@ msgstr ""
 "しても、「忘れる」ことができます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:390
+#: ../../man/man1/man.man1:395
 msgid ""
 "The manual pager utilities packaged as B<man-db> make extensive use of "
 "B<index> database caches.  These caches contain information such as where "
@@ -1296,7 +1310,7 @@ msgstr ""
 #. .B index
 #. caches created `on the fly'.
 #. type: Plain text
-#: ../../man/man1/man.man1:412
+#: ../../man/man1/man.man1:417
 msgid ""
 "If B<%man%> cannot find a B<%mandb%> initiated B<index> database for a "
 "particular manual page hierarchy, it will still search for the requested "
@@ -1311,7 +1325,7 @@ msgstr ""
 "タベースから情報を抽出しようとします。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:432
+#: ../../man/man1/man.man1:437
 msgid ""
 "These utilities support compressed source nroff files having, by default, "
 "the extensions of B<.Z>, B<.z> and B<.gz>.  It is possible to deal with any "
@@ -1336,7 +1350,7 @@ msgstr ""
 "なぜこのようなことを行うかに関しては、標準を参照してください。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:445
+#: ../../man/man1/man.man1:450
 msgid ""
 "International support is available with this package.  Native language "
 "manual pages are accessible (if available on your system)  via use of "
@@ -1354,7 +1368,7 @@ msgstr ""
 #
 #.  Need a \c to make sure we don't get a space where we don't want one
 #. type: Plain text
-#: ../../man/man1/man.man1:456
+#: ../../man/man1/man.man1:461
 msgid ""
 "E<lt>I<language>E<gt>[\\|B<_>E<lt>I<territory>E<gt>\\|[\\|B<."
 ">E<lt>I<character-set>E<gt>\\|[\\|B<,>E<lt>I<version>E<gt>\\|]\\|]\\|]"
@@ -1363,7 +1377,7 @@ msgstr ""
 ">E<lt>I<character-set>E<gt>\\|[\\|B<,>E<lt>I<version>E<gt>\\|]\\|]\\|]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:461
+#: ../../man/man1/man.man1:466
 msgid ""
 "If the desired page is available in your I<locale>, it will be displayed in "
 "lieu of the standard (usually American English) page."
@@ -1372,7 +1386,7 @@ msgstr ""
 "英語) ページの代わりに表示されます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:468
+#: ../../man/man1/man.man1:473
 msgid ""
 "Support for international message catalogues is also featured in this "
 "package and can be activated in the same way, again if available.  If you "
@@ -1387,7 +1401,7 @@ msgstr ""
 "連絡してください。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 msgid ""
 "For information regarding other features and extensions available with this "
 "manual pager, please read the documents supplied with the package."
@@ -1396,13 +1410,13 @@ msgstr ""
 "ジで提供されている文書を参照してください。"
 
 #. type: SH
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 #, no-wrap
 msgid "DEFAULTS"
 msgstr "デフォルトの値と動作"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:491
+#: ../../man/man1/man.man1:496
 msgid ""
 "B<%man%> will search for the desired manual pages within the I<index> "
 "database caches. If the B<-u> option is given, a cache consistency check is "
@@ -1429,7 +1443,7 @@ msgstr ""
 "かったかのように、ファイル全体を検索します。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:503
+#: ../../man/man1/man.man1:508
 msgid ""
 "Once a manual page has been located, a check is performed to find out if a "
 "relative preformatted `cat' file already exists and is newer than the nroff "
@@ -1449,7 +1463,7 @@ msgstr ""
 "表示されます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:508
+#: ../../man/man1/man.man1:513
 msgid ""
 "If a cat file can be produced (a relative cat directory exists and has "
 "appropriate permissions), B<%man%> will compress and store the cat file in "
@@ -1460,7 +1474,7 @@ msgstr ""
 "グラウンドで圧縮して保存します。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:520
+#: ../../man/man1/man.man1:525
 #, fuzzy
 #| msgid ""
 #| "The filters are deciphered by a number of means. Firstly, the command "
@@ -1482,19 +1496,19 @@ msgstr ""
 "前処理文字列が指定されている先頭行は次のようになります。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:523
+#: ../../man/man1/man.man1:528
 msgid "B<'\\e\"> E<lt>B<string>E<gt>"
 msgstr "B<'\\e\"> E<lt>B<string>E<gt>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:529
+#: ../../man/man1/man.man1:534
 msgid ""
 "where B<string> can be any combination of letters described by option B<-p> "
 "below."
 msgstr "B<string> は後で説明しているオプション B<-p> の文字の組み合わせです。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:532
+#: ../../man/man1/man.man1:537
 msgid ""
 "If none of the above methods provide any filter information, a default set "
 "is used."
@@ -1504,7 +1518,7 @@ msgstr ""
 
 #.  ********************************************************************
 #. type: Plain text
-#: ../../man/man1/man.man1:553
+#: ../../man/man1/man.man1:558
 msgid ""
 "A formatting pipeline is formed from the filters and the primary formatter "
 "(B<nroff> or [B<tg>]B<roff> with B<-t>)  and executed.  Alternatively, if an "
@@ -1522,7 +1536,7 @@ msgstr ""
 "て渡されます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 msgid ""
 "Non argument options that are duplicated either on the command line, in "
 "$B<MANOPT>, or both, are not harmful.  For options that require an argument, "
@@ -1533,13 +1547,13 @@ msgstr ""
 "された値が前に指定された値を上書きします。"
 
 #. type: SS
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 #, no-wrap
 msgid "General options"
 msgstr "一般的なオプション"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 msgid ""
 "This option is normally issued as the very first option and resets B<%man"
 "%'s> behaviour to its default.  Its use is to reset those options that may "
@@ -1551,14 +1565,14 @@ msgstr ""
 "できます。 B<-D> の後に続くオプションは通常通りの効果があります。"
 
 #. type: TP
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 #, fuzzy, no-wrap
 #| msgid "B<--warnings>[=I<warnings>]"
 msgid "B<--warnings>[=I<warnings\\/>]"
 msgstr "B<--warnings>[=I<warnings>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 msgid ""
 "Enable warnings from I<groff>.  This may be used to perform sanity checks on "
 "the source text of manual pages.  I<warnings> is a comma-separated list of "
@@ -1573,13 +1587,13 @@ msgstr ""
 "照してください。"
 
 #. type: SS
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 #, no-wrap
 msgid "Main modes of operation"
 msgstr "操作のメインモード"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:598
+#: ../../man/man1/man.man1:603
 #, fuzzy
 #| msgid ""
 #| "Equivalent to B<%whatis%>.  Display a short description from the manual "
@@ -1592,7 +1606,7 @@ msgstr ""
 "示します。詳細は B<%whatis%>(1) を参照してください。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:607
+#: ../../man/man1/man.man1:612
 msgid ""
 "Equivalent to B<%apropos%>.  Search the short manual page descriptions for "
 "keywords and display any matches.  See B<%apropos%>(1)  for details."
@@ -1602,7 +1616,7 @@ msgstr ""
 "い。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:617
+#: ../../man/man1/man.man1:622
 msgid ""
 "Search for text in all manual pages.  This is a brute-force search, and is "
 "likely to take some time; if you can, you should specify a section to reduce "
@@ -1615,11 +1629,19 @@ msgstr ""
 "るべきです。検索する語はデフォルトでは単純な文字列です。 B<--regex> オプショ"
 "ンを指定した場合は正規表現になります。"
 
+#. type: Plain text
+#: ../../man/man1/man.man1:628
+msgid ""
+"Note that this searches the I<sources> of the manual pages, not the rendered "
+"text, and so may include false positives due to things like comments in "
+"source files.  Searching the rendered text would be much slower."
+msgstr ""
+
 #.  Compressed nroff source files with a supported compression
 #.  extension will be decompressed by man prior to being displaying via the
 #.  usual filters.
 #. type: Plain text
-#: ../../man/man1/man.man1:633
+#: ../../man/man1/man.man1:644
 msgid ""
 "Activate `local' mode.  Format and display local manual files instead of "
 "searching through the system's manual collection.  Each manual page argument "
@@ -1632,7 +1654,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:637
+#: ../../man/man1/man.man1:648
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "source nroff files that would be formatted."
@@ -1641,7 +1663,7 @@ msgstr ""
 "ます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:642
+#: ../../man/man1/man.man1:653
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "cat files that would be displayed.  If -w and -W are both specified, print "
@@ -1652,7 +1674,7 @@ msgstr ""
 "す。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 msgid ""
 "This option is not for general use and should only be used by the B<%catman"
 "%> program."
@@ -1661,13 +1683,13 @@ msgstr ""
 "す。"
 
 #. type: TP
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 #, no-wrap
 msgid "B<-R\\ >I<encoding>,\\ B<--recode>=I<encoding>"
 msgstr "B<-R\\ >I<encoding>,\\ B<--recode>=I<encoding>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 msgid ""
 "Instead of formatting the manual page in the usual way, output its source "
 "converted to the specified I<encoding>.  If you already know the encoding of "
@@ -1684,13 +1706,13 @@ msgstr ""
 "く単一のエンコーディングに変換して出力できます。"
 
 #. type: SS
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 #, no-wrap
 msgid "Finding manual pages"
 msgstr "マニュアルページの検索方法"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:697
+#: ../../man/man1/man.man1:708
 msgid ""
 "If this system has access to other operating system's manual pages, they can "
 "be accessed using this option.  To search for a manual page from NewOS's "
@@ -1701,7 +1723,7 @@ msgstr ""
 "ン B<-m> B<NewOS> を使用します。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:708
+#: ../../man/man1/man.man1:719
 msgid ""
 "The I<system> specified can be a combination of comma delimited operating "
 "system names.  To include a search of the native operating system's manual "
@@ -1714,7 +1736,7 @@ msgstr ""
 "す。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:722
+#: ../../man/man1/man.man1:733
 msgid ""
 "Specify an alternate manpath to use.  By default, B<%man%> uses B<%manpath%> "
 "derived code to determine the path to search.  This option overrides the "
@@ -1725,7 +1747,7 @@ msgstr ""
 "ションは $B<MANPATH> 環境変数を上書きし、 B<-m> オプションは無視されます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 msgid ""
 "A path specified as a manpath must be the root of a manual page hierarchy "
 "structured into sections as described in the man-db manual (under \"The "
@@ -1734,13 +1756,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 #, no-wrap
 msgid "B<-S\\ >I<list>,\\ B<-s\\ >I<list>,\\ B<--sections=>I<list>"
 msgstr "B<-S\\ >I<list>,\\ B<-s\\ >I<list>,\\ B<--sections=>I<list>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 msgid ""
 "List is a colon- or comma-separated list of `order specific' manual sections "
 "to search.  This option overrides the $B<MANSECT> environment variable.  "
@@ -1751,13 +1773,13 @@ msgstr ""
 "System V との互換性のために存在します。)"
 
 #. type: TP
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 #, no-wrap
 msgid "B<-e\\ >I<sub-extension>,\\ B<--extension=>I<sub-extension>"
 msgstr "B<-e\\ >I<sub-extension>,\\ B<--extension=>I<sub-extension>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:773
+#: ../../man/man1/man.man1:784
 msgid ""
 "Some systems incorporate large packages of manual pages, such as those that "
 "accompany the B<Tcl> package, into the main manual page hierarchy.  To get "
@@ -1775,19 +1797,19 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:777
+#: ../../man/man1/man.man1:788
 msgid "Ignore case when searching for manual pages.  This is the default."
 msgstr ""
 "マニュアルページを検索する時に大文字と小文字の区別をしません。これはデフォル"
 "トの動作です。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:780
+#: ../../man/man1/man.man1:791
 msgid "Search for manual pages case-sensitively."
 msgstr "マニュアルページを検索する時に大文字と小文字を区別します。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:790
+#: ../../man/man1/man.man1:801
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument as a regular expression, as with "
@@ -1796,7 +1818,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:805
+#: ../../man/man1/man.man1:816
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument using shell-style wildcards, as with "
@@ -1807,7 +1829,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:814
+#: ../../man/man1/man.man1:825
 msgid ""
 "If the B<--regex> or B<--wildcard> option is used, match only page names, "
 "not page descriptions, as with B<whatis>(1).  Otherwise, no effect."
@@ -1817,7 +1839,7 @@ msgstr ""
 "た時も同様です。その他の場合は何も効果を及ぼしません。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:822
+#: ../../man/man1/man.man1:833
 msgid ""
 "By default, B<%man%> will exit after displaying the most suitable manual "
 "page it finds.  Using this option forces B<%man%> to display all the manual "
@@ -1828,7 +1850,7 @@ msgstr ""
 "に表示します。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:831
+#: ../../man/man1/man.man1:842
 msgid ""
 "This option causes B<%man%> to perform an `inode level' consistency check on "
 "its database caches to ensure that they are an accurate representation of "
@@ -1837,7 +1859,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:843
+#: ../../man/man1/man.man1:854
 msgid ""
 "By default, B<%man%> will try to interpret pairs of manual page names given "
 "on the command line as equivalent to a single manual page name containing a "
@@ -1848,24 +1870,24 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:852
+#: ../../man/man1/man.man1:863
 msgid "To disable this behaviour, use the B<--no-subpages> option."
 msgstr ""
 
 #. type: SS
-#: ../../man/man1/man.man1:859
+#: ../../man/man1/man.man1:870
 #, no-wrap
 msgid "Controlling formatted output"
 msgstr "整形済み出力の制御"
 
 #. type: TP
-#: ../../man/man1/man.man1:860
+#: ../../man/man1/man.man1:871
 #, no-wrap
 msgid "B<-P\\ >I<pager>,\\ B<--pager=>I<pager>"
 msgstr "B<-P\\ >I<pager>,\\ B<--pager=>I<pager>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:876
+#: ../../man/man1/man.man1:887
 msgid ""
 "Specify which output pager to use.  By default, B<%man%> uses B<%pager%>.  "
 "This option overrides the $B<MANPAGER> environment variable, which in turn "
@@ -1877,7 +1899,7 @@ msgstr ""
 "変数より優先されます。 B<-f> または B<-k> と同時に指定することはできません。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:882 ../../man/man1/man.man1:1239
+#: ../../man/man1/man.man1:893 ../../man/man1/man.man1:1250
 msgid ""
 "The value may be a simple command name or a command with arguments, and may "
 "use shell quoting (backslashes, single quotes, or double quotes).  It may "
@@ -1892,13 +1914,13 @@ msgstr ""
 "ラッパースクリプトを使用します。"
 
 #. type: TP
-#: ../../man/man1/man.man1:882
+#: ../../man/man1/man.man1:893
 #, no-wrap
 msgid "B<-r\\ >I<prompt>,\\ B<--prompt=>I<prompt>"
 msgstr "B<-r\\ >I<prompt>,\\ B<--prompt=>I<prompt>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:890
+#: ../../man/man1/man.man1:901
 msgid ""
 "If a recent version of B<less> is used as the pager, B<%man%> will attempt "
 "to set its prompt and some sensible options.  The default prompt looks like"
@@ -1908,7 +1930,7 @@ msgstr ""
 "次の通りです。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:894
+#: ../../man/man1/man.man1:905
 msgid "B<\\ Manual page>I<\\ name>B<(>I<sec>B<)>B<\\ line>I<\\ x>"
 msgstr "B<\\ Manual page>I<\\ name>B<(>I<sec>B<)>B<\\ line>I<\\ x>"
 
@@ -1917,7 +1939,7 @@ msgstr "B<\\ Manual page>I<\\ name>B<(>I<sec>B<)>B<\\ line>I<\\ x>"
 #. The actual default will depend on your chosen
 #. .BR locale .
 #. type: Plain text
-#: ../../man/man1/man.man1:909
+#: ../../man/man1/man.man1:920
 msgid ""
 "where I<name> denotes the manual page name, I<sec> denotes the section it "
 "was found under and I<x> the current line number.  This is achieved by using "
@@ -1932,7 +1954,7 @@ msgstr ""
 #. .B less
 #. rejects the default options or if you prefer a different prompt.
 #. type: Plain text
-#: ../../man/man1/man.man1:922
+#: ../../man/man1/man.man1:933
 msgid ""
 "Supplying B<-r> with a string will override this default.  The string may "
 "contain the text B<$MAN_PN> which will be expanded to the name of the "
@@ -1946,22 +1968,22 @@ msgstr ""
 "ます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:924
+#: ../../man/man1/man.man1:935
 msgid "B<\\e\\ Manual\\e\\ page\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
 msgstr "B<\\e\\ Manual\\e\\ page\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:926
+#: ../../man/man1/man.man1:937
 msgid "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
 msgstr "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:928
+#: ../../man/man1/man.man1:939
 msgid "B<(press h for help or q to quit)>"
 msgstr "B<(press h for help or q to quit)>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:943
+#: ../../man/man1/man.man1:954
 msgid ""
 "It is broken into three lines here for the sake of readability only.  For "
 "its meaning see the B<less>(1)  manual page.  The prompt string is first "
@@ -1979,14 +2001,14 @@ msgstr ""
 "B<-ix8> オプションを設定します。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:948
+#: ../../man/man1/man.man1:959
 msgid ""
 "The $B<MANLESS> environment variable described below may be used to set a "
 "default prompt string if none is supplied on the command line."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:974
+#: ../../man/man1/man.man1:985
 msgid ""
 "When viewing a pure I<ascii>(7)  manual page on a 7 bit terminal or terminal "
 "emulator, some characters may not display correctly when using the "
@@ -2005,43 +2027,43 @@ msgstr ""
 "B<nroff> の I<latin1>(7) デバイス設定を使用した場合にのみ正しく表示されます。"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Description"
 msgstr "説明"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Octal"
 msgstr "八進数"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:985
+#: ../../man/man1/man.man1:998
 #, no-wrap
 msgid "continuation hyphen"
 msgstr "continuation hyphen"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:988
+#: ../../man/man1/man.man1:1001
 #, no-wrap
 msgid "bullet (middle dot)"
 msgstr "bullet (中点)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:991
+#: ../../man/man1/man.man1:1004
 #, no-wrap
 msgid "acute accent"
 msgstr "acute アクセント"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:994
+#: ../../man/man1/man.man1:1007
 #, no-wrap
 msgid "multiplication sign"
 msgstr "乗算記号"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1018
+#: ../../man/man1/man.man1:1029
 msgid ""
 "If the I<latin1> column displays correctly, your terminal may be set up for "
 "I<latin1> characters and this option is not necessary.  If the I<latin1> and "
@@ -2057,7 +2079,7 @@ msgstr ""
 "マニュアルページを参照する時にこのオプションを使用する必要があります。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 msgid ""
 "This option is ignored when using options B<-t>, B<-H>, B<-T>, or B<-Z> and "
 "may be useless for B<nroff> other than B<GNU's>."
@@ -2066,13 +2088,13 @@ msgstr ""
 "B<GNU> B<groff> 以外を使用している場合は意味がありません。"
 
 #. type: TP
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 #, no-wrap
 msgid "B<-E\\ >I<encoding>,\\ B<--encoding>=I<encoding>"
 msgstr "B<-E\\ >I<encoding>,\\ B<--encoding>=I<encoding>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1040
+#: ../../man/man1/man.man1:1051
 msgid ""
 "Generate output for a character encoding other than the default.  For "
 "backward compatibility, I<encoding> may be an B<nroff> device such as "
@@ -2085,7 +2107,7 @@ msgstr ""
 "ます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1049
+#: ../../man/man1/man.man1:1060
 msgid ""
 "Normally, B<nroff> will automatically hyphenate text at line breaks even in "
 "words that do not contain hyphens, if it is necessary to do so to lay out "
@@ -2099,7 +2121,7 @@ msgstr ""
 "よって、ハイフンが含まれている単語のみハイフン区切りが行われます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1058
+#: ../../man/man1/man.man1:1069
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "hyphenating a word at an inappropriate point, do not use this option, but "
@@ -2114,7 +2136,7 @@ msgstr ""
 "語の最初に付加すると、その単語にはハイフンは付加されません。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1065
+#: ../../man/man1/man.man1:1076
 msgid ""
 "Normally, B<nroff> will automatically justify text to both margins.  This "
 "option disables full justification, leaving justified only to the left "
@@ -2125,7 +2147,7 @@ msgstr ""
 "\"ragged-right\" text と呼ばれます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "justifying certain paragraphs, do not use this option, but consult the "
@@ -2139,13 +2161,13 @@ msgstr ""
 "ad\" を使用すると一時的に字間調整や字詰めを無効にするように要求できます。"
 
 #. type: TP
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 #, no-wrap
 msgid "B<-p\\ >I<string>,\\ B<--preprocessor=>I<string>"
 msgstr "B<-p\\ >I<string>,\\ B<--preprocessor=>I<string>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1091
+#: ../../man/man1/man.man1:1102
 msgid ""
 "Specify the sequence of preprocessors to run before B<nroff> or B<troff>/"
 "B<groff>.  Not all installations will have a full set of preprocessors.  "
@@ -2162,7 +2184,7 @@ msgstr ""
 "きします。 B<%zsoelim%> は常に最初の前処理系として使用されます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 msgid ""
 "Use I<%troff%> to format the manual page to stdout.  This option is not "
 "required in conjunction with B<-H>, B<-T>, or B<-Z>."
@@ -2172,14 +2194,14 @@ msgstr ""
 "ん。"
 
 #. type: TP
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 #, fuzzy, no-wrap
 #| msgid "B<-T>[I<device>], B<--troff-device>[=I<device>]"
 msgid "B<-T>[I<device\\/>], B<--troff-device>[=I<device\\/>]"
 msgstr "B<-T>[I<device>], B<--troff-device>[=I<device>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 msgid ""
 "This option is used to change B<groff> (or possibly B<troff's>)  output to "
 "be suitable for a device other than the default.  It implies B<-t>.  "
@@ -2192,14 +2214,14 @@ msgstr ""
 "び B<X100> です。"
 
 #. type: TP
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 #, fuzzy, no-wrap
 #| msgid "B<-H>[I<browser>], B<--html>[=I<browser>]"
 msgid "B<-H>[I<browser\\/>], B<--html>[=I<browser\\/>]"
 msgstr "B<-H>[I<browser>], B<--html>[=I<browser>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 msgid ""
 "This option will cause B<groff> to produce HTML output, and will display "
 "that output in a web browser.  The choice of browser is determined by the "
@@ -2216,14 +2238,14 @@ msgstr ""
 "のみ有効です。"
 
 #. type: TP
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 #, fuzzy, no-wrap
 #| msgid "B<-X>[I<dpi>], B<--gxditview>[=I<dpi>]"
 msgid "B<-X>[I<dpi\\/>], B<--gxditview>[=I<dpi\\/>]"
 msgstr "B<-X>[I<dpi>], B<--gxditview>[=I<dpi>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1143
+#: ../../man/man1/man.man1:1154
 msgid ""
 "This option displays the output of B<groff> in a graphical window using the "
 "B<gxditview> program.  The I<dpi> (dots per inch) may be 75, 75-12, 100, or "
@@ -2239,7 +2261,7 @@ msgstr ""
 "れます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 msgid ""
 "B<groff> will run B<troff> and then use an appropriate post-processor to "
 "produce output suitable for the chosen device.  If I<%troff%> is B<groff>, "
@@ -2252,24 +2274,24 @@ msgstr ""
 "t> が暗黙的に指定されます。"
 
 #. type: SS
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 #, no-wrap
 msgid "Getting help"
 msgstr "ヘルプの取得"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1182
+#: ../../man/man1/man.man1:1193
 msgid "A child process returned a non-zero exit status."
 msgstr "子プロセスが 0 でない終了ステータスを返しました。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1185
+#: ../../man/man1/man.man1:1196
 msgid ""
 "At least one of the pages/files/keywords didn't exist or wasn't matched."
 msgstr "ページ、ファイル、キーワードの対象が存在しないか、一致しませんでした。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1192
+#: ../../man/man1/man.man1:1203
 msgid ""
 "If $B<MANPATH> is set, its value is used as the path to search for manual "
 "pages."
@@ -2278,7 +2300,7 @@ msgstr ""
 "て使用されます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1203
+#: ../../man/man1/man.man1:1214
 msgid ""
 "The contents of $B<MANROFFOPT> are added to the command line every time "
 "B<man> invokes the formatter (B<nroff>, B<troff>, or B<groff>)."
@@ -2287,7 +2309,7 @@ msgstr ""
 "B<groff>) を実行するたびに、コマンドラインに渡されます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1210
+#: ../../man/man1/man.man1:1221
 msgid ""
 "If $B<MANROFFSEQ> is set, its value is used to determine the set of "
 "preprocessors to pass each manual page through.  The default preprocessor "
@@ -2297,7 +2319,7 @@ msgstr ""
 "る前処理系の集合として使用されます。デフォルトの前処理系はシステム依存です。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1220 ../../man/man8/catman.man8:88
+#: ../../man/man1/man.man1:1231 ../../man/man8/catman.man8:88
 #, fuzzy
 #| msgid ""
 #| "If $B<MANSECT> is set, its value is a colon-delimited list of sections "
@@ -2314,7 +2336,7 @@ msgstr ""
 "す。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1233
+#: ../../man/man1/man.man1:1244
 msgid ""
 "If $B<MANPAGER> or $B<PAGER> is set ($B<MANPAGER> is used in preference), "
 "its value is used as the name of the program used to display the manual "
@@ -2325,7 +2347,7 @@ msgstr ""
 "されます。デフォルトでは B<%pager%> が使用されます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1258
+#: ../../man/man1/man.man1:1269
 #, fuzzy
 #| msgid ""
 #| "If $B<MANLESS> is set, B<%man%> will not perform any of its usual "
@@ -2348,7 +2370,7 @@ msgstr ""
 "\\(cq と設定します。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1274
+#: ../../man/man1/man.man1:1285
 msgid ""
 "If $B<BROWSER> is set, its value is a colon-delimited list of commands, each "
 "of which in turn is used to try to start a web browser for B<man> B<--"
@@ -2362,7 +2384,7 @@ msgstr ""
 "一のパーセント記号 (%) に、 I<%c> はコロン (:) にそれぞれ置換されます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1297
+#: ../../man/man1/man.man1:1308
 #, fuzzy
 #| msgid ""
 #| "If $B<MANOPT> is set, it will be parsed prior to B<%man%'s> command line "
@@ -2386,7 +2408,7 @@ msgstr ""
 "引数の一部にスペースが含まれる場合はエスケープしなければいけません。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1311
+#: ../../man/man1/man.man1:1322
 #, fuzzy
 #| msgid ""
 #| "If $B<MANWIDTH> is set, its value is used as the line length for which "
@@ -2413,7 +2435,7 @@ msgstr ""
 "設定が使用され、端末幅が 66 から 80 文字の間にある場合のみ保存されます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1322
+#: ../../man/man1/man.man1:1333
 msgid ""
 "Normally, when output is not being directed to a terminal (such as to a file "
 "or a pipe), formatting characters are discarded to make it easier to read "
@@ -2428,7 +2450,7 @@ msgstr ""
 "より B<%man%> と併せて使用するラッパーに書式文字を解釈させることができます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1335
+#: ../../man/man1/man.man1:1346
 msgid ""
 "Normally, when output is being directed to a terminal (usually to a pager), "
 "any error output from the command used to produce formatted versions of "
@@ -2448,7 +2470,7 @@ msgstr ""
 "は通常通り表示されます。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1347
+#: ../../man/man1/man.man1:1358
 msgid ""
 "Depending on system and implementation, either or both of $B<LANG> and "
 "$B<LC_MESSAGES> will be interrogated for the current message locale.  B<%man"
@@ -2461,29 +2483,29 @@ msgstr ""
 "てください。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1351 ../../man/man1/manpath.man1:128
-#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:198
+#: ../../man/man1/man.man1:1362 ../../man/man1/manpath.man1:128
+#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:195
 msgid "man-db configuration file."
 msgstr "man-db 設定ファイルです。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1354
+#: ../../man/man1/man.man1:1365
 msgid "A global manual page hierarchy."
 msgstr "大域マニュアルページ階層です。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 msgid "the man-db package manual, B<FSSTND>"
 msgstr ""
 
 #. type: SH
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 #, no-wrap
 msgid "HISTORY"
 msgstr "歴史"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1385
+#: ../../man/man1/man.man1:1396
 #, fuzzy
 #| msgid ""
 #| "1990, 1991 - Originally written by John W. Eaton (jwe@che.utexas.edu)."
@@ -2494,7 +2516,7 @@ msgstr ""
 "た。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1388
+#: ../../man/man1/man.man1:1399
 msgid ""
 "Dec 23 1992: Rik Faith (faith@cs.unc.edu) applied bug fixes supplied by "
 "Willem Kasdorp (wkasdo@nikhefk.nikef.nl)."
@@ -2503,7 +2525,7 @@ msgstr ""
 "(wkasdo@nikhefk.nikef.nl) によって提供されたパッチを適用しました。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1392
+#: ../../man/man1/man.man1:1403
 #, fuzzy
 #| msgid ""
 #| "30th April 1994 - 23rd February 2000: Wilf. (G.Wilford@ee.surrey.ac.uk)  "
@@ -2518,7 +2540,7 @@ msgstr ""
 "によってこのパッケージの開発と維持が行われました。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1396
+#: ../../man/man1/man.man1:1407
 #, fuzzy
 #| msgid ""
 #| "30th October 1996 - 30th March 2001: Fabrizio Polacco "
@@ -2534,7 +2556,7 @@ msgstr ""
 "のパッケージの維持と拡張が行われました。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1398
+#: ../../man/man1/man.man1:1409
 #, fuzzy
 #| msgid ""
 #| "31st March 2001 - present day: Colin Watson E<lt>cjwatson@debian.orgE<gt> "
@@ -3281,7 +3303,7 @@ msgstr ""
 "は、システムの man-db 設定ファイルで指定されているすべてのパスになります。"
 
 #. type: Plain text
-#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:216
+#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:213
 msgid "An alternate or FSSTND compliant global I<index> database cache."
 msgstr ""
 "代替または FSSTND 準拠の大域I<インデックス型>データベースキャッシュです。"
@@ -3390,19 +3412,19 @@ msgid "Berkeley db"
 msgstr "Berkeley db"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "Binary tree"
 msgstr "二分木"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61 ../../man/man8/mandb.man8:64
+#: ../../man/man8/mandb.man8:63 ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "Yes"
 msgstr "○"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "I<index.bt>"
 msgstr "I<index.bt>"
@@ -3410,18 +3432,17 @@ msgstr "I<index.bt>"
 #. type: tbl table
 #: ../../man/man8/mandb.man8:64
 #, no-wrap
-msgid "GNU gdbm v E<gt>= 1.6"
-msgstr "GNU gdbm v E<gt>= 1.6"
+msgid "GNU gdbm"
+msgstr "GNU gdbm"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:66 ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "Hashed"
 msgstr "ハッシュ"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
+#: ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "I<index.db>"
 msgstr "I<index.db>"
@@ -3429,29 +3450,23 @@ msgstr "I<index.db>"
 #. type: tbl table
 #: ../../man/man8/mandb.man8:67
 #, no-wrap
-msgid "GNU gdbm v E<lt>  1.6"
-msgstr "GNU gdbm v E<lt>  1.6"
+msgid "UNIX ndbm"
+msgstr "UNIX ndbm"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:67 ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "No"
 msgstr "×"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:70
-#, no-wrap
-msgid "UNIX ndbm"
-msgstr "UNIX ndbm"
-
-#. type: tbl table
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "I<index.(dir|pag)>"
 msgstr "I<index.(dir|pag)>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:83
+#: ../../man/man8/mandb.man8:80
 msgid ""
 "Those database types that support asynchronous updates provide enhanced "
 "speed at the cost of possible corruption in the event of unusual "
@@ -3461,19 +3476,19 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:90
+#: ../../man/man8/mandb.man8:87
 msgid "Produce no warnings."
 msgstr "警告を表示しません。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:94
+#: ../../man/man8/mandb.man8:91
 msgid ""
 "Do not spend time looking for or adding information to the databases "
 "regarding stray cats."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:98
+#: ../../man/man8/mandb.man8:95
 msgid ""
 "Do not spend time checking for deleted manual pages and purging them from "
 "the databases."
@@ -3482,7 +3497,7 @@ msgstr ""
 "ません。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:110
+#: ../../man/man8/mandb.man8:107
 msgid ""
 "By default, B<%mandb%> will try to update any previously created databases.  "
 "If a database does not exist, it will create it.  This option forces B<%mandb"
@@ -3498,7 +3513,7 @@ msgstr ""
 "となります。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:114
+#: ../../man/man8/mandb.man8:111
 msgid ""
 "Create user databases only, even with write permissions necessary to create "
 "system databases."
@@ -3507,7 +3522,7 @@ msgstr ""
 "あったとしても、システム用データベースの作成は行いません。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:120
+#: ../../man/man8/mandb.man8:117
 msgid ""
 "Perform correctness checks on manual pages in the hierarchy search path.  "
 "With this option, B<%mandb%> will not alter existing databases."
@@ -3517,7 +3532,7 @@ msgstr ""
 "スの変更は行いません。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:134
+#: ../../man/man8/mandb.man8:131
 msgid ""
 "Update only the entries for the given filename.  This option is not for "
 "general use; it is used internally by B<%man%> when it has been compiled "
@@ -3531,44 +3546,44 @@ msgstr ""
 "にします。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:141
+#: ../../man/man8/mandb.man8:138
 msgid "Show the usage message, then exit."
 msgstr "使用法を表示して終了します。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man8/mandb.man8:144
 msgid "Show the version, then exit."
 msgstr "バージョン情報を表示して終了します。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:154
+#: ../../man/man8/mandb.man8:151
 msgid "Usage, syntax, or configuration file error."
 msgstr "使用法、構文、または設定ファイルのエラーです。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 msgid "A child process failed."
 msgstr "子プロセスが異常終了しました。"
 
 #. type: SH
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 #, no-wrap
 msgid "DIAGNOSTICS"
 msgstr "診断"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 msgid "The following warning messages can be emitted during database building."
 msgstr "データベースを構築中に次の警告メッセージが表示されることがあります。"
 
 #. type: TP
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: whatis parse for page(sec) failed>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 msgid ""
 "An attempt to extract whatis line(s) from the given E<lt>filenameE<gt> "
 "failed.  This is usually due to a poorly written manual page, but if many "
@@ -3578,13 +3593,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: is a dangling symlink>"
 msgstr "B<E<lt>ファイル名E<gt> はシンボリックリンクが切れています>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 msgid ""
 "E<lt>filenameE<gt> does not exist but is referenced by a symbolic link.  "
 "Further diagnostics are usually emitted to identify the E<lt>filenameE<gt> "
@@ -3595,13 +3610,13 @@ msgstr ""
 "セージが表示されます。"
 
 #. type: TP
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: bad symlink or ROFF `.so' request>"
 msgstr "B<E<lt>ファイル名E<gt>: : シンボリックリンクまたは ROFF の `.so' 要求に誤りがあります>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 msgid ""
 "E<lt>filenameE<gt> is either a symbolic link to, or contains a ROFF include "
 "request to, a non existent file."
@@ -3610,13 +3625,13 @@ msgstr ""
 "E<lt>ファイル名E<gt>が存在しません。"
 
 #. type: TP
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: ignoring bogus filename>"
 msgstr "B<E<lt>ファイル名E<gt>: おかしなファイル名を無視しています>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 msgid ""
 "The E<lt>filenameE<gt> may or may not be a valid manual page but its name is "
 "invalid.  This is usually due to a manual page with sectional extension "
@@ -3628,13 +3643,13 @@ msgstr ""
 "る時に発生します。"
 
 #. type: TP
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 #, no-wrap
 msgid "B<E<lt>filename_maskE<gt>: competing extensions>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:194
+#: ../../man/man8/mandb.man8:191
 msgid ""
 "The wildcard E<lt>filename_maskE<gt> is not unique.  This is usually caused "
 "by the existence of both a compressed and uncompressed version of the same "
@@ -3642,12 +3657,12 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:205
+#: ../../man/man8/mandb.man8:202
 msgid "Older locations for the database cache included:"
 msgstr "過去に使用されていたデータベースキャッシュの位置:"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 msgid ""
 "The B<WHATIS PARSING> section formerly in this manual page is now part of "
 "B<lexgrog>(1)."
index d8a4282..3d1b9d4 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2015-08-02 12:29+0100\n"
+"POT-Creation-Date: 2016-12-11 13:52+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -104,13 +104,13 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: ../../man/man1/apropos.man1:61 ../../man/man1/lexgrog.man1:45 ../../man/man1/man.man1:553 ../../man/man1/manconv.man1:50 ../../man/man1/manpath.man1:37 ../../man/man1/whatis.man1:71 ../../man/man1/zsoelim.man1:55 ../../man/man8/accessdb.man8:29 ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:83
+#: ../../man/man1/apropos.man1:61 ../../man/man1/lexgrog.man1:45 ../../man/man1/man.man1:558 ../../man/man1/manconv.man1:50 ../../man/man1/manpath.man1:37 ../../man/man1/whatis.man1:71 ../../man/man1/zsoelim.man1:55 ../../man/man8/accessdb.man8:29 ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:80
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:65 ../../man/man1/lexgrog.man1:49 ../../man/man1/man.man1:567 ../../man/man1/manconv.man1:66 ../../man/man1/manpath.man1:44 ../../man/man1/whatis.man1:75 ../../man/man8/accessdb.man8:33 ../../man/man8/catman.man8:59 ../../man/man8/mandb.man8:87
+#: ../../man/man1/apropos.man1:65 ../../man/man1/lexgrog.man1:49 ../../man/man1/man.man1:572 ../../man/man1/manconv.man1:66 ../../man/man1/manpath.man1:44 ../../man/man1/whatis.man1:75 ../../man/man8/accessdb.man8:33 ../../man/man8/catman.man8:59 ../../man/man8/mandb.man8:84
 msgid "Print debugging information."
 msgstr ""
 
@@ -184,7 +184,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:690 ../../man/man1/manpath.man1:66 ../../man/man1/whatis.man1:133
+#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:701 ../../man/man1/manpath.man1:66 ../../man/man1/whatis.man1:133
 msgid ""
 "B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|, "
 "B<--systems=>I<system>\\|[\\|,.\\|.\\|.\\|]"
@@ -208,7 +208,7 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:709 ../../man/man1/whatis.man1:152 ../../man/man8/catman.man8:59
+#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:720 ../../man/man1/whatis.man1:152 ../../man/man8/catman.man8:59
 #, no-wrap
 msgid "B<-M\\ >I<path>,\\ B<--manpath=>I<path>"
 msgstr ""
@@ -224,13 +224,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:660 ../../man/man1/whatis.man1:166
+#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:671 ../../man/man1/whatis.man1:166
 #, no-wrap
 msgid "B<-L\\ >I<locale>,\\ B<--locale=>I<locale>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:684 ../../man/man1/whatis.man1:183
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:695 ../../man/man1/whatis.man1:183
 msgid ""
 "B<%program%> will normally determine your current locale by a call to the C "
 "function B<setlocale>(3)  which interrogates various environment variables, "
@@ -242,49 +242,49 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:560 ../../man/man1/manpath.man1:85 ../../man/man1/whatis.man1:183 ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:134
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:565 ../../man/man1/manpath.man1:85 ../../man/man1/whatis.man1:183 ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:131
 #, no-wrap
 msgid "B<-C\\ >I<file>,\\ B<--config-file=>I<file>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:564 ../../man/man1/manpath.man1:89 ../../man/man1/whatis.man1:187 ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:138
+#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:569 ../../man/man1/manpath.man1:89 ../../man/man1/whatis.man1:187 ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:135
 msgid "Use this user configuration file rather than the default of I<~/.manpath>."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:186 ../../man/man1/lexgrog.man1:89 ../../man/man1/man.man1:1163 ../../man/man1/manconv.man1:69 ../../man/man1/manpath.man1:92 ../../man/man1/whatis.man1:190 ../../man/man1/zsoelim.man1:67 ../../man/man8/accessdb.man8:36 ../../man/man8/catman.man8:71
+#: ../../man/man1/apropos.man1:186 ../../man/man1/lexgrog.man1:89 ../../man/man1/man.man1:1174 ../../man/man1/manconv.man1:69 ../../man/man1/manpath.man1:92 ../../man/man1/whatis.man1:190 ../../man/man1/zsoelim.man1:67 ../../man/man8/accessdb.man8:36 ../../man/man8/catman.man8:71
 msgid "Print a help message and exit."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:189 ../../man/man1/lexgrog.man1:92 ../../man/man1/man.man1:1166 ../../man/man1/manpath.man1:95 ../../man/man1/whatis.man1:193 ../../man/man8/accessdb.man8:39 ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:144
+#: ../../man/man1/apropos.man1:189 ../../man/man1/lexgrog.man1:92 ../../man/man1/man.man1:1177 ../../man/man1/manpath.man1:95 ../../man/man1/whatis.man1:193 ../../man/man8/accessdb.man8:39 ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:141
 msgid "Print a short usage message and exit."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95 ../../man/man1/man.man1:1169 ../../man/man1/manconv.man1:72 ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:196 ../../man/man1/zsoelim.man1:70 ../../man/man8/accessdb.man8:42 ../../man/man8/catman.man8:77
+#: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95 ../../man/man1/man.man1:1180 ../../man/man1/manconv.man1:72 ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:196 ../../man/man1/zsoelim.man1:70 ../../man/man8/accessdb.man8:42 ../../man/man8/catman.man8:77
 msgid "Display version information."
 msgstr ""
 
 #. type: SH
-#: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95 ../../man/man1/man.man1:1169 ../../man/man1/whatis.man1:196 ../../man/man8/mandb.man8:147
+#: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95 ../../man/man1/man.man1:1180 ../../man/man1/whatis.man1:196 ../../man/man8/mandb.man8:144
 #, no-wrap
 msgid "EXIT STATUS"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:196 ../../man/man1/lexgrog.man1:99 ../../man/man1/man.man1:1173 ../../man/man1/whatis.man1:200 ../../man/man8/mandb.man8:151
+#: ../../man/man1/apropos.man1:196 ../../man/man1/lexgrog.man1:99 ../../man/man1/man.man1:1184 ../../man/man1/whatis.man1:200 ../../man/man8/mandb.man8:148
 msgid "Successful program execution."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1176 ../../man/man1/whatis.man1:203
+#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1187 ../../man/man1/whatis.man1:203
 msgid "Usage, syntax or configuration file error."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1179 ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:157
+#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1190 ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:154
 msgid "Operational error."
 msgstr ""
 
@@ -294,13 +294,13 @@ msgid "Nothing was found that matched the criteria specified."
 msgstr ""
 
 #. type: SH
-#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1185 ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:209 ../../man/man8/catman.man8:77
+#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1196 ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:209 ../../man/man8/catman.man8:77
 #, no-wrap
 msgid "ENVIRONMENT"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1282 ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:218
+#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1293 ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:218
 msgid ""
 "If $B<SYSTEM> is set, it will have the same effect as if it had been "
 "specified as the argument to the B<-m> option."
@@ -331,18 +331,18 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1347 ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:236 ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:194
+#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1358 ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:236 ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:191
 #, no-wrap
 msgid "FILES"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1359 ../../man/man1/whatis.man1:242 ../../man/man8/catman.man8:103 ../../man/man8/mandb.man8:210
+#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1370 ../../man/man1/whatis.man1:242 ../../man/man8/catman.man8:103 ../../man/man8/mandb.man8:207
 msgid "A traditional global I<index> database cache."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1365 ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:203
+#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1376 ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:200
 msgid "An FHS compliant global I<index> database cache."
 msgstr ""
 
@@ -352,13 +352,13 @@ msgid "A traditional B<whatis> text database."
 msgstr ""
 
 #. type: SH
-#: ../../man/man1/apropos.man1:258 ../../man/man1/lexgrog.man1:197 ../../man/man1/man.man1:1365 ../../man/man1/manconv.man1:72 ../../man/man1/manpath.man1:128 ../../man/man1/whatis.man1:253 ../../man/man1/zsoelim.man1:70 ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:216
+#: ../../man/man1/apropos.man1:258 ../../man/man1/lexgrog.man1:197 ../../man/man1/man.man1:1376 ../../man/man1/manconv.man1:72 ../../man/man1/manpath.man1:128 ../../man/man1/whatis.man1:253 ../../man/man1/zsoelim.man1:70 ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:213
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
 
 #. type: SH
-#: ../../man/man1/apropos.man1:262 ../../man/man1/lexgrog.man1:207 ../../man/man1/manconv.man1:75 ../../man/man1/manpath.man1:132 ../../man/man1/whatis.man1:257 ../../man/man1/zsoelim.man1:75 ../../man/man8/accessdb.man8:42 ../../man/man8/catman.man8:113 ../../man/man8/mandb.man8:226
+#: ../../man/man1/apropos.man1:262 ../../man/man1/lexgrog.man1:207 ../../man/man1/manconv.man1:75 ../../man/man1/manpath.man1:132 ../../man/man1/whatis.man1:257 ../../man/man1/zsoelim.man1:75 ../../man/man8/accessdb.man8:42 ../../man/man8/catman.man8:113 ../../man/man8/mandb.man8:223
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -618,7 +618,8 @@ msgid ""
 "I<encoding>\\|] [\\|B<--no-hyphenation>\\|] [\\|B<--no-justification>\\|] "
 "[\\|B<-p> I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|[\\|I<device>\\|]\\|] "
 "[\\|B<-H>\\|[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|I<dpi>\\|]\\|] "
-"[\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>\\ .\\|.\\|.\\|]\\ .\\|.\\|.\\&"
+"[\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>[.\\|I<section>\\|]\\ "
+"\\|.\\|.\\|.\\|]\\ .\\|.\\|.\\&"
 msgstr ""
 
 #.  The --global-apropos command line
@@ -632,7 +633,7 @@ msgstr ""
 #: ../../man/man1/man.man1:86
 msgid ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] "
-"[\\|B<-i>\\||\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<section>\\|] I<term>\\ "
+"[\\|B<-i>\\||\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ "
 ".\\|.\\|.\\&"
 msgstr ""
 
@@ -698,43 +699,43 @@ msgid ""
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:189
+#: ../../man/man1/man.man1:191
 #, no-wrap
 msgid "Executable programs or shell commands"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:192
+#: ../../man/man1/man.man1:194
 #, no-wrap
 msgid "System calls (functions provided by the kernel)"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:195
+#: ../../man/man1/man.man1:197
 #, no-wrap
 msgid "Library calls (functions within program libraries)"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:198
+#: ../../man/man1/man.man1:200
 #, no-wrap
 msgid "Special files (usually found in I</dev\\/>)"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:201
+#: ../../man/man1/man.man1:203
 #, no-wrap
 msgid "File formats and conventions eg I</etc/passwd>"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:204
+#: ../../man/man1/man.man1:206
 #, no-wrap
 msgid "Games"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:207
+#: ../../man/man1/man.man1:210
 #, no-wrap
 msgid ""
 "Miscellaneous (including macro packages and conventions),\n"
@@ -742,13 +743,13 @@ msgid ""
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:211
+#: ../../man/man1/man.man1:213
 #, no-wrap
 msgid "System administration commands (usually only for root)"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:214
+#: ../../man/man1/man.man1:216
 #, no-wrap
 msgid "Kernel routines [\\|Non standard\\|]"
 msgstr ""
@@ -781,7 +782,7 @@ msgid "B<bold text>"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:250
+#: ../../man/man1/man.man1:252
 #, no-wrap
 msgid "type exactly as shown."
 msgstr ""
@@ -793,7 +794,7 @@ msgid "I<italic text>"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:253
+#: ../../man/man1/man.man1:255
 #, no-wrap
 msgid "replace with appropriate argument."
 msgstr ""
@@ -805,7 +806,7 @@ msgid "[\\|B<-abc>\\|]"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:256
+#: ../../man/man1/man.man1:258
 #, no-wrap
 msgid "any or all arguments within [ ] are optional."
 msgstr ""
@@ -817,7 +818,7 @@ msgid "B<-a\\|>|\\|B<-b>"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:259
+#: ../../man/man1/man.man1:261
 #, no-wrap
 msgid "options delimited by | cannot be used together."
 msgstr ""
@@ -829,7 +830,7 @@ msgid "I<argument> .\\|.\\|."
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:262
+#: ../../man/man1/man.man1:264
 #, no-wrap
 msgid "I<argument> is repeatable."
 msgstr ""
@@ -841,7 +842,7 @@ msgid "[\\|I<expression>\\|] .\\|.\\|."
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:265
+#: ../../man/man1/man.man1:267
 #, no-wrap
 msgid "entire I<expression>\\ within [ ] is repeatable."
 msgstr ""
@@ -877,11 +878,22 @@ msgstr ""
 #. type: TP
 #: ../../man/man1/man.man1:287
 #, no-wrap
+msgid "B<%man% >I<man>.I<7>"
+msgstr ""
+
+#. type: Plain text
+#: ../../man/man1/man.man1:292
+msgid "Display the manual page for macro package I<man> from section I<7>."
+msgstr ""
+
+#. type: TP
+#: ../../man/man1/man.man1:292
+#, no-wrap
 msgid "B<%man%\\ -a>I<\\ intro>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 msgid ""
 "Display, in succession, all of the available I<intro> manual pages contained "
 "within the manual.  It is possible to quit between successive displays or "
@@ -889,13 +901,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 #, no-wrap
 msgid "B<%man% -t >I<alias >|I< lpr -Pps>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 msgid ""
 "Format the manual page referenced by `I<alias>', usually a shell manual "
 "page, into the default B<troff> or B<groff> format and pipe it to the "
@@ -905,13 +917,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 #, no-wrap
 msgid "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 msgid ""
 "This command will decompress and format the nroff source manual page "
 "I<./foo.1x.gz> into a B<device independent (dvi)> file.  The redirection is "
@@ -921,13 +933,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 #, no-wrap
 msgid "B<%man%\\ -k>I<\\ printf>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 msgid ""
 "Search the short descriptions and manual page names for the keyword "
 "I<printf> as regular expression.  Print out any matches.  Equivalent to "
@@ -935,26 +947,26 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 #, no-wrap
 msgid "B<%man%\\ -f>I<\\ smail>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 msgid ""
 "Lookup the manual pages referenced by I<smail> and print out the short "
 "descriptions of any found.  Equivalent to B<%whatis%>I<\\ smail>B<.>"
 msgstr ""
 
 #. type: SH
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 #, no-wrap
 msgid "OVERVIEW"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:347
+#: ../../man/man1/man.man1:352
 msgid ""
 "Many options are available to B<%man%> in order to give as much flexibility "
 "as possible to the user.  Changes can be made to the search path, section "
@@ -962,7 +974,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:369
+#: ../../man/man1/man.man1:374
 msgid ""
 "If set, various environment variables are interrogated to determine the "
 "operation of B<%man%>.  It is possible to set the `catch all' variable "
@@ -977,7 +989,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:390
+#: ../../man/man1/man.man1:395
 msgid ""
 "The manual pager utilities packaged as B<man-db> make extensive use of "
 "B<index> database caches.  These caches contain information such as where "
@@ -993,7 +1005,7 @@ msgstr ""
 #. .B index
 #. caches created `on the fly'.
 #. type: Plain text
-#: ../../man/man1/man.man1:412
+#: ../../man/man1/man.man1:417
 msgid ""
 "If B<%man%> cannot find a B<%mandb%> initiated B<index> database for a "
 "particular manual page hierarchy, it will still search for the requested "
@@ -1003,7 +1015,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:432
+#: ../../man/man1/man.man1:437
 msgid ""
 "These utilities support compressed source nroff files having, by default, "
 "the extensions of B<.Z>, B<.z> and B<.gz>.  It is possible to deal with any "
@@ -1019,7 +1031,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:445
+#: ../../man/man1/man.man1:450
 msgid ""
 "International support is available with this package.  Native language "
 "manual pages are accessible (if available on your system)  via use of "
@@ -1032,19 +1044,19 @@ msgstr ""
 #
 #.  Need a \c to make sure we don't get a space where we don't want one
 #. type: Plain text
-#: ../../man/man1/man.man1:456
+#: ../../man/man1/man.man1:461
 msgid "E<lt>I<language>E<gt>[\\|B<_>E<lt>I<territory>E<gt>\\|[\\|B<.>E<lt>I<character-set>E<gt>\\|[\\|B<,>E<lt>I<version>E<gt>\\|]\\|]\\|]"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:461
+#: ../../man/man1/man.man1:466
 msgid ""
 "If the desired page is available in your I<locale>, it will be displayed in "
 "lieu of the standard (usually American English) page."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:468
+#: ../../man/man1/man.man1:473
 msgid ""
 "Support for international message catalogues is also featured in this "
 "package and can be activated in the same way, again if available.  If you "
@@ -1054,20 +1066,20 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 msgid ""
 "For information regarding other features and extensions available with this "
 "manual pager, please read the documents supplied with the package."
 msgstr ""
 
 #. type: SH
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 #, no-wrap
 msgid "DEFAULTS"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:491
+#: ../../man/man1/man.man1:496
 msgid ""
 "B<%man%> will search for the desired manual pages within the I<index> "
 "database caches. If the B<-u> option is given, a cache consistency check is "
@@ -1083,7 +1095,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:503
+#: ../../man/man1/man.man1:508
 msgid ""
 "Once a manual page has been located, a check is performed to find out if a "
 "relative preformatted `cat' file already exists and is newer than the nroff "
@@ -1095,7 +1107,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:508
+#: ../../man/man1/man.man1:513
 msgid ""
 "If a cat file can be produced (a relative cat directory exists and has "
 "appropriate permissions), B<%man%> will compress and store the cat file in "
@@ -1103,7 +1115,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:520
+#: ../../man/man1/man.man1:525
 msgid ""
 "The filters are deciphered by a number of means.  Firstly, the command line "
 "option B<-p> or the environment variable $B<MANROFFSEQ> is interrogated.  If "
@@ -1113,19 +1125,19 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:523
+#: ../../man/man1/man.man1:528
 msgid "B<'\\e\"> E<lt>B<string>E<gt>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:529
+#: ../../man/man1/man.man1:534
 msgid ""
 "where B<string> can be any combination of letters described by option B<-p> "
 "below."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:532
+#: ../../man/man1/man.man1:537
 msgid ""
 "If none of the above methods provide any filter information, a default set "
 "is used."
@@ -1133,7 +1145,7 @@ msgstr ""
 
 #.  ********************************************************************
 #. type: Plain text
-#: ../../man/man1/man.man1:553
+#: ../../man/man1/man.man1:558
 msgid ""
 "A formatting pipeline is formed from the filters and the primary formatter "
 "(B<nroff> or [B<tg>]B<roff> with B<-t>)  and executed.  Alternatively, if an "
@@ -1144,7 +1156,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 msgid ""
 "Non argument options that are duplicated either on the command line, in "
 "$B<MANOPT>, or both, are not harmful.  For options that require an argument, "
@@ -1152,13 +1164,13 @@ msgid ""
 msgstr ""
 
 #. type: SS
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 #, no-wrap
 msgid "General options"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 msgid ""
 "This option is normally issued as the very first option and resets "
 "B<%man%'s> behaviour to its default.  Its use is to reset those options that "
@@ -1167,13 +1179,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 #, no-wrap
 msgid "B<--warnings>[=I<warnings\\/>]"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 msgid ""
 "Enable warnings from I<groff>.  This may be used to perform sanity checks on "
 "the source text of manual pages.  I<warnings> is a comma-separated list of "
@@ -1183,27 +1195,27 @@ msgid ""
 msgstr ""
 
 #. type: SS
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 #, no-wrap
 msgid "Main modes of operation"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:598
+#: ../../man/man1/man.man1:603
 msgid ""
 "Equivalent to B<%whatis%>.  Display a short description from the manual "
 "page, if available.  See B<%whatis%>(1)  for details."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:607
+#: ../../man/man1/man.man1:612
 msgid ""
 "Equivalent to B<%apropos%>.  Search the short manual page descriptions for "
 "keywords and display any matches.  See B<%apropos%>(1)  for details."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:617
+#: ../../man/man1/man.man1:622
 msgid ""
 "Search for text in all manual pages.  This is a brute-force search, and is "
 "likely to take some time; if you can, you should specify a section to reduce "
@@ -1212,11 +1224,19 @@ msgid ""
 "used."
 msgstr ""
 
+#. type: Plain text
+#: ../../man/man1/man.man1:628
+msgid ""
+"Note that this searches the I<sources> of the manual pages, not the rendered "
+"text, and so may include false positives due to things like comments in "
+"source files.  Searching the rendered text would be much slower."
+msgstr ""
+
 #.  Compressed nroff source files with a supported compression
 #.  extension will be decompressed by man prior to being displaying via the
 #.  usual filters.
 #. type: Plain text
-#: ../../man/man1/man.man1:633
+#: ../../man/man1/man.man1:644
 msgid ""
 "Activate `local' mode.  Format and display local manual files instead of "
 "searching through the system's manual collection.  Each manual page argument "
@@ -1229,14 +1249,14 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:637
+#: ../../man/man1/man.man1:648
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "source nroff files that would be formatted."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:642
+#: ../../man/man1/man.man1:653
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "cat files that would be displayed.  If -w and -W are both specified, print "
@@ -1244,20 +1264,20 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 msgid ""
 "This option is not for general use and should only be used by the "
 "B<%catman%> program."
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 #, no-wrap
 msgid "B<-R\\ >I<encoding>,\\ B<--recode>=I<encoding>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 msgid ""
 "Instead of formatting the manual page in the usual way, output its source "
 "converted to the specified I<encoding>.  If you already know the encoding of "
@@ -1268,13 +1288,13 @@ msgid ""
 msgstr ""
 
 #. type: SS
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 #, no-wrap
 msgid "Finding manual pages"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:697
+#: ../../man/man1/man.man1:708
 msgid ""
 "If this system has access to other operating system's manual pages, they can "
 "be accessed using this option.  To search for a manual page from NewOS's "
@@ -1282,7 +1302,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:708
+#: ../../man/man1/man.man1:719
 msgid ""
 "The I<system> specified can be a combination of comma delimited operating "
 "system names.  To include a search of the native operating system's manual "
@@ -1291,7 +1311,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:722
+#: ../../man/man1/man.man1:733
 msgid ""
 "Specify an alternate manpath to use.  By default, B<%man%> uses B<%manpath%> "
 "derived code to determine the path to search.  This option overrides the "
@@ -1299,7 +1319,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 msgid ""
 "A path specified as a manpath must be the root of a manual page hierarchy "
 "structured into sections as described in the man-db manual (under \"The "
@@ -1308,13 +1328,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 #, no-wrap
 msgid "B<-S\\ >I<list>,\\ B<-s\\ >I<list>,\\ B<--sections=>I<list>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 msgid ""
 "List is a colon- or comma-separated list of `order specific' manual sections "
 "to search.  This option overrides the $B<MANSECT> environment variable.  "
@@ -1322,13 +1342,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 #, no-wrap
 msgid "B<-e\\ >I<sub-extension>,\\ B<--extension=>I<sub-extension>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:773
+#: ../../man/man1/man.man1:784
 msgid ""
 "Some systems incorporate large packages of manual pages, such as those that "
 "accompany the B<Tcl> package, into the main manual page hierarchy.  To get "
@@ -1346,17 +1366,17 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:777
+#: ../../man/man1/man.man1:788
 msgid "Ignore case when searching for manual pages.  This is the default."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:780
+#: ../../man/man1/man.man1:791
 msgid "Search for manual pages case-sensitively."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:790
+#: ../../man/man1/man.man1:801
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument as a regular expression, as with "
@@ -1365,7 +1385,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:805
+#: ../../man/man1/man.man1:816
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument using shell-style wildcards, as with "
@@ -1376,14 +1396,14 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:814
+#: ../../man/man1/man.man1:825
 msgid ""
 "If the B<--regex> or B<--wildcard> option is used, match only page names, "
 "not page descriptions, as with B<whatis>(1).  Otherwise, no effect."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:822
+#: ../../man/man1/man.man1:833
 msgid ""
 "By default, B<%man%> will exit after displaying the most suitable manual "
 "page it finds.  Using this option forces B<%man%> to display all the manual "
@@ -1391,7 +1411,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:831
+#: ../../man/man1/man.man1:842
 msgid ""
 "This option causes B<%man%> to perform an `inode level' consistency check on "
 "its database caches to ensure that they are an accurate representation of "
@@ -1400,7 +1420,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:843
+#: ../../man/man1/man.man1:854
 msgid ""
 "By default, B<%man%> will try to interpret pairs of manual page names given "
 "on the command line as equivalent to a single manual page name containing a "
@@ -1411,24 +1431,24 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:852
+#: ../../man/man1/man.man1:863
 msgid "To disable this behaviour, use the B<--no-subpages> option."
 msgstr ""
 
 #. type: SS
-#: ../../man/man1/man.man1:859
+#: ../../man/man1/man.man1:870
 #, no-wrap
 msgid "Controlling formatted output"
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:860
+#: ../../man/man1/man.man1:871
 #, no-wrap
 msgid "B<-P\\ >I<pager>,\\ B<--pager=>I<pager>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:876
+#: ../../man/man1/man.man1:887
 msgid ""
 "Specify which output pager to use.  By default, B<%man%> uses B<%pager%>.  "
 "This option overrides the $B<MANPAGER> environment variable, which in turn "
@@ -1437,7 +1457,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:882 ../../man/man1/man.man1:1239
+#: ../../man/man1/man.man1:893 ../../man/man1/man.man1:1250
 msgid ""
 "The value may be a simple command name or a command with arguments, and may "
 "use shell quoting (backslashes, single quotes, or double quotes).  It may "
@@ -1447,20 +1467,20 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:882
+#: ../../man/man1/man.man1:893
 #, no-wrap
 msgid "B<-r\\ >I<prompt>,\\ B<--prompt=>I<prompt>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:890
+#: ../../man/man1/man.man1:901
 msgid ""
 "If a recent version of B<less> is used as the pager, B<%man%> will attempt "
 "to set its prompt and some sensible options.  The default prompt looks like"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:894
+#: ../../man/man1/man.man1:905
 msgid "B<\\ Manual page>I<\\ name>B<(>I<sec>B<)>B<\\ line>I<\\ x>"
 msgstr ""
 
@@ -1469,7 +1489,7 @@ msgstr ""
 #. The actual default will depend on your chosen
 #. .BR locale .
 #. type: Plain text
-#: ../../man/man1/man.man1:909
+#: ../../man/man1/man.man1:920
 msgid ""
 "where I<name> denotes the manual page name, I<sec> denotes the section it "
 "was found under and I<x> the current line number.  This is achieved by using "
@@ -1481,7 +1501,7 @@ msgstr ""
 #. .B less
 #. rejects the default options or if you prefer a different prompt.
 #. type: Plain text
-#: ../../man/man1/man.man1:922
+#: ../../man/man1/man.man1:933
 msgid ""
 "Supplying B<-r> with a string will override this default.  The string may "
 "contain the text B<$MAN_PN> which will be expanded to the name of the "
@@ -1490,22 +1510,22 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:924
+#: ../../man/man1/man.man1:935
 msgid "B<\\e\\ Manual\\e\\ page\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:926
+#: ../../man/man1/man.man1:937
 msgid "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:928
+#: ../../man/man1/man.man1:939
 msgid "B<(press h for help or q to quit)>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:943
+#: ../../man/man1/man.man1:954
 msgid ""
 "It is broken into three lines here for the sake of readability only.  For "
 "its meaning see the B<less>(1)  manual page.  The prompt string is first "
@@ -1516,14 +1536,14 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:948
+#: ../../man/man1/man.man1:959
 msgid ""
 "The $B<MANLESS> environment variable described below may be used to set a "
 "default prompt string if none is supplied on the command line."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:974
+#: ../../man/man1/man.man1:985
 msgid ""
 "When viewing a pure I<ascii>(7)  manual page on a 7 bit terminal or terminal "
 "emulator, some characters may not display correctly when using the "
@@ -1535,43 +1555,43 @@ msgid ""
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Description"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Octal"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:985
+#: ../../man/man1/man.man1:998
 #, no-wrap
 msgid "continuation hyphen"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:988
+#: ../../man/man1/man.man1:1001
 #, no-wrap
 msgid "bullet (middle dot)"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:991
+#: ../../man/man1/man.man1:1004
 #, no-wrap
 msgid "acute accent"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:994
+#: ../../man/man1/man.man1:1007
 #, no-wrap
 msgid "multiplication sign"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1018
+#: ../../man/man1/man.man1:1029
 msgid ""
 "If the I<latin1> column displays correctly, your terminal may be set up for "
 "I<latin1> characters and this option is not necessary.  If the I<latin1> and "
@@ -1582,20 +1602,20 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 msgid ""
 "This option is ignored when using options B<-t>, B<-H>, B<-T>, or B<-Z> and "
 "may be useless for B<nroff> other than B<GNU's>."
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 #, no-wrap
 msgid "B<-E\\ >I<encoding>,\\ B<--encoding>=I<encoding>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1040
+#: ../../man/man1/man.man1:1051
 msgid ""
 "Generate output for a character encoding other than the default.  For "
 "backward compatibility, I<encoding> may be an B<nroff> device such as "
@@ -1604,7 +1624,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1049
+#: ../../man/man1/man.man1:1060
 msgid ""
 "Normally, B<nroff> will automatically hyphenate text at line breaks even in "
 "words that do not contain hyphens, if it is necessary to do so to lay out "
@@ -1614,7 +1634,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1058
+#: ../../man/man1/man.man1:1069
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "hyphenating a word at an inappropriate point, do not use this option, but "
@@ -1624,7 +1644,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1065
+#: ../../man/man1/man.man1:1076
 msgid ""
 "Normally, B<nroff> will automatically justify text to both margins.  This "
 "option disables full justification, leaving justified only to the left "
@@ -1632,7 +1652,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "justifying certain paragraphs, do not use this option, but consult the "
@@ -1642,13 +1662,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 #, no-wrap
 msgid "B<-p\\ >I<string>,\\ B<--preprocessor=>I<string>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1091
+#: ../../man/man1/man.man1:1102
 msgid ""
 "Specify the sequence of preprocessors to run before B<nroff> or "
 "B<troff>/B<groff>.  Not all installations will have a full set of "
@@ -1660,20 +1680,20 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 msgid ""
 "Use I<%troff%> to format the manual page to stdout.  This option is not "
 "required in conjunction with B<-H>, B<-T>, or B<-Z>."
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 #, no-wrap
 msgid "B<-T>[I<device\\/>], B<--troff-device>[=I<device\\/>]"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 msgid ""
 "This option is used to change B<groff> (or possibly B<troff's>)  output to "
 "be suitable for a device other than the default.  It implies B<-t>.  "
@@ -1682,13 +1702,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 #, no-wrap
 msgid "B<-H>[I<browser\\/>], B<--html>[=I<browser\\/>]"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 msgid ""
 "This option will cause B<groff> to produce HTML output, and will display "
 "that output in a web browser.  The choice of browser is determined by the "
@@ -1699,13 +1719,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 #, no-wrap
 msgid "B<-X>[I<dpi\\/>], B<--gxditview>[=I<dpi\\/>]"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1143
+#: ../../man/man1/man.man1:1154
 msgid ""
 "This option displays the output of B<groff> in a graphical window using the "
 "B<gxditview> program.  The I<dpi> (dots per inch) may be 75, 75-12, 100, or "
@@ -1715,7 +1735,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 msgid ""
 "B<groff> will run B<troff> and then use an appropriate post-processor to "
 "produce output suitable for the chosen device.  If I<%troff%> is B<groff>, "
@@ -1724,37 +1744,37 @@ msgid ""
 msgstr ""
 
 #. type: SS
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 #, no-wrap
 msgid "Getting help"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1182
+#: ../../man/man1/man.man1:1193
 msgid "A child process returned a non-zero exit status."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1185
+#: ../../man/man1/man.man1:1196
 msgid "At least one of the pages/files/keywords didn't exist or wasn't matched."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1192
+#: ../../man/man1/man.man1:1203
 msgid ""
 "If $B<MANPATH> is set, its value is used as the path to search for manual "
 "pages."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1203
+#: ../../man/man1/man.man1:1214
 msgid ""
 "The contents of $B<MANROFFOPT> are added to the command line every time "
 "B<man> invokes the formatter (B<nroff>, B<troff>, or B<groff>)."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1210
+#: ../../man/man1/man.man1:1221
 msgid ""
 "If $B<MANROFFSEQ> is set, its value is used to determine the set of "
 "preprocessors to pass each manual page through.  The default preprocessor "
@@ -1762,7 +1782,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1220 ../../man/man8/catman.man8:88
+#: ../../man/man1/man.man1:1231 ../../man/man8/catman.man8:88
 msgid ""
 "If $B<MANSECT> is set, its value is a colon-delimited list of sections and "
 "it is used to determine which manual sections to search and in what order.  "
@@ -1771,7 +1791,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1233
+#: ../../man/man1/man.man1:1244
 msgid ""
 "If $B<MANPAGER> or $B<PAGER> is set ($B<MANPAGER> is used in preference), "
 "its value is used as the name of the program used to display the manual "
@@ -1779,7 +1799,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1258
+#: ../../man/man1/man.man1:1269
 msgid ""
 "If $B<MANLESS> is set, its value will be used as the default prompt string "
 "for the B<less> pager, as if it had been passed using the B<-r> option (so "
@@ -1790,7 +1810,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1274
+#: ../../man/man1/man.man1:1285
 msgid ""
 "If $B<BROWSER> is set, its value is a colon-delimited list of commands, each "
 "of which in turn is used to try to start a web browser for B<man> "
@@ -1800,7 +1820,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1297
+#: ../../man/man1/man.man1:1308
 msgid ""
 "If $B<MANOPT> is set, it will be parsed prior to B<%man%'s> command line and "
 "is expected to be in a similar format.  As all of the other B<%man%> "
@@ -1811,7 +1831,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1311
+#: ../../man/man1/man.man1:1322
 msgid ""
 "If $B<MANWIDTH> is set, its value is used as the line length for which "
 "manual pages should be formatted.  If it is not set, manual pages will be "
@@ -1823,7 +1843,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1322
+#: ../../man/man1/man.man1:1333
 msgid ""
 "Normally, when output is not being directed to a terminal (such as to a file "
 "or a pipe), formatting characters are discarded to make it easier to read "
@@ -1834,7 +1854,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1335
+#: ../../man/man1/man.man1:1346
 msgid ""
 "Normally, when output is being directed to a terminal (usually to a pager), "
 "any error output from the command used to produce formatted versions of "
@@ -1847,7 +1867,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1347
+#: ../../man/man1/man.man1:1358
 msgid ""
 "Depending on system and implementation, either or both of $B<LANG> and "
 "$B<LC_MESSAGES> will be interrogated for the current message locale.  "
@@ -1856,42 +1876,42 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1351 ../../man/man1/manpath.man1:128 ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:198
+#: ../../man/man1/man.man1:1362 ../../man/man1/manpath.man1:128 ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:195
 msgid "man-db configuration file."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1354
+#: ../../man/man1/man.man1:1365
 msgid "A global manual page hierarchy."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 msgid "the man-db package manual, B<FSSTND>"
 msgstr ""
 
 #. type: SH
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 #, no-wrap
 msgid "HISTORY"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1385
+#: ../../man/man1/man.man1:1396
 msgid ""
 "1990, 1991 \\(en Originally written by John W.\\& Eaton "
 "(jwe@che.utexas.edu)."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1388
+#: ../../man/man1/man.man1:1399
 msgid ""
 "Dec 23 1992: Rik Faith (faith@cs.unc.edu) applied bug fixes supplied by "
 "Willem Kasdorp (wkasdo@nikhefk.nikef.nl)."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1392
+#: ../../man/man1/man.man1:1403
 msgid ""
 "30th April 1994 \\(en 23rd February 2000: Wilf. (G.Wilford@ee.surrey.ac.uk)  "
 "has been developing and maintaining this package with the help of a few "
@@ -1899,7 +1919,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1396
+#: ../../man/man1/man.man1:1407
 msgid ""
 "30th October 1996 \\(en 30th March 2001: Fabrizio Polacco "
 "E<lt>fpolacco@debian.orgE<gt> maintained and enhanced this package for the "
@@ -1907,7 +1927,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1398
+#: ../../man/man1/man.man1:1409
 msgid ""
 "31st March 2001 \\(en present day: Colin Watson "
 "E<lt>cjwatson@debian.orgE<gt> is now developing and maintaining man-db."
@@ -2556,7 +2576,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:216
+#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:213
 msgid "An alternate or FSSTND compliant global I<index> database cache."
 msgstr ""
 
@@ -2653,19 +2673,19 @@ msgid "Berkeley db"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "Binary tree"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61 ../../man/man8/mandb.man8:64
+#: ../../man/man8/mandb.man8:63 ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "Yes"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "I<index.bt>"
 msgstr ""
@@ -2673,17 +2693,17 @@ msgstr ""
 #. type: tbl table
 #: ../../man/man8/mandb.man8:64
 #, no-wrap
-msgid "GNU gdbm v E<gt>= 1.6"
+msgid "GNU gdbm"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67 ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:66 ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "Hashed"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
+#: ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "I<index.db>"
 msgstr ""
@@ -2691,29 +2711,23 @@ msgstr ""
 #. type: tbl table
 #: ../../man/man8/mandb.man8:67
 #, no-wrap
-msgid "GNU gdbm v E<lt>  1.6"
+msgid "UNIX ndbm"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:67 ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "No"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:70
-#, no-wrap
-msgid "UNIX ndbm"
-msgstr ""
-
-#. type: tbl table
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "I<index.(dir|pag)>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:83
+#: ../../man/man8/mandb.man8:80
 msgid ""
 "Those database types that support asynchronous updates provide enhanced "
 "speed at the cost of possible corruption in the event of unusual "
@@ -2723,26 +2737,26 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:90
+#: ../../man/man8/mandb.man8:87
 msgid "Produce no warnings."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:94
+#: ../../man/man8/mandb.man8:91
 msgid ""
 "Do not spend time looking for or adding information to the databases "
 "regarding stray cats."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:98
+#: ../../man/man8/mandb.man8:95
 msgid ""
 "Do not spend time checking for deleted manual pages and purging them from "
 "the databases."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:110
+#: ../../man/man8/mandb.man8:107
 msgid ""
 "By default, B<%mandb%> will try to update any previously created databases.  "
 "If a database does not exist, it will create it.  This option forces "
@@ -2752,21 +2766,21 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:114
+#: ../../man/man8/mandb.man8:111
 msgid ""
 "Create user databases only, even with write permissions necessary to create "
 "system databases."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:120
+#: ../../man/man8/mandb.man8:117
 msgid ""
 "Perform correctness checks on manual pages in the hierarchy search path.  "
 "With this option, B<%mandb%> will not alter existing databases."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:134
+#: ../../man/man8/mandb.man8:131
 msgid ""
 "Update only the entries for the given filename.  This option is not for "
 "general use; it is used internally by B<%man%> when it has been compiled "
@@ -2775,44 +2789,44 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:141
+#: ../../man/man8/mandb.man8:138
 msgid "Show the usage message, then exit."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man8/mandb.man8:144
 msgid "Show the version, then exit."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:154
+#: ../../man/man8/mandb.man8:151
 msgid "Usage, syntax, or configuration file error."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 msgid "A child process failed."
 msgstr ""
 
 #. type: SH
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 #, no-wrap
 msgid "DIAGNOSTICS"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 msgid "The following warning messages can be emitted during database building."
 msgstr ""
 
 #. type: TP
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: whatis parse for page(sec) failed>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 msgid ""
 "An attempt to extract whatis line(s) from the given E<lt>filenameE<gt> "
 "failed.  This is usually due to a poorly written manual page, but if many "
@@ -2822,13 +2836,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: is a dangling symlink>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 msgid ""
 "E<lt>filenameE<gt> does not exist but is referenced by a symbolic link.  "
 "Further diagnostics are usually emitted to identify the E<lt>filenameE<gt> "
@@ -2836,26 +2850,26 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: bad symlink or ROFF `.so' request>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 msgid ""
 "E<lt>filenameE<gt> is either a symbolic link to, or contains a ROFF include "
 "request to, a non existent file."
 msgstr ""
 
 #. type: TP
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: ignoring bogus filename>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 msgid ""
 "The E<lt>filenameE<gt> may or may not be a valid manual page but its name is "
 "invalid.  This is usually due to a manual page with sectional extension "
@@ -2863,13 +2877,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 #, no-wrap
 msgid "B<E<lt>filename_maskE<gt>: competing extensions>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:194
+#: ../../man/man8/mandb.man8:191
 msgid ""
 "The wildcard E<lt>filename_maskE<gt> is not unique.  This is usually caused "
 "by the existence of both a compressed and uncompressed version of the same "
@@ -2877,12 +2891,12 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:205
+#: ../../man/man8/mandb.man8:202
 msgid "Older locations for the database cache included:"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 msgid ""
 "The B<WHATIS PARSING> section formerly in this manual page is now part of "
 "B<lexgrog>(1)."
index 64118d3..448b0df 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: man-db-manpages 2.5.8-pre1\n"
-"POT-Creation-Date: 2014-09-16 14:04+0100\n"
+"POT-Creation-Date: 2016-12-11 13:52+0000\n"
 "PO-Revision-Date: 2010-10-24 20:48+0200\n"
 "Last-Translator: Erwin Poeze <erwin.poeze@gmail.com>\n"
 "Language-Team: Dutch <vertaling@vrijschrift.org>\n"
@@ -157,20 +157,20 @@ msgstr ""
 
 #. type: SH
 #: ../../man/man1/apropos.man1:61 ../../man/man1/lexgrog.man1:45
-#: ../../man/man1/man.man1:553 ../../man/man1/manconv.man1:50
+#: ../../man/man1/man.man1:558 ../../man/man1/manconv.man1:50
 #: ../../man/man1/manpath.man1:37 ../../man/man1/whatis.man1:71
 #: ../../man/man1/zsoelim.man1:55 ../../man/man8/accessdb.man8:29
-#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:83
+#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:80
 #, no-wrap
 msgid "OPTIONS"
 msgstr "OPTIES"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:65 ../../man/man1/lexgrog.man1:49
-#: ../../man/man1/man.man1:567 ../../man/man1/manconv.man1:66
+#: ../../man/man1/man.man1:572 ../../man/man1/manconv.man1:66
 #: ../../man/man1/manpath.man1:44 ../../man/man1/whatis.man1:75
 #: ../../man/man8/accessdb.man8:33 ../../man/man8/catman.man8:59
-#: ../../man/man8/mandb.man8:87
+#: ../../man/man8/mandb.man8:84
 msgid "Print debugging information."
 msgstr "Foutinformatie tonen."
 
@@ -274,7 +274,7 @@ msgstr ""
 "lijst alleen pagina's bevatten die voorkomen in dat deel van de handleiding. "
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:690
+#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:701
 #: ../../man/man1/manpath.man1:66 ../../man/man1/whatis.man1:133
 msgid ""
 "B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|, B<--systems=>I<system>\\|[\\|,.\\|."
@@ -308,7 +308,7 @@ msgstr ""
 "argument op.  Deze optie zal voorgaan op de omgevingsvariabele $B<SYSTEM>. "
 
 #. type: TP
-#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:709
+#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:720
 #: ../../man/man1/whatis.man1:152 ../../man/man8/catman.man8:59
 #, no-wrap
 msgid "B<-M\\ >I<path>,\\ B<--manpath=>I<path>"
@@ -331,14 +331,14 @@ msgstr ""
 "$B<MANPATH>."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:660
+#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:671
 #: ../../man/man1/whatis.man1:166
 #, no-wrap
 msgid "B<-L\\ >I<locale>,\\ B<--locale=>I<locale>"
 msgstr "B<-L\\ >I<taalgebied>,\\ B<--locale=>I<taalgebied>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:684
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:695
 #: ../../man/man1/whatis.man1:183
 msgid ""
 "B<%program%> will normally determine your current locale by a call to the C "
@@ -359,17 +359,17 @@ msgstr ""
 "eerste instantie bepaald is."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:560
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:565
 #: ../../man/man1/manpath.man1:85 ../../man/man1/whatis.man1:183
-#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:134
+#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:131
 #, no-wrap
 msgid "B<-C\\ >I<file>,\\ B<--config-file=>I<file>"
 msgstr "B<-C\\ >I<bestand>,\\ B<--config-file=>I<bestand>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:564
+#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:569
 #: ../../man/man1/manpath.man1:89 ../../man/man1/whatis.man1:187
-#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:138
+#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:135
 msgid ""
 "Use this user configuration file rather than the default of I<~/.manpath>."
 msgstr ""
@@ -378,7 +378,7 @@ msgstr ""
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:186 ../../man/man1/lexgrog.man1:89
-#: ../../man/man1/man.man1:1163 ../../man/man1/manconv.man1:69
+#: ../../man/man1/man.man1:1174 ../../man/man1/manconv.man1:69
 #: ../../man/man1/manpath.man1:92 ../../man/man1/whatis.man1:190
 #: ../../man/man1/zsoelim.man1:67 ../../man/man8/accessdb.man8:36
 #: ../../man/man8/catman.man8:71
@@ -387,9 +387,9 @@ msgstr "Een hulptekst tonen en stoppen."
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:189 ../../man/man1/lexgrog.man1:92
-#: ../../man/man1/man.man1:1166 ../../man/man1/manpath.man1:95
+#: ../../man/man1/man.man1:1177 ../../man/man1/manpath.man1:95
 #: ../../man/man1/whatis.man1:193 ../../man/man8/accessdb.man8:39
-#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:144
+#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:141
 #, fuzzy
 #| msgid "Print a help message and exit."
 msgid "Print a short usage message and exit."
@@ -397,7 +397,7 @@ msgstr "Een hulptekst tonen en stoppen."
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1180 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:196
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/accessdb.man8:42
 #: ../../man/man8/catman.man8:77
@@ -406,28 +406,28 @@ msgstr "Versieinformatie tonen."
 
 #. type: SH
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/whatis.man1:196
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man1/man.man1:1180 ../../man/man1/whatis.man1:196
+#: ../../man/man8/mandb.man8:144
 #, no-wrap
 msgid "EXIT STATUS"
 msgstr "STOPSTATUS"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:196 ../../man/man1/lexgrog.man1:99
-#: ../../man/man1/man.man1:1173 ../../man/man1/whatis.man1:200
-#: ../../man/man8/mandb.man8:151
+#: ../../man/man1/man.man1:1184 ../../man/man1/whatis.man1:200
+#: ../../man/man8/mandb.man8:148
 msgid "Successful program execution."
 msgstr "Programma correct uitgevoerd."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1176
+#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1187
 #: ../../man/man1/whatis.man1:203
 msgid "Usage, syntax or configuration file error."
 msgstr "Gebruiks-, syntax- of configuratiebestandfout."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1179
-#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:157
+#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1190
+#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:154
 msgid "Operational error."
 msgstr "Uitvoeringsfout."
 
@@ -437,7 +437,7 @@ msgid "Nothing was found that matched the criteria specified."
 msgstr "Er is niets gevonden dat overeenkomt met de opgegeven criteria."
 
 #. type: SH
-#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1185
+#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1196
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:209
 #: ../../man/man8/catman.man8:77
 #, no-wrap
@@ -445,7 +445,7 @@ msgid "ENVIRONMENT"
 msgstr "OMGEVING"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1282
+#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1293
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:218
 msgid ""
 "If $B<SYSTEM> is set, it will have the same effect as if it had been "
@@ -495,23 +495,23 @@ msgstr ""
 "(B<-r>).  Momenteel is dit hoe dan ook het standaardgedrag."
 
 #. type: SH
-#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1347
+#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1358
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:236
-#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:194
+#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:191
 #, no-wrap
 msgid "FILES"
 msgstr "BESTANDEN"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1359
+#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1370
 #: ../../man/man1/whatis.man1:242 ../../man/man8/catman.man8:103
-#: ../../man/man8/mandb.man8:210
+#: ../../man/man8/mandb.man8:207
 msgid "A traditional global I<index> database cache."
 msgstr "Een traditionele, algemene I<index>-database-cache."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1365
-#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:203
+#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1376
+#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:200
 msgid "An FHS compliant global I<index> database cache."
 msgstr "Een algemene I<index>-database-cache, in overeenstemming met FHS."
 
@@ -522,10 +522,10 @@ msgstr "Een traditionele B<watis>-tekstdatabase."
 
 #. type: SH
 #: ../../man/man1/apropos.man1:258 ../../man/man1/lexgrog.man1:197
-#: ../../man/man1/man.man1:1365 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1376 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:128 ../../man/man1/whatis.man1:253
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/catman.man8:109
-#: ../../man/man8/mandb.man8:216
+#: ../../man/man8/mandb.man8:213
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "ZIE OOK"
@@ -535,7 +535,7 @@ msgstr "ZIE OOK"
 #: ../../man/man1/manconv.man1:75 ../../man/man1/manpath.man1:132
 #: ../../man/man1/whatis.man1:257 ../../man/man1/zsoelim.man1:75
 #: ../../man/man8/accessdb.man8:42 ../../man/man8/catman.man8:113
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 #, no-wrap
 msgid "AUTHOR"
 msgstr "AUTEUR"
@@ -886,8 +886,8 @@ msgid ""
 "\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>\\|] [\\|B<--no-hyphenation>\\|] [\\|"
 "B<--no-justification>\\|] [\\|B<-p> I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|"
 "[\\|I<device>\\|]\\|] [\\|B<-H>\\|[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|"
-"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>\\ .\\|.\\|."
-"\\|]\\ .\\|.\\|.\\&"
+"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>[.\\|I<section>"
+"\\|]\\ \\|.\\|.\\|.\\|]\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> [\\|B<-C> I<bestand>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--"
 "warnings>\\|[\\|=I<waarschuwingen>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-"
@@ -915,13 +915,13 @@ msgstr "B<%man%> B<-k> [\\|I<apropos> I<opties>\\|] I<regexp> \\&.\\|.\\|."
 #, fuzzy
 #| msgid ""
 #| "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>"
-#| "\\||\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|."
+#| "\\||\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|."
 msgid ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<sectie>\\|] I<term>\\ .\\|.\\|."
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<sectie>\\|] I<term>\\ .\\|.\\|."
 
 #.  The --local command line
 #. type: Plain text
@@ -1034,49 +1034,49 @@ msgstr ""
 "door de paginasoorten die ze bevatten."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:189
+#: ../../man/man1/man.man1:191
 #, fuzzy, no-wrap
 #| msgid "1@Executable programs or shell commands\n"
 msgid "Executable programs or shell commands"
 msgstr "1@Uitvoerbare programma's of shell-opdrachten\n"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:192
+#: ../../man/man1/man.man1:194
 #, fuzzy, no-wrap
 #| msgid "2@System calls (functions provided by the kernel)\n"
 msgid "System calls (functions provided by the kernel)"
 msgstr "2@Systeemaanroepen (in de kernel beschikbare functies)\n"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:195
+#: ../../man/man1/man.man1:197
 #, fuzzy, no-wrap
 #| msgid "3@Library calls (functions within program libraries)\n"
 msgid "Library calls (functions within program libraries)"
 msgstr "3@Bibliotheekaanroepen (functies binnen programmabibliotheken)\n"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:198
+#: ../../man/man1/man.man1:200
 #, fuzzy, no-wrap
 #| msgid "4@Special files (usually found in I</dev>)\n"
 msgid "Special files (usually found in I</dev\\/>)"
 msgstr "4@Speciale bestanden (meestal afkomstig van I</dev>)\n"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:201
+#: ../../man/man1/man.man1:203
 #, fuzzy, no-wrap
 #| msgid "5@File formats and conventions eg I</etc/passwd>\n"
 msgid "File formats and conventions eg I</etc/passwd>"
 msgstr "5@Bestandsindelingen en -conventies b.v. I</etc/passwd>\n"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:204
+#: ../../man/man1/man.man1:206
 #, fuzzy, no-wrap
 #| msgid "6@Games\n"
 msgid "Games"
 msgstr "6@Spelen\n"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:207
+#: ../../man/man1/man.man1:210
 #, fuzzy, no-wrap
 #| msgid "Miscellaneous (including macro packages and conventions),\n"
 msgid ""
@@ -1085,14 +1085,14 @@ msgid ""
 msgstr "Diversen (inclusief macropakketen en -conventies),\n"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:211
+#: ../../man/man1/man.man1:213
 #, fuzzy, no-wrap
 #| msgid "8@System administration commands (usually only for root)\n"
 msgid "System administration commands (usually only for root)"
 msgstr "8@Systeembeheeropdrachten (meestal alleen voor root)\n"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:214
+#: ../../man/man1/man.man1:216
 #, fuzzy, no-wrap
 #| msgid "9@Kernel routines [\\|Non standard\\|]\n"
 msgid "Kernel routines [\\|Non standard\\|]"
@@ -1132,7 +1132,7 @@ msgid "B<bold text>"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:250
+#: ../../man/man1/man.man1:252
 #, fuzzy, no-wrap
 #| msgid "B<bold text>@type exactly as shown.\n"
 msgid "type exactly as shown."
@@ -1145,7 +1145,7 @@ msgid "I<italic text>"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:253
+#: ../../man/man1/man.man1:255
 #, fuzzy, no-wrap
 #| msgid "I<italic text>@replace with appropriate argument.\n"
 msgid "replace with appropriate argument."
@@ -1158,7 +1158,7 @@ msgid "[\\|B<-abc>\\|]"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:256
+#: ../../man/man1/man.man1:258
 #, fuzzy, no-wrap
 #| msgid "[\\|B<-abc>\\|]@any or all arguments within [ ] are optional.\n"
 msgid "any or all arguments within [ ] are optional."
@@ -1171,7 +1171,7 @@ msgid "B<-a\\|>|\\|B<-b>"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:259
+#: ../../man/man1/man.man1:261
 #, fuzzy, no-wrap
 #| msgid "B<-a\\|>|\\|B<-b>@options delimited by | cannot be used together.\n"
 msgid "options delimited by | cannot be used together."
@@ -1185,7 +1185,7 @@ msgid "I<argument> .\\|.\\|."
 msgstr "I<argument>B< .\\|.\\|.@>I<argument> is herhaalbaar.\n"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:262
+#: ../../man/man1/man.man1:264
 #, fuzzy, no-wrap
 #| msgid "I<argument>B< .\\|.\\|.@>I<argument> is repeatable.\n"
 msgid "I<argument> is repeatable."
@@ -1198,7 +1198,7 @@ msgid "[\\|I<expression>\\|] .\\|.\\|."
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:265
+#: ../../man/man1/man.man1:267
 #, fuzzy, no-wrap
 #| msgid "[\\|I<expression>\\|]B< .\\|.\\|.@>entire I<expression>\\ within [ ] is repeatable.\n"
 msgid "entire I<expression>\\ within [ ] is repeatable."
@@ -1241,12 +1241,26 @@ msgstr "Toon de man-pagina voor het I<item> (programma)  I<ls>."
 
 #. type: TP
 #: ../../man/man1/man.man1:287
+#, fuzzy, no-wrap
+#| msgid "B<%man%\\ -f>I<\\ smail>"
+msgid "B<%man% >I<man>.I<7>"
+msgstr "B<%man%\\ -f>I<\\ smail>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:292
+#, fuzzy
+#| msgid "Display the manual page for the I<item> (program)  I<ls>."
+msgid "Display the manual page for macro package I<man> from section I<7>."
+msgstr "Toon de man-pagina voor het I<item> (programma)  I<ls>."
+
+#. type: TP
+#: ../../man/man1/man.man1:292
 #, no-wrap
 msgid "B<%man%\\ -a>I<\\ intro>"
 msgstr "B<%man%\\ -a>I<\\ introductie>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 msgid ""
 "Display, in succession, all of the available I<intro> manual pages contained "
 "within the manual.  It is possible to quit between successive displays or "
@@ -1257,13 +1271,13 @@ msgstr ""
 "over te slaan."
 
 #. type: TP
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 #, no-wrap
 msgid "B<%man% -t >I<alias >|I< lpr -Pps>"
 msgstr "B<%man% -t >I<alias >|I< lpr -Pps>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 msgid ""
 "Format the manual page referenced by `I<alias>', usually a shell manual "
 "page, into the default B<troff> or B<groff> format and pipe it to the "
@@ -1277,14 +1291,14 @@ msgstr ""
 "help> moet aangeven welke processor met de optie B<-t> is gekoppeld."
 
 #. type: TP
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 #, fuzzy, no-wrap
 #| msgid "B<%man%\\ -l\\ -T>I<dvi\\ ./foo.1x.gz>B<\\ E<gt>\\ >I<./foo.1x.dvi>"
 msgid "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
 msgstr "B<%man%\\ -l\\ -T>I<dvi\\ ./foo.1x.gz>B<\\ E<gt>\\ >I<./foo.1x.dvi>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 msgid ""
 "This command will decompress and format the nroff source manual page I<./"
 "foo.1x.gz> into a B<device independent (dvi)> file.  The redirection is "
@@ -1299,13 +1313,13 @@ msgstr ""
 "bewerkt worden naar Postscript met bijvoorbeeld B<dvips>."
 
 #. type: TP
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 #, no-wrap
 msgid "B<%man%\\ -k>I<\\ printf>"
 msgstr "B<%man%\\ -k>I<\\ printf>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 msgid ""
 "Search the short descriptions and manual page names for the keyword "
 "I<printf> as regular expression.  Print out any matches.  Equivalent to B<"
@@ -1316,13 +1330,13 @@ msgstr ""
 "%apropos%>I<\\ printf>B<.>"
 
 #. type: TP
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 #, no-wrap
 msgid "B<%man%\\ -f>I<\\ smail>"
 msgstr "B<%man%\\ -f>I<\\ smail>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 msgid ""
 "Lookup the manual pages referenced by I<smail> and print out the short "
 "descriptions of any found.  Equivalent to B<%whatis%>I<\\ smail>B<.>"
@@ -1331,13 +1345,13 @@ msgstr ""
 "door I<smail>.  Is gelijk aan B<%whatis%>I<\\ smail>B<.>"
 
 #. type: SH
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 #, no-wrap
 msgid "OVERVIEW"
 msgstr "OVERZICHT"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:347
+#: ../../man/man1/man.man1:352
 msgid ""
 "Many options are available to B<%man%> in order to give as much flexibility "
 "as possible to the user.  Changes can be made to the search path, section "
@@ -1349,7 +1363,7 @@ msgstr ""
 "meer informatie staat."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:369
+#: ../../man/man1/man.man1:374
 msgid ""
 "If set, various environment variables are interrogated to determine the "
 "operation of B<%man%>.  It is possible to set the `catch all' variable "
@@ -1376,7 +1390,7 @@ msgstr ""
 
 # what is consistent vertalen
 #. type: Plain text
-#: ../../man/man1/man.man1:390
+#: ../../man/man1/man.man1:395
 msgid ""
 "The manual pager utilities packaged as B<man-db> make extensive use of "
 "B<index> database caches.  These caches contain information such as where "
@@ -1401,7 +1415,7 @@ msgstr ""
 #. .B index
 #. caches created `on the fly'.
 #. type: Plain text
-#: ../../man/man1/man.man1:412
+#: ../../man/man1/man.man1:417
 msgid ""
 "If B<%man%> cannot find a B<%mandb%> initiated B<index> database for a "
 "particular manual page hierarchy, it will still search for the requested "
@@ -1417,7 +1431,7 @@ msgstr ""
 "I<watis>-database halen."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:432
+#: ../../man/man1/man.man1:437
 msgid ""
 "These utilities support compressed source nroff files having, by default, "
 "the extensions of B<.Z>, B<.z> and B<.gz>.  It is possible to deal with any "
@@ -1443,7 +1457,7 @@ msgstr ""
 "B<manpath>(5). "
 
 #. type: Plain text
-#: ../../man/man1/man.man1:445
+#: ../../man/man1/man.man1:450
 msgid ""
 "International support is available with this package.  Native language "
 "manual pages are accessible (if available on your system)  via use of "
@@ -1462,7 +1476,7 @@ msgstr ""
 #
 #.  Need a \c to make sure we don't get a space where we don't want one
 #. type: Plain text
-#: ../../man/man1/man.man1:456
+#: ../../man/man1/man.man1:461
 msgid ""
 "E<lt>I<language>E<gt>[\\|B<_>E<lt>I<territory>E<gt>\\|[\\|B<."
 ">E<lt>I<character-set>E<gt>\\|[\\|B<,>E<lt>I<version>E<gt>\\|]\\|]\\|]"
@@ -1471,7 +1485,7 @@ msgstr ""
 "set>E<gt>\\|[\\|B<,>E<lt>I<versie>E<gt>\\|]\\|]\\|]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:461
+#: ../../man/man1/man.man1:466
 msgid ""
 "If the desired page is available in your I<locale>, it will be displayed in "
 "lieu of the standard (usually American English) page."
@@ -1480,7 +1494,7 @@ msgstr ""
 "worden in plaats van de standaardpagina (meestal Amerikaans Engels)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:468
+#: ../../man/man1/man.man1:473
 msgid ""
 "Support for international message catalogues is also featured in this "
 "package and can be activated in the same way, again if available.  If you "
@@ -1495,7 +1509,7 @@ msgstr ""
 "contact op met de ontwikkelaar die deze activiteit coördineert."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 msgid ""
 "For information regarding other features and extensions available with this "
 "manual pager, please read the documents supplied with the package."
@@ -1504,13 +1518,13 @@ msgstr ""
 "in deze man-paginaopmaker wordt verwezen naar de documenten bij dit pakket."
 
 #. type: SH
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 #, no-wrap
 msgid "DEFAULTS"
 msgstr "STANDAARDEN"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:491
+#: ../../man/man1/man.man1:496
 msgid ""
 "B<%man%> will search for the desired manual pages within the I<index> "
 "database caches. If the B<-u> option is given, a cache consistency check is "
@@ -1539,7 +1553,7 @@ msgstr ""
 "afwezigheid van cache."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:503
+#: ../../man/man1/man.man1:508
 msgid ""
 "Once a manual page has been located, a check is performed to find out if a "
 "relative preformatted `cat' file already exists and is newer than the nroff "
@@ -1560,7 +1574,7 @@ msgstr ""
 "programma's verwerkt en direct weergegeven."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:508
+#: ../../man/man1/man.man1:513
 msgid ""
 "If a cat file can be produced (a relative cat directory exists and has "
 "appropriate permissions), B<%man%> will compress and store the cat file in "
@@ -1571,7 +1585,7 @@ msgstr ""
 "opslaan op de achtergrond. "
 
 #. type: Plain text
-#: ../../man/man1/man.man1:520
+#: ../../man/man1/man.man1:525
 #, fuzzy
 #| msgid ""
 #| "The filters are deciphered by a number of means. Firstly, the command "
@@ -1595,12 +1609,12 @@ msgstr ""
 "eerste regel overeenstemming vertonen met"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:523
+#: ../../man/man1/man.man1:528
 msgid "B<'\\e\"> E<lt>B<string>E<gt>"
 msgstr "B<'\\e\"> E<lt>B<string>E<gt>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:529
+#: ../../man/man1/man.man1:534
 msgid ""
 "where B<string> can be any combination of letters described by option B<-p> "
 "below."
@@ -1609,7 +1623,7 @@ msgstr ""
 "beschreven door optie B<-p>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:532
+#: ../../man/man1/man.man1:537
 msgid ""
 "If none of the above methods provide any filter information, a default set "
 "is used."
@@ -1619,7 +1633,7 @@ msgstr ""
 
 #.  ********************************************************************
 #. type: Plain text
-#: ../../man/man1/man.man1:553
+#: ../../man/man1/man.man1:558
 msgid ""
 "A formatting pipeline is formed from the filters and the primary formatter "
 "(B<nroff> or [B<tg>]B<roff> with B<-t>)  and executed.  Alternatively, if an "
@@ -1637,7 +1651,7 @@ msgstr ""
 "E>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 msgid ""
 "Non argument options that are duplicated either on the command line, in "
 "$B<MANOPT>, or both, are not harmful.  For options that require an argument, "
@@ -1648,13 +1662,13 @@ msgstr ""
 "vereisen, worden overschreven door ieder duplicaat. "
 
 #. type: SS
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 #, no-wrap
 msgid "General options"
 msgstr "Algemene opties"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 msgid ""
 "This option is normally issued as the very first option and resets B<%man"
 "%'s> behaviour to its default.  Its use is to reset those options that may "
@@ -1667,14 +1681,14 @@ msgstr ""
 "normale effect hebben."
 
 #. type: TP
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 #, fuzzy, no-wrap
 #| msgid "B<--warnings>[=I<warnings>]"
 msgid "B<--warnings>[=I<warnings\\/>]"
 msgstr "B<--warnings>[=I<waarschuwingen>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 msgid ""
 "Enable warnings from I<groff>.  This may be used to perform sanity checks on "
 "the source text of manual pages.  I<warnings> is a comma-separated list of "
@@ -1690,13 +1704,13 @@ msgstr ""
 "waarschuwingsnamen."
 
 #. type: SS
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 #, no-wrap
 msgid "Main modes of operation"
 msgstr "Belangrijkste uitvoeringswijzen"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:598
+#: ../../man/man1/man.man1:603
 #, fuzzy
 #| msgid ""
 #| "Equivalent to B<%whatis%>.  Display a short description from the manual "
@@ -1709,7 +1723,7 @@ msgstr ""
 "mits deze beschikbaar is. Zie B<%whatis%>(1)  voor meer informatie."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:607
+#: ../../man/man1/man.man1:612
 msgid ""
 "Equivalent to B<%apropos%>.  Search the short manual page descriptions for "
 "keywords and display any matches.  See B<%apropos%>(1)  for details."
@@ -1719,7 +1733,7 @@ msgstr ""
 "informatie."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:617
+#: ../../man/man1/man.man1:622
 msgid ""
 "Search for text in all manual pages.  This is a brute-force search, and is "
 "likely to take some time; if you can, you should specify a section to reduce "
@@ -1733,11 +1747,19 @@ msgstr ""
 "reduceren.  Zoektermen kunnen eenvoudige tekenreeksen zijn (de standaard) of "
 "reguliere expressies in het geval de optie B<--regex> is gebruikt."
 
+#. type: Plain text
+#: ../../man/man1/man.man1:628
+msgid ""
+"Note that this searches the I<sources> of the manual pages, not the rendered "
+"text, and so may include false positives due to things like comments in "
+"source files.  Searching the rendered text would be much slower."
+msgstr ""
+
 #.  Compressed nroff source files with a supported compression
 #.  extension will be decompressed by man prior to being displaying via the
 #.  usual filters.
 #. type: Plain text
-#: ../../man/man1/man.man1:633
+#: ../../man/man1/man.man1:644
 msgid ""
 "Activate `local' mode.  Format and display local manual files instead of "
 "searching through the system's manual collection.  Each manual page argument "
@@ -1758,7 +1780,7 @@ msgstr ""
 "bestandsnaam te gebruiken en naar een exacte overeenkomst gezocht. "
 
 #. type: Plain text
-#: ../../man/man1/man.man1:637
+#: ../../man/man1/man.man1:648
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "source nroff files that would be formatted."
@@ -1767,7 +1789,7 @@ msgstr ""
 "bronbestanden die opgemaakt zouden worden. "
 
 #. type: Plain text
-#: ../../man/man1/man.man1:642
+#: ../../man/man1/man.man1:653
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "cat files that would be displayed.  If -w and -W are both specified, print "
@@ -1778,7 +1800,7 @@ msgstr ""
 "beide gescheiden door een spatie "
 
 #. type: Plain text
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 msgid ""
 "This option is not for general use and should only be used by the B<%catman"
 "%> program."
@@ -1787,13 +1809,13 @@ msgstr ""
 "het programma B<%catman%>."
 
 #. type: TP
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 #, no-wrap
 msgid "B<-R\\ >I<encoding>,\\ B<--recode>=I<encoding>"
 msgstr "B<-R\\ >I<encoding>,\\ B<--recode>=I<encoding>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 msgid ""
 "Instead of formatting the manual page in the usual way, output its source "
 "converted to the specified I<encoding>.  If you already know the encoding of "
@@ -1811,13 +1833,13 @@ msgstr ""
 "in een structuur die overeenkomt met die van de man-pagina's."
 
 #. type: SS
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 #, no-wrap
 msgid "Finding manual pages"
 msgstr "Man-pagina's vinden"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:697
+#: ../../man/man1/man.man1:708
 msgid ""
 "If this system has access to other operating system's manual pages, they can "
 "be accessed using this option.  To search for a manual page from NewOS's "
@@ -1829,7 +1851,7 @@ msgstr ""
 "gebruikt u de optie B<-m> B<NieuwOS>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:708
+#: ../../man/man1/man.man1:719
 msgid ""
 "The I<system> specified can be a combination of comma delimited operating "
 "system names.  To include a search of the native operating system's manual "
@@ -1842,7 +1864,7 @@ msgstr ""
 "argumentstring.  Deze optie gaat voor op de omgevingsvariabele $B<SYSTEM>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:722
+#: ../../man/man1/man.man1:733
 msgid ""
 "Specify an alternate manpath to use.  By default, B<%man%> uses B<%manpath%> "
 "derived code to determine the path to search.  This option overrides the "
@@ -1853,7 +1875,7 @@ msgstr ""
 "$B<MANPATH> en zorgt dat optie B<-m> wordt genegeerd."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 msgid ""
 "A path specified as a manpath must be the root of a manual page hierarchy "
 "structured into sections as described in the man-db manual (under \"The "
@@ -1866,13 +1888,13 @@ msgstr ""
 "structuur kunnen bekeken worden via optie B<-I>."
 
 #. type: TP
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 #, no-wrap
 msgid "B<-S\\ >I<list>,\\ B<-s\\ >I<list>,\\ B<--sections=>I<list>"
 msgstr "B<-S\\ >I<lijst>,\\ B<-s\\ >I<lijst>,\\ B<--sections=>I<lijst>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 msgid ""
 "List is a colon- or comma-separated list of `order specific' manual sections "
 "to search.  This option overrides the $B<MANSECT> environment variable.  "
@@ -1884,13 +1906,13 @@ msgstr ""
 "voor compatibiliteit met System V.)"
 
 #. type: TP
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 #, no-wrap
 msgid "B<-e\\ >I<sub-extension>,\\ B<--extension=>I<sub-extension>"
 msgstr "B<-e\\ >I<sub-extensie>,\\ B<--extension=>I<sub-extensie>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:773
+#: ../../man/man1/man.man1:784
 msgid ""
 "Some systems incorporate large packages of manual pages, such as those that "
 "accompany the B<Tcl> package, into the main manual page hierarchy.  To get "
@@ -1921,19 +1943,19 @@ msgstr ""
 "pagina's met de extentie B<*tcl>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:777
+#: ../../man/man1/man.man1:788
 msgid "Ignore case when searching for manual pages.  This is the default."
 msgstr ""
 "Hoofdletters zijn niet van invloed bij het zoeken naar man-pagina's.  Dit is "
 "het standaardgedrag."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:780
+#: ../../man/man1/man.man1:791
 msgid "Search for manual pages case-sensitively."
 msgstr "Hoofdletters zijn van invloed bij het zoeken naar man-pagina's."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:790
+#: ../../man/man1/man.man1:801
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument as a regular expression, as with "
@@ -1947,7 +1969,7 @@ msgstr ""
 "optie B<-a> "
 
 #. type: Plain text
-#: ../../man/man1/man.man1:805
+#: ../../man/man1/man.man1:816
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument using shell-style wildcards, as with "
@@ -1965,7 +1987,7 @@ msgstr ""
 "optie B<-a>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:814
+#: ../../man/man1/man.man1:825
 msgid ""
 "If the B<--regex> or B<--wildcard> option is used, match only page names, "
 "not page descriptions, as with B<whatis>(1).  Otherwise, no effect."
@@ -1975,7 +1997,7 @@ msgstr ""
 "B<watis>(1).  Anders is er geen effect."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:822
+#: ../../man/man1/man.man1:833
 msgid ""
 "By default, B<%man%> will exit after displaying the most suitable manual "
 "page it finds.  Using this option forces B<%man%> to display all the manual "
@@ -1987,7 +2009,7 @@ msgstr ""
 "de zoekcriteria."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:831
+#: ../../man/man1/man.man1:842
 msgid ""
 "This option causes B<%man%> to perform an `inode level' consistency check on "
 "its database caches to ensure that they are an accurate representation of "
@@ -2001,7 +2023,7 @@ msgstr ""
 "collectie."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:843
+#: ../../man/man1/man.man1:854
 #, fuzzy
 msgid ""
 "By default, B<%man%> will try to interpret pairs of manual page names given "
@@ -2020,24 +2042,24 @@ msgstr ""
 "aan te roepen.  Bijvoorbeeld:"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:852
+#: ../../man/man1/man.man1:863
 msgid "To disable this behaviour, use the B<--no-subpages> option."
 msgstr "Met de optie B<--no-subpages> wordt dit gedrag uitgeschakeld. "
 
 #. type: SS
-#: ../../man/man1/man.man1:859
+#: ../../man/man1/man.man1:870
 #, no-wrap
 msgid "Controlling formatted output"
 msgstr "Opgemaakte uitvoer beheersen"
 
 #. type: TP
-#: ../../man/man1/man.man1:860
+#: ../../man/man1/man.man1:871
 #, no-wrap
 msgid "B<-P\\ >I<pager>,\\ B<--pager=>I<pager>"
 msgstr "B<-P\\ >I<opmaker>,\\ B<--pager=>I<opmaker>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:876
+#: ../../man/man1/man.man1:887
 msgid ""
 "Specify which output pager to use.  By default, B<%man%> uses B<%pager%>.  "
 "This option overrides the $B<MANPAGER> environment variable, which in turn "
@@ -2048,7 +2070,7 @@ msgstr ""
 "%> B<%pager%>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:882 ../../man/man1/man.man1:1239
+#: ../../man/man1/man.man1:893 ../../man/man1/man.man1:1250
 msgid ""
 "The value may be a simple command name or a command with arguments, and may "
 "use shell quoting (backslashes, single quotes, or double quotes).  It may "
@@ -2064,13 +2086,13 @@ msgstr ""
 "kan nemen."
 
 #. type: TP
-#: ../../man/man1/man.man1:882
+#: ../../man/man1/man.man1:893
 #, no-wrap
 msgid "B<-r\\ >I<prompt>,\\ B<--prompt=>I<prompt>"
 msgstr "B<-r\\ >I<prompt>,\\ B<--prompt=>I<prompt>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:890
+#: ../../man/man1/man.man1:901
 msgid ""
 "If a recent version of B<less> is used as the pager, B<%man%> will attempt "
 "to set its prompt and some sensible options.  The default prompt looks like"
@@ -2080,7 +2102,7 @@ msgstr ""
 "standaardprompt ziet eruit als"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:894
+#: ../../man/man1/man.man1:905
 msgid "B<\\ Manual page>I<\\ name>B<(>I<sec>B<)>B<\\ line>I<\\ x>"
 msgstr "B<\\ Man-pagina>I<\\ naam>B<(>I<sec>B<)>B<\\ regel>I<\\ x>"
 
@@ -2089,7 +2111,7 @@ msgstr "B<\\ Man-pagina>I<\\ naam>B<(>I<sec>B<)>B<\\ regel>I<\\ x>"
 #. The actual default will depend on your chosen
 #. .BR locale .
 #. type: Plain text
-#: ../../man/man1/man.man1:909
+#: ../../man/man1/man.man1:920
 msgid ""
 "where I<name> denotes the manual page name, I<sec> denotes the section it "
 "was found under and I<x> the current line number.  This is achieved by using "
@@ -2104,7 +2126,7 @@ msgstr ""
 #. .B less
 #. rejects the default options or if you prefer a different prompt.
 #. type: Plain text
-#: ../../man/man1/man.man1:922
+#: ../../man/man1/man.man1:933
 msgid ""
 "Supplying B<-r> with a string will override this default.  The string may "
 "contain the text B<$MAN_PN> which will be expanded to the name of the "
@@ -2118,22 +2140,22 @@ msgstr ""
 "als"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:924
+#: ../../man/man1/man.man1:935
 msgid "B<\\e\\ Manual\\e\\ page\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
 msgstr "B<\\e\\ Man\\e\\ pagina\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:926
+#: ../../man/man1/man.man1:937
 msgid "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
 msgstr "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:928
+#: ../../man/man1/man.man1:939
 msgid "B<(press h for help or q to quit)>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:943
+#: ../../man/man1/man.man1:954
 #, fuzzy
 #| msgid ""
 #| "It is broken into two lines here for the sake of readability only.  For "
@@ -2159,14 +2181,14 @@ msgstr ""
 "opties."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:948
+#: ../../man/man1/man.man1:959
 msgid ""
 "The $B<MANLESS> environment variable described below may be used to set a "
 "default prompt string if none is supplied on the command line."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man1/man.man1:974
+#: ../../man/man1/man.man1:985
 msgid ""
 "When viewing a pure I<ascii>(7)  manual page on a 7 bit terminal or terminal "
 "emulator, some characters may not display correctly when using the "
@@ -2186,47 +2208,47 @@ msgstr ""
 "B<nroff>'s I<latin1>(7)-apparaat."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Description"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Octal"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man1/man.man1:985
+#: ../../man/man1/man.man1:998
 #, fuzzy, no-wrap
 #| msgid "continuation hyphen@255@\\*[softhyphen]@-\n"
 msgid "continuation hyphen"
 msgstr "afbreekstreep@255@\\*[softhyphen]@-\n"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:988
+#: ../../man/man1/man.man1:1001
 #, fuzzy, no-wrap
 #| msgid "bullet (middle dot)@267@\\(bu@o\n"
 msgid "bullet (middle dot)"
 msgstr "kogel (middenpunt)@267@\\(bu@o\n"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:991
+#: ../../man/man1/man.man1:1004
 #, fuzzy, no-wrap
 #| msgid "acute accent@264@\\(aa@'\n"
 msgid "acute accent"
 msgstr "accent aigu@264@\\(aa@'\n"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:994
+#: ../../man/man1/man.man1:1007
 #, fuzzy, no-wrap
 #| msgid "multiplication sign@327@\\(mu@x\n"
 msgid "multiplication sign"
 msgstr "vermenigvuldigingsteken@327@\\(mu@x\n"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1018
+#: ../../man/man1/man.man1:1029
 msgid ""
 "If the I<latin1> column displays correctly, your terminal may be set up for "
 "I<latin1> characters and this option is not necessary.  If the I<latin1> and "
@@ -2244,7 +2266,7 @@ msgstr ""
 "optie bekijken."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 msgid ""
 "This option is ignored when using options B<-t>, B<-H>, B<-T>, or B<-Z> and "
 "may be useless for B<nroff> other than B<GNU's>."
@@ -2254,13 +2276,13 @@ msgstr ""
 "van B<GNU>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 #, no-wrap
 msgid "B<-E\\ >I<encoding>,\\ B<--encoding>=I<encoding>"
 msgstr "B<-E\\ >I<codering>,\\ B<--encoding>=I<codering>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1040
+#: ../../man/man1/man.man1:1051
 msgid ""
 "Generate output for a character encoding other than the default.  For "
 "backward compatibility, I<encoding> may be an B<nroff> device such as "
@@ -2273,7 +2295,7 @@ msgstr ""
 "zoals B<UTF-8>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1049
+#: ../../man/man1/man.man1:1060
 msgid ""
 "Normally, B<nroff> will automatically hyphenate text at line breaks even in "
 "words that do not contain hyphens, if it is necessary to do so to lay out "
@@ -2288,7 +2310,7 @@ msgstr ""
 "afbreektekens bevatten."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1058
+#: ../../man/man1/man.man1:1069
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "hyphenating a word at an inappropriate point, do not use this option, but "
@@ -2304,7 +2326,7 @@ msgstr ""
 "dat het wordt afgebroken."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1065
+#: ../../man/man1/man.man1:1076
 msgid ""
 "Normally, B<nroff> will automatically justify text to both margins.  This "
 "option disables full justification, leaving justified only to the left "
@@ -2315,7 +2337,7 @@ msgstr ""
 "linker marge overblijft."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "justifying certain paragraphs, do not use this option, but consult the "
@@ -2329,13 +2351,13 @@ msgstr ""
 "fi\" en \".ad\" gebruiken om aanpassing en uitvulling uit te schakelen."
 
 #. type: TP
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 #, no-wrap
 msgid "B<-p\\ >I<string>,\\ B<--preprocessor=>I<string>"
 msgstr "B<-p\\ >I<string>,\\ B<--preprocessor=>I<string>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1091
+#: ../../man/man1/man.man1:1102
 msgid ""
 "Specify the sequence of preprocessors to run before B<nroff> or B<troff>/"
 "B<groff>.  Not all installations will have a full set of preprocessors.  "
@@ -2353,7 +2375,7 @@ msgstr ""
 "altijd als de allereerste preprocessor uitgevoerd."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 msgid ""
 "Use I<%troff%> to format the manual page to stdout.  This option is not "
 "required in conjunction with B<-H>, B<-T>, or B<-Z>."
@@ -2362,14 +2384,14 @@ msgstr ""
 "niet vereist in samenhang met B<-H>, B<-T> of B<-Z>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 #, fuzzy, no-wrap
 #| msgid "B<-T>[I<device>], B<--troff-device>[=I<device>]"
 msgid "B<-T>[I<device\\/>], B<--troff-device>[=I<device\\/>]"
 msgstr "B<-T>[I<apparaat>], B<--troff-device>[=I<apparaat>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 msgid ""
 "This option is used to change B<groff> (or possibly B<troff's>)  output to "
 "be suitable for a device other than the default.  It implies B<-t>.  "
@@ -2382,14 +2404,14 @@ msgstr ""
 "B<latin1>, B<ps>, B<utf8>, B<X75> en B<X100>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 #, fuzzy, no-wrap
 #| msgid "B<-H>[I<browser>], B<--html>[=I<browser>]"
 msgid "B<-H>[I<browser\\/>], B<--html>[=I<browser\\/>]"
 msgstr "B<-H>[I<browser>], B<--html>[=I<browser>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 msgid ""
 "This option will cause B<groff> to produce HTML output, and will display "
 "that output in a web browser.  The choice of browser is determined by the "
@@ -2405,14 +2427,14 @@ msgstr ""
 "werkt alleen samen met B<GNU> B<troff>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 #, fuzzy, no-wrap
 #| msgid "B<-X>[I<dpi>], B<--gxditview>[=I<dpi>]"
 msgid "B<-X>[I<dpi\\/>], B<--gxditview>[=I<dpi\\/>]"
 msgstr "B<-X>[I<dpi>], B<--gxditview>[=I<dpi>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1143
+#: ../../man/man1/man.man1:1154
 msgid ""
 "This option displays the output of B<groff> in a graphical window using the "
 "B<gxditview> program.  The I<dpi> (dots per inch) may be 75, 75-12, 100, or "
@@ -2427,7 +2449,7 @@ msgstr ""
 "X100- resp. X100-12-apparaat."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 msgid ""
 "B<groff> will run B<troff> and then use an appropriate post-processor to "
 "produce output suitable for the chosen device.  If I<%troff%> is B<groff>, "
@@ -2440,18 +2462,18 @@ msgstr ""
 "B<groff> en wordt er geen postprocessor gebruikt.  Het impliceert B<-t>."
 
 #. type: SS
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 #, no-wrap
 msgid "Getting help"
 msgstr "Hulp krijgen"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1182
+#: ../../man/man1/man.man1:1193
 msgid "A child process returned a non-zero exit status."
 msgstr "Een child-proces gaf een stopstatus ongelijk aan nul."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1185
+#: ../../man/man1/man.man1:1196
 msgid ""
 "At least one of the pages/files/keywords didn't exist or wasn't matched."
 msgstr ""
@@ -2459,7 +2481,7 @@ msgstr ""
 "overeen."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1192
+#: ../../man/man1/man.man1:1203
 msgid ""
 "If $B<MANPATH> is set, its value is used as the path to search for manual "
 "pages."
@@ -2468,7 +2490,7 @@ msgstr ""
 "zoeken."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1203
+#: ../../man/man1/man.man1:1214
 msgid ""
 "The contents of $B<MANROFFOPT> are added to the command line every time "
 "B<man> invokes the formatter (B<nroff>, B<troff>, or B<groff>)."
@@ -2478,7 +2500,7 @@ msgstr ""
 "B<groff>)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1210
+#: ../../man/man1/man.man1:1221
 msgid ""
 "If $B<MANROFFSEQ> is set, its value is used to determine the set of "
 "preprocessors to pass each manual page through.  The default preprocessor "
@@ -2489,7 +2511,7 @@ msgstr ""
 "standaard preprocessorlijst is systeemafhankelijk."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1220 ../../man/man8/catman.man8:88
+#: ../../man/man1/man.man1:1231 ../../man/man8/catman.man8:88
 #, fuzzy
 #| msgid ""
 #| "If $B<MANSECT> is set, its value is a colon-delimited list of sections "
@@ -2506,7 +2528,7 @@ msgstr ""
 "in welke volgorde."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1233
+#: ../../man/man1/man.man1:1244
 msgid ""
 "If $B<MANPAGER> or $B<PAGER> is set ($B<MANPAGER> is used in preference), "
 "its value is used as the name of the program used to display the manual "
@@ -2517,7 +2539,7 @@ msgstr ""
 "hiervoor B<%pager%> gebruikt."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1258
+#: ../../man/man1/man.man1:1269
 #, fuzzy
 #| msgid ""
 #| "If $B<MANLESS> is set, B<%man%> will not perform any of its usual "
@@ -2540,7 +2562,7 @@ msgstr ""
 "\\(oqB<-Psmy\\ prompt\\ string>\\(cq."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1274
+#: ../../man/man1/man.man1:1285
 msgid ""
 "If $B<BROWSER> is set, its value is a colon-delimited list of commands, each "
 "of which in turn is used to try to start a web browser for B<man> B<--"
@@ -2555,7 +2577,7 @@ msgstr ""
 "procentteken (%) en I<%c> door een dubbelepunt (:)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1297
+#: ../../man/man1/man.man1:1308
 #, fuzzy
 #| msgid ""
 #| "If $B<MANOPT> is set, it will be parsed prior to B<%man%'s> command line "
@@ -2580,7 +2602,7 @@ msgstr ""
 "gaan worden."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1311
+#: ../../man/man1/man.man1:1322
 #, fuzzy
 #| msgid ""
 #| "If $B<MANWIDTH> is set, its value is used as the line length for which "
@@ -2609,7 +2631,7 @@ msgstr ""
 "is."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1322
+#: ../../man/man1/man.man1:1333
 msgid ""
 "Normally, when output is not being directed to a terminal (such as to a file "
 "or a pipe), formatting characters are discarded to make it easier to read "
@@ -2626,7 +2648,7 @@ msgstr ""
 "die opmaaktekens kunnen interpreteren."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1335
+#: ../../man/man1/man.man1:1346
 msgid ""
 "Normally, when output is being directed to a terminal (usually to a pager), "
 "any error output from the command used to produce formatted versions of "
@@ -2648,7 +2670,7 @@ msgstr ""
 "normaal getoond worden."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1347
+#: ../../man/man1/man.man1:1358
 msgid ""
 "Depending on system and implementation, either or both of $B<LANG> and "
 "$B<LC_MESSAGES> will be interrogated for the current message locale.  B<%man"
@@ -2661,29 +2683,29 @@ msgstr ""
 "de details."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1351 ../../man/man1/manpath.man1:128
-#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:198
+#: ../../man/man1/man.man1:1362 ../../man/man1/manpath.man1:128
+#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:195
 msgid "man-db configuration file."
 msgstr "man-db-configuratiebestand."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1354
+#: ../../man/man1/man.man1:1365
 msgid "A global manual page hierarchy."
 msgstr "Een algemene man-paginahierarchie."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 msgid "the man-db package manual, B<FSSTND>"
 msgstr ""
 
 #. type: SH
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 #, no-wrap
 msgid "HISTORY"
 msgstr "GESCHIEDENIS"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1385
+#: ../../man/man1/man.man1:1396
 #, fuzzy
 #| msgid ""
 #| "1990, 1991 - Originally written by John W. Eaton (jwe@che.utexas.edu)."
@@ -2694,7 +2716,7 @@ msgstr ""
 "edu)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1388
+#: ../../man/man1/man.man1:1399
 msgid ""
 "Dec 23 1992: Rik Faith (faith@cs.unc.edu) applied bug fixes supplied by "
 "Willem Kasdorp (wkasdo@nikhefk.nikef.nl)."
@@ -2703,7 +2725,7 @@ msgstr ""
 "geleverd door Willem Kasdorp (wkasdo@nikhefk.nikef.nl)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1392
+#: ../../man/man1/man.man1:1403
 #, fuzzy
 #| msgid ""
 #| "30th April 1994 - 23rd February 2000: Wilf. (G.Wilford@ee.surrey.ac.uk)  "
@@ -2719,7 +2741,7 @@ msgstr ""
 "mensen."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1396
+#: ../../man/man1/man.man1:1407
 #, fuzzy
 #| msgid ""
 #| "30th October 1996 - 30th March 2001: Fabrizio Polacco "
@@ -2735,7 +2757,7 @@ msgstr ""
 "behulp van de gehele gemeenschap."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1398
+#: ../../man/man1/man.man1:1409
 #, fuzzy
 #| msgid ""
 #| "31st March 2001 - present day: Colin Watson E<lt>cjwatson@debian.orgE<gt> "
@@ -3368,13 +3390,13 @@ msgstr ""
 #, fuzzy
 #| msgid ""
 #| "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>"
-#| "\\||\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|."
+#| "\\||\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|."
 msgid ""
 "B<%catman%> [\\|B<-d?V>\\|] [\\|B<-M> I<path>\\|] [\\|B<-C> I<file>\\|] [\\|"
 "I<section>\\|] \\&.\\|.\\|."
 msgstr ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<sectie>\\|] I<term>\\ .\\|.\\|."
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<sectie>\\|] I<term>\\ .\\|.\\|."
 
 #. type: Plain text
 #: ../../man/man8/catman.man8:32
@@ -3414,7 +3436,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:216
+#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:213
 msgid "An alternate or FSSTND compliant global I<index> database cache."
 msgstr ""
 
@@ -3518,19 +3540,19 @@ msgid "Berkeley db"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "Binary tree"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61 ../../man/man8/mandb.man8:64
+#: ../../man/man8/mandb.man8:63 ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "Yes"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "I<index.bt>"
 msgstr ""
@@ -3538,18 +3560,17 @@ msgstr ""
 #. type: tbl table
 #: ../../man/man8/mandb.man8:64
 #, no-wrap
-msgid "GNU gdbm v E<gt>= 1.6"
+msgid "GNU gdbm"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:66 ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "Hashed"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
+#: ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "I<index.db>"
 msgstr ""
@@ -3557,29 +3578,23 @@ msgstr ""
 #. type: tbl table
 #: ../../man/man8/mandb.man8:67
 #, no-wrap
-msgid "GNU gdbm v E<lt>  1.6"
+msgid "UNIX ndbm"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:67 ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "No"
 msgstr ""
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:70
-#, no-wrap
-msgid "UNIX ndbm"
-msgstr ""
-
-#. type: tbl table
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "I<index.(dir|pag)>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:83
+#: ../../man/man8/mandb.man8:80
 msgid ""
 "Those database types that support asynchronous updates provide enhanced "
 "speed at the cost of possible corruption in the event of unusual "
@@ -3589,26 +3604,26 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:90
+#: ../../man/man8/mandb.man8:87
 msgid "Produce no warnings."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:94
+#: ../../man/man8/mandb.man8:91
 msgid ""
 "Do not spend time looking for or adding information to the databases "
 "regarding stray cats."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:98
+#: ../../man/man8/mandb.man8:95
 msgid ""
 "Do not spend time checking for deleted manual pages and purging them from "
 "the databases."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:110
+#: ../../man/man8/mandb.man8:107
 msgid ""
 "By default, B<%mandb%> will try to update any previously created databases.  "
 "If a database does not exist, it will create it.  This option forces B<%mandb"
@@ -3618,21 +3633,21 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:114
+#: ../../man/man8/mandb.man8:111
 msgid ""
 "Create user databases only, even with write permissions necessary to create "
 "system databases."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:120
+#: ../../man/man8/mandb.man8:117
 msgid ""
 "Perform correctness checks on manual pages in the hierarchy search path.  "
 "With this option, B<%mandb%> will not alter existing databases."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:134
+#: ../../man/man8/mandb.man8:131
 msgid ""
 "Update only the entries for the given filename.  This option is not for "
 "general use; it is used internally by B<%man%> when it has been compiled "
@@ -3641,44 +3656,44 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:141
+#: ../../man/man8/mandb.man8:138
 msgid "Show the usage message, then exit."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man8/mandb.man8:144
 msgid "Show the version, then exit."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:154
+#: ../../man/man8/mandb.man8:151
 msgid "Usage, syntax, or configuration file error."
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 msgid "A child process failed."
 msgstr ""
 
 #. type: SH
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 #, no-wrap
 msgid "DIAGNOSTICS"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 msgid "The following warning messages can be emitted during database building."
 msgstr ""
 
 #. type: TP
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: whatis parse for page(sec) failed>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 msgid ""
 "An attempt to extract whatis line(s) from the given E<lt>filenameE<gt> "
 "failed.  This is usually due to a poorly written manual page, but if many "
@@ -3688,13 +3703,13 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: is a dangling symlink>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 msgid ""
 "E<lt>filenameE<gt> does not exist but is referenced by a symbolic link.  "
 "Further diagnostics are usually emitted to identify the E<lt>filenameE<gt> "
@@ -3702,26 +3717,26 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: bad symlink or ROFF `.so' request>"
 msgstr ""
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 msgid ""
 "E<lt>filenameE<gt> is either a symbolic link to, or contains a ROFF include "
 "request to, a non existent file."
 msgstr ""
 
 #. type: TP
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: ignoring bogus filename>"
 msgstr "B<E<lt>filenameE<gt>: genegeerde onzin bestandsnaam>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 msgid ""
 "The E<lt>filenameE<gt> may or may not be a valid manual page but its name is "
 "invalid.  This is usually due to a manual page with sectional extension "
@@ -3733,13 +3748,13 @@ msgstr ""
 "E<lt>yE<gt> is gestopt. "
 
 #. type: TP
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 #, no-wrap
 msgid "B<E<lt>filename_maskE<gt>: competing extensions>"
 msgstr "B<E<lt>filename_maskE<gt>: strijdende extensies>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:194
+#: ../../man/man8/mandb.man8:191
 msgid ""
 "The wildcard E<lt>filename_maskE<gt> is not unique.  This is usually caused "
 "by the existence of both a compressed and uncompressed version of the same "
@@ -3751,12 +3766,12 @@ msgstr ""
 "recente versie worden genegeerd."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:205
+#: ../../man/man8/mandb.man8:202
 msgid "Older locations for the database cache included:"
 msgstr "Oudere locaties van de database-cache bestaan uit:"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 msgid ""
 "The B<WHATIS PARSING> section formerly in this manual page is now part of "
 "B<lexgrog>(1)."
index f52154b..6c841c4 100644 (file)
@@ -8,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: man-db-manpages 2.7.0-pre1\n"
-"POT-Creation-Date: 2014-09-16 14:04+0100\n"
+"POT-Creation-Date: 2016-12-11 13:52+0000\n"
 "PO-Revision-Date: 2014-09-18 08:55+0200\n"
 "Last-Translator: Robert Luberda <robert@debian.org>\n"
 "Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
@@ -154,20 +154,20 @@ msgstr ""
 
 #. type: SH
 #: ../../man/man1/apropos.man1:61 ../../man/man1/lexgrog.man1:45
-#: ../../man/man1/man.man1:553 ../../man/man1/manconv.man1:50
+#: ../../man/man1/man.man1:558 ../../man/man1/manconv.man1:50
 #: ../../man/man1/manpath.man1:37 ../../man/man1/whatis.man1:71
 #: ../../man/man1/zsoelim.man1:55 ../../man/man8/accessdb.man8:29
-#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:83
+#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:80
 #, no-wrap
 msgid "OPTIONS"
 msgstr "OPCJE"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:65 ../../man/man1/lexgrog.man1:49
-#: ../../man/man1/man.man1:567 ../../man/man1/manconv.man1:66
+#: ../../man/man1/man.man1:572 ../../man/man1/manconv.man1:66
 #: ../../man/man1/manpath.man1:44 ../../man/man1/whatis.man1:75
 #: ../../man/man8/accessdb.man8:33 ../../man/man8/catman.man8:59
-#: ../../man/man8/mandb.man8:87
+#: ../../man/man8/mandb.man8:84
 msgid "Print debugging information."
 msgstr "Wyświetla informację diagnostyczną (debug)."
 
@@ -264,7 +264,7 @@ msgstr ""
 "zawierać tylko i wyłącznie strony w tej sekcji podręcznika."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:690
+#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:701
 #: ../../man/man1/manpath.man1:66 ../../man/man1/whatis.man1:133
 msgid ""
 "B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|, B<--systems=>I<system>\\|[\\|,.\\|."
@@ -298,7 +298,7 @@ msgstr ""
 "Niniejsza opcja nadpisuje ewentualne użycie zmiennej środowiska $B<SYSTEM>."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:709
+#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:720
 #: ../../man/man1/whatis.man1:152 ../../man/man8/catman.man8:59
 #, no-wrap
 msgid "B<-M\\ >I<path>,\\ B<--manpath=>I<path>"
@@ -320,14 +320,14 @@ msgstr ""
 "poszukiwań man. Opcja ta nadpisuje zawartość zmiennej $B<MANPATH>."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:660
+#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:671
 #: ../../man/man1/whatis.man1:166
 #, no-wrap
 msgid "B<-L\\ >I<locale>,\\ B<--locale=>I<locale>"
 msgstr "B<-L\\ >I<ustawienia_językowe>,\\ B<--locale=>I<ustawienia_językowe>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:684
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:695
 #: ../../man/man1/whatis.man1:183
 msgid ""
 "B<%program%> will normally determine your current locale by a call to the C "
@@ -348,17 +348,17 @@ msgstr ""
 "określonym na początku działania."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:560
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:565
 #: ../../man/man1/manpath.man1:85 ../../man/man1/whatis.man1:183
-#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:134
+#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:131
 #, no-wrap
 msgid "B<-C\\ >I<file>,\\ B<--config-file=>I<file>"
 msgstr "B<-C\\ >I<plik>,\\ B<--config-file=>I<plik>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:564
+#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:569
 #: ../../man/man1/manpath.man1:89 ../../man/man1/whatis.man1:187
-#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:138
+#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:135
 msgid ""
 "Use this user configuration file rather than the default of I<~/.manpath>."
 msgstr ""
@@ -367,7 +367,7 @@ msgstr ""
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:186 ../../man/man1/lexgrog.man1:89
-#: ../../man/man1/man.man1:1163 ../../man/man1/manconv.man1:69
+#: ../../man/man1/man.man1:1174 ../../man/man1/manconv.man1:69
 #: ../../man/man1/manpath.man1:92 ../../man/man1/whatis.man1:190
 #: ../../man/man1/zsoelim.man1:67 ../../man/man8/accessdb.man8:36
 #: ../../man/man8/catman.man8:71
@@ -376,15 +376,15 @@ msgstr "Wyświetla komunikat pomocy i kończy pracę."
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:189 ../../man/man1/lexgrog.man1:92
-#: ../../man/man1/man.man1:1166 ../../man/man1/manpath.man1:95
+#: ../../man/man1/man.man1:1177 ../../man/man1/manpath.man1:95
 #: ../../man/man1/whatis.man1:193 ../../man/man8/accessdb.man8:39
-#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:144
+#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:141
 msgid "Print a short usage message and exit."
 msgstr "Wyświetla krótki opis użycia programu i kończy pracę."
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1180 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:196
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/accessdb.man8:42
 #: ../../man/man8/catman.man8:77
@@ -393,28 +393,28 @@ msgstr "Wyświetla informację o wersji."
 
 #. type: SH
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/whatis.man1:196
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man1/man.man1:1180 ../../man/man1/whatis.man1:196
+#: ../../man/man8/mandb.man8:144
 #, no-wrap
 msgid "EXIT STATUS"
 msgstr "KOD ZAKOŃCZENIA"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:196 ../../man/man1/lexgrog.man1:99
-#: ../../man/man1/man.man1:1173 ../../man/man1/whatis.man1:200
-#: ../../man/man8/mandb.man8:151
+#: ../../man/man1/man.man1:1184 ../../man/man1/whatis.man1:200
+#: ../../man/man8/mandb.man8:148
 msgid "Successful program execution."
 msgstr "Program zakończony bez żadnych błędów."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1176
+#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1187
 #: ../../man/man1/whatis.man1:203
 msgid "Usage, syntax or configuration file error."
 msgstr "Błąd użycia, składni lub pliku konfiguracyjnego."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1179
-#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:157
+#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1190
+#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:154
 msgid "Operational error."
 msgstr "Błąd działania."
 
@@ -424,7 +424,7 @@ msgid "Nothing was found that matched the criteria specified."
 msgstr "Nie znaleziono niczego, co spełniałoby kryteria wyszukiwania."
 
 #. type: SH
-#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1185
+#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1196
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:209
 #: ../../man/man8/catman.man8:77
 #, no-wrap
@@ -432,7 +432,7 @@ msgid "ENVIRONMENT"
 msgstr "ŚRODOWISKO"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1282
+#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1293
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:218
 msgid ""
 "If $B<SYSTEM> is set, it will have the same effect as if it had been "
@@ -478,23 +478,23 @@ msgstr ""
 "i tak to jest domyślne zachowanie."
 
 #. type: SH
-#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1347
+#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1358
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:236
-#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:194
+#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:191
 #, no-wrap
 msgid "FILES"
 msgstr "PLIKI"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1359
+#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1370
 #: ../../man/man1/whatis.man1:242 ../../man/man8/catman.man8:103
-#: ../../man/man8/mandb.man8:210
+#: ../../man/man8/mandb.man8:207
 msgid "A traditional global I<index> database cache."
 msgstr "Tradycyjny globalny I<indeks> bazy danych."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1365
-#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:203
+#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1376
+#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:200
 msgid "An FHS compliant global I<index> database cache."
 msgstr "Zgodny z FHS globalny I<indeks> bazy danych."
 
@@ -505,10 +505,10 @@ msgstr "Tradycyjna tekstowa baza danych B<whatis>."
 
 #. type: SH
 #: ../../man/man1/apropos.man1:258 ../../man/man1/lexgrog.man1:197
-#: ../../man/man1/man.man1:1365 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1376 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:128 ../../man/man1/whatis.man1:253
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/catman.man8:109
-#: ../../man/man8/mandb.man8:216
+#: ../../man/man8/mandb.man8:213
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "ZOBACZ TAKŻE"
@@ -518,7 +518,7 @@ msgstr "ZOBACZ TAKŻE"
 #: ../../man/man1/manconv.man1:75 ../../man/man1/manpath.man1:132
 #: ../../man/man1/whatis.man1:257 ../../man/man1/zsoelim.man1:75
 #: ../../man/man8/accessdb.man8:42 ../../man/man8/catman.man8:113
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 #, no-wrap
 msgid "AUTHOR"
 msgstr "AUTOR"
@@ -848,6 +848,19 @@ msgstr "%man% - interfejs stron podręcznika ekranowego"
 #.  The apropos command line
 #. type: Plain text
 #: ../../man/man1/man.man1:67
+#, fuzzy
+#| msgid ""
+#| "B<%man%> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--"
+#| "warnings>\\|[\\|=I<warnings>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-L> "
+#| "I<locale>\\|] [\\|B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|] [\\|B<-M> "
+#| "I<path>\\|] [\\|B<-S> I<list>\\|] [\\|B<-e> I<extension>\\|] [\\|B<-i>\\||"
+#| "\\|B<-I>\\|] [\\|B<--regex>\\||\\|B<--wildcard>\\|] [\\|B<--names-only>"
+#| "\\|] [\\|B<-a>\\|] [\\|B<-u>\\|] [\\|B<--no-subpages>\\|] [\\|B<-P> "
+#| "I<pager>\\|] [\\|B<-r> I<prompt>\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>"
+#| "\\|] [\\|B<--no-hyphenation>\\|] [\\|B<--no-justification>\\|] [\\|B<-p> "
+#| "I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|[\\|I<device>\\|]\\|] [\\|B<-H>\\|"
+#| "[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|"
+#| "[\\|I<section>\\|] I<page>\\ .\\|.\\|.\\|]\\ .\\|.\\|.\\&"
 msgid ""
 "B<%man%> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--warnings>"
 "\\|[\\|=I<warnings>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-L> I<locale>"
@@ -858,8 +871,8 @@ msgid ""
 "\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>\\|] [\\|B<--no-hyphenation>\\|] [\\|"
 "B<--no-justification>\\|] [\\|B<-p> I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|"
 "[\\|I<device>\\|]\\|] [\\|B<-H>\\|[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|"
-"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>\\ .\\|.\\|."
-"\\|]\\ .\\|.\\|.\\&"
+"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>[.\\|I<section>"
+"\\|]\\ \\|.\\|.\\|.\\|]\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> [\\|B<-C> I<plik>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--warnings>"
 "\\|[\\|=I<ostrzeżenia>\\|]\\|] [\\|B<-R> I<kodowanie_znaków>\\|] [\\|B<-L> "
@@ -886,10 +899,10 @@ msgstr ""
 #: ../../man/man1/man.man1:86
 msgid ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<lista>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<sekcja>\\|] I<terminal>\\ .\\|.\\|.\\&"
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<sekcja>\\|] I<terminal>\\ .\\|.\\|.\\&"
 
 #.  The --local command line
 #. type: Plain text
@@ -975,43 +988,43 @@ msgstr ""
 "typów stron, które zawierają."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:189
+#: ../../man/man1/man.man1:191
 #, no-wrap
 msgid "Executable programs or shell commands"
 msgstr "Programy wykonywalne lub polecenia powłoki"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:192
+#: ../../man/man1/man.man1:194
 #, no-wrap
 msgid "System calls (functions provided by the kernel)"
 msgstr "Wywołania systemowe (funkcje dostarczane przez jądro systemu)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:195
+#: ../../man/man1/man.man1:197
 #, no-wrap
 msgid "Library calls (functions within program libraries)"
 msgstr "Wywołania biblioteczne (funkcje w bibliotekach programów)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:198
+#: ../../man/man1/man.man1:200
 #, no-wrap
 msgid "Special files (usually found in I</dev\\/>)"
 msgstr "Pliki specjalne (które zazwyczaj można znaleźć w I</dev\\/>)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:201
+#: ../../man/man1/man.man1:203
 #, no-wrap
 msgid "File formats and conventions eg I</etc/passwd>"
 msgstr "Formaty plików i konwencje, np. I</etc/passwd>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:204
+#: ../../man/man1/man.man1:206
 #, no-wrap
 msgid "Games"
 msgstr "Gry"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:207
+#: ../../man/man1/man.man1:210
 #, no-wrap
 msgid ""
 "Miscellaneous (including macro packages and conventions),\n"
@@ -1021,13 +1034,13 @@ msgstr ""
 "np.\\& B<man>(7), B<groff>(7)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:211
+#: ../../man/man1/man.man1:213
 #, no-wrap
 msgid "System administration commands (usually only for root)"
 msgstr "Polecenia do administracji systemem (zazwyczaj tylko dla administratora)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:214
+#: ../../man/man1/man.man1:216
 #, no-wrap
 msgid "Kernel routines [\\|Non standard\\|]"
 msgstr "Wywołania jądra [\\|Niestandardowa\\|]"
@@ -1070,7 +1083,7 @@ msgid "B<bold text>"
 msgstr "B<tekst pogrubiony>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:250
+#: ../../man/man1/man.man1:252
 #, no-wrap
 msgid "type exactly as shown."
 msgstr "wprowadź dokładnie tak, jak pokazano."
@@ -1082,7 +1095,7 @@ msgid "I<italic text>"
 msgstr "I<kursywa>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:253
+#: ../../man/man1/man.man1:255
 #, no-wrap
 msgid "replace with appropriate argument."
 msgstr "zastąp odpowiednim argumentem."
@@ -1094,7 +1107,7 @@ msgid "[\\|B<-abc>\\|]"
 msgstr "[\\|B<-abc>\\|]"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:256
+#: ../../man/man1/man.man1:258
 #, no-wrap
 msgid "any or all arguments within [ ] are optional."
 msgstr "wszystkie argumenty w [ ] są opcjonalne."
@@ -1106,7 +1119,7 @@ msgid "B<-a\\|>|\\|B<-b>"
 msgstr "B<-a\\|>|\\|B<-b>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:259
+#: ../../man/man1/man.man1:261
 #, no-wrap
 msgid "options delimited by | cannot be used together."
 msgstr "opcji rozdzielonych znakiem | nie można łączyć."
@@ -1118,7 +1131,7 @@ msgid "I<argument> .\\|.\\|."
 msgstr "I<argument> .\\|.\\|."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:262
+#: ../../man/man1/man.man1:264
 #, no-wrap
 msgid "I<argument> is repeatable."
 msgstr "I<argument> można powtarzać."
@@ -1130,7 +1143,7 @@ msgid "[\\|I<expression>\\|] .\\|.\\|."
 msgstr "[\\|I<wyrażenie>\\|] .\\|.\\|."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:265
+#: ../../man/man1/man.man1:267
 #, no-wrap
 msgid "entire I<expression>\\ within [ ] is repeatable."
 msgstr "całe I<wyrażenie>\\ w [ ] można powtarzać."
@@ -1175,12 +1188,28 @@ msgstr ""
 
 #. type: TP
 #: ../../man/man1/man.man1:287
+#, fuzzy, no-wrap
+#| msgid "B<%man%\\ -f>I<\\ smail>"
+msgid "B<%man% >I<man>.I<7>"
+msgstr "B<%man%\\ -f>I<\\ smail>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:292
+#, fuzzy
+#| msgid "Display the manual page for the I<item> (program)  I<ls>."
+msgid "Display the manual page for macro package I<man> from section I<7>."
+msgstr ""
+"Wyświetla stronę podręcznika ekranowego dla danej I<pozycji> (programu) "
+"I<ls>."
+
+#. type: TP
+#: ../../man/man1/man.man1:292
 #, no-wrap
 msgid "B<%man%\\ -a>I<\\ intro>"
 msgstr "B<%man%\\ -a>I<\\ intro>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 msgid ""
 "Display, in succession, all of the available I<intro> manual pages contained "
 "within the manual.  It is possible to quit between successive displays or "
@@ -1191,13 +1220,13 @@ msgstr ""
 "nich."
 
 #. type: TP
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 #, no-wrap
 msgid "B<%man% -t >I<alias >|I< lpr -Pps>"
 msgstr "B<%man% -t >I<alias >|I< lpr -Pps>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 msgid ""
 "Format the manual page referenced by `I<alias>', usually a shell manual "
 "page, into the default B<troff> or B<groff> format and pipe it to the "
@@ -1212,13 +1241,13 @@ msgstr ""
 "jest przypisany do opcji B<-t>."
 
 #. type: TP
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 #, no-wrap
 msgid "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
 msgstr "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 msgid ""
 "This command will decompress and format the nroff source manual page I<./"
 "foo.1x.gz> into a B<device independent (dvi)> file.  The redirection is "
@@ -1234,13 +1263,13 @@ msgstr ""
 "używając na przykład B<dvips>."
 
 #. type: TP
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 #, no-wrap
 msgid "B<%man%\\ -k>I<\\ printf>"
 msgstr "B<%man%\\ -k>I<\\ printf>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 msgid ""
 "Search the short descriptions and manual page names for the keyword "
 "I<printf> as regular expression.  Print out any matches.  Equivalent to B<"
@@ -1251,13 +1280,13 @@ msgstr ""
 "Odpowiednik B<%apropos%>I<\\ printf>B<.>"
 
 #. type: TP
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 #, no-wrap
 msgid "B<%man%\\ -f>I<\\ smail>"
 msgstr "B<%man%\\ -f>I<\\ smail>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 msgid ""
 "Lookup the manual pages referenced by I<smail> and print out the short "
 "descriptions of any found.  Equivalent to B<%whatis%>I<\\ smail>B<.>"
@@ -1266,13 +1295,13 @@ msgstr ""
 "każdej ze znalezionych stron. Odpowiednik B<%whatis%>I<\\ smail>B<.>"
 
 #. type: SH
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 #, no-wrap
 msgid "OVERVIEW"
 msgstr "WPROWADZENIE"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:347
+#: ../../man/man1/man.man1:352
 msgid ""
 "Many options are available to B<%man%> in order to give as much flexibility "
 "as possible to the user.  Changes can be made to the search path, section "
@@ -1284,7 +1313,7 @@ msgstr ""
 "operacje, jak to opisano poniżej"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:369
+#: ../../man/man1/man.man1:374
 msgid ""
 "If set, various environment variables are interrogated to determine the "
 "operation of B<%man%>.  It is possible to set the `catch all' variable "
@@ -1310,7 +1339,7 @@ msgstr ""
 "w $B<MANOPT>, które jednakże wciąż muszą być poprawne."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:390
+#: ../../man/man1/man.man1:395
 msgid ""
 "The manual pager utilities packaged as B<man-db> make extensive use of "
 "B<index> database caches.  These caches contain information such as where "
@@ -1335,7 +1364,7 @@ msgstr ""
 #. .B index
 #. caches created `on the fly'.
 #. type: Plain text
-#: ../../man/man1/man.man1:412
+#: ../../man/man1/man.man1:417
 msgid ""
 "If B<%man%> cannot find a B<%mandb%> initiated B<index> database for a "
 "particular manual page hierarchy, it will still search for the requested "
@@ -1351,7 +1380,7 @@ msgstr ""
 "informacje w tradycyjnej bazie danych I<whatis>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:432
+#: ../../man/man1/man.man1:437
 msgid ""
 "These utilities support compressed source nroff files having, by default, "
 "the extensions of B<.Z>, B<.z> and B<.gz>.  It is possible to deal with any "
@@ -1378,7 +1407,7 @@ msgstr ""
 "standard."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:445
+#: ../../man/man1/man.man1:450
 msgid ""
 "International support is available with this package.  Native language "
 "manual pages are accessible (if available on your system)  via use of "
@@ -1395,7 +1424,7 @@ msgstr ""
 
 #.  Need a \c to make sure we don't get a space where we don't want one
 #. type: Plain text
-#: ../../man/man1/man.man1:456
+#: ../../man/man1/man.man1:461
 msgid ""
 "E<lt>I<language>E<gt>[\\|B<_>E<lt>I<territory>E<gt>\\|[\\|B<."
 ">E<lt>I<character-set>E<gt>\\|[\\|B<,>E<lt>I<version>E<gt>\\|]\\|]\\|]"
@@ -1404,7 +1433,7 @@ msgstr ""
 ">E<lt>I<zestaw_znaków>E<gt>\\|[\\|B<,>E<lt>I<wersja>E<gt>\\|]\\|]\\|]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:461
+#: ../../man/man1/man.man1:466
 msgid ""
 "If the desired page is available in your I<locale>, it will be displayed in "
 "lieu of the standard (usually American English) page."
@@ -1414,7 +1443,7 @@ msgstr ""
 "amerykańskiej)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:468
+#: ../../man/man1/man.man1:473
 msgid ""
 "Support for international message catalogues is also featured in this "
 "package and can be activated in the same way, again if available.  If you "
@@ -1429,7 +1458,7 @@ msgstr ""
 "kontakt z opiekunem pakietu, który będzie koordynował tłumaczenia."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 msgid ""
 "For information regarding other features and extensions available with this "
 "manual pager, please read the documents supplied with the package."
@@ -1438,13 +1467,13 @@ msgstr ""
 "znajdują się w dokumentacji do niego dołączanej."
 
 #. type: SH
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 #, no-wrap
 msgid "DEFAULTS"
 msgstr "ZACHOWANIA DOMYŚLNE"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:491
+#: ../../man/man1/man.man1:496
 msgid ""
 "B<%man%> will search for the desired manual pages within the I<index> "
 "database caches. If the B<-u> option is given, a cache consistency check is "
@@ -1473,7 +1502,7 @@ msgstr ""
 "danych nie był obecny."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:503
+#: ../../man/man1/man.man1:508
 msgid ""
 "Once a manual page has been located, a check is performed to find out if a "
 "relative preformatted `cat' file already exists and is newer than the nroff "
@@ -1494,7 +1523,7 @@ msgstr ""
 "programów, a następnie pokazywany."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:508
+#: ../../man/man1/man.man1:513
 msgid ""
 "If a cat file can be produced (a relative cat directory exists and has "
 "appropriate permissions), B<%man%> will compress and store the cat file in "
@@ -1505,7 +1534,7 @@ msgstr ""
 "\"cat\", działając w tle."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:520
+#: ../../man/man1/man.man1:525
 msgid ""
 "The filters are deciphered by a number of means.  Firstly, the command line "
 "option B<-p> or the environment variable $B<MANROFFSEQ> is interrogated.  If "
@@ -1521,12 +1550,12 @@ msgstr ""
 "mogło zostać znalezione, pierwsza linia musi składać się z"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:523
+#: ../../man/man1/man.man1:528
 msgid "B<'\\e\"> E<lt>B<string>E<gt>"
 msgstr "B<'\\e\"> E<lt>B<łańcuch_znaków>E<gt>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:529
+#: ../../man/man1/man.man1:534
 msgid ""
 "where B<string> can be any combination of letters described by option B<-p> "
 "below."
@@ -1535,7 +1564,7 @@ msgstr ""
 "w opcji B<-p>. "
 
 #. type: Plain text
-#: ../../man/man1/man.man1:532
+#: ../../man/man1/man.man1:537
 msgid ""
 "If none of the above methods provide any filter information, a default set "
 "is used."
@@ -1545,7 +1574,7 @@ msgstr ""
 
 #.  ********************************************************************
 #. type: Plain text
-#: ../../man/man1/man.man1:553
+#: ../../man/man1/man.man1:558
 msgid ""
 "A formatting pipeline is formed from the filters and the primary formatter "
 "(B<nroff> or [B<tg>]B<roff> with B<-t>)  and executed.  Alternatively, if an "
@@ -1563,7 +1592,7 @@ msgstr ""
 "argumentach opcji B<-T> lub B<-E>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 msgid ""
 "Non argument options that are duplicated either on the command line, in "
 "$B<MANOPT>, or both, are not harmful.  For options that require an argument, "
@@ -1575,13 +1604,13 @@ msgstr ""
 "wartość tego argumentu."
 
 #. type: SS
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 #, no-wrap
 msgid "General options"
 msgstr "Opcje ogólne"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 msgid ""
 "This option is normally issued as the very first option and resets B<%man"
 "%'s> behaviour to its default.  Its use is to reset those options that may "
@@ -1594,13 +1623,13 @@ msgstr ""
 "swoje normalne znaczenie."
 
 #. type: TP
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 #, no-wrap
 msgid "B<--warnings>[=I<warnings\\/>]"
 msgstr "B<--warnings>[=I<ostrzeżenia\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 msgid ""
 "Enable warnings from I<groff>.  This may be used to perform sanity checks on "
 "the source text of manual pages.  I<warnings> is a comma-separated list of "
@@ -1615,13 +1644,13 @@ msgstr ""
 "można znaleźć w  B<info groff>, sekcja \\(lqOstrzeżenia\\(rq."
 
 #. type: SS
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 #, no-wrap
 msgid "Main modes of operation"
 msgstr "Główne tryby działania"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:598
+#: ../../man/man1/man.man1:603
 msgid ""
 "Equivalent to B<%whatis%>.  Display a short description from the manual "
 "page, if available.  See B<%whatis%>(1)  for details."
@@ -1630,7 +1659,7 @@ msgstr ""
 "jest dostępna. Szczegóły można znaleźć w B<%whatis%>(1)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:607
+#: ../../man/man1/man.man1:612
 msgid ""
 "Equivalent to B<%apropos%>.  Search the short manual page descriptions for "
 "keywords and display any matches.  See B<%apropos%>(1)  for details."
@@ -1640,7 +1669,7 @@ msgstr ""
 "można znaleźć w B<%apropos%>(1)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:617
+#: ../../man/man1/man.man1:622
 msgid ""
 "Search for text in all manual pages.  This is a brute-force search, and is "
 "likely to take some time; if you can, you should specify a section to reduce "
@@ -1655,11 +1684,19 @@ msgstr ""
 "łańcuchami znaków (domyślnie) lub wyrażeniami regularnymi (jeśli podano "
 "opcję B<--regex>)."
 
+#. type: Plain text
+#: ../../man/man1/man.man1:628
+msgid ""
+"Note that this searches the I<sources> of the manual pages, not the rendered "
+"text, and so may include false positives due to things like comments in "
+"source files.  Searching the rendered text would be much slower."
+msgstr ""
+
 #.  Compressed nroff source files with a supported compression
 #.  extension will be decompressed by man prior to being displaying via the
 #.  usual filters.
 #. type: Plain text
-#: ../../man/man1/man.man1:633
+#: ../../man/man1/man.man1:644
 msgid ""
 "Activate `local' mode.  Format and display local manual files instead of "
 "searching through the system's manual collection.  Each manual page argument "
@@ -1680,7 +1717,7 @@ msgstr ""
 "podana i użyje podanego argumentu jako nazwy pliku do wyświetlenia."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:637
+#: ../../man/man1/man.man1:648
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "source nroff files that would be formatted."
@@ -1689,7 +1726,7 @@ msgstr ""
 "źródłowych plików nroff, które zostałyby sformatowane."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:642
+#: ../../man/man1/man.man1:653
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "cat files that would be displayed.  If -w and -W are both specified, print "
@@ -1700,7 +1737,7 @@ msgstr ""
 "wyświetla obie wartości rozdzielone spacją."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 msgid ""
 "This option is not for general use and should only be used by the B<%catman"
 "%> program."
@@ -1709,13 +1746,13 @@ msgstr ""
 "program B<%catman%>."
 
 #. type: TP
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 #, no-wrap
 msgid "B<-R\\ >I<encoding>,\\ B<--recode>=I<encoding>"
 msgstr "B<-R\\ >I<kodowanie_znaków>,\\ B<--recode>=I<kodowanie_znaków>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 msgid ""
 "Instead of formatting the manual page in the usual way, output its source "
 "converted to the specified I<encoding>.  If you already know the encoding of "
@@ -1733,13 +1770,13 @@ msgstr ""
 "katalogów podobnej do hierarchii stron podręcznika."
 
 #. type: SS
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 #, no-wrap
 msgid "Finding manual pages"
 msgstr "Wyszukiwanie stron podręcznika ekranowego"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:697
+#: ../../man/man1/man.man1:708
 msgid ""
 "If this system has access to other operating system's manual pages, they can "
 "be accessed using this option.  To search for a manual page from NewOS's "
@@ -1750,7 +1787,7 @@ msgstr ""
 "wyszukać stronę podręcznika z systemu NewOS, należy podać B<-m> B<NewOS>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:708
+#: ../../man/man1/man.man1:719
 msgid ""
 "The I<system> specified can be a combination of comma delimited operating "
 "system names.  To include a search of the native operating system's manual "
@@ -1763,7 +1800,7 @@ msgstr ""
 "Niniejsza opcja nadpisuje ewentualne użycie zmiennej środowiska $B<SYSTEM>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:722
+#: ../../man/man1/man.man1:733
 msgid ""
 "Specify an alternate manpath to use.  By default, B<%man%> uses B<%manpath%> "
 "derived code to determine the path to search.  This option overrides the "
@@ -1775,7 +1812,7 @@ msgstr ""
 "ignorowana."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 msgid ""
 "A path specified as a manpath must be the root of a manual page hierarchy "
 "structured into sections as described in the man-db manual (under \"The "
@@ -1789,13 +1826,13 @@ msgstr ""
 "hierarchią, patrz opcja B<-l>."
 
 #. type: TP
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 #, no-wrap
 msgid "B<-S\\ >I<list>,\\ B<-s\\ >I<list>,\\ B<--sections=>I<list>"
 msgstr "B<-S\\ >I<lista>,\\ B<-s\\ >I<lista>,\\ B<--sections=>I<lista>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 msgid ""
 "List is a colon- or comma-separated list of `order specific' manual sections "
 "to search.  This option overrides the $B<MANSECT> environment variable.  "
@@ -1807,13 +1844,13 @@ msgstr ""
 "dostarczona w celu zachowania kompatybilności z Systemem V)."
 
 #. type: TP
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 #, no-wrap
 msgid "B<-e\\ >I<sub-extension>,\\ B<--extension=>I<sub-extension>"
 msgstr "B<-e\\ >I<pod-rozszerzenie>,\\ B<--extension=>I<pod-rozszerzenie>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:773
+#: ../../man/man1/man.man1:784
 msgid ""
 "Some systems incorporate large packages of manual pages, such as those that "
 "accompany the B<Tcl> package, into the main manual page hierarchy.  To get "
@@ -1845,19 +1882,19 @@ msgstr ""
 "rozszerzenie B<*tcl>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:777
+#: ../../man/man1/man.man1:788
 msgid "Ignore case when searching for manual pages.  This is the default."
 msgstr ""
 "Ignoruje wielkość liter podczas wyszukiwania stron podręcznika. Jest to "
 "zachowanie domyślne."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:780
+#: ../../man/man1/man.man1:791
 msgid "Search for manual pages case-sensitively."
 msgstr "Wyszukuje strony podręcznika zwracając uwagę na wielkość liter."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:790
+#: ../../man/man1/man.man1:801
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument as a regular expression, as with "
@@ -1871,7 +1908,7 @@ msgstr ""
 "strony, opcja ta włącza B<-a>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:805
+#: ../../man/man1/man.man1:816
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument using shell-style wildcards, as with "
@@ -1888,7 +1925,7 @@ msgstr ""
 "rozsądnego sposobu wydobycia\"najlepszej\" strony, opcja ta włącza B<-a>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:814
+#: ../../man/man1/man.man1:825
 msgid ""
 "If the B<--regex> or B<--wildcard> option is used, match only page names, "
 "not page descriptions, as with B<whatis>(1).  Otherwise, no effect."
@@ -1898,7 +1935,7 @@ msgstr ""
 "razie opcja ta nic nie robi."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:822
+#: ../../man/man1/man.man1:833
 msgid ""
 "By default, B<%man%> will exit after displaying the most suitable manual "
 "page it finds.  Using this option forces B<%man%> to display all the manual "
@@ -1910,7 +1947,7 @@ msgstr ""
 "odpowiadają kryteriom wyszukiwania."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:831
+#: ../../man/man1/man.man1:842
 msgid ""
 "This option causes B<%man%> to perform an `inode level' consistency check on "
 "its database caches to ensure that they are an accurate representation of "
@@ -1923,7 +1960,7 @@ msgstr ""
 "jest zainstalowany z ustawionym bitem set-user-id."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:843
+#: ../../man/man1/man.man1:854
 msgid ""
 "By default, B<%man%> will try to interpret pairs of manual page names given "
 "on the command line as equivalent to a single manual page name containing a "
@@ -1940,24 +1977,24 @@ msgstr ""
 "która by była użyta do uruchomienia tego podprogramu. Przykład:"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:852
+#: ../../man/man1/man.man1:863
 msgid "To disable this behaviour, use the B<--no-subpages> option."
 msgstr "Aby wyłączyć to zachowanie, proszę użyć opcji B<--no-subpages>."
 
 #. type: SS
-#: ../../man/man1/man.man1:859
+#: ../../man/man1/man.man1:870
 #, no-wrap
 msgid "Controlling formatted output"
 msgstr "Kontrolowanie sformatowanego wyjścia"
 
 #. type: TP
-#: ../../man/man1/man.man1:860
+#: ../../man/man1/man.man1:871
 #, no-wrap
 msgid "B<-P\\ >I<pager>,\\ B<--pager=>I<pager>"
 msgstr "B<-P\\ >I<pager>,\\ B<--pager=>I<pager>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:876
+#: ../../man/man1/man.man1:887
 msgid ""
 "Specify which output pager to use.  By default, B<%man%> uses B<%pager%>.  "
 "This option overrides the $B<MANPAGER> environment variable, which in turn "
@@ -1970,7 +2007,7 @@ msgstr ""
 "$B<PAGER>. Nie jest używana w połączeniu z B<-f> lub B<-k>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:882 ../../man/man1/man.man1:1239
+#: ../../man/man1/man.man1:893 ../../man/man1/man.man1:1250
 msgid ""
 "The value may be a simple command name or a command with arguments, and may "
 "use shell quoting (backslashes, single quotes, or double quotes).  It may "
@@ -1986,13 +2023,13 @@ msgstr ""
 "linii poleceń, albo odczytać go ze standardowego wejścia."
 
 #. type: TP
-#: ../../man/man1/man.man1:882
+#: ../../man/man1/man.man1:893
 #, no-wrap
 msgid "B<-r\\ >I<prompt>,\\ B<--prompt=>I<prompt>"
 msgstr "B<-r\\ >I<linia_zachęty>,\\ B<--prompt=>I<linia_zachęty>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:890
+#: ../../man/man1/man.man1:901
 msgid ""
 "If a recent version of B<less> is used as the pager, B<%man%> will attempt "
 "to set its prompt and some sensible options.  The default prompt looks like"
@@ -2002,7 +2039,7 @@ msgstr ""
 "sensownych opcji. Domyślny łańcuch zachęty wygląda tak"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:894
+#: ../../man/man1/man.man1:905
 msgid "B<\\ Manual page>I<\\ name>B<(>I<sec>B<)>B<\\ line>I<\\ x>"
 msgstr "B<\\ Strona podręcznika>I<\\ nazwa>B<(>I<sek>B<)>B<\\ linia>I<\\ x>"
 
@@ -2011,7 +2048,7 @@ msgstr "B<\\ Strona podręcznika>I<\\ nazwa>B<(>I<sek>B<)>B<\\ linia>I<\\ x>"
 #. The actual default will depend on your chosen
 #. .BR locale .
 #. type: Plain text
-#: ../../man/man1/man.man1:909
+#: ../../man/man1/man.man1:920
 msgid ""
 "where I<name> denotes the manual page name, I<sec> denotes the section it "
 "was found under and I<x> the current line number.  This is achieved by using "
@@ -2026,7 +2063,7 @@ msgstr ""
 #. .B less
 #. rejects the default options or if you prefer a different prompt.
 #. type: Plain text
-#: ../../man/man1/man.man1:922
+#: ../../man/man1/man.man1:933
 msgid ""
 "Supplying B<-r> with a string will override this default.  The string may "
 "contain the text B<$MAN_PN> which will be expanded to the name of the "
@@ -2039,24 +2076,24 @@ msgstr ""
 "\")\". Łańcuch znaków równoważny wartości domyślnej to:"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:924
+#: ../../man/man1/man.man1:935
 msgid "B<\\e\\ Manual\\e\\ page\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
 msgstr ""
 "B<\\e\\ Strona\\e\\ podręcznika\\e\\ \\e$MAN_PN\\e\\ ?ltlinia\\e\\ %lt?L/%L.:"
 ">"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:926
+#: ../../man/man1/man.man1:937
 msgid "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
 msgstr "B<bajt\\e\\ %bB?s/%s..?\\e\\ (KONIEC):?pB\\e\\ %pB\\e\\e%..>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:928
+#: ../../man/man1/man.man1:939
 msgid "B<(press h for help or q to quit)>"
 msgstr "B<(naciśnij h, aby otrzymać pomoc, lub q, aby zakończyć)>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:943
+#: ../../man/man1/man.man1:954
 msgid ""
 "It is broken into three lines here for the sake of readability only.  For "
 "its meaning see the B<less>(1)  manual page.  The prompt string is first "
@@ -2074,7 +2111,7 @@ msgstr ""
 "przekazywane do programu less. Domyślnie B<%man%>  ustawia opcje B<-ix8>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:948
+#: ../../man/man1/man.man1:959
 msgid ""
 "The $B<MANLESS> environment variable described below may be used to set a "
 "default prompt string if none is supplied on the command line."
@@ -2084,7 +2121,7 @@ msgstr ""
 "poleceń."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:974
+#: ../../man/man1/man.man1:985
 msgid ""
 "When viewing a pure I<ascii>(7)  manual page on a 7 bit terminal or terminal "
 "emulator, some characters may not display correctly when using the "
@@ -2105,43 +2142,43 @@ msgstr ""
 "I<latin1>(7) B<GNU> B<nroff>a."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Description"
 msgstr "Opis"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Octal"
 msgstr "Ósemkowy"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:985
+#: ../../man/man1/man.man1:998
 #, no-wrap
 msgid "continuation hyphen"
 msgstr "łącznik"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:988
+#: ../../man/man1/man.man1:1001
 #, no-wrap
 msgid "bullet (middle dot)"
 msgstr "kula (kropka w środku)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:991
+#: ../../man/man1/man.man1:1004
 #, no-wrap
 msgid "acute accent"
 msgstr "akcent ostry"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:994
+#: ../../man/man1/man.man1:1007
 #, no-wrap
 msgid "multiplication sign"
 msgstr "znak dzielenia"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1018
+#: ../../man/man1/man.man1:1029
 msgid ""
 "If the I<latin1> column displays correctly, your terminal may be set up for "
 "I<latin1> characters and this option is not necessary.  If the I<latin1> and "
@@ -2159,7 +2196,7 @@ msgstr ""
 "przeglądania stron podręcznika ekranowego."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 msgid ""
 "This option is ignored when using options B<-t>, B<-H>, B<-T>, or B<-Z> and "
 "may be useless for B<nroff> other than B<GNU's>."
@@ -2169,13 +2206,13 @@ msgstr ""
 "innej niż B<GNU>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 #, no-wrap
 msgid "B<-E\\ >I<encoding>,\\ B<--encoding>=I<encoding>"
 msgstr "B<-E\\ >I<kodowanie_znaków>,\\ B<--encoding>=I<kodowanie_znaków>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1040
+#: ../../man/man1/man.man1:1051
 msgid ""
 "Generate output for a character encoding other than the default.  For "
 "backward compatibility, I<encoding> may be an B<nroff> device such as "
@@ -2188,7 +2225,7 @@ msgstr ""
 "znaków, takim jak B<UTF-8>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1049
+#: ../../man/man1/man.man1:1060
 msgid ""
 "Normally, B<nroff> will automatically hyphenate text at line breaks even in "
 "words that do not contain hyphens, if it is necessary to do so to lay out "
@@ -2203,7 +2240,7 @@ msgstr ""
 "gdy zawierają łączniki."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1058
+#: ../../man/man1/man.man1:1069
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "hyphenating a word at an inappropriate point, do not use this option, but "
@@ -2219,7 +2256,7 @@ msgstr ""
 "na początku słowa, co zabroni jego dzielenia."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1065
+#: ../../man/man1/man.man1:1076
 msgid ""
 "Normally, B<nroff> will automatically justify text to both margins.  This "
 "option disables full justification, leaving justified only to the left "
@@ -2231,7 +2268,7 @@ msgstr ""
 "\"."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "justifying certain paragraphs, do not use this option, but consult the "
@@ -2246,13 +2283,13 @@ msgstr ""
 "\", aby tymczasowo wyłączyć wyrównywanie linii i wypełnianie spacjami."
 
 #. type: TP
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 #, no-wrap
 msgid "B<-p\\ >I<string>,\\ B<--preprocessor=>I<string>"
 msgstr "B<-p\\ >I<łańcuch_znaków>,\\ B<--preprocessor=>I<łańcuch_znaków>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1091
+#: ../../man/man1/man.man1:1102
 msgid ""
 "Specify the sequence of preprocessors to run before B<nroff> or B<troff>/"
 "B<groff>.  Not all installations will have a full set of preprocessors.  "
@@ -2270,7 +2307,7 @@ msgstr ""
 "preprocesor."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 msgid ""
 "Use I<%troff%> to format the manual page to stdout.  This option is not "
 "required in conjunction with B<-H>, B<-T>, or B<-Z>."
@@ -2279,13 +2316,13 @@ msgstr ""
 "wyjście. Opcja nie jest wymagana w połączeniu z  B<-H>, B<-T> lub B<-Z>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 #, no-wrap
 msgid "B<-T>[I<device\\/>], B<--troff-device>[=I<device\\/>]"
 msgstr "B<-T>[I<urządzenie\\/>], B<--troff-device>[=I<urządzenie\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 msgid ""
 "This option is used to change B<groff> (or possibly B<troff's>)  output to "
 "be suitable for a device other than the default.  It implies B<-t>.  "
@@ -2298,13 +2335,13 @@ msgstr ""
 "B<dvi>, B<latin1>, B<ps>, B<utf8>, B<X75> oraz B<X100>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 #, no-wrap
 msgid "B<-H>[I<browser\\/>], B<--html>[=I<browser\\/>]"
 msgstr "B<-H>[I<przeglądarka\\/>], B<--html>[=I<przeglądarka\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 msgid ""
 "This option will cause B<groff> to produce HTML output, and will display "
 "that output in a web browser.  The choice of browser is determined by the "
@@ -2322,13 +2359,13 @@ msgstr ""
 "B<troff>a."
 
 #. type: TP
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 #, no-wrap
 msgid "B<-X>[I<dpi\\/>], B<--gxditview>[=I<dpi\\/>]"
 msgstr "B<-X>[I<dpi\\/>], B<--gxditview>[=I<dpi\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1143
+#: ../../man/man1/man.man1:1154
 msgid ""
 "This option displays the output of B<groff> in a graphical window using the "
 "B<gxditview> program.  The I<dpi> (dots per inch) may be 75, 75-12, 100, or "
@@ -2342,7 +2379,7 @@ msgstr ""
 "bazowej. Opcja włącza B<-T> z urządzeniem X75, X75-12, X100 lub X100-12."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 msgid ""
 "B<groff> will run B<troff> and then use an appropriate post-processor to "
 "produce output suitable for the chosen device.  If I<%troff%> is B<groff>, "
@@ -2355,18 +2392,18 @@ msgstr ""
 "użycie postprocesora. Automatycznie włącza opcję B<-t>."
 
 #. type: SS
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 #, no-wrap
 msgid "Getting help"
 msgstr "Otrzymywanie pomocy"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1182
+#: ../../man/man1/man.man1:1193
 msgid "A child process returned a non-zero exit status."
 msgstr "Proces potomny zwrócił niezerowy kod zakończenia."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1185
+#: ../../man/man1/man.man1:1196
 msgid ""
 "At least one of the pages/files/keywords didn't exist or wasn't matched."
 msgstr ""
@@ -2374,7 +2411,7 @@ msgstr ""
 "zostało dopasowane."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1192
+#: ../../man/man1/man.man1:1203
 msgid ""
 "If $B<MANPATH> is set, its value is used as the path to search for manual "
 "pages."
@@ -2383,7 +2420,7 @@ msgstr ""
 "przeszukiwań hierarchii stron man."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1203
+#: ../../man/man1/man.man1:1214
 msgid ""
 "The contents of $B<MANROFFOPT> are added to the command line every time "
 "B<man> invokes the formatter (B<nroff>, B<troff>, or B<groff>)."
@@ -2393,7 +2430,7 @@ msgstr ""
 "B<groff>)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1210
+#: ../../man/man1/man.man1:1221
 msgid ""
 "If $B<MANROFFSEQ> is set, its value is used to determine the set of "
 "preprocessors to pass each manual page through.  The default preprocessor "
@@ -2404,7 +2441,7 @@ msgstr ""
 "Domyślna lista preprocesorów zależy od systemu."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1220 ../../man/man8/catman.man8:88
+#: ../../man/man1/man.man1:1231 ../../man/man8/catman.man8:88
 msgid ""
 "If $B<MANSECT> is set, its value is a colon-delimited list of sections and "
 "it is used to determine which manual sections to search and in what order.  "
@@ -2418,7 +2455,7 @@ msgstr ""
 "%manpath_config_file%>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1233
+#: ../../man/man1/man.man1:1244
 msgid ""
 "If $B<MANPAGER> or $B<PAGER> is set ($B<MANPAGER> is used in preference), "
 "its value is used as the name of the program used to display the manual "
@@ -2430,7 +2467,7 @@ msgstr ""
 "%pager%>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1258
+#: ../../man/man1/man.man1:1269
 msgid ""
 "If $B<MANLESS> is set, its value will be used as the default prompt string "
 "for the B<less> pager, as if it had been passed using the B<-r> option (so "
@@ -2447,7 +2484,7 @@ msgstr ""
 "linia\\ zachęty>\\(cq. Użycie opcji B<-r> nadpisuje tę zmienną środowiska."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1274
+#: ../../man/man1/man.man1:1285
 msgid ""
 "If $B<BROWSER> is set, its value is a colon-delimited list of commands, each "
 "of which in turn is used to try to start a web browser for B<man> B<--"
@@ -2463,7 +2500,7 @@ msgstr ""
 "- dwukropkiem (:)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1297
+#: ../../man/man1/man.man1:1308
 msgid ""
 "If $B<MANOPT> is set, it will be parsed prior to B<%man%'s> command line and "
 "is expected to be in a similar format.  As all of the other B<%man%> "
@@ -2482,7 +2519,7 @@ msgstr ""
 "zostać poprzedzone znakiem odwrotnego ukośnika."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1311
+#: ../../man/man1/man.man1:1322
 msgid ""
 "If $B<MANWIDTH> is set, its value is used as the line length for which "
 "manual pages should be formatted.  If it is not set, manual pages will be "
@@ -2503,7 +2540,7 @@ msgstr ""
 "między 66 a 80 znakami."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1322
+#: ../../man/man1/man.man1:1333
 msgid ""
 "Normally, when output is not being directed to a terminal (such as to a file "
 "or a pipe), formatting characters are discarded to make it easier to read "
@@ -2521,7 +2558,7 @@ msgstr ""
 
 # FIXME
 #. type: Plain text
-#: ../../man/man1/man.man1:1335
+#: ../../man/man1/man.man1:1346
 msgid ""
 "Normally, when output is being directed to a terminal (usually to a pager), "
 "any error output from the command used to produce formatted versions of "
@@ -2544,7 +2581,7 @@ msgstr ""
 "normalnie wyświetlane."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1347
+#: ../../man/man1/man.man1:1358
 msgid ""
 "Depending on system and implementation, either or both of $B<LANG> and "
 "$B<LC_MESSAGES> will be interrogated for the current message locale.  B<%man"
@@ -2557,29 +2594,29 @@ msgstr ""
 "Szczegóły można znaleźć w B<setlocale>(3)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1351 ../../man/man1/manpath.man1:128
-#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:198
+#: ../../man/man1/man.man1:1362 ../../man/man1/manpath.man1:128
+#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:195
 msgid "man-db configuration file."
 msgstr "Plik konfiguracyjny man-db."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1354
+#: ../../man/man1/man.man1:1365
 msgid "A global manual page hierarchy."
 msgstr "Globalna hierarchia stron podręcznika ekranowego."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 msgid "the man-db package manual, B<FSSTND>"
 msgstr "podręcznik pakietu man-db, B<FSSTND>"
 
 #. type: SH
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 #, no-wrap
 msgid "HISTORY"
 msgstr "HISTORIA"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1385
+#: ../../man/man1/man.man1:1396
 msgid ""
 "1990, 1991 \\(en Originally written by John W.\\& Eaton (jwe@che.utexas.edu)."
 msgstr ""
@@ -2587,7 +2624,7 @@ msgstr ""
 "edu)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1388
+#: ../../man/man1/man.man1:1399
 msgid ""
 "Dec 23 1992: Rik Faith (faith@cs.unc.edu) applied bug fixes supplied by "
 "Willem Kasdorp (wkasdo@nikhefk.nikef.nl)."
@@ -2596,7 +2633,7 @@ msgstr ""
 "nadesłane przez Willema Kasdorpa (wkasdo@nikhefk.nikef.nl)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1392
+#: ../../man/man1/man.man1:1403
 msgid ""
 "30th April 1994 \\(en 23rd February 2000: Wilf. (G.Wilford@ee.surrey.ac.uk)  "
 "has been developing and maintaining this package with the help of a few "
@@ -2606,7 +2643,7 @@ msgstr ""
 "pomocą paru osób rozwijał ten pakiet i nim zarządzał."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1396
+#: ../../man/man1/man.man1:1407
 msgid ""
 "30th October 1996 \\(en 30th March 2001: Fabrizio Polacco "
 "E<lt>fpolacco@debian.orgE<gt> maintained and enhanced this package for the "
@@ -2617,7 +2654,7 @@ msgstr ""
 "Debiana z pomocą całej społeczności."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1398
+#: ../../man/man1/man.man1:1409
 msgid ""
 "31st March 2001 \\(en present day: Colin Watson E<lt>cjwatson@debian."
 "orgE<gt> is now developing and maintaining man-db."
@@ -3468,7 +3505,7 @@ msgstr ""
 "wskazane jako systemowe w pliku konfiguracyjnym man-db."
 
 #. type: Plain text
-#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:216
+#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:213
 msgid "An alternate or FSSTND compliant global I<index> database cache."
 msgstr "Alternatywny lub zgodny z FSSTND globalny I<indeks> bazy danych."
 
@@ -3584,19 +3621,19 @@ msgid "Berkeley db"
 msgstr "Berkeley db"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "Binary tree"
 msgstr "Drzewo binarne"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61 ../../man/man8/mandb.man8:64
+#: ../../man/man8/mandb.man8:63 ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "Yes"
 msgstr "Tak"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "I<index.bt>"
 msgstr "I<index.bt>"
@@ -3604,18 +3641,17 @@ msgstr "I<index.bt>"
 #. type: tbl table
 #: ../../man/man8/mandb.man8:64
 #, no-wrap
-msgid "GNU gdbm v E<gt>= 1.6"
-msgstr "GNU gdbm v E<gt>= 1.6"
+msgid "GNU gdbm"
+msgstr "GNU gdbm"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:66 ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "Hashed"
 msgstr "Funkcja mieszająca"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
+#: ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "I<index.db>"
 msgstr "I<index.db>"
@@ -3623,29 +3659,23 @@ msgstr "I<index.db>"
 #. type: tbl table
 #: ../../man/man8/mandb.man8:67
 #, no-wrap
-msgid "GNU gdbm v E<lt>  1.6"
-msgstr "GNU gdbm v E<lt>  1.6"
+msgid "UNIX ndbm"
+msgstr "UNIX ndbm"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:67 ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "No"
 msgstr "Nie"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:70
-#, no-wrap
-msgid "UNIX ndbm"
-msgstr "UNIX ndbm"
-
-#. type: tbl table
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "I<index.(dir|pag)>"
 msgstr "I<index.(dir|pag)>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:83
+#: ../../man/man8/mandb.man8:80
 msgid ""
 "Those database types that support asynchronous updates provide enhanced "
 "speed at the cost of possible corruption in the event of unusual "
@@ -3660,12 +3690,12 @@ msgstr ""
 "zera."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:90
+#: ../../man/man8/mandb.man8:87
 msgid "Produce no warnings."
 msgstr "Nie generuje ostrzeżeń."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:94
+#: ../../man/man8/mandb.man8:91
 msgid ""
 "Do not spend time looking for or adding information to the databases "
 "regarding stray cats."
@@ -3674,7 +3704,7 @@ msgstr ""
 "zabłąkanych stron cat. [tłum: stray cats - również \"zabłąkane koty\" :)]."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:98
+#: ../../man/man8/mandb.man8:95
 msgid ""
 "Do not spend time checking for deleted manual pages and purging them from "
 "the databases."
@@ -3683,7 +3713,7 @@ msgstr ""
 "z bazy danych."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:110
+#: ../../man/man8/mandb.man8:107
 msgid ""
 "By default, B<%mandb%> will try to update any previously created databases.  "
 "If a database does not exist, it will create it.  This option forces B<%mandb"
@@ -3698,7 +3728,7 @@ msgstr ""
 "lub jeśli wprowadza się nowy układ przechowywania baz."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:114
+#: ../../man/man8/mandb.man8:111
 msgid ""
 "Create user databases only, even with write permissions necessary to create "
 "system databases."
@@ -3707,7 +3737,7 @@ msgstr ""
 "niezbędnych do utworzenia baz systemowych."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:120
+#: ../../man/man8/mandb.man8:117
 msgid ""
 "Perform correctness checks on manual pages in the hierarchy search path.  "
 "With this option, B<%mandb%> will not alter existing databases."
@@ -3717,7 +3747,7 @@ msgstr ""
 "bazy danych."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:134
+#: ../../man/man8/mandb.man8:131
 msgid ""
 "Update only the entries for the given filename.  This option is not for "
 "general use; it is used internally by B<%man%> when it has been compiled "
@@ -3730,45 +3760,45 @@ msgstr ""
 "podręcznika jest przestarzała. Włącza B<-p> i deaktywuje B<-c> i B<-s>."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:141
+#: ../../man/man8/mandb.man8:138
 msgid "Show the usage message, then exit."
 msgstr "Wyświetla komunikaty o zastosowaniu i kończy pracę."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man8/mandb.man8:144
 msgid "Show the version, then exit."
 msgstr "Wyświetla numer wersji i kończy pracę."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:154
+#: ../../man/man8/mandb.man8:151
 msgid "Usage, syntax, or configuration file error."
 msgstr "Błąd użycia, składni lub w pliku konfiguracyjnym."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 msgid "A child process failed."
 msgstr "Błąd działania procesu potomnego."
 
 #. type: SH
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 #, no-wrap
 msgid "DIAGNOSTICS"
 msgstr "DIAGNOSTYKA"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 msgid "The following warning messages can be emitted during database building."
 msgstr ""
 "Podczas tworzenia bazy danych mogą być wyświetlane następujące ostrzeżenia:"
 
 #. type: TP
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: whatis parse for page(sec) failed>"
 msgstr "B<E<lt>plikE<gt>: przetwarzanie whatis strona(sekcja) się nie powiodło>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 msgid ""
 "An attempt to extract whatis line(s) from the given E<lt>filenameE<gt> "
 "failed.  This is usually due to a poorly written manual page, but if many "
@@ -3784,13 +3814,13 @@ msgstr ""
 "B<PRZETWARZANIE WHATIS> na stronie B<lexgrog>(1)."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: is a dangling symlink>"
 msgstr "B<E<lt>plikE<gt>: jest wiszącym dowiązaniem symbolicznym>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 msgid ""
 "E<lt>filenameE<gt> does not exist but is referenced by a symbolic link.  "
 "Further diagnostics are usually emitted to identify the E<lt>filenameE<gt> "
@@ -3802,13 +3832,13 @@ msgstr ""
 "dowiązania."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: bad symlink or ROFF `.so' request>"
 msgstr "B<E<lt>plikE<gt>: złe dowiązanie symboliczne lub błędne żądanie \"so\" ROFF>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 msgid ""
 "E<lt>filenameE<gt> is either a symbolic link to, or contains a ROFF include "
 "request to, a non existent file."
@@ -3817,13 +3847,13 @@ msgstr ""
 "albo zawiera żądanie włączenia ROFF (include) nieistniejącego pliku."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: ignoring bogus filename>"
 msgstr "B<E<lt>plikE<gt>: ignorowanie niepoprawnej nazwy pliku>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 msgid ""
 "The E<lt>filenameE<gt> may or may not be a valid manual page but its name is "
 "invalid.  This is usually due to a manual page with sectional extension "
@@ -3834,13 +3864,13 @@ msgstr ""
 "E<lt>xE<gt> umieszczoną w sekcji stron E<lt>yE<gt>."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 #, no-wrap
 msgid "B<E<lt>filename_maskE<gt>: competing extensions>"
 msgstr "B<E<lt>maska_plikuE<gt>: konkurujące rozszerzenia>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:194
+#: ../../man/man8/mandb.man8:191
 msgid ""
 "The wildcard E<lt>filename_maskE<gt> is not unique.  This is usually caused "
 "by the existence of both a compressed and uncompressed version of the same "
@@ -3851,12 +3881,12 @@ msgstr ""
 "tej samej strony man. Ignorowane są wszystkie oprócz najnowszej."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:205
+#: ../../man/man8/mandb.man8:202
 msgid "Older locations for the database cache included:"
 msgstr "Poprzednie lokalizacje bufora bazy danych obejmowały między innymi:"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 msgid ""
 "The B<WHATIS PARSING> section formerly in this manual page is now part of "
 "B<lexgrog>(1)."
index 8131320..bc117b1 100644 (file)
@@ -8,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: man-db-manpages 2.7.0-pre1\n"
-"POT-Creation-Date: 2014-09-16 14:04+0100\n"
+"POT-Creation-Date: 2016-12-11 13:52+0000\n"
 "PO-Revision-Date: 2014-09-19 04:37+0400\n"
 "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
 "Language-Team: Russian <gnu@mx.ru>\n"
@@ -153,20 +153,20 @@ msgstr ""
 
 #. type: SH
 #: ../../man/man1/apropos.man1:61 ../../man/man1/lexgrog.man1:45
-#: ../../man/man1/man.man1:553 ../../man/man1/manconv.man1:50
+#: ../../man/man1/man.man1:558 ../../man/man1/manconv.man1:50
 #: ../../man/man1/manpath.man1:37 ../../man/man1/whatis.man1:71
 #: ../../man/man1/zsoelim.man1:55 ../../man/man8/accessdb.man8:29
-#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:83
+#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:80
 #, no-wrap
 msgid "OPTIONS"
 msgstr "ПАРАМЕТРЫ"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:65 ../../man/man1/lexgrog.man1:49
-#: ../../man/man1/man.man1:567 ../../man/man1/manconv.man1:66
+#: ../../man/man1/man.man1:572 ../../man/man1/manconv.man1:66
 #: ../../man/man1/manpath.man1:44 ../../man/man1/whatis.man1:75
 #: ../../man/man8/accessdb.man8:33 ../../man/man8/catman.man8:59
-#: ../../man/man8/mandb.man8:87
+#: ../../man/man8/mandb.man8:84
 msgid "Print debugging information."
 msgstr "Показывать отладочную информацию."
 
@@ -261,7 +261,7 @@ msgstr ""
 "раздела справочных страниц с этим расширением."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:690
+#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:701
 #: ../../man/man1/manpath.man1:66 ../../man/man1/whatis.man1:133
 msgid ""
 "B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|, B<--systems=>I<system>\\|[\\|,.\\|."
@@ -296,7 +296,7 @@ msgstr ""
 "параметр подменяет значение переменной окружения $B<SYSTEM>."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:709
+#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:720
 #: ../../man/man1/whatis.man1:152 ../../man/man8/catman.man8:59
 #, no-wrap
 msgid "B<-M\\ >I<path>,\\ B<--manpath=>I<path>"
@@ -318,14 +318,14 @@ msgstr ""
 "подменяет значение переменной окружения $B<MANPATH>."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:660
+#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:671
 #: ../../man/man1/whatis.man1:166
 #, no-wrap
 msgid "B<-L\\ >I<locale>,\\ B<--locale=>I<locale>"
 msgstr "B<-L\\ >I<локаль>,\\ B<--locale=>I<локаль>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:684
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:695
 #: ../../man/man1/whatis.man1:183
 msgid ""
 "B<%program%> will normally determine your current locale by a call to the C "
@@ -345,17 +345,17 @@ msgstr ""
 "изначально определённой локали."
 
 #. type: TP
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:560
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:565
 #: ../../man/man1/manpath.man1:85 ../../man/man1/whatis.man1:183
-#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:134
+#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:131
 #, no-wrap
 msgid "B<-C\\ >I<file>,\\ B<--config-file=>I<file>"
 msgstr "B<-C\\ >I<файл>,\\ B<--config-file=>I<файл>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:564
+#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:569
 #: ../../man/man1/manpath.man1:89 ../../man/man1/whatis.man1:187
-#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:138
+#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:135
 msgid ""
 "Use this user configuration file rather than the default of I<~/.manpath>."
 msgstr ""
@@ -364,7 +364,7 @@ msgstr ""
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:186 ../../man/man1/lexgrog.man1:89
-#: ../../man/man1/man.man1:1163 ../../man/man1/manconv.man1:69
+#: ../../man/man1/man.man1:1174 ../../man/man1/manconv.man1:69
 #: ../../man/man1/manpath.man1:92 ../../man/man1/whatis.man1:190
 #: ../../man/man1/zsoelim.man1:67 ../../man/man8/accessdb.man8:36
 #: ../../man/man8/catman.man8:71
@@ -373,15 +373,15 @@ msgstr "Показать справочное сообщение и законч
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:189 ../../man/man1/lexgrog.man1:92
-#: ../../man/man1/man.man1:1166 ../../man/man1/manpath.man1:95
+#: ../../man/man1/man.man1:1177 ../../man/man1/manpath.man1:95
 #: ../../man/man1/whatis.man1:193 ../../man/man8/accessdb.man8:39
-#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:144
+#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:141
 msgid "Print a short usage message and exit."
 msgstr "Показать короткое сообщение об использовании и завершить работу."
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1180 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:196
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/accessdb.man8:42
 #: ../../man/man8/catman.man8:77
@@ -390,21 +390,21 @@ msgstr "Показать информацию о версии."
 
 #. type: SH
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/whatis.man1:196
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man1/man.man1:1180 ../../man/man1/whatis.man1:196
+#: ../../man/man8/mandb.man8:144
 #, no-wrap
 msgid "EXIT STATUS"
 msgstr "КОД ВЫХОДА"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:196 ../../man/man1/lexgrog.man1:99
-#: ../../man/man1/man.man1:1173 ../../man/man1/whatis.man1:200
-#: ../../man/man8/mandb.man8:151
+#: ../../man/man1/man.man1:1184 ../../man/man1/whatis.man1:200
+#: ../../man/man8/mandb.man8:148
 msgid "Successful program execution."
 msgstr "Успешное выполнение программы."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1176
+#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1187
 #: ../../man/man1/whatis.man1:203
 msgid "Usage, syntax or configuration file error."
 msgstr ""
@@ -412,8 +412,8 @@ msgstr ""
 "проблемы в файле настройки."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1179
-#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:157
+#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1190
+#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:154
 msgid "Operational error."
 msgstr "Ошибка при работе."
 
@@ -423,7 +423,7 @@ msgid "Nothing was found that matched the criteria specified."
 msgstr "По запросу ничего не найдено."
 
 #. type: SH
-#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1185
+#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1196
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:209
 #: ../../man/man8/catman.man8:77
 #, no-wrap
@@ -431,7 +431,7 @@ msgid "ENVIRONMENT"
 msgstr "ОКРУЖЕНИЕ"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1282
+#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1293
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:218
 msgid ""
 "If $B<SYSTEM> is set, it will have the same effect as if it had been "
@@ -479,23 +479,23 @@ msgstr ""
 "поведением по умолчанию."
 
 #. type: SH
-#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1347
+#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1358
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:236
-#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:194
+#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:191
 #, no-wrap
 msgid "FILES"
 msgstr "ФАЙЛЫ"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1359
+#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1370
 #: ../../man/man1/whatis.man1:242 ../../man/man8/catman.man8:103
-#: ../../man/man8/mandb.man8:210
+#: ../../man/man8/mandb.man8:207
 msgid "A traditional global I<index> database cache."
 msgstr "Традиционный кэш глобальной базы данных I<index>."
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1365
-#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:203
+#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1376
+#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:200
 msgid "An FHS compliant global I<index> database cache."
 msgstr "Соответствующий FHS глобальный кэш базы данных I<index>."
 
@@ -506,10 +506,10 @@ msgstr "Традиционная текстовая база данных B<what
 
 #. type: SH
 #: ../../man/man1/apropos.man1:258 ../../man/man1/lexgrog.man1:197
-#: ../../man/man1/man.man1:1365 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1376 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:128 ../../man/man1/whatis.man1:253
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/catman.man8:109
-#: ../../man/man8/mandb.man8:216
+#: ../../man/man8/mandb.man8:213
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "СМОТРИТЕ ТАКЖЕ"
@@ -519,7 +519,7 @@ msgstr "СМОТРИТЕ ТАКЖЕ"
 #: ../../man/man1/manconv.man1:75 ../../man/man1/manpath.man1:132
 #: ../../man/man1/whatis.man1:257 ../../man/man1/zsoelim.man1:75
 #: ../../man/man8/accessdb.man8:42 ../../man/man8/catman.man8:113
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 #, no-wrap
 msgid "AUTHOR"
 msgstr "АВТОР"
@@ -845,6 +845,19 @@ msgstr "%man% - доступ к справочным страницам"
 #.  The apropos command line
 #. type: Plain text
 #: ../../man/man1/man.man1:67
+#, fuzzy
+#| msgid ""
+#| "B<%man%> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--"
+#| "warnings>\\|[\\|=I<warnings>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-L> "
+#| "I<locale>\\|] [\\|B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|] [\\|B<-M> "
+#| "I<path>\\|] [\\|B<-S> I<list>\\|] [\\|B<-e> I<extension>\\|] [\\|B<-i>\\||"
+#| "\\|B<-I>\\|] [\\|B<--regex>\\||\\|B<--wildcard>\\|] [\\|B<--names-only>"
+#| "\\|] [\\|B<-a>\\|] [\\|B<-u>\\|] [\\|B<--no-subpages>\\|] [\\|B<-P> "
+#| "I<pager>\\|] [\\|B<-r> I<prompt>\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>"
+#| "\\|] [\\|B<--no-hyphenation>\\|] [\\|B<--no-justification>\\|] [\\|B<-p> "
+#| "I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|[\\|I<device>\\|]\\|] [\\|B<-H>\\|"
+#| "[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|"
+#| "[\\|I<section>\\|] I<page>\\ .\\|.\\|.\\|]\\ .\\|.\\|.\\&"
 msgid ""
 "B<%man%> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--warnings>"
 "\\|[\\|=I<warnings>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-L> I<locale>"
@@ -855,8 +868,8 @@ msgid ""
 "\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>\\|] [\\|B<--no-hyphenation>\\|] [\\|"
 "B<--no-justification>\\|] [\\|B<-p> I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|"
 "[\\|I<device>\\|]\\|] [\\|B<-H>\\|[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|"
-"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>\\ .\\|.\\|."
-"\\|]\\ .\\|.\\|.\\&"
+"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>[.\\|I<section>"
+"\\|]\\ \\|.\\|.\\|.\\|]\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> [\\|B<-C> I<файл>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--warnings>"
 "\\|[\\|=I<предупреждения>\\|]\\|] [\\|B<-R> I<кодировка>\\|] [\\|B<-L> "
@@ -882,10 +895,10 @@ msgstr ""
 #: ../../man/man1/man.man1:86
 msgid ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<список>\\|] [\\|B<-i>"
-"\\||\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<раздел>\\|] I<термин>\\ .\\|.\\|."
+"\\||\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<раздел>\\|] I<термин>\\ .\\|.\\|."
 "\\&"
 
 #.  The --local command line
@@ -972,43 +985,43 @@ msgstr ""
 "содержимого."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:189
+#: ../../man/man1/man.man1:191
 #, no-wrap
 msgid "Executable programs or shell commands"
 msgstr "Исполняемые программы или команды оболочки (shell)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:192
+#: ../../man/man1/man.man1:194
 #, no-wrap
 msgid "System calls (functions provided by the kernel)"
 msgstr "Системные вызовы (функции, предоставляемые ядром)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:195
+#: ../../man/man1/man.man1:197
 #, no-wrap
 msgid "Library calls (functions within program libraries)"
 msgstr "Библиотечные вызовы (функции, предоставляемые программными библиотеками)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:198
+#: ../../man/man1/man.man1:200
 #, no-wrap
 msgid "Special files (usually found in I</dev\\/>)"
 msgstr "Специальные файлы (обычно находящиеся в каталоге I</dev\\/>)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:201
+#: ../../man/man1/man.man1:203
 #, no-wrap
 msgid "File formats and conventions eg I</etc/passwd>"
 msgstr "Форматы файлов и соглашения, например о I</etc/passwd>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:204
+#: ../../man/man1/man.man1:206
 #, no-wrap
 msgid "Games"
 msgstr "Игры"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:207
+#: ../../man/man1/man.man1:210
 #, no-wrap
 msgid ""
 "Miscellaneous (including macro packages and conventions),\n"
@@ -1018,13 +1031,13 @@ msgstr ""
 "например\\& B<man>(7), B<groff>(7)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:211
+#: ../../man/man1/man.man1:213
 #, no-wrap
 msgid "System administration commands (usually only for root)"
 msgstr "Команды администрирования системы (обычно, запускаемые только суперпользователем)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:214
+#: ../../man/man1/man.man1:216
 #, no-wrap
 msgid "Kernel routines [\\|Non standard\\|]"
 msgstr "Процедуры ядра [\\|нестандартный раздел\\|]"
@@ -1067,7 +1080,7 @@ msgid "B<bold text>"
 msgstr "B<текст жирным шрифтом>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:250
+#: ../../man/man1/man.man1:252
 #, no-wrap
 msgid "type exactly as shown."
 msgstr "набирать точно как показано."
@@ -1079,7 +1092,7 @@ msgid "I<italic text>"
 msgstr "I<текст курсивным шрифтом>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:253
+#: ../../man/man1/man.man1:255
 #, no-wrap
 msgid "replace with appropriate argument."
 msgstr "заменить соответствующим значением."
@@ -1091,7 +1104,7 @@ msgid "[\\|B<-abc>\\|]"
 msgstr "[\\|B<-abc>\\|]"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:256
+#: ../../man/man1/man.man1:258
 #, no-wrap
 msgid "any or all arguments within [ ] are optional."
 msgstr "любой или все параметры внутри [ ] необязательны."
@@ -1103,7 +1116,7 @@ msgid "B<-a\\|>|\\|B<-b>"
 msgstr "B<-a\\|>|\\|B<-b>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:259
+#: ../../man/man1/man.man1:261
 #, no-wrap
 msgid "options delimited by | cannot be used together."
 msgstr "параметры, разделённые |, не могут указываться одновременно."
@@ -1115,7 +1128,7 @@ msgid "I<argument> .\\|.\\|."
 msgstr "I<параметр> .\\|.\\|."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:262
+#: ../../man/man1/man.man1:264
 #, no-wrap
 msgid "I<argument> is repeatable."
 msgstr "повторяющийся I<параметр>."
@@ -1127,7 +1140,7 @@ msgid "[\\|I<expression>\\|] .\\|.\\|."
 msgstr "[\\|I<выражение>\\|] .\\|.\\|."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:265
+#: ../../man/man1/man.man1:267
 #, no-wrap
 msgid "entire I<expression>\\ within [ ] is repeatable."
 msgstr "всё I<выражение>\\ внутри [ ] может вводиться несколько раз."
@@ -1169,12 +1182,26 @@ msgstr "Показать справочную страницу для I<пара
 
 #. type: TP
 #: ../../man/man1/man.man1:287
+#, fuzzy, no-wrap
+#| msgid "B<%man%\\ -f>I<\\ smail>"
+msgid "B<%man% >I<man>.I<7>"
+msgstr "B<%man%\\ -f>I<\\ smail>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:292
+#, fuzzy
+#| msgid "Display the manual page for the I<item> (program)  I<ls>."
+msgid "Display the manual page for macro package I<man> from section I<7>."
+msgstr "Показать справочную страницу для I<параметра> (программы) I<ls>."
+
+#. type: TP
+#: ../../man/man1/man.man1:292
 #, no-wrap
 msgid "B<%man%\\ -a>I<\\ intro>"
 msgstr "B<%man%\\ -a>I<\\ intro>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 msgid ""
 "Display, in succession, all of the available I<intro> manual pages contained "
 "within the manual.  It is possible to quit between successive displays or "
@@ -1185,13 +1212,13 @@ msgstr ""
 "просмотр."
 
 #. type: TP
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 #, no-wrap
 msgid "B<%man% -t >I<alias >|I< lpr -Pps>"
 msgstr "B<%man% -t >I<alias >|I< lpr -Pps>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 msgid ""
 "Format the manual page referenced by `I<alias>', usually a shell manual "
 "page, into the default B<troff> or B<groff> format and pipe it to the "
@@ -1206,13 +1233,13 @@ msgstr ""
 "% --help> можно посмотреть какой процессор используется с параметром B<-t>."
 
 #. type: TP
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 #, no-wrap
 msgid "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
 msgstr "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 msgid ""
 "This command will decompress and format the nroff source manual page I<./"
 "foo.1x.gz> into a B<device independent (dvi)> file.  The redirection is "
@@ -1228,13 +1255,13 @@ msgstr ""
 "помощью, например, B<dvips>."
 
 #. type: TP
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 #, no-wrap
 msgid "B<%man%\\ -k>I<\\ printf>"
 msgstr "B<%man%\\ -k>I<\\ printf>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 msgid ""
 "Search the short descriptions and manual page names for the keyword "
 "I<printf> as regular expression.  Print out any matches.  Equivalent to B<"
@@ -1245,13 +1272,13 @@ msgstr ""
 "найденные совпадения. Эквивалентно вызову B<%apropos%>I<\\ printf>B<.>"
 
 #. type: TP
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 #, no-wrap
 msgid "B<%man%\\ -f>I<\\ smail>"
 msgstr "B<%man%\\ -f>I<\\ smail>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 msgid ""
 "Lookup the manual pages referenced by I<smail> and print out the short "
 "descriptions of any found.  Equivalent to B<%whatis%>I<\\ smail>B<.>"
@@ -1260,13 +1287,13 @@ msgstr ""
 "описание любой найденной. Эквивалентно вызову B<%whatis%>I<\\ smail>B<.>"
 
 #. type: SH
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 #, no-wrap
 msgid "OVERVIEW"
 msgstr "ОБЗОР"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:347
+#: ../../man/man1/man.man1:352
 msgid ""
 "Many options are available to B<%man%> in order to give as much flexibility "
 "as possible to the user.  Changes can be made to the search path, section "
@@ -1278,7 +1305,7 @@ msgstr ""
 "описано ниже."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:369
+#: ../../man/man1/man.man1:374
 msgid ""
 "If set, various environment variables are interrogated to determine the "
 "operation of B<%man%>.  It is possible to set the `catch all' variable "
@@ -1302,7 +1329,7 @@ msgstr ""
 "указанных в $B<MANOPT>, хотя они всё равно должны быть заданы правильно."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:390
+#: ../../man/man1/man.man1:395
 msgid ""
 "The manual pager utilities packaged as B<man-db> make extensive use of "
 "B<index> database caches.  These caches contain information such as where "
@@ -1327,7 +1354,7 @@ msgstr ""
 #. .B index
 #. caches created `on the fly'.
 #. type: Plain text
-#: ../../man/man1/man.man1:412
+#: ../../man/man1/man.man1:417
 msgid ""
 "If B<%man%> cannot find a B<%mandb%> initiated B<index> database for a "
 "particular manual page hierarchy, it will still search for the requested "
@@ -1343,7 +1370,7 @@ msgstr ""
 "извлечь информацию из традиционной текстовой базы данных I<whatis>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:432
+#: ../../man/man1/man.man1:437
 msgid ""
 "These utilities support compressed source nroff files having, by default, "
 "the extensions of B<.Z>, B<.z> and B<.gz>.  It is possible to deal with any "
@@ -1369,7 +1396,7 @@ msgstr ""
 "B<manpath>(5). Подробней о том, почему так делается, читайте стандарт."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:445
+#: ../../man/man1/man.man1:450
 msgid ""
 "International support is available with this package.  Native language "
 "manual pages are accessible (if available on your system)  via use of "
@@ -1388,7 +1415,7 @@ msgstr ""
 #
 #.  Need a \c to make sure we don't get a space where we don't want one
 #. type: Plain text
-#: ../../man/man1/man.man1:456
+#: ../../man/man1/man.man1:461
 msgid ""
 "E<lt>I<language>E<gt>[\\|B<_>E<lt>I<territory>E<gt>\\|[\\|B<."
 ">E<lt>I<character-set>E<gt>\\|[\\|B<,>E<lt>I<version>E<gt>\\|]\\|]\\|]"
@@ -1397,7 +1424,7 @@ msgstr ""
 ">E<lt>I<кодировка>E<gt>\\|[\\|B<,>E<lt>I<версия>E<gt>\\|]\\|]\\|]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:461
+#: ../../man/man1/man.man1:466
 msgid ""
 "If the desired page is available in your I<locale>, it will be displayed in "
 "lieu of the standard (usually American English) page."
@@ -1406,7 +1433,7 @@ msgstr ""
 "показана вместо стандартной (обычно, на американском английском) страницы."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:468
+#: ../../man/man1/man.man1:473
 msgid ""
 "Support for international message catalogues is also featured in this "
 "package and can be activated in the same way, again if available.  If you "
@@ -1420,7 +1447,7 @@ msgstr ""
 "свяжитесь с сопровождающим, который скоординирует данную работу."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 msgid ""
 "For information regarding other features and extensions available with this "
 "manual pager, please read the documents supplied with the package."
@@ -1429,13 +1456,13 @@ msgstr ""
 "страниц, читайте в описаниях из этого пакета."
 
 #. type: SH
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 #, no-wrap
 msgid "DEFAULTS"
 msgstr "ЗНАЧЕНИЯ ПО УМОЛЧАНИЮ"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:491
+#: ../../man/man1/man.man1:496
 msgid ""
 "B<%man%> will search for the desired manual pages within the I<index> "
 "database caches. If the B<-u> option is given, a cache consistency check is "
@@ -1463,7 +1490,7 @@ msgstr ""
 "кэша не было)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:503
+#: ../../man/man1/man.man1:508
 msgid ""
 "Once a manual page has been located, a check is performed to find out if a "
 "relative preformatted `cat' file already exists and is newer than the nroff "
@@ -1483,7 +1510,7 @@ msgstr ""
 "и сразу же показывается."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:508
+#: ../../man/man1/man.man1:513
 msgid ""
 "If a cat file can be produced (a relative cat directory exists and has "
 "appropriate permissions), B<%man%> will compress and store the cat file in "
@@ -1494,7 +1521,7 @@ msgstr ""
 "фоновом режиме."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:520
+#: ../../man/man1/man.man1:525
 msgid ""
 "The filters are deciphered by a number of means.  Firstly, the command line "
 "option B<-p> or the environment variable $B<MANROFFSEQ> is interrogated.  If "
@@ -1509,12 +1536,12 @@ msgstr ""
 "строку препроцессора правильно, первая строка должна быть в формате"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:523
+#: ../../man/man1/man.man1:528
 msgid "B<'\\e\"> E<lt>B<string>E<gt>"
 msgstr "B<'\\e\"> E<lt>B<строка>E<gt>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:529
+#: ../../man/man1/man.man1:534
 msgid ""
 "where B<string> can be any combination of letters described by option B<-p> "
 "below."
@@ -1523,7 +1550,7 @@ msgstr ""
 "ниже."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:532
+#: ../../man/man1/man.man1:537
 msgid ""
 "If none of the above methods provide any filter information, a default set "
 "is used."
@@ -1533,7 +1560,7 @@ msgstr ""
 
 #.  ********************************************************************
 #. type: Plain text
-#: ../../man/man1/man.man1:553
+#: ../../man/man1/man.man1:558
 msgid ""
 "A formatting pipeline is formed from the filters and the primary formatter "
 "(B<nroff> or [B<tg>]B<roff> with B<-t>)  and executed.  Alternatively, if an "
@@ -1551,7 +1578,7 @@ msgstr ""
 "параметре B<-T> или B<-E>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 msgid ""
 "Non argument options that are duplicated either on the command line, in "
 "$B<MANOPT>, or both, are not harmful.  For options that require an argument, "
@@ -1562,13 +1589,13 @@ msgstr ""
 "новое значение заменяет имеющееся."
 
 #. type: SS
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 #, no-wrap
 msgid "General options"
 msgstr "Общие параметры"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 msgid ""
 "This option is normally issued as the very first option and resets B<%man"
 "%'s> behaviour to its default.  Its use is to reset those options that may "
@@ -1581,13 +1608,13 @@ msgstr ""
 "параметры, указанные после B<-D>, будут действовать как обычно."
 
 #. type: TP
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 #, no-wrap
 msgid "B<--warnings>[=I<warnings\\/>]"
 msgstr "B<--warnings>[=I<предупреждения\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 msgid ""
 "Enable warnings from I<groff>.  This may be used to perform sanity checks on "
 "the source text of manual pages.  I<warnings> is a comma-separated list of "
@@ -1603,13 +1630,13 @@ msgstr ""
 "\\(lqПредупреждения\\(rq."
 
 #. type: SS
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 #, no-wrap
 msgid "Main modes of operation"
 msgstr "Основные режимы работы"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:598
+#: ../../man/man1/man.man1:603
 msgid ""
 "Equivalent to B<%whatis%>.  Display a short description from the manual "
 "page, if available.  See B<%whatis%>(1)  for details."
@@ -1618,7 +1645,7 @@ msgstr ""
 "страницы, если оно есть. Подробней смотрите B<%whatis%>(1)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:607
+#: ../../man/man1/man.man1:612
 msgid ""
 "Equivalent to B<%apropos%>.  Search the short manual page descriptions for "
 "keywords and display any matches.  See B<%apropos%>(1)  for details."
@@ -1628,7 +1655,7 @@ msgstr ""
 "%apropos%>(1)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:617
+#: ../../man/man1/man.man1:622
 msgid ""
 "Search for text in all manual pages.  This is a brute-force search, and is "
 "likely to take some time; if you can, you should specify a section to reduce "
@@ -1642,11 +1669,19 @@ msgstr ""
 "быть простыми строками (по умолчанию), или регулярными выражениями, если "
 "указан параметр B<--regex>."
 
+#. type: Plain text
+#: ../../man/man1/man.man1:628
+msgid ""
+"Note that this searches the I<sources> of the manual pages, not the rendered "
+"text, and so may include false positives due to things like comments in "
+"source files.  Searching the rendered text would be much slower."
+msgstr ""
+
 #.  Compressed nroff source files with a supported compression
 #.  extension will be decompressed by man prior to being displaying via the
 #.  usual filters.
 #. type: Plain text
-#: ../../man/man1/man.man1:633
+#: ../../man/man1/man.man1:644
 msgid ""
 "Activate `local' mode.  Format and display local manual files instead of "
 "searching through the system's manual collection.  Each manual page argument "
@@ -1668,7 +1703,7 @@ msgstr ""
 "для поиска."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:637
+#: ../../man/man1/man.man1:648
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "source nroff files that would be formatted."
@@ -1677,7 +1712,7 @@ msgstr ""
 "исходных файлов nroff, которые были бы отформатированы."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:642
+#: ../../man/man1/man.man1:653
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "cat files that would be displayed.  If -w and -W are both specified, print "
@@ -1688,7 +1723,7 @@ msgstr ""
 "то выводятся оба результата через пробел."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 msgid ""
 "This option is not for general use and should only be used by the B<%catman"
 "%> program."
@@ -1697,13 +1732,13 @@ msgstr ""
 "программой B<%catman%>."
 
 #. type: TP
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 #, no-wrap
 msgid "B<-R\\ >I<encoding>,\\ B<--recode>=I<encoding>"
 msgstr "B<-R\\ >I<кодировка>,\\ B<--recode>=I<кодировка>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 msgid ""
 "Instead of formatting the manual page in the usual way, output its source "
 "converted to the specified I<encoding>.  If you already know the encoding of "
@@ -1721,13 +1756,13 @@ msgstr ""
 "справочных страниц."
 
 #. type: SS
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 #, no-wrap
 msgid "Finding manual pages"
 msgstr "Поиск справочных страниц"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:697
+#: ../../man/man1/man.man1:708
 msgid ""
 "If this system has access to other operating system's manual pages, they can "
 "be accessed using this option.  To search for a manual page from NewOS's "
@@ -1739,7 +1774,7 @@ msgstr ""
 "B<NewOS>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:708
+#: ../../man/man1/man.man1:719
 msgid ""
 "The I<system> specified can be a combination of comma delimited operating "
 "system names.  To include a search of the native operating system's manual "
@@ -1752,7 +1787,7 @@ msgstr ""
 "заменяет значение переменной окружения $B<SYSTEM>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:722
+#: ../../man/man1/man.man1:733
 msgid ""
 "Specify an alternate manpath to use.  By default, B<%man%> uses B<%manpath%> "
 "derived code to determine the path to search.  This option overrides the "
@@ -1764,7 +1799,7 @@ msgstr ""
 "и выключает действие параметра B<-m>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 msgid ""
 "A path specified as a manpath must be the root of a manual page hierarchy "
 "structured into sections as described in the man-db manual (under \"The "
@@ -1777,13 +1812,13 @@ msgstr ""
 "вне этих иерархий, используйте параметр B<-l>."
 
 #. type: TP
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 #, no-wrap
 msgid "B<-S\\ >I<list>,\\ B<-s\\ >I<list>,\\ B<--sections=>I<list>"
 msgstr "B<-S\\ >I<список>,\\ B<-s\\ >I<список>,\\ B<--sections=>I<список>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 msgid ""
 "List is a colon- or comma-separated list of `order specific' manual sections "
 "to search.  This option overrides the $B<MANSECT> environment variable.  "
@@ -1795,13 +1830,13 @@ msgstr ""
 "System V.)"
 
 #. type: TP
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 #, no-wrap
 msgid "B<-e\\ >I<sub-extension>,\\ B<--extension=>I<sub-extension>"
 msgstr "B<-e\\ >I<доп.расширение>,\\ B<--extension=>I<доп.расширение>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:773
+#: ../../man/man1/man.man1:784
 msgid ""
 "Some systems incorporate large packages of manual pages, such as those that "
 "accompany the B<Tcl> package, into the main manual page hierarchy.  To get "
@@ -1832,18 +1867,18 @@ msgstr ""
 "поиск только страницами с расширением B<*tcl>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:777
+#: ../../man/man1/man.man1:788
 msgid "Ignore case when searching for manual pages.  This is the default."
 msgstr ""
 "Игнорировать регистр при поиске справочных страниц. Включено по умолчанию."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:780
+#: ../../man/man1/man.man1:791
 msgid "Search for manual pages case-sensitively."
 msgstr "Искать справочные страницы с учётом регистра символов."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:790
+#: ../../man/man1/man.man1:801
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument as a regular expression, as with "
@@ -1857,7 +1892,7 @@ msgstr ""
 "подразумевает B<-a>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:805
+#: ../../man/man1/man.man1:816
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument using shell-style wildcards, as with "
@@ -1875,7 +1910,7 @@ msgstr ""
 "B<-a>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:814
+#: ../../man/man1/man.man1:825
 msgid ""
 "If the B<--regex> or B<--wildcard> option is used, match only page names, "
 "not page descriptions, as with B<whatis>(1).  Otherwise, no effect."
@@ -1885,7 +1920,7 @@ msgstr ""
 "Иначе, этого не происходит."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:822
+#: ../../man/man1/man.man1:833
 msgid ""
 "By default, B<%man%> will exit after displaying the most suitable manual "
 "page it finds.  Using this option forces B<%man%> to display all the manual "
@@ -1896,7 +1931,7 @@ msgstr ""
 "все справочные страницы с именами, которые удовлетворяют критериям поиска."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:831
+#: ../../man/man1/man.man1:842
 msgid ""
 "This option causes B<%man%> to perform an `inode level' consistency check on "
 "its database caches to ensure that they are an accurate representation of "
@@ -1909,7 +1944,7 @@ msgstr ""
 "включённым setuid битом."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:843
+#: ../../man/man1/man.man1:854
 msgid ""
 "By default, B<%man%> will try to interpret pairs of manual page names given "
 "on the command line as equivalent to a single manual page name containing a "
@@ -1926,24 +1961,24 @@ msgstr ""
 "самих подкоманд. Например:"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:852
+#: ../../man/man1/man.man1:863
 msgid "To disable this behaviour, use the B<--no-subpages> option."
 msgstr "Чтобы выключить такое поведение, укажите параметр B<--no-subpages>."
 
 #. type: SS
-#: ../../man/man1/man.man1:859
+#: ../../man/man1/man.man1:870
 #, no-wrap
 msgid "Controlling formatted output"
 msgstr "Контролирование форматированного вывода"
 
 #. type: TP
-#: ../../man/man1/man.man1:860
+#: ../../man/man1/man.man1:871
 #, no-wrap
 msgid "B<-P\\ >I<pager>,\\ B<--pager=>I<pager>"
 msgstr "B<-P\\ >I<пейджер>,\\ B<--pager=>I<пейджер>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:876
+#: ../../man/man1/man.man1:887
 msgid ""
 "Specify which output pager to use.  By default, B<%man%> uses B<%pager%>.  "
 "This option overrides the $B<MANPAGER> environment variable, which in turn "
@@ -1956,7 +1991,7 @@ msgstr ""
 "$B<PAGER>. Не используется вместе с B<-f> или B<-k>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:882 ../../man/man1/man.man1:1239
+#: ../../man/man1/man.man1:893 ../../man/man1/man.man1:1250
 msgid ""
 "The value may be a simple command name or a command with arguments, and may "
 "use shell quoting (backslashes, single quotes, or double quotes).  It may "
@@ -1971,13 +2006,13 @@ msgstr ""
 "в виде параметра или со стандартного ввода."
 
 #. type: TP
-#: ../../man/man1/man.man1:882
+#: ../../man/man1/man.man1:893
 #, no-wrap
 msgid "B<-r\\ >I<prompt>,\\ B<--prompt=>I<prompt>"
 msgstr "B<-r\\ >I<приглашение>,\\ B<--prompt=>I<приглашение>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:890
+#: ../../man/man1/man.man1:901
 msgid ""
 "If a recent version of B<less> is used as the pager, B<%man%> will attempt "
 "to set its prompt and some sensible options.  The default prompt looks like"
@@ -1987,7 +2022,7 @@ msgstr ""
 "параметры. По умолчанию приглашение выглядит как"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:894
+#: ../../man/man1/man.man1:905
 msgid "B<\\ Manual page>I<\\ name>B<(>I<sec>B<)>B<\\ line>I<\\ x>"
 msgstr "B<\\ Manual page>I<\\ имя>B<(>I<раздел>B<)>B<\\ line>I<\\ x>"
 
@@ -1996,7 +2031,7 @@ msgstr "B<\\ Manual page>I<\\ имя>B<(>I<раздел>B<)>B<\\ line>I<\\ x>"
 #. The actual default will depend on your chosen
 #. .BR locale .
 #. type: Plain text
-#: ../../man/man1/man.man1:909
+#: ../../man/man1/man.man1:920
 msgid ""
 "where I<name> denotes the manual page name, I<sec> denotes the section it "
 "was found under and I<x> the current line number.  This is achieved by using "
@@ -2011,7 +2046,7 @@ msgstr ""
 #. .B less
 #. rejects the default options or if you prefer a different prompt.
 #. type: Plain text
-#: ../../man/man1/man.man1:922
+#: ../../man/man1/man.man1:933
 msgid ""
 "Supplying B<-r> with a string will override this default.  The string may "
 "contain the text B<$MAN_PN> which will be expanded to the name of the "
@@ -2025,24 +2060,24 @@ msgstr ""
 "умолчанию, могла бы выглядеть как"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:924
+#: ../../man/man1/man.man1:935
 msgid "B<\\e\\ Manual\\e\\ page\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
 msgstr ""
 "B<\\e\\ Справочная\\e\\ страница\\e\\ \\e$MAN_PN\\e\\ ?ltстрока\\e\\ %lt?L/"
 "%L.:>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:926
+#: ../../man/man1/man.man1:937
 msgid "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
 msgstr "B<byte\\e\\ %bB?s/%s..?\\e\\ (ВСЕ):?pB\\e\\ %pB\\e\\e%..>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:928
+#: ../../man/man1/man.man1:939
 msgid "B<(press h for help or q to quit)>"
 msgstr "B<(h — справка, q — выход)>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:943
+#: ../../man/man1/man.man1:954
 msgid ""
 "It is broken into three lines here for the sake of readability only.  For "
 "its meaning see the B<less>(1)  manual page.  The prompt string is first "
@@ -2060,7 +2095,7 @@ msgstr ""
 "параметры less. По умолчанию, B<%man%> указывает параметры B<-ix8>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:948
+#: ../../man/man1/man.man1:959
 msgid ""
 "The $B<MANLESS> environment variable described below may be used to set a "
 "default prompt string if none is supplied on the command line."
@@ -2070,7 +2105,7 @@ msgstr ""
 "строке."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:974
+#: ../../man/man1/man.man1:985
 msgid ""
 "When viewing a pure I<ascii>(7)  manual page on a 7 bit terminal or terminal "
 "emulator, some characters may not display correctly when using the "
@@ -2090,43 +2125,43 @@ msgstr ""
 "правильно только при использовании B<GNU> B<nroff> устройства I<latin1>(7)."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Description"
 msgstr "Описание"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Octal"
 msgstr "Восьмеричный код"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:985
+#: ../../man/man1/man.man1:998
 #, no-wrap
 msgid "continuation hyphen"
 msgstr "длинный перенос"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:988
+#: ../../man/man1/man.man1:1001
 #, no-wrap
 msgid "bullet (middle dot)"
 msgstr "bullet (точка в центре)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:991
+#: ../../man/man1/man.man1:1004
 #, no-wrap
 msgid "acute accent"
 msgstr "значок ударения"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:994
+#: ../../man/man1/man.man1:1007
 #, no-wrap
 msgid "multiplication sign"
 msgstr "знак ударения"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1018
+#: ../../man/man1/man.man1:1029
 msgid ""
 "If the I<latin1> column displays correctly, your terminal may be set up for "
 "I<latin1> characters and this option is not necessary.  If the I<latin1> and "
@@ -2144,7 +2179,7 @@ msgstr ""
 "помощью этого параметра."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 msgid ""
 "This option is ignored when using options B<-t>, B<-H>, B<-T>, or B<-Z> and "
 "may be useless for B<nroff> other than B<GNU's>."
@@ -2153,13 +2188,13 @@ msgstr ""
 "или B<-Z>, и может быть бесполезен для B<nroff>, если он не от B<GNU>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 #, no-wrap
 msgid "B<-E\\ >I<encoding>,\\ B<--encoding>=I<encoding>"
 msgstr "B<-E\\ >I<кодировка>,\\ B<--encoding>=I<кодировка>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1040
+#: ../../man/man1/man.man1:1051
 msgid ""
 "Generate output for a character encoding other than the default.  For "
 "backward compatibility, I<encoding> may be an B<nroff> device such as "
@@ -2172,7 +2207,7 @@ msgstr ""
 "B<ascii>, B<latin1> или B<utf8>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1049
+#: ../../man/man1/man.man1:1060
 msgid ""
 "Normally, B<nroff> will automatically hyphenate text at line breaks even in "
 "words that do not contain hyphens, if it is necessary to do so to lay out "
@@ -2187,7 +2222,7 @@ msgstr ""
 "символы переноса."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1058
+#: ../../man/man1/man.man1:1069
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "hyphenating a word at an inappropriate point, do not use this option, but "
@@ -2202,7 +2237,7 @@ msgstr ""
 "слова, что не даст его разорвать совсем."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1065
+#: ../../man/man1/man.man1:1076
 msgid ""
 "Normally, B<nroff> will automatically justify text to both margins.  This "
 "option disables full justification, leaving justified only to the left "
@@ -2213,7 +2248,7 @@ msgstr ""
 "краю, получается так называемый текст \"без выключки по правому краю\"."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "justifying certain paragraphs, do not use this option, but consult the "
@@ -2228,13 +2263,13 @@ msgstr ""
 "и заполнения."
 
 #. type: TP
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 #, no-wrap
 msgid "B<-p\\ >I<string>,\\ B<--preprocessor=>I<string>"
 msgstr "B<-p\\ >I<строка>,\\ B<--preprocessor=>I<строка>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1091
+#: ../../man/man1/man.man1:1102
 msgid ""
 "Specify the sequence of preprocessors to run before B<nroff> or B<troff>/"
 "B<groff>.  Not all installations will have a full set of preprocessors.  "
@@ -2252,7 +2287,7 @@ msgstr ""
 "быстрого препроцессора."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 msgid ""
 "Use I<%troff%> to format the manual page to stdout.  This option is not "
 "required in conjunction with B<-H>, B<-T>, or B<-Z>."
@@ -2262,13 +2297,13 @@ msgstr ""
 "или B<-Z>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 #, no-wrap
 msgid "B<-T>[I<device\\/>], B<--troff-device>[=I<device\\/>]"
 msgstr "B<-T>[I<устройство\\/>], B<--troff-device>[=I<устройство\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 msgid ""
 "This option is used to change B<groff> (or possibly B<troff's>)  output to "
 "be suitable for a device other than the default.  It implies B<-t>.  "
@@ -2281,13 +2316,13 @@ msgstr ""
 "включают B<dvi>, B<latin1>, B<ps>, B<utf8>, B<X75> и B<X100>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 #, no-wrap
 msgid "B<-H>[I<browser\\/>], B<--html>[=I<browser\\/>]"
 msgstr "B<-H>[I<браузер\\/>], B<--html>[=I<браузер\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 msgid ""
 "This option will cause B<groff> to produce HTML output, and will display "
 "that output in a web browser.  The choice of browser is determined by the "
@@ -2304,13 +2339,13 @@ msgstr ""
 "B<troff>."
 
 #. type: TP
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 #, no-wrap
 msgid "B<-X>[I<dpi\\/>], B<--gxditview>[=I<dpi\\/>]"
 msgstr "B<-X>[I<dpi\\/>], B<--gxditview>[=I<dpi\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1143
+#: ../../man/man1/man.man1:1154
 msgid ""
 "This option displays the output of B<groff> in a graphical window using the "
 "B<gxditview> program.  The I<dpi> (dots per inch) may be 75, 75-12, 100, or "
@@ -2325,7 +2360,7 @@ msgstr ""
 "значениями устройств X75, X75-12, X100 и X100-12 соответственно."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 msgid ""
 "B<groff> will run B<troff> and then use an appropriate post-processor to "
 "produce output suitable for the chosen device.  If I<%troff%> is B<groff>, "
@@ -2338,18 +2373,18 @@ msgstr ""
 "использование постпроцессора отменяется. Подразумевает B<-t>."
 
 #. type: SS
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 #, no-wrap
 msgid "Getting help"
 msgstr "Выдача справки"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1182
+#: ../../man/man1/man.man1:1193
 msgid "A child process returned a non-zero exit status."
 msgstr "Дочерний процесс завершился с ненулевым кодом выхода."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1185
+#: ../../man/man1/man.man1:1196
 msgid ""
 "At least one of the pages/files/keywords didn't exist or wasn't matched."
 msgstr ""
@@ -2357,7 +2392,7 @@ msgstr ""
 "неё при поиске ничего не найдено."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1192
+#: ../../man/man1/man.man1:1203
 msgid ""
 "If $B<MANPATH> is set, its value is used as the path to search for manual "
 "pages."
@@ -2366,7 +2401,7 @@ msgstr ""
 "используется в качестве пути поиска справочных страниц."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1203
+#: ../../man/man1/man.man1:1214
 msgid ""
 "The contents of $B<MANROFFOPT> are added to the command line every time "
 "B<man> invokes the formatter (B<nroff>, B<troff>, or B<groff>)."
@@ -2376,7 +2411,7 @@ msgstr ""
 "B<troff> или B<groff>)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1210
+#: ../../man/man1/man.man1:1221
 msgid ""
 "If $B<MANROFFSEQ> is set, its value is used to determine the set of "
 "preprocessors to pass each manual page through.  The default preprocessor "
@@ -2387,7 +2422,7 @@ msgstr ""
 "справочной страницы. Список препроцессоров по умолчанию зависит от системы."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1220 ../../man/man8/catman.man8:88
+#: ../../man/man1/man.man1:1231 ../../man/man8/catman.man8:88
 msgid ""
 "If $B<MANSECT> is set, its value is a colon-delimited list of sections and "
 "it is used to determine which manual sections to search and in what order.  "
@@ -2401,7 +2436,7 @@ msgstr ""
 "директивой B<SECTION> в I<%manpath_config_file%>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1233
+#: ../../man/man1/man.man1:1244
 msgid ""
 "If $B<MANPAGER> or $B<PAGER> is set ($B<MANPAGER> is used in preference), "
 "its value is used as the name of the program used to display the manual "
@@ -2412,7 +2447,7 @@ msgstr ""
 "отображения справочной страницы. По умолчанию, используется B<%pager%>."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1258
+#: ../../man/man1/man.man1:1269
 msgid ""
 "If $B<MANLESS> is set, its value will be used as the default prompt string "
 "for the B<less> pager, as if it had been passed using the B<-r> option (so "
@@ -2430,7 +2465,7 @@ msgstr ""
 "r> замещает значение переменной окружения."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1274
+#: ../../man/man1/man.man1:1285
 msgid ""
 "If $B<BROWSER> is set, its value is a colon-delimited list of commands, each "
 "of which in turn is used to try to start a web browser for B<man> B<--"
@@ -2446,7 +2481,7 @@ msgstr ""
 "двоеточием (:)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1297
+#: ../../man/man1/man.man1:1308
 msgid ""
 "If $B<MANOPT> is set, it will be parsed prior to B<%man%'s> command line and "
 "is expected to be in a similar format.  As all of the other B<%man%> "
@@ -2463,7 +2498,7 @@ msgstr ""
 "которые должны быть частью значения параметра, нужно экранировать."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1311
+#: ../../man/man1/man.man1:1322
 msgid ""
 "If $B<MANWIDTH> is set, its value is used as the line length for which "
 "manual pages should be formatted.  If it is not set, manual pages will be "
@@ -2483,7 +2518,7 @@ msgstr ""
 "терминала лежит в промежутке между 66 и 80 символами."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1322
+#: ../../man/man1/man.man1:1333
 msgid ""
 "Normally, when output is not being directed to a terminal (such as to a file "
 "or a pipe), formatting characters are discarded to make it easier to read "
@@ -2500,7 +2535,7 @@ msgstr ""
 "%>, которые распознают символы форматирования."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1335
+#: ../../man/man1/man.man1:1346
 msgid ""
 "Normally, when output is being directed to a terminal (usually to a pager), "
 "any error output from the command used to produce formatted versions of "
@@ -2522,7 +2557,7 @@ msgstr ""
 "как обычно."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1347
+#: ../../man/man1/man.man1:1358
 msgid ""
 "Depending on system and implementation, either or both of $B<LANG> and "
 "$B<LC_MESSAGES> will be interrogated for the current message locale.  B<%man"
@@ -2535,29 +2570,29 @@ msgstr ""
 "есть). Подробней смотрите в B<setlocale>(3)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1351 ../../man/man1/manpath.man1:128
-#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:198
+#: ../../man/man1/man.man1:1362 ../../man/man1/manpath.man1:128
+#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:195
 msgid "man-db configuration file."
 msgstr "Файл настройки man-db."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1354
+#: ../../man/man1/man.man1:1365
 msgid "A global manual page hierarchy."
 msgstr "Глобальная иерархия справочных страниц."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 msgid "the man-db package manual, B<FSSTND>"
 msgstr "руководство к пакету man-db, B<FSSTND>"
 
 #. type: SH
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 #, no-wrap
 msgid "HISTORY"
 msgstr "ИСТОРИЯ"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1385
+#: ../../man/man1/man.man1:1396
 msgid ""
 "1990, 1991 \\(en Originally written by John W.\\& Eaton (jwe@che.utexas.edu)."
 msgstr ""
@@ -2565,7 +2600,7 @@ msgstr ""
 "jwe@che.utexas.edu)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1388
+#: ../../man/man1/man.man1:1399
 msgid ""
 "Dec 23 1992: Rik Faith (faith@cs.unc.edu) applied bug fixes supplied by "
 "Willem Kasdorp (wkasdo@nikhefk.nikef.nl)."
@@ -2574,7 +2609,7 @@ msgstr ""
 "найденные Виллемом Касдорпом (Willem Kasdorp, wkasdo@nikhefk.nikef.nl)."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1392
+#: ../../man/man1/man.man1:1403
 msgid ""
 "30th April 1994 \\(en 23rd February 2000: Wilf. (G.Wilford@ee.surrey.ac.uk)  "
 "has been developing and maintaining this package with the help of a few "
@@ -2584,7 +2619,7 @@ msgstr ""
 "uk) разрабатывал и сопровождал этот пакет с помощью некоторых других людей."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1396
+#: ../../man/man1/man.man1:1407
 msgid ""
 "30th October 1996 \\(en 30th March 2001: Fabrizio Polacco "
 "E<lt>fpolacco@debian.orgE<gt> maintained and enhanced this package for the "
@@ -2595,7 +2630,7 @@ msgstr ""
 "Debian с помощью всего сообщества."
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1398
+#: ../../man/man1/man.man1:1409
 msgid ""
 "31st March 2001 \\(en present day: Colin Watson E<lt>cjwatson@debian."
 "orgE<gt> is now developing and maintaining man-db."
@@ -3432,7 +3467,7 @@ msgstr ""
 "системные иерархии в файле настроек man-db."
 
 #. type: Plain text
-#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:216
+#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:213
 msgid "An alternate or FSSTND compliant global I<index> database cache."
 msgstr ""
 "Альтернативный или соответствующий FSSTND, глобальный кэш базы данных "
@@ -3548,19 +3583,19 @@ msgid "Berkeley db"
 msgstr "Berkeley db"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "Binary tree"
 msgstr "двоичное дерево"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61 ../../man/man8/mandb.man8:64
+#: ../../man/man8/mandb.man8:63 ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "Yes"
 msgstr "Да"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "I<index.bt>"
 msgstr "I<index.bt>"
@@ -3568,18 +3603,17 @@ msgstr "I<index.bt>"
 #. type: tbl table
 #: ../../man/man8/mandb.man8:64
 #, no-wrap
-msgid "GNU gdbm v E<gt>= 1.6"
-msgstr "GNU gdbm v E<gt>= 1.6"
+msgid "GNU gdbm"
+msgstr "GNU gdbm"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:66 ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "Hashed"
 msgstr "Хэш"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
+#: ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "I<index.db>"
 msgstr "I<index.db>"
@@ -3587,29 +3621,23 @@ msgstr "I<index.db>"
 #. type: tbl table
 #: ../../man/man8/mandb.man8:67
 #, no-wrap
-msgid "GNU gdbm v E<lt>  1.6"
-msgstr "GNU gdbm v E<lt>  1.6"
+msgid "UNIX ndbm"
+msgstr "UNIX ndbm"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:67 ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "No"
 msgstr "Нет"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:70
-#, no-wrap
-msgid "UNIX ndbm"
-msgstr "UNIX ndbm"
-
-#. type: tbl table
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "I<index.(dir|pag)>"
 msgstr "I<index.(dir|pag)>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:83
+#: ../../man/man8/mandb.man8:80
 msgid ""
 "Those database types that support asynchronous updates provide enhanced "
 "speed at the cost of possible corruption in the event of unusual "
@@ -3623,12 +3651,12 @@ msgstr ""
 "%mandb%> с параметром B<-c>, чтобы пересоздать базы данных с нуля."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:90
+#: ../../man/man8/mandb.man8:87
 msgid "Produce no warnings."
 msgstr "Не выдавать предупреждения."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:94
+#: ../../man/man8/mandb.man8:91
 msgid ""
 "Do not spend time looking for or adding information to the databases "
 "regarding stray cats."
@@ -3637,7 +3665,7 @@ msgstr ""
 "cats."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:98
+#: ../../man/man8/mandb.man8:95
 msgid ""
 "Do not spend time checking for deleted manual pages and purging them from "
 "the databases."
@@ -3646,7 +3674,7 @@ msgstr ""
 "баз данных."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:110
+#: ../../man/man8/mandb.man8:107
 msgid ""
 "By default, B<%mandb%> will try to update any previously created databases.  "
 "If a database does not exist, it will create it.  This option forces B<%mandb"
@@ -3662,7 +3690,7 @@ msgstr ""
 "базы данных."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:114
+#: ../../man/man8/mandb.man8:111
 msgid ""
 "Create user databases only, even with write permissions necessary to create "
 "system databases."
@@ -3671,7 +3699,7 @@ msgstr ""
 "необходимые для создания системных баз данных."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:120
+#: ../../man/man8/mandb.man8:117
 msgid ""
 "Perform correctness checks on manual pages in the hierarchy search path.  "
 "With this option, B<%mandb%> will not alter existing databases."
@@ -3681,7 +3709,7 @@ msgstr ""
 "базы данных."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:134
+#: ../../man/man8/mandb.man8:131
 msgid ""
 "Update only the entries for the given filename.  This option is not for "
 "general use; it is used internally by B<%man%> when it has been compiled "
@@ -3694,45 +3722,45 @@ msgstr ""
 "страница устарела. Это подразумевает B<-p> и выключает B<-c> и B<-s>."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:141
+#: ../../man/man8/mandb.man8:138
 msgid "Show the usage message, then exit."
 msgstr "Показать это справочное сообщение и закончить работу."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man8/mandb.man8:144
 msgid "Show the version, then exit."
 msgstr "Показать версию и закончить работу."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:154
+#: ../../man/man8/mandb.man8:151
 msgid "Usage, syntax, or configuration file error."
 msgstr "Ошибка при использовании, в синтаксисе или файле настроек."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 msgid "A child process failed."
 msgstr "Работа процесса-потомка завершилась неудачно."
 
 #. type: SH
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 #, no-wrap
 msgid "DIAGNOSTICS"
 msgstr "ДИАГНОСТИКА"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 msgid "The following warning messages can be emitted during database building."
 msgstr ""
 "Во время создания базы данных могут появляться следующие предупреждения."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: whatis parse for page(sec) failed>"
 msgstr "B<E<lt>имя файлаE<gt>: ошибка анализа страниц(ы) программой whatis>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 msgid ""
 "An attempt to extract whatis line(s) from the given E<lt>filenameE<gt> "
 "failed.  This is usually due to a poorly written manual page, but if many "
@@ -3748,13 +3776,13 @@ msgstr ""
 "B<ЧТО АНАЛИЗИРУЕТСЯ> на странице B<lexgrog>(1)."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: is a dangling symlink>"
 msgstr "B<E<lt>имя файлаE<gt>: повисшая символическая ссылка>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 msgid ""
 "E<lt>filenameE<gt> does not exist but is referenced by a symbolic link.  "
 "Further diagnostics are usually emitted to identify the E<lt>filenameE<gt> "
@@ -3765,13 +3793,13 @@ msgstr ""
 "E<lt>файлE<gt> с неправильной ссылкой."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: bad symlink or ROFF `.so' request>"
 msgstr "B<E<lt>имя файлаE<gt>: неверная символическая ссылка или ROFF `.so' запрос>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 msgid ""
 "E<lt>filenameE<gt> is either a symbolic link to, or contains a ROFF include "
 "request to, a non existent file."
@@ -3780,13 +3808,13 @@ msgstr ""
 "include запрос на несуществующий файл."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: ignoring bogus filename>"
 msgstr "B<E<lt>имя файлаE<gt>: игнорируется фиктивное имя файла>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 msgid ""
 "The E<lt>filenameE<gt> may or may not be a valid manual page but its name is "
 "invalid.  This is usually due to a manual page with sectional extension "
@@ -3798,13 +3826,13 @@ msgstr ""
 "E<lt>yE<gt>."
 
 #. type: TP
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 #, no-wrap
 msgid "B<E<lt>filename_maskE<gt>: competing extensions>"
 msgstr "B<E<lt>маска имени файлаE<gt>: конкурирующие расширения>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:194
+#: ../../man/man8/mandb.man8:191
 msgid ""
 "The wildcard E<lt>filename_maskE<gt> is not unique.  This is usually caused "
 "by the existence of both a compressed and uncompressed version of the same "
@@ -3815,12 +3843,12 @@ msgstr ""
 "той же справочной страницы. Все страницы кроме самой новой игнорируются."
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:205
+#: ../../man/man8/mandb.man8:202
 msgid "Older locations for the database cache included:"
 msgstr "Места, где кэш базы данных находился ранее:"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 msgid ""
 "The B<WHATIS PARSING> section formerly in this manual page is now part of "
 "B<lexgrog>(1)."
diff --git a/man/po4a/po/sv.po b/man/po4a/po/sv.po
new file mode 100644 (file)
index 0000000..1189054
--- /dev/null
@@ -0,0 +1,3822 @@
+# Swedish messages for man-db-manpages.
+# Copyright © 2015 Free Software Foundation, Inc.
+# This file is distributed under the same license as the man-db package.
+# Sebastian Rasmussen <sebras@gmail.com>, 2015.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: man-db-manpages-2.7.0-pre1\n"
+"POT-Creation-Date: 2016-12-11 13:52+0000\n"
+"PO-Revision-Date: 2015-12-26 16:29+0100\n"
+"Last-Translator: Sebastian Rasmussen <sebras@gmail.com>\n"
+"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
+"Language: sv\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Poedit 1.8.6\n"
+
+#. type: TH
+#: ../../man/man1/apropos.man1:12
+#, no-wrap
+msgid "%thapropos%"
+msgstr "%thapropos%"
+
+#. type: TH
+#: ../../man/man1/apropos.man1:12 ../../man/man1/lexgrog.man1:9
+#: ../../man/man1/man.man1:15 ../../man/man1/manconv.man1:9
+#: ../../man/man1/manpath.man1:12 ../../man/man1/whatis.man1:12
+#: ../../man/man1/zsoelim.man1:12 ../../man/man5/manpath.man5:13
+#: ../../man/man8/accessdb.man8:12 ../../man/man8/catman.man8:12
+#: ../../man/man8/mandb.man8:13
+#, no-wrap
+msgid "%date%"
+msgstr "%date%"
+
+#. type: TH
+#: ../../man/man1/apropos.man1:12 ../../man/man1/lexgrog.man1:9
+#: ../../man/man1/man.man1:15 ../../man/man1/manconv.man1:9
+#: ../../man/man1/manpath.man1:12 ../../man/man1/whatis.man1:12
+#: ../../man/man1/zsoelim.man1:12 ../../man/man5/manpath.man5:13
+#: ../../man/man8/accessdb.man8:12 ../../man/man8/catman.man8:12
+#: ../../man/man8/mandb.man8:13
+#, no-wrap
+msgid "%version%"
+msgstr "%version%"
+
+#. type: TH
+#: ../../man/man1/apropos.man1:12 ../../man/man1/lexgrog.man1:9
+#: ../../man/man1/man.man1:15 ../../man/man1/manconv.man1:9
+#: ../../man/man1/manpath.man1:12 ../../man/man1/whatis.man1:12
+#: ../../man/man1/zsoelim.man1:12 ../../man/man8/accessdb.man8:12
+#: ../../man/man8/catman.man8:12 ../../man/man8/mandb.man8:13
+#, no-wrap
+msgid "Manual pager utils"
+msgstr "Verktyg för sidvisning av manual"
+
+#. type: SH
+#: ../../man/man1/apropos.man1:13 ../../man/man1/lexgrog.man1:10
+#: ../../man/man1/man.man1:16 ../../man/man1/manconv.man1:10
+#: ../../man/man1/manpath.man1:13 ../../man/man1/whatis.man1:13
+#: ../../man/man1/zsoelim.man1:13 ../../man/man5/manpath.man5:14
+#: ../../man/man8/accessdb.man8:13 ../../man/man8/catman.man8:13
+#: ../../man/man8/mandb.man8:14
+#, no-wrap
+msgid "NAME"
+msgstr "NAMN"
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:15
+msgid "%apropos% - search the manual page names and descriptions"
+msgstr "%apropos% - genomsök namn och beskrivningar av manualsidor"
+
+#. type: SH
+#: ../../man/man1/apropos.man1:15 ../../man/man1/lexgrog.man1:12
+#: ../../man/man1/man.man1:18 ../../man/man1/manconv.man1:12
+#: ../../man/man1/manpath.man1:15 ../../man/man1/whatis.man1:15
+#: ../../man/man1/zsoelim.man1:15 ../../man/man8/accessdb.man8:16
+#: ../../man/man8/catman.man8:15 ../../man/man8/mandb.man8:16
+#, no-wrap
+msgid "SYNOPSIS"
+msgstr "SYNOPSIS"
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:32
+msgid ""
+"B<%apropos%> [\\|B<-dalv?V>\\|] [\\|B<-e>\\||\\|B<-w>\\||\\|B<-r>\\|] [\\|B<-"
+"s> I<list>\\|] [\\|B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|] [\\|B<-M> I<path>"
+"\\|] [\\|B<-L> I<locale>\\|] [\\|B<-C> I<file>\\|] I<keyword> \\&.\\|.\\|."
+msgstr ""
+"B<%apropos%> [\\|B<-dalv?V>\\|] [\\|B<-e>\\||\\|B<-w>\\||\\|B<-r>\\|] [\\|B<-"
+"s> I<lista>\\|] [\\|B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|] [\\|B<-M> "
+"I<sökväg>\\|] [\\|B<-L> I<lokal>\\|] [\\|B<-C> I<fil>\\|] I<nyckelord> \\&."
+"\\|.\\|."
+
+#. type: SH
+#: ../../man/man1/apropos.man1:32 ../../man/man1/lexgrog.man1:20
+#: ../../man/man1/man.man1:150 ../../man/man1/manconv.man1:20
+#: ../../man/man1/manpath.man1:22 ../../man/man1/whatis.man1:32
+#: ../../man/man1/zsoelim.man1:20 ../../man/man5/manpath.man5:16
+#: ../../man/man8/accessdb.man8:20 ../../man/man8/catman.man8:24
+#: ../../man/man8/mandb.man8:29
+#, no-wrap
+msgid "DESCRIPTION"
+msgstr "BESKRIVNING"
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:37
+msgid ""
+"Each manual page has a short description available within it.  B<%apropos%> "
+"searches the descriptions for instances of I<keyword>."
+msgstr ""
+"Varje manualsida har en kort beskrivning.  B<%apropos%> söker genom "
+"beskrivningarna efter I<nyckelord>."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:50
+msgid ""
+"I<keyword> is usually a regular expression, as if (B<-r>)  was used, or may "
+"contain wildcards (B<-w>), or match the exact keyword (B<-e>).  Using these "
+"options, it may be necessary to quote the I<keyword> or escape (\\e) the "
+"special characters to stop the shell from interpreting them."
+msgstr ""
+"I<nyckelord> är vanligtvis ett reguljärt uttryck, som om (B<-r>) använts, "
+"eller kan innehålla jokertecken (B<-w>), eller matcha det exakta nyckelordet "
+"(B<-e>).  När dessa flaggor används kan det vara nödvändigt att sätta "
+"I<nyckelordet> inom citationstecken eller införa escape-tecken (\\e) för "
+"speciella tecken för att förhindra skalet från att tolka dem."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:53
+msgid ""
+"The standard matching rules allow matches to be made against the page name "
+"and word boundaries in the description."
+msgstr ""
+"Standardmatchningsreglerna tillåter matchningar att göras mot sidnamn och "
+"ordgränser i beskrivningen."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:61
+msgid ""
+"The database searched by B<%apropos%> is updated by the B<%mandb%> program.  "
+"Depending on your installation, this may be run by a periodic cron job, or "
+"may need to be run manually after new manual pages have been installed."
+msgstr ""
+"Databasen som genomsöks av B<%apropos%> uppdateras av programmet B<%mandb"
+"%>.  Beroende på din installation kan detta köras som ett periodiskt cron-"
+"jobb eller måste köras manuellt efter att nya manualsidor har installerats."
+
+#. type: SH
+#: ../../man/man1/apropos.man1:61 ../../man/man1/lexgrog.man1:45
+#: ../../man/man1/man.man1:558 ../../man/man1/manconv.man1:50
+#: ../../man/man1/manpath.man1:37 ../../man/man1/whatis.man1:71
+#: ../../man/man1/zsoelim.man1:55 ../../man/man8/accessdb.man8:29
+#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:80
+#, no-wrap
+msgid "OPTIONS"
+msgstr "FLAGGOR"
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:65 ../../man/man1/lexgrog.man1:49
+#: ../../man/man1/man.man1:572 ../../man/man1/manconv.man1:66
+#: ../../man/man1/manpath.man1:44 ../../man/man1/whatis.man1:75
+#: ../../man/man8/accessdb.man8:33 ../../man/man8/catman.man8:59
+#: ../../man/man8/mandb.man8:84
+msgid "Print debugging information."
+msgstr "Skriver ut felsökningsinformation."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:68 ../../man/man1/whatis.man1:78
+msgid "Print verbose warning messages."
+msgstr "Skriver ut utförliga varningsmeddelanden."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:76
+msgid ""
+"Interpret each keyword as a regular expression.  This is the default "
+"behaviour.  Each keyword will be matched against the page names and the "
+"descriptions independently.  It can match any part of either.  The match is "
+"not limited to word boundaries."
+msgstr ""
+"Tolka varje nyckelord som ett reguljärt uttryck.  Detta är "
+"standardbeteendet.  Varje nyckelord kommer att oberoende matchas mot "
+"sidnamnen och beskrivningarna.  Det kan matcha vilken del som helst av "
+"vilken som.  Matchningen är inte begränsad till ordgränser."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:88
+msgid ""
+"Interpret each keyword as a pattern containing shell style wildcards.  Each "
+"keyword will be matched against the page names and the descriptions "
+"independently.  If B<--exact> is also used, a match will only be found if an "
+"expanded keyword matches an entire description or page name.  Otherwise the "
+"keyword is also allowed to match on word boundaries in the description."
+msgstr ""
+"Tolka varje nyckelord som ett mönster som innehåller skalliknande "
+"jokertecken.  Varje nyckelord kommer att oberoende matchas mot sidnamnen och "
+"beskrivningarna.  Om B<--exact> också används, kommer en matchning bara att "
+"hittas om ett expanderas nyckelord matchar en hel beskrivning eller helt "
+"sidnamn.  Annars tillåts nyckelordet också att matcha på ordgränser i "
+"beskrivningen."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:92
+msgid ""
+"Each keyword will be exactly matched against the page names and the "
+"descriptions."
+msgstr "Varje nyckelord kommer att matchas mot sidnamnen och beskrivningarna."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:96
+msgid ""
+"Only display items that match all the supplied keywords.  The default is to "
+"display items that match any keyword."
+msgstr ""
+"Visa bara objekt som matchar alla angivna nyckelord.  Standard är att visa "
+"objekt som matchar vilket nyckelord som helst."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:103 ../../man/man1/whatis.man1:107
+msgid ""
+"Do not trim output to the terminal width.  Normally, output will be "
+"truncated to the terminal width to avoid ugly results from poorly-written "
+"B<NAME> sections."
+msgstr ""
+"Justera inte utmatningen till terminalbredden.  Normalt kommer utmatningar "
+"att trunkeras med avseende på terminalbredden för att undvika fula resultat "
+"från dåligt skrivna B<NAMN>-avsnitt."
+
+#. type: TP
+#: ../../man/man1/apropos.man1:103 ../../man/man1/whatis.man1:107
+#, no-wrap
+msgid "B<-s> I<list>, B<--sections> I<list>, B<--section> I<list>"
+msgstr "B<-s> I<list>, B<--sections> I<lista>, B<--section> I<lista>"
+
+#
+#.  Due to the rather silly limit of 6 args per request in some `native'
+#.  *roff compilers, we have do the following to get the two-line
+#.  hanging tag on one line. .PP to begin a new paragraph, then the
+#.  tag, then .RS (start relative indent), the text, finally .RE
+#.  (end relative indent).
+#. type: Plain text
+#: ../../man/man1/apropos.man1:123 ../../man/man1/whatis.man1:127
+msgid ""
+"Search only the given manual sections.  I<list> is a colon- or comma-"
+"separated list of sections.  If an entry in I<list> is a simple section, for "
+"example \"3\", then the displayed list of descriptions will include pages in "
+"sections \"3\", \"3perl\", \"3x\", and so on; while if an entry in I<list> "
+"has an extension, for example \"3perl\", then the list will only include "
+"pages in that exact part of the manual section."
+msgstr ""
+"Genomsök bara de angivna manualavsnitten.  I<lista> är en kolon- eller "
+"kommaseparerad lista av sektioner.  Om en post i I<lista> är ett enstaka "
+"avsnitt, till exempel ”3” så kommer den visade listan över beskrivningar att "
+"inkludera sidor i avsnitt ”3”, ”3perl”, ”3x”, och så vidare; men om en post "
+"i I<lista> har en ändelse, til exempel ”3perl”, så kommer listan bara att "
+"inkludera sidor i den exakta delen av manualavsnittet."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:701
+#: ../../man/man1/manpath.man1:66 ../../man/man1/whatis.man1:133
+msgid ""
+"B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|, B<--systems=>I<system>\\|[\\|,.\\|."
+"\\|.\\|]"
+msgstr ""
+"B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|, B<--systems=>I<system>\\|[\\|,.\\|."
+"\\|.\\|]"
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:135
+msgid ""
+"If this system has access to other operating system's manual page "
+"descriptions, they can be searched using this option.  To search NewOS's "
+"manual page descriptions, use the option B<-m> B<NewOS>."
+msgstr ""
+"Om detta system har tillgång till andra operativsystems beskrivningar av "
+"manualsidor kan de genomsökas via denna flagga.  För att genomsöka "
+"beskrivningarna för manualsidorna för NyttOS, använd flaggan B<-m> B<NyttOS>."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:147
+msgid ""
+"The I<system> specified can be a combination of comma-delimited operating "
+"system names.  To include a search of the native operating system's "
+"B<whatis> descriptions, include the system name B<man> in the argument "
+"string.  This option will override the $B<SYSTEM> environment variable."
+msgstr ""
+"Det I<system> som anges kan vara en kombination av kommaavgränsade "
+"operativsystemsnamn.  För att inkludera en genomsökning av det underliggande "
+"operativsystemets B<whatis>-beskrivningar, inkludera systemnamnet B<man> i "
+"argumentsträngen.  Denna flagga kommer att åsidosätta miljövariabeln "
+"$B<SYSTEM>."
+
+#. type: TP
+#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:720
+#: ../../man/man1/whatis.man1:152 ../../man/man8/catman.man8:59
+#, no-wrap
+msgid "B<-M\\ >I<path>,\\ B<--manpath=>I<path>"
+msgstr "B<-M\\ >I<sökväg>,\\ B<--manpath=>I<sökväg>"
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:162 ../../man/man1/whatis.man1:166
+msgid ""
+"Specify an alternate set of colon-delimited manual page hierarchies to "
+"search.  By default, B<%program%> uses the $B<MANPATH> environment variable, "
+"unless it is empty or unset, in which case it will determine an appropriate "
+"manpath based on your $B<PATH> environment variable.  This option overrides "
+"the contents of $B<MANPATH>."
+msgstr ""
+"Ange en alternativ mängd av kolonavgränsade hierarkier av manualsidor att "
+"genomsöka.  Som standard använder B<%program%> miljövariabeln $B<MANPATH>, "
+"om den inte är tom eller ej satt, i vilket fall en lämplig manualsökväg "
+"bestäms baserad på din $B<PATH>-miljövariabel.  Denna flagga åsidosätter "
+"innehållet i $B<MANPATH>."
+
+#. type: TP
+#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:671
+#: ../../man/man1/whatis.man1:166
+#, no-wrap
+msgid "B<-L\\ >I<locale>,\\ B<--locale=>I<locale>"
+msgstr "B<-L\\ >I<lokal>,\\ B<--locale=>I<lokal>"
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:695
+#: ../../man/man1/whatis.man1:183
+msgid ""
+"B<%program%> will normally determine your current locale by a call to the C "
+"function B<setlocale>(3)  which interrogates various environment variables, "
+"possibly including $B<LC_MESSAGES> and $B<LANG>.  To temporarily override "
+"the determined value, use this option to supply a I<locale> string directly "
+"to B<%program%>.  Note that it will not take effect until the search for "
+"pages actually begins.  Output such as the help message will always be "
+"displayed in the initially determined locale."
+msgstr ""
+"B<%program%> kommer normalt att avgöra din aktuella lokal genom att anrop "
+"till C-funktionen B<setlocale>(3)  som kontrollerar diverse miljövariabler, "
+"som eventuellt $B<LC_MESSAGES> och $B<LANG>.  För att tillfälligt åsidosätta "
+"det framtagna värdet, använd denna flagga för att ange en I<lokal>-sträng "
+"direkt till B<%program%>.  Notera att det inte får någon effekt förrän "
+"sökningen efter sidor faktiskt påbörjas.  Utmatning så som hjälpmeddelande "
+"kommer alltid att visas enligt den först bestämda lokalen."
+
+#. type: TP
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:565
+#: ../../man/man1/manpath.man1:85 ../../man/man1/whatis.man1:183
+#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:131
+#, no-wrap
+msgid "B<-C\\ >I<file>,\\ B<--config-file=>I<file>"
+msgstr "B<-C\\ >I<fil>,\\ B<--config-file=>I<fil>"
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:569
+#: ../../man/man1/manpath.man1:89 ../../man/man1/whatis.man1:187
+#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:135
+msgid ""
+"Use this user configuration file rather than the default of I<~/.manpath>."
+msgstr ""
+"Använd denna användarkonfigurationsfil snarare än standard I<~/.manpath>."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:186 ../../man/man1/lexgrog.man1:89
+#: ../../man/man1/man.man1:1174 ../../man/man1/manconv.man1:69
+#: ../../man/man1/manpath.man1:92 ../../man/man1/whatis.man1:190
+#: ../../man/man1/zsoelim.man1:67 ../../man/man8/accessdb.man8:36
+#: ../../man/man8/catman.man8:71
+msgid "Print a help message and exit."
+msgstr "Skriv ut ett hjälpmeddelande och avsluta."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:189 ../../man/man1/lexgrog.man1:92
+#: ../../man/man1/man.man1:1177 ../../man/man1/manpath.man1:95
+#: ../../man/man1/whatis.man1:193 ../../man/man8/accessdb.man8:39
+#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:141
+msgid "Print a short usage message and exit."
+msgstr "Skriv ut ett kort användningsmeddelande och avsluta."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
+#: ../../man/man1/man.man1:1180 ../../man/man1/manconv.man1:72
+#: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:196
+#: ../../man/man1/zsoelim.man1:70 ../../man/man8/accessdb.man8:42
+#: ../../man/man8/catman.man8:77
+msgid "Display version information."
+msgstr "Visa versionsinformation."
+
+#. type: SH
+#: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
+#: ../../man/man1/man.man1:1180 ../../man/man1/whatis.man1:196
+#: ../../man/man8/mandb.man8:144
+#, no-wrap
+msgid "EXIT STATUS"
+msgstr "SLUTSTATUS"
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:196 ../../man/man1/lexgrog.man1:99
+#: ../../man/man1/man.man1:1184 ../../man/man1/whatis.man1:200
+#: ../../man/man8/mandb.man8:148
+msgid "Successful program execution."
+msgstr "Framgångsrik programexekvering."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1187
+#: ../../man/man1/whatis.man1:203
+msgid "Usage, syntax or configuration file error."
+msgstr "Användnings-, syntax- eller konfigurationsfilsfel."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1190
+#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:154
+msgid "Operational error."
+msgstr "Funktionsfel."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:205 ../../man/man1/whatis.man1:209
+msgid "Nothing was found that matched the criteria specified."
+msgstr "Inget hittades som matchade det kriterium som angivits."
+
+#. type: SH
+#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1196
+#: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:209
+#: ../../man/man8/catman.man8:77
+#, no-wrap
+msgid "ENVIRONMENT"
+msgstr "MILJÖ"
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1293
+#: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:218
+msgid ""
+"If $B<SYSTEM> is set, it will have the same effect as if it had been "
+"specified as the argument to the B<-m> option."
+msgstr ""
+"Om $B<SYSTEM> är satt kommer den att ha samma effekt som om den hade angetts "
+"som argument till flaggan B<-m>."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:220 ../../man/man1/whatis.man1:224
+#: ../../man/man8/catman.man8:94
+msgid ""
+"If $B<MANPATH> is set, its value is interpreted as the colon-delimited "
+"manual page hierarchy search path to use."
+msgstr ""
+"Om $B<MANPATH> är satt kommer dess värde att tolkas som den kolonavgränsade "
+"sökvägen för hierarkier av manualsidor som ska användas."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:232 ../../man/man1/whatis.man1:236
+msgid ""
+"If $B<MANWIDTH> is set, its value is used as the terminal width (see the B<--"
+"long> option).  If it is not set, the terminal width will be calculated "
+"using the value of $B<COLUMNS>, an B<ioctl>(2)  if available, or falling "
+"back to 80 characters if all else fails."
+msgstr ""
+"Om $B<MANWIDTH> är satt kommer dess värde att användas som terminalbredden "
+"(se flaggan B<--long>).  Om den inte är satt kommer terminalbredden att "
+"räknas ut från värdet i $B<COLUMNS>, en B<ioctl>(2) om den finns "
+"tillgänglig, eller falla tillbaka på 80 tecken om allt annat misslyckas."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:241
+msgid ""
+"If $B<POSIXLY_CORRECT> is set, even to a null value, the default B<%apropos"
+"%> search will be as an extended regex (B<-r>).  Nowadays, this is the "
+"default behaviour anyway."
+msgstr ""
+"Om $B<POSIXLY_CORRECT> är satt, även till ett null-värde, kommer "
+"standardsökningen för B<%apropos%> att göras som ett utökat regujärt uttryck "
+"(B<-r>).  Numera är detta standardbeteendet."
+
+#. type: SH
+#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1358
+#: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:236
+#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:191
+#, no-wrap
+msgid "FILES"
+msgstr "FILER"
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1370
+#: ../../man/man1/whatis.man1:242 ../../man/man8/catman.man8:103
+#: ../../man/man8/mandb.man8:207
+msgid "A traditional global I<index> database cache."
+msgstr "En traditionell global I<index>-databascache."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1376
+#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:200
+msgid "An FHS compliant global I<index> database cache."
+msgstr "En FHS-kompatibel global I<index>-databascache."
+
+#. type: Plain text
+#: ../../man/man1/apropos.man1:258 ../../man/man1/whatis.man1:253
+msgid "A traditional B<whatis> text database."
+msgstr "En traditionell B<whatis>-textdatabas."
+
+#. type: SH
+#: ../../man/man1/apropos.man1:258 ../../man/man1/lexgrog.man1:197
+#: ../../man/man1/man.man1:1376 ../../man/man1/manconv.man1:72
+#: ../../man/man1/manpath.man1:128 ../../man/man1/whatis.man1:253
+#: ../../man/man1/zsoelim.man1:70 ../../man/man8/catman.man8:109
+#: ../../man/man8/mandb.man8:213
+#, no-wrap
+msgid "SEE ALSO"
+msgstr "SE VIDARE"
+
+#. type: SH
+#: ../../man/man1/apropos.man1:262 ../../man/man1/lexgrog.man1:207
+#: ../../man/man1/manconv.man1:75 ../../man/man1/manpath.man1:132
+#: ../../man/man1/whatis.man1:257 ../../man/man1/zsoelim.man1:75
+#: ../../man/man8/accessdb.man8:42 ../../man/man8/catman.man8:113
+#: ../../man/man8/mandb.man8:223
+#, no-wrap
+msgid "AUTHOR"
+msgstr "UPPHOVSMAN"
+
+#. type: TH
+#: ../../man/man1/lexgrog.man1:9
+#, no-wrap
+msgid "LEXGROG"
+msgstr "LEXGROG"
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:12
+msgid "lexgrog - parse header information in man pages"
+msgstr "lexgrog - tolka rubrikhuvud i manualsidor"
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:20
+msgid ""
+"B<lexgrog> [\\|B<-m>\\||\\|B<-c>\\|] [\\|B<-dfw?V>\\|] [\\|B<-E> I<encoding>"
+"\\|] I<file> \\&.\\|.\\|."
+msgstr ""
+"B<lexgrog> [\\|B<-m>\\||\\|B<-c>\\|] [\\|B<-dfw?V>\\|] [\\|B<-E> I<kodning>"
+"\\|] I<fil> \\&.\\|.\\|."
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:36
+msgid ""
+"B<lexgrog> is an implementation of the traditional \\(lqgroff guess\\(rq "
+"utility in B<lex>.  It reads the list of files on its command line as either "
+"man page source files or preformatted \\(lqcat\\(rq pages, and displays "
+"their name and description as used by B<apropos> and B<whatis>, the list of "
+"preprocessing filters required by the man page before it is passed to "
+"B<nroff> or B<troff>, or both."
+msgstr ""
+"B<lexgrog> är en implementation av det traditionella verktyget \\(lqgroff "
+"guess\\(rq i B<lex>. Det läser listan av filer på dess kommandorad antingen "
+"som källkodsfiler till manualsidor eller förformaterade \\(lqcat\\(rq sidor, "
+"och visar deras namn och beskrivning så som de används av B<apropos> och "
+"B<whatis>, som en lista av preprocessorfilter som krävs av manualsidan innan "
+"den skickas vidare till B<nroff> eller B<troff>, eller båda delar."
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:45
+msgid ""
+"If its input is badly formatted, B<lexgrog> will print \\(lqparse failed"
+"\\(rq; this may be useful for external programs that need to check man pages "
+"for correctness.  If one of B<lexgrog>'s input files is \\(lq-\\(rq, it will "
+"read from standard input; if any input file is compressed, a decompressed "
+"version will be read automatically."
+msgstr ""
+"Om inmatningen är dåligt formaterad kommer B<lexgrog> att skriva ut "
+"\\(lqtolkning misslyckades\\(rq; detta kan vara användbart för externa "
+"program som behöver kontrollera manualsidors korrekthet.  Om en av "
+"B<lexgrog>:s inmatningsfiler är \\(lq-\\(rq så kommer det att läsa från "
+"standard in; om någon inmatningsfil är komprimerad kommer en dekomprimerad "
+"version automatiskt att läsas in."
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:57
+msgid ""
+"Parse input as man page source files.  This is the default if neither B<--"
+"man> nor B<--cat> is given."
+msgstr ""
+"Tolka inmatning som källkodsfiler till manualsidor.  Detta är standard om "
+"varken B<--man> eller B<--cat> anges."
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:64
+msgid ""
+"Parse input as preformatted man pages (\\(lqcat pages\\(rq).  B<--man> and "
+"B<--cat> may not be given simultaneously."
+msgstr ""
+"Tolka inmatning som förformaterade manualsidor (\\(lqcat-sidor\\(rq).  B<--"
+"man> och B<--cat> får inte anges samtidigt."
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:75
+msgid ""
+"Display the name and description from the man page's header, as used by "
+"B<apropos> and B<whatis>.  This is the default if neither B<--whatis> nor "
+"B<--filters> is given."
+msgstr ""
+"Visa namnet och beskrivningen från manualsidans rubrikhuvud så som de "
+"används av B<apropos> och B<whatis>.  Detta är standard om varken B<--"
+"whatis> eller B<--filters> anges."
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:82
+msgid ""
+"Display the list of filters needed to preprocess the man page before "
+"formatting with B<nroff> or B<troff>."
+msgstr ""
+"Visa listan över filter som behövs för att förformatera manualsidan innan "
+"den formateras med B<nroff> eller B<troff>."
+
+#. type: TP
+#: ../../man/man1/lexgrog.man1:82
+#, no-wrap
+msgid "B<-E> I<encoding>, B<--encoding> I<encoding>"
+msgstr "B<-E> I<kodning>, B<--encoding> I<kodning>"
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:86
+msgid "Override the guessed character set for the page to I<encoding>."
+msgstr ""
+"Åsidosätt den gissade teckenuppsättningen för sidan och använd I<kodning>."
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:102
+msgid "Usage error."
+msgstr "Användningsfel."
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:106
+msgid "B<lexgrog> failed to parse one or more of its input files."
+msgstr ""
+"B<lexgrog> misslyckades med att tolka en eller flera av dess inmatningsfiler."
+
+#. type: SH
+#: ../../man/man1/lexgrog.man1:106 ../../man/man1/man.man1:280
+#, no-wrap
+msgid "EXAMPLES"
+msgstr "EXEMPEL"
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:116
+#, no-wrap
+msgid ""
+"  $ lexgrog man.1\n"
+"  man.1: \"man - an interface to the on-line reference manuals\"\n"
+"  $ lexgrog -fw man.1\n"
+"  man.1 (t): \"man - an interface to the on-line reference manuals\"\n"
+"  $ lexgrog -c whatis.cat1 \n"
+"  whatis.cat1: \"whatis - display manual page descriptions\"\n"
+"  $ lexgrog broken.1\n"
+"  broken.1: parse failed\n"
+msgstr ""
+"  $ lexgrog man.1\n"
+"  man.1: \"man - ett gränssnitt för direktreferensmanualer\"\n"
+"  $ lexgrog -fw man.1\n"
+"  man.1 (t): \"man - ett gränssnitt för direktreferensmanualer\"\n"
+"  $ lexgrog -c whatis.cat1 \n"
+"  whatis.cat1: \"whatis - visa beskrivningar för manualsidor\"\n"
+"  $ lexgrog broken.1\n"
+"  broken.1: tolkning misslyckades\n"
+
+#. type: SH
+#: ../../man/man1/lexgrog.man1:117
+#, no-wrap
+msgid "WHATIS PARSING"
+msgstr "WHATIS-TOLKNING"
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:128
+msgid ""
+"B<%mandb%> (which uses the same code as B<lexgrog>)  parses the B<NAME> "
+"section at the top of each manual page looking for names and descriptions of "
+"the features documented in each.  While the parser is quite tolerant, as it "
+"has to cope with a number of different forms that have historically been "
+"used, it may sometimes fail to extract the required information."
+msgstr ""
+"B<%mandb%> (som använder samma kod som B<lexgrog>)  tolkar B<NAMN>-avsnittet "
+"längst upp på varje manualsida och letar efter namn och beskrivningar för de "
+"funktioner som dokumenteras i varje sida.  Även om tolken är tämligen "
+"tolerant, då den varit tvungen att klara av ett antal olika format som "
+"använts historiskt, kan den ibland misslyckas med att extrahera den begärda "
+"informationen."
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:134
+msgid ""
+"When using the traditional I<man> macro set, a correct B<NAME> section looks "
+"something like this:"
+msgstr ""
+"När den traditionella makrouppsättningen I<man> används ser ett B<NAMN>-"
+"avsnitt ut ungefär så här:"
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:140
+#, no-wrap
+msgid ""
+"CW<\\&.SH NAME\n"
+"foo \\e- program to do something>\n"
+msgstr ""
+"CW<\\&.SH NAMN\n"
+"foo \\e- program som gör någonting>\n"
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:148
+msgid ""
+"Some manual pagers require the \\(oq\\e-\\(cq to be exactly as shown; B<"
+"%mandb%> is more tolerant, but for compatibility with other systems it is "
+"nevertheless a good idea to retain the backslash."
+msgstr ""
+"Vissa manualsidor kräver att \\(oq\\e-\\(cq anges exakt som visats; B<%mandb"
+"%> är mer tolerant, men för kompatibilitet med andra system är det trots "
+"detta en bra idé att behålla bakstrecket."
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:158
+msgid ""
+"On the left-hand side, there may be several names, separated by commas.  "
+"Names containing whitespace will be ignored to avoid pathological behaviour "
+"on certain ill-formed B<NAME> sections.  The text on the right-hand side is "
+"free-form, and may be spread over multiple lines.  If several features with "
+"different descriptions are being documented in the same manual page, the "
+"following form is therefore used:"
+msgstr ""
+"På vänstersidan kan det finnas flera namn, separerade av komman.  Namn som "
+"innehåller blanksteg kommer att ignoreras för att undvika felaktigt beteende "
+"för vissa dåligt namngivna B<NAMN>-avsnitt.  Texten på höger sida är "
+"friformstext och får sträcka sig över flera rader.  Om flera funktioner med "
+"olika beskrivningar dokumenteras på samma manualsida ska därför följande "
+"form användas:"
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:166
+#, no-wrap
+msgid ""
+"CW<\\&.SH NAME\n"
+"foo, bar \\e- programs to do something\n"
+"\\&.br\n"
+"baz \\e- program to do nothing>\n"
+msgstr ""
+"CW<\\&.SH NAMN\n"
+"foo, bar \\e- program som gör någonting\n"
+"\\&.br\n"
+"baz \\e- program som inte gör någonting>\n"
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:172
+msgid ""
+"(A macro which starts a new paragraph, like CW<.PP>, may be used instead of "
+"the break macro CW<.br>.)"
+msgstr ""
+"(Ett makro som påbörjar ett nytt stycke, så som CW<.PP>, kan användas "
+"istället för avbrytningsmakrot CW<.br>.)"
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:178
+msgid ""
+"When using the BSD-derived I<mdoc> macro set, a correct B<NAME> section "
+"looks something like this:"
+msgstr ""
+"När den BSD-baserade makrouppsättningen I<mdoc> används ser ett B<NAMN>-"
+"avsnitt ut ungefär så här:"
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:185
+#, no-wrap
+msgid ""
+"CW<\\&.Sh NAME\n"
+"\\&.Nm foo\n"
+"\\&.Nd program to do something>\n"
+msgstr ""
+"CW<\\&.Sh NAMN\n"
+"\\&.Nm foo\n"
+"\\&.Nd program som för någonting>\n"
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:197
+msgid ""
+"There are several common reasons why whatis parsing fails.  Sometimes "
+"authors of manual pages replace \\(oq.SH NAME\\(cq with \\(oq.SH MYPROGRAM"
+"\\(cq, and then B<%mandb%> cannot find the section from which to extract the "
+"information it needs.  Sometimes authors include a NAME section, but place "
+"free-form text there rather than \\(oqname \\e- description\\(cq.  However, "
+"any syntax resembling the above should be accepted."
+msgstr ""
+"Det finns flera anledningar till varför whatis-tolkning misslyckas.  Ibland "
+"ersätter upphovsmännen till manualsidorna \\(oq.SH NAMN\\(cq med \\(oq.SH "
+"MITTPROGRAM\\(cq och så kan inte B<%mandb%> hitta avsnittet från vilket "
+"informationen det behöver ska extraheras.  Ibland inkluderar upphovsmännen "
+"NAMN-avsnittet, men placerar friformstext där snarare än \\(oqnamn \\e- "
+"beskrivning\\(cq.  Syntax som är lik ovanstående bör dock accepteras."
+
+#. type: SH
+#: ../../man/man1/lexgrog.man1:202
+#, no-wrap
+msgid "NOTES"
+msgstr "NOTERINGAR"
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:207
+msgid ""
+"B<lexgrog> attempts to parse files containing .so requests, but will only be "
+"able to do so correctly if the files are properly installed in a manual page "
+"hierarchy."
+msgstr ""
+"B<lexgrog> försöker att tolka filer som innehåller .so-begäran men kommer "
+"endast att lyckas göra det korrekt om filerna är korrekt installerade i "
+"hierarkin av manualsidor."
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:211
+msgid "The code used by B<lexgrog> to scan man pages was written by:"
+msgstr ""
+"Koden som används av B<lexgrog> för att genomsöka manualsidor skrevs av:"
+
+#. type: Plain text
+#: ../../man/man1/lexgrog.man1:219
+msgid ""
+"Colin Watson wrote the current incarnation of the command-line front-end, as "
+"well as this man page."
+msgstr ""
+"Colin Watson skrev den innevarande inkarnationen av kommandorads "
+"gränssnittet, såväl som denna manualsida."
+
+#. type: TH
+#: ../../man/man1/man.man1:15
+#, no-wrap
+msgid "%thman%"
+msgstr "%thman%"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:18
+msgid "%man% - an interface to the on-line reference manuals"
+msgstr "%man% - ett gränssnitt för direktreferensmanualer"
+
+#.  The general command line
+#.  The apropos command line
+#. type: Plain text
+#: ../../man/man1/man.man1:67
+#, fuzzy
+#| msgid ""
+#| "B<%man%> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--"
+#| "warnings>\\|[\\|=I<warnings>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-L> "
+#| "I<locale>\\|] [\\|B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|] [\\|B<-M> "
+#| "I<path>\\|] [\\|B<-S> I<list>\\|] [\\|B<-e> I<extension>\\|] [\\|B<-i>\\||"
+#| "\\|B<-I>\\|] [\\|B<--regex>\\||\\|B<--wildcard>\\|] [\\|B<--names-only>"
+#| "\\|] [\\|B<-a>\\|] [\\|B<-u>\\|] [\\|B<--no-subpages>\\|] [\\|B<-P> "
+#| "I<pager>\\|] [\\|B<-r> I<prompt>\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>"
+#| "\\|] [\\|B<--no-hyphenation>\\|] [\\|B<--no-justification>\\|] [\\|B<-p> "
+#| "I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|[\\|I<device>\\|]\\|] [\\|B<-H>\\|"
+#| "[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|"
+#| "[\\|I<section>\\|] I<page>\\ .\\|.\\|.\\|]\\ .\\|.\\|.\\&"
+msgid ""
+"B<%man%> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--warnings>"
+"\\|[\\|=I<warnings>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-L> I<locale>"
+"\\|] [\\|B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|] [\\|B<-M> I<path>\\|] [\\|"
+"B<-S> I<list>\\|] [\\|B<-e> I<extension>\\|] [\\|B<-i>\\||\\|B<-I>\\|] [\\|"
+"B<--regex>\\||\\|B<--wildcard>\\|] [\\|B<--names-only>\\|] [\\|B<-a>\\|] [\\|"
+"B<-u>\\|] [\\|B<--no-subpages>\\|] [\\|B<-P> I<pager>\\|] [\\|B<-r> I<prompt>"
+"\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>\\|] [\\|B<--no-hyphenation>\\|] [\\|"
+"B<--no-justification>\\|] [\\|B<-p> I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|"
+"[\\|I<device>\\|]\\|] [\\|B<-H>\\|[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|"
+"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>[.\\|I<section>"
+"\\|]\\ \\|.\\|.\\|.\\|]\\ .\\|.\\|.\\&"
+msgstr ""
+"B<%man%> [\\|B<-C> I<fil>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--warnings>"
+"\\|[\\|=I<varningar>\\|]\\|] [\\|B<-R> I<kodning>\\|] [\\|B<-L> I<lokal>\\|] "
+"[\\|B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|] [\\|B<-M> I<sökväg>\\|] [\\|B<-"
+"S> I<lista>\\|] [\\|B<-e> I<ändelse>\\|] [\\|B<-i>\\||\\|B<-I>\\|] [\\|B<--"
+"regex>\\||\\|B<--wildcard>\\|] [\\|B<--names-only>\\|] [\\|B<-a>\\|] [\\|B<-"
+"u>\\|] [\\|B<--no-subpages>\\|] [\\|B<-P> I<sidvisare>\\|] [\\|B<-r> "
+"I<prompt>\\|] [\\|B<-7>\\|] [\\|B<-E> I<kodning>\\|] [\\|B<--no-hyphenation>"
+"\\|] [\\|B<--no-justification>\\|] [\\|B<-p> I<sträng>\\|] [\\|B<-t>\\|] [\\|"
+"B<-T>\\|[\\|I<enhet>\\|]\\|] [\\|B<-H>\\|[\\|I<webbläsare>\\|]\\|] [\\|B<-X>"
+"\\|[\\|I<ppt>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<avsnitt>\\|] I<sida>\\ .\\|."
+"\\|.\\|]\\ .\\|.\\|.\\&"
+
+#.  The --global-apropos command line
+#. type: Plain text
+#: ../../man/man1/man.man1:75
+msgid "B<%man%> B<-k> [\\|I<apropos> I<options>\\|] I<regexp> \\&.\\|.\\|.\\&"
+msgstr "B<%man%> B<-k> [\\|I<apropos> I<flaggor>\\|] I<regutr> \\&.\\|.\\|.\\&"
+
+#.  The whatis command line
+#. type: Plain text
+#: ../../man/man1/man.man1:86
+msgid ""
+"B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>\\||"
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
+msgstr ""
+"B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<lista>\\|] [\\|B<-i>\\||"
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<avsnitt>\\|] I<term>\\ .\\|.\\|.\\&"
+
+#.  The --local command line
+#. type: Plain text
+#: ../../man/man1/man.man1:94
+msgid "B<%man%> B<-f> [\\|I<whatis> I<options>\\|] I<page> \\&.\\|.\\|.\\&"
+msgstr "B<%man%> B<-f> [\\|I<whatis> I<flaggor>\\|] I<sida> \\&.\\|.\\|.\\&"
+
+#.  The --where/--where-cat command line
+#. type: Plain text
+#: ../../man/man1/man.man1:127
+msgid ""
+"B<%man%> B<-l> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--"
+"warnings>\\|[\\|=I<warnings>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-L> "
+"I<locale>\\|] [\\|B<-P> I<pager>\\|] [\\|B<-r> I<prompt>\\|] [\\|B<-7>\\|] "
+"[\\|B<-E> I<encoding>\\|] [\\|B<-p> I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|"
+"[\\|I<device>\\|]\\|] [\\|B<-H>\\|[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|"
+"I<dpi>\\|]\\|] [\\|B<-Z>\\|] I<file> \\&.\\|.\\|.\\&"
+msgstr ""
+"B<%man%> B<-l> [\\|B<-C> I<fil>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--"
+"warnings>\\|[\\|=I<varningar>\\|]\\|] [\\|B<-R> I<kodning>\\|] [\\|B<-L> "
+"I<lokal>\\|] [\\|B<-P> I<sidvisare>\\|] [\\|B<-r> I<prompt>\\|] [\\|B<-7>"
+"\\|] [\\|B<-E> I<kodning>\\|] [\\|B<-p> I<sträng>\\|] [\\|B<-t>\\|] [\\|B<-T>"
+"\\|[\\|I<enhet>\\|]\\|] [\\|B<-H>\\|[\\|I<webbläsare>\\|]\\|] [\\|B<-X>\\|"
+"[\\|I<ppt>\\|]\\|] [\\|B<-Z>\\|] I<fil> \\&.\\|.\\|.\\&"
+
+#.  The --catman command line
+#. type: Plain text
+#: ../../man/man1/man.man1:137
+msgid ""
+"B<%man%> B<-w>\\||\\|B<-W> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] "
+"I<page> \\&.\\|.\\|.\\&"
+msgstr ""
+"B<%man%> B<-w>\\||\\|B<-W> [\\|B<-C> I<fil>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] "
+"I<sida> \\&.\\|.\\|.\\&"
+
+#.  --help and --version
+#. type: Plain text
+#: ../../man/man1/man.man1:147
+msgid ""
+"B<%man%> B<-c> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] I<page> \\&."
+"\\|.\\|.\\&"
+msgstr ""
+"B<%man%> B<-c> [\\|B<-C> I<sida>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] I<sida> \\&."
+"\\|.\\|.\\&"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:150
+msgid "B<%man%> [\\|B<-?V>\\|]"
+msgstr "B<%man%> [\\|B<-?V>\\|]"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:181
+msgid ""
+"B<%man%> is the system's manual pager.  Each I<page> argument given to B<%man"
+"%> is normally the name of a program, utility or function.  The I<manual "
+"page> associated with each of these arguments is then found and displayed.  "
+"A I<section>, if provided, will direct B<%man%> to look only in that "
+"I<section> of the manual.  The default action is to search in all of the "
+"available I<sections> following a pre-defined order (\"%sections%\" by "
+"default, unless overridden by the B<SECTION> directive in I<"
+"%manpath_config_file%>), and to show only the first I<page> found, even if "
+"I<page> exists in several I<sections>."
+msgstr ""
+"B<%man%> är systemets sidvisare för manualen.  Varje I<sid>-argument som "
+"angetts till B<%man%> är normalt sett namnet på ett program, verktyg eller "
+"en funktion.  I<Manualsidan> som associerats med vart och ett av dessa "
+"argument letas sedan upp och visas.  Ett I<avsnitt>, om det angetts, kommer "
+"att dirigera B<%man%> att leta endast i det I<avsnitt>et av manualen.  "
+"Standardåtgärden är att genomsöka alla tillgängliga I<avsnitt> i en "
+"förutbestämd ordning (”%sections%” som standard, om inte åsidosatt av "
+"direktivet B<AVSNITT> i I<%manpath_config_file%>), och att visa endast den "
+"första I<sida> som hittas, även om I<sidor> finns i flera I<avsnitt>."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:185
+msgid ""
+"The table below shows the I<section> numbers of the manual followed by the "
+"types of pages they contain."
+msgstr ""
+"Tabellen nedan visa I<avsnitts>-numren för manualen åtföljt av vilken typ av "
+"sidor de innehåller."
+
+#. type: tbl table
+#: ../../man/man1/man.man1:191
+#, no-wrap
+msgid "Executable programs or shell commands"
+msgstr "Exekverbara program eller skalkommandon"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:194
+#, no-wrap
+msgid "System calls (functions provided by the kernel)"
+msgstr "Systemanrop (funktioner som tillhandahålls av kerneln)"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:197
+#, no-wrap
+msgid "Library calls (functions within program libraries)"
+msgstr "Biblioteksanrop (funktioner i programbibliotek)"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:200
+#, no-wrap
+msgid "Special files (usually found in I</dev\\/>)"
+msgstr "Speciella filer (hittas vanligtvis i I</dev\\/>)"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:203
+#, no-wrap
+msgid "File formats and conventions eg I</etc/passwd>"
+msgstr "Filformat och konventioner t.ex. I</etc/passwd>"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:206
+#, no-wrap
+msgid "Games"
+msgstr "Spel"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:210
+#, no-wrap
+msgid ""
+"Miscellaneous (including macro packages and conventions),\n"
+"e.g.\\& B<man>(7), B<groff>(7)"
+msgstr ""
+"Diverse (inklusive makropaket och konventioner),\n"
+"t.ex.\\& B<man>(7), B<groff>(7)"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:213
+#, no-wrap
+msgid "System administration commands (usually only for root)"
+msgstr "Kommandon för systemadministration (vanligtvis bara för root)"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:216
+#, no-wrap
+msgid "Kernel routines [\\|Non standard\\|]"
+msgstr "Kernelrutiner [\\|Icke-standard\\|]"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:222
+msgid "A manual I<page> consists of several sections."
+msgstr "En manualI<sida> består av flera avsnitt."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:242
+msgid ""
+"Conventional section names include B<NAME>, B<SYNOPSIS>, B<CONFIGURATION>, "
+"B<DESCRIPTION>, B<OPTIONS>, B<EXIT\\ STATUS>, B<RETURN\\ VALUE>, B<ERRORS>, "
+"B<ENVIRONMENT>, B<FILES>, B<VERSIONS>, B<CONFORMING\\ TO>, B<NOTES>, "
+"B<BUGS>, B<EXAMPLE>, B<AUTHORS>, and B<SEE\\ ALSO>."
+msgstr ""
+"Vanliga avsnittsnamn inkluderar B<NAMN>, B<SYNOPSIS>, B<KONFIGURATION>, "
+"B<BESKRIVNING>, B<FLAGGOR>, B<SLUTSTATUS>, B<RETURVÄRDE>, B<FEL>, B<MILJÖ>, "
+"B<FILER>, B<VERSIONER>, B<ÖVERENSSTÄMMER\\ MED>, B<NOTERINGAR>, B<FEL>, "
+"B<EXEMPEL>, B<UPPHOVSMÄN> och B<SE\\ VIDARE>."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:246
+msgid ""
+"The following conventions apply to the B<SYNOPSIS> section and can be used "
+"as a guide in other sections."
+msgstr ""
+"Följande konventioner gäller för B<SYNOPSIS>-avsnittet och kan användas som "
+"riktlinjer för andra avsnitt."
+
+#. type: tbl table
+#: ../../man/man1/man.man1:250
+#, no-wrap
+msgid "B<bold text>"
+msgstr "B<fet text>"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:252
+#, no-wrap
+msgid "type exactly as shown."
+msgstr "skriv in exakt som visat."
+
+#. type: tbl table
+#: ../../man/man1/man.man1:253
+#, no-wrap
+msgid "I<italic text>"
+msgstr "I<kursiv text>"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:255
+#, no-wrap
+msgid "replace with appropriate argument."
+msgstr "ersätt med lämpligt argument."
+
+#. type: tbl table
+#: ../../man/man1/man.man1:256
+#, no-wrap
+msgid "[\\|B<-abc>\\|]"
+msgstr "[\\|B<-abc>\\|]"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:258
+#, no-wrap
+msgid "any or all arguments within [ ] are optional."
+msgstr "vilket som eller alla argumenten inom [ ] är valfria."
+
+#. type: tbl table
+#: ../../man/man1/man.man1:259
+#, no-wrap
+msgid "B<-a\\|>|\\|B<-b>"
+msgstr "B<-a\\|>|\\|B<-b>"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:261
+#, no-wrap
+msgid "options delimited by | cannot be used together."
+msgstr "flaggor avgränsade av | kan inte användas tillsammans."
+
+#. type: tbl table
+#: ../../man/man1/man.man1:262
+#, no-wrap
+msgid "I<argument> .\\|.\\|."
+msgstr "I<argument> .\\|.\\|."
+
+#. type: tbl table
+#: ../../man/man1/man.man1:264
+#, no-wrap
+msgid "I<argument> is repeatable."
+msgstr "I<argument> går att upprepa."
+
+#. type: tbl table
+#: ../../man/man1/man.man1:265
+#, no-wrap
+msgid "[\\|I<expression>\\|] .\\|.\\|."
+msgstr "[\\|I<uttryck>\\|] .\\|.\\|."
+
+#. type: tbl table
+#: ../../man/man1/man.man1:267
+#, no-wrap
+msgid "entire I<expression>\\ within [ ] is repeatable."
+msgstr "hela I<uttryck>et\\ inom [ ] går att upprepa."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:273
+msgid ""
+"Exact rendering may vary depending on the output device.  For instance, man "
+"will usually not be able to render italics when running in a terminal, and "
+"will typically use underlined or coloured text instead."
+msgstr ""
+"Den exakta rendering kan variera beroende på utmatningsenhet.  Man kommer "
+"till exempel vanligtvis inte att kunna rendera kursiv text när det används i "
+"en terminal, utan kommer vanligtvis att använda understruken eller färgad "
+"text istället."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:280
+msgid ""
+"The command or function illustration is a pattern that should match all "
+"possible invocations.  In some cases it is advisable to illustrate several "
+"exclusive invocations as is shown in the B<SYNOPSIS> section of this manual "
+"page."
+msgstr ""
+"Kommando- eller funktionsexemplet är ett mönster som bör matcha alla möjliga "
+"anrop.  I vissa fall är det rekommenderat att exemplifiera med flera "
+"separata anrop så som visas i avsnittet B<SYNOPSIS> i denna manualsida."
+
+#. type: TP
+#: ../../man/man1/man.man1:281
+#, no-wrap
+msgid "B<%man%>I<\\ ls>"
+msgstr "B<%man%>I<\\ ls>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:287
+msgid "Display the manual page for the I<item> (program)  I<ls>."
+msgstr "Visa manualsidan för I<objektet> (programmet) I<ls>."
+
+#. type: TP
+#: ../../man/man1/man.man1:287
+#, fuzzy, no-wrap
+#| msgid "B<%man%\\ -f>I<\\ smail>"
+msgid "B<%man% >I<man>.I<7>"
+msgstr "B<%man%\\ -f>I<\\ smail>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:292
+#, fuzzy
+#| msgid "Display the manual page for the I<item> (program)  I<ls>."
+msgid "Display the manual page for macro package I<man> from section I<7>."
+msgstr "Visa manualsidan för I<objektet> (programmet) I<ls>."
+
+#. type: TP
+#: ../../man/man1/man.man1:292
+#, no-wrap
+msgid "B<%man%\\ -a>I<\\ intro>"
+msgstr "B<%man%\\ -a>I<\\ intro>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:298
+msgid ""
+"Display, in succession, all of the available I<intro> manual pages contained "
+"within the manual.  It is possible to quit between successive displays or "
+"skip any of them."
+msgstr ""
+"Visa, i följd, alla tillgängliga I<intro>-manualsidor som finns i manualen.  "
+"Det är möjligt att avsluta mellan visningarna eller hoppa över någon av dem."
+
+#. type: TP
+#: ../../man/man1/man.man1:298
+#, no-wrap
+msgid "B<%man% -t >I<alias >|I< lpr -Pps>"
+msgstr "B<%man% -t >I<alias >|I< lpr -Pps>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:315
+msgid ""
+"Format the manual page referenced by `I<alias>', usually a shell manual "
+"page, into the default B<troff> or B<groff> format and pipe it to the "
+"printer named I<ps>.  The default output for B<groff> is usually "
+"PostScript.  B<%man% --help> should advise as to which processor is bound to "
+"the B<-t> option."
+msgstr ""
+"Formatera manualsidan som refereras till av ”I<alias>”, vanligtvis en "
+"manualsida för skalet, till standard B<troff>- eller B<groff>-format och "
+"öppna rör till skrivaren med namnet I<ps>.  Standard utmatningen för "
+"B<groff> är vanligtvis PostScript.  B<%man% --help> borde ange vilken "
+"hanterare som är bunden till flaggan B<-t>."
+
+#. type: TP
+#: ../../man/man1/man.man1:315
+#, no-wrap
+msgid "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
+msgstr "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:331
+msgid ""
+"This command will decompress and format the nroff source manual page I<./"
+"foo.1x.gz> into a B<device independent (dvi)> file.  The redirection is "
+"necessary as the B<-T> flag causes output to be directed to B<stdout> with "
+"no pager.  The output could be viewed with a program such as B<xdvi> or "
+"further processed into PostScript using a program such as B<dvips.>"
+msgstr ""
+"Detta kommando kommer att dekomprimera och formatera nroff-källmanualsidan "
+"I<./foo.1x.gz> till en B<enhets oberoende (dvi)>-fil.  Omdirigeringen är "
+"nödvändig eftersom B<-T>-flaggan förorsakar att utmatningen kommer att "
+"dirigeras till B<stdout> utan sidvisare.  Utmatningen skulle kunna visas med "
+"ett program så som B<xdvi> eller processas vidare till PostScript med hjälp "
+"av ett program så som B<dvips>."
+
+#. type: TP
+#: ../../man/man1/man.man1:331
+#, no-wrap
+msgid "B<%man%\\ -k>I<\\ printf>"
+msgstr "B<%man%\\ -k>I<\\ printf>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:339
+#, fuzzy
+#| msgid ""
+#| "Search the short descriptions and manual page names for the keyword "
+#| "I<printf> as regular expression.  Print out any matches.  Equivalent to B<"
+#| "%apropos%\\ -r>I<\\ printf>B<.>"
+msgid ""
+"Search the short descriptions and manual page names for the keyword "
+"I<printf> as regular expression.  Print out any matches.  Equivalent to B<"
+"%apropos%>I<\\ printf>B<.>"
+msgstr ""
+"Genomsök de korta beskrivningarna och namnen på manualsidorna efter "
+"nyckelordet I<printf> som ett reguljärt uttryck.  Skriv ut allt som "
+"matchar.  Ekvivalent med B<%apropos%\\ -r>I<\\ printf>B<.>"
+
+#. type: TP
+#: ../../man/man1/man.man1:339
+#, no-wrap
+msgid "B<%man%\\ -f>I<\\ smail>"
+msgstr "B<%man%\\ -f>I<\\ smail>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:346
+#, fuzzy
+#| msgid ""
+#| "Lookup the manual pages referenced by I<smail> and print out the short "
+#| "descriptions of any found.  Equivalent to B<%whatis%\\ -r>I<\\ smail>B<.>"
+msgid ""
+"Lookup the manual pages referenced by I<smail> and print out the short "
+"descriptions of any found.  Equivalent to B<%whatis%>I<\\ smail>B<.>"
+msgstr ""
+"Leta upp manualsidorna som refereras till som I<smail> och skriv ut de korta "
+"beskrivningarna för de som hittas.  Ekvivalent med B<%whatis%\\ -r>I<\\ "
+"smail>B<.>"
+
+#. type: SH
+#: ../../man/man1/man.man1:346
+#, no-wrap
+msgid "OVERVIEW"
+msgstr "ÖVERSIKT"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:352
+msgid ""
+"Many options are available to B<%man%> in order to give as much flexibility "
+"as possible to the user.  Changes can be made to the search path, section "
+"order, output processor, and other behaviours and operations detailed below."
+msgstr ""
+"Många flaggor till B<%man%> finns för att ge användaren så mycket "
+"flexibilitet som möjligt.  Ändringar kan göras till sökvägen, "
+"avsnittsordningen, utmatningshanteraren och andra beteenden och operationer "
+"som beskrivs nedan."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:374
+msgid ""
+"If set, various environment variables are interrogated to determine the "
+"operation of B<%man%>.  It is possible to set the `catch all' variable "
+"$B<MANOPT> to any string in command line format with the exception that any "
+"spaces used as part of an option's argument must be escaped (preceded by a "
+"backslash).  B<%man%> will parse $B<MANOPT> prior to parsing its own command "
+"line.  Those options requiring an argument will be overridden by the same "
+"options found on the command line.  To reset all of the options set in "
+"$B<MANOPT>, B<-D> can be specified as the initial command line option.  This "
+"will allow %man% to `forget' about the options specified in $B<MANOPT> "
+"although they must still have been valid."
+msgstr ""
+"Om satta kommer diverse miljövariabler att studeras för att bestämma hur B<"
+"%man%> ska fungera.  Det är möjligt att sätta den övergripande variabeln "
+"$B<MANOPT> till vilken sträng som helst i kommandoradsformat förutom att de "
+"blanksteg används som del av en flaggans argument måste markeras (föregås av "
+"ett bakåtstreck).  B<%man%> kommer att tolka $B<MANOPT> före att det tolkar "
+"sin egen kommandorad.  De flaggor som kräver ett argument kommer att "
+"åsidosättas av samma flaggor som finns på kommandoraden.  För att återställa "
+"alla flaggorna som ställts in i $B<MANOPT> så kan B<-D> anges som den första "
+"kommandoradsflaggan.  Detta låter %man% ”glömma” de flaggor som angetts i "
+"$B<MANOPT> även om de fortfarande måste vara giltiga."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:395
+msgid ""
+"The manual pager utilities packaged as B<man-db> make extensive use of "
+"B<index> database caches.  These caches contain information such as where "
+"each manual page can be found on the filesystem and what its I<whatis> "
+"(short one line description of the man page) contains, and allow B<%man%> to "
+"run faster than if it had to search the filesystem each time to find the "
+"appropriate manual page.  If requested using the B<-u> option, B<man> will "
+"ensure that the caches remain consistent, which can obviate the need to "
+"manually run software to update traditional I<whatis> text databases."
+msgstr ""
+"Sidvisarverktygen för manualsidor som paketerats som B<man-db> använder "
+"B<index>-databascachar i stor utsträckning.  Dessa cachar innehåller "
+"information som t.ex. var en manualsida kan hittas i filsystemet och vad "
+"dess I<whatis> (kort en-rads-beskrivning av manualsidan) innehåller och "
+"tillåter B<%man%> att köra snabbare än om det hade varit tvunget att "
+"genomsöka filsystemet varje gång för att hitta den lämpliga manualsidan.  Om "
+"begärt, via B<-u>-flaggan, så kommer B<man> att försäkra sig om att cacharna "
+"förblir konsistenta vilket kan förebygga behovet att manuellt köra "
+"programvara för att uppdatera de traditionella I<whatis>-textdatabaserna."
+
+#. `User' manual page hierarchies will have
+#. .B index
+#. caches created `on the fly'.
+#. type: Plain text
+#: ../../man/man1/man.man1:417
+msgid ""
+"If B<%man%> cannot find a B<%mandb%> initiated B<index> database for a "
+"particular manual page hierarchy, it will still search for the requested "
+"manual pages, although file globbing will be necessary to search within that "
+"hierarchy.  If B<%whatis%> or B<%apropos%> fails to find an B<index> it will "
+"try to extract information from a traditional I<whatis> database instead."
+msgstr ""
+"Om B<%man%> inte kan hitta en B<%mandb%>-initierad B<index>-databas för en "
+"viss hierarki av manualsidor kommer det fortfarande att leta efter de "
+"begärda manualsidorna, även om filskalmönster (”globbing”) kommer att vara "
+"nödvändigt för att leta inom den hierarkin.  Om B<%whatis%> eller B<%apropos"
+"%> misslyckas med att hitta ett B<index> kommer de att försöka extrahera "
+"information från en traditionell I<whatis>-databas istället."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:437
+msgid ""
+"These utilities support compressed source nroff files having, by default, "
+"the extensions of B<.Z>, B<.z> and B<.gz>.  It is possible to deal with any "
+"compression extension, but this information must be known at compile time.  "
+"Also, by default, any cat pages produced are compressed using B<gzip>.  Each "
+"`global' manual page hierarchy such as I</usr/share/man> or I</usr/X11R6/"
+"man> may have any directory as its cat page hierarchy.  Traditionally the "
+"cat pages are stored under the same hierarchy as the man pages, but for "
+"reasons such as those specified in the B<File Hierarchy Standard (FHS)>, it "
+"may be better to store them elsewhere.  For details on how to do this, "
+"please read B<manpath>(5).  For details on why to do this, read the standard."
+msgstr ""
+"Dessa verktyg har stöd för komprimerade nroff-källfiler som, som standard, "
+"har ändelserna B<.Z>, B<.z> och B<.gz>.  Det är möjligt att hantera vilken "
+"kompressionsändelse som helst, men denna information måste vara känd vid "
+"tiden för kompilering.  Dessutom kommer cat-sidor, som standard, att "
+"produceras som komprimerade med B<gzip>.  Varje ”global” hierarki av "
+"manualsidor så som I</usr/share/man> eller I</usr/X11R6/man> kan ha vilken "
+"katalog som helst som sin hierarki av cat-sidor.  Traditionellt lagras cat-"
+"sidorna under samma hierarki som manualsidorna, men av skäl så som de som "
+"anges i B<Filhierarkistandarden (FHS)>, så kan det vara bättre att lagra dem "
+"på annan plats.  För vidare information om hur du gör detta, läs "
+"B<manpath>(5).  För vidare information om varför du bör göra detta, läs "
+"standarden."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:450
+msgid ""
+"International support is available with this package.  Native language "
+"manual pages are accessible (if available on your system)  via use of "
+"I<locale> functions.  To activate such support, it is necessary to set "
+"either $B<LC_MESSAGES>, $B<LANG> or another system dependent environment "
+"variable to your language locale, usually specified in the B<POSIX 1003.1> "
+"based format:"
+msgstr ""
+"Internationaliseringsstöd finns tillgängligt för detta paket.  Manualsidor "
+"på modersmål finns nåbara (om de finns tillgängliga på ditt system) via "
+"användning av I<lokal>-funktioner.  För att aktivera ett sådant stöd, är det "
+"nödvändigt att ställa in antingen $B<LC_MESSAGES>, $B<LANG> eller någon "
+"annan systemberoende miljövariabel till din språklokal, vanligtvis angiven i "
+"det B<POSIX 1003.1>-baserade formatet:"
+
+#
+#.  Need a \c to make sure we don't get a space where we don't want one
+#. type: Plain text
+#: ../../man/man1/man.man1:461
+msgid ""
+"E<lt>I<language>E<gt>[\\|B<_>E<lt>I<territory>E<gt>\\|[\\|B<."
+">E<lt>I<character-set>E<gt>\\|[\\|B<,>E<lt>I<version>E<gt>\\|]\\|]\\|]"
+msgstr ""
+"E<lt>I<språk>E<gt>[\\|B<_>E<lt>I<territorium>E<gt>\\|[\\|B<."
+">E<lt>I<teckenuppsättning>E<gt>\\|[\\|B<,>E<lt>I<version>E<gt>\\|]\\|]\\|]"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:466
+msgid ""
+"If the desired page is available in your I<locale>, it will be displayed in "
+"lieu of the standard (usually American English) page."
+msgstr ""
+"Om den önskade sidan finns tillgänglig i din I<lokal> så kommer den att "
+"visas istället för standardsidan (vanligtvis på amerikansk engelska)."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:473
+msgid ""
+"Support for international message catalogues is also featured in this "
+"package and can be activated in the same way, again if available.  If you "
+"find that the manual pages and message catalogues supplied with this package "
+"are not available in your native language and you would like to supply them, "
+"please contact the maintainer who will be coordinating such activity."
+msgstr ""
+"Stöd för internationella meddelandekataloger finns också i detta paket och "
+"kan aktiveras på samma sätt, återigen: om tillgängligt.  Om du finner att "
+"manualsidorna och meddelandekatalogerna som kommer med detta paket inte "
+"finns tillgängliga på ditt modersmål och skulle vilja tillhandahålla dem, "
+"vänligen kontakta den ansvariga utvecklaren som kan koordinera en sådan "
+"aktivitet."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:476
+msgid ""
+"For information regarding other features and extensions available with this "
+"manual pager, please read the documents supplied with the package."
+msgstr ""
+"För information angående andra funktioner och tillägg för denna visare för "
+"manualsidor, se vidare i dokumenten som levererats med paketet."
+
+#. type: SH
+#: ../../man/man1/man.man1:476
+#, no-wrap
+msgid "DEFAULTS"
+msgstr "STANDARDVÄRDEN"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:496
+msgid ""
+"B<%man%> will search for the desired manual pages within the I<index> "
+"database caches. If the B<-u> option is given, a cache consistency check is "
+"performed to ensure the databases accurately reflect the filesystem.  If "
+"this option is always given, it is not generally necessary to run B<%mandb%> "
+"after the caches are initially created, unless a cache becomes corrupt.  "
+"However, the cache consistency check can be slow on systems with many manual "
+"pages installed, so it is not performed by default, and system "
+"administrators may wish to run B<%mandb%> every week or so to keep the "
+"database caches fresh.  To forestall problems caused by outdated caches, B<"
+"%man%> will fall back to file globbing if a cache lookup fails, just as it "
+"would if no cache was present."
+msgstr ""
+"B<%man%> kommer att söka efter de önskade manualsidorna i I<index>-"
+"databascachen. Om flaggan B<-u> angetts så kommer en cachekonsistenskontroll "
+"att genomföras för att försäkra att databaserna korrekt speglar "
+"filsystemet.  Om denna flagga alltid anges är det generellt sett inte "
+"nödvändigt att köra B<%mandb%> efter att cacharna skapats initialt, "
+"förutsatt att cachen inte blir korrumpera.  Cachekonsistenskontrollen kan "
+"dock vara långa på system med många manualsidor installerade, så den körs "
+"inte som standard och systemadministratörer kan komma att vilja köra B<%mandb"
+"%> varje vecka eller så för att hålla databascacharna färska.  För att "
+"förebygga problem som orsakats av föråldrade cachar så kommer B<%man%> att "
+"falla tillbaka på filskalmönster (”globbing”) om en cacheuppslagning "
+"misslyckas, precis som om den hade gjorts om ingen cache existerar."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:508
+msgid ""
+"Once a manual page has been located, a check is performed to find out if a "
+"relative preformatted `cat' file already exists and is newer than the nroff "
+"file.  If it does and is, this preformatted file is (usually) decompressed "
+"and then displayed, via use of a pager.  The pager can be specified in a "
+"number of ways, or else will fall back to a default is used (see option B<-"
+"P> for details).  If no cat is found or is older than the nroff file, the "
+"nroff is filtered through various programs and is shown immediately."
+msgstr ""
+"När en manualsida har lokaliserats kommer en kontroll att göras för att ta "
+"reda på om en relativ, förformaterad ”cat”-fil redan existerar och är nyare "
+"än nroff-filen.  Om den finns och är nyare kommer denna förformaterade fil "
+"att (vanligtvis) dekomprimeras och sedan visas med hjälp av en sidvisare.  "
+"Sidvisaren kan anges på ett antal olika sätt eller så kommer man att falla "
+"tillbaka på en standardvisare (se flaggan B<-P> för detaljer).  Om ingen cat-"
+"sida hittas eller den är äldre än nroff-filen så kommer nroff:en att "
+"filtreras genom diverse program och visas omedelbart."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:513
+msgid ""
+"If a cat file can be produced (a relative cat directory exists and has "
+"appropriate permissions), B<%man%> will compress and store the cat file in "
+"the background."
+msgstr ""
+"Om en cat-fil kan produceras (en relativ cat-katalog existerar och har "
+"lämpliga rättigheter) så kommer B<%man%> att komprimera och i bakgrunden "
+"spara cat-filen."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:525
+msgid ""
+"The filters are deciphered by a number of means.  Firstly, the command line "
+"option B<-p> or the environment variable $B<MANROFFSEQ> is interrogated.  If "
+"B<-p> was not used and the environment variable was not set, the initial "
+"line of the nroff file is parsed for a preprocessor string.  To contain a "
+"valid preprocessor string, the first line must resemble"
+msgstr ""
+"Filterna lokaliseras på ett antal olika sätt.  Först kommer "
+"kommandoradsflaggan B<-p> eller miljövariabeln $B<MANROFFSEQ> att "
+"inspekteras.  Om B<-p> inte användes och miljövariabeln inte var satt kommer "
+"den första raden av nroff-filen att tolkas och genomsökas efter en "
+"preprocessorsträng.  För att innehålla en giltigt preprocessorsträng så "
+"måste första raden vara på formen"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:528
+msgid "B<'\\e\"> E<lt>B<string>E<gt>"
+msgstr "B<'\\e\"> E<lt>B<sträng>E<gt>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:534
+msgid ""
+"where B<string> can be any combination of letters described by option B<-p> "
+"below."
+msgstr ""
+"där B<sträng> kan vara vilken kombination som helst av bokstäver som "
+"beskrivs av flaggan B<-p> nedan."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:537
+msgid ""
+"If none of the above methods provide any filter information, a default set "
+"is used."
+msgstr ""
+"Om ingen av de ovanstående metoderna tillhandahåller någon filterinformation "
+"kommer standarduppsättningen att användas."
+
+#.  ********************************************************************
+#. type: Plain text
+#: ../../man/man1/man.man1:558
+msgid ""
+"A formatting pipeline is formed from the filters and the primary formatter "
+"(B<nroff> or [B<tg>]B<roff> with B<-t>)  and executed.  Alternatively, if an "
+"executable program I<mandb_nfmt> (or I<mandb_tfmt> with B<-t>)  exists in "
+"the man tree root, it is executed instead.  It gets passed the manual source "
+"file, the preprocessor string, and optionally the device specified with B<-"
+"T> or B<-E> as arguments."
+msgstr ""
+"En formateringsrörledning skapas från filterna och den primära formateraren "
+"(B<nroff> eller [B<tg>]B<roff> med B<-t>) och köras. Alternativt om ett "
+"körbart program I<mandb_nfmt> (eller I<mandb_tfmt> med B<-t>) existerar i "
+"roten till man-trädet kommer det att köras istället.  Det förses med "
+"manualsidans källkodsfil, preprocessorsträngen och valfritt enheten som "
+"angetts med B<-T> eller B<-E> som argument."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:564
+msgid ""
+"Non argument options that are duplicated either on the command line, in "
+"$B<MANOPT>, or both, are not harmful.  For options that require an argument, "
+"each duplication will override the previous argument value."
+msgstr ""
+"Icke-argument flaggor som duplicerats antingen på kommandoraden, i "
+"$B<MANOPT> eller båda är inte skadliga.  För flaggor som kräver ett argument "
+"kommer varje duplicering att åsidosätta det tidigare argumentvärdet."
+
+#. type: SS
+#: ../../man/man1/man.man1:564
+#, no-wrap
+msgid "General options"
+msgstr "Allmänna flaggor"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:582
+msgid ""
+"This option is normally issued as the very first option and resets B<%man"
+"%'s> behaviour to its default.  Its use is to reset those options that may "
+"have been set in $B<MANOPT>.  Any options that follow B<-D> will have their "
+"usual effect."
+msgstr ""
+"Denna flagga anges normalt som den allra första flaggan och återställer B<"
+"%man%>:s beteende till standardinställningarna.  Den används för att "
+"återställa de flaggor som kan ha satts i $B<MANOPT>.  Flaggor som följer B<-"
+"D> kommer att ha sin vanliga effekt."
+
+#. type: TP
+#: ../../man/man1/man.man1:582
+#, no-wrap
+msgid "B<--warnings>[=I<warnings\\/>]"
+msgstr "B<--warnings>[=I<varningar\\/>]"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:594
+msgid ""
+"Enable warnings from I<groff>.  This may be used to perform sanity checks on "
+"the source text of manual pages.  I<warnings> is a comma-separated list of "
+"warning names; if it is not supplied, the default is \"mac\".  See the "
+"\\(lqWarnings\\(rq node in B<info groff> for a list of available warning "
+"names."
+msgstr ""
+"Aktivera varningar från I<groff>.  Detta kan användas för att utföra "
+"rimlighetskontroller av källkodstexten för manualsidor.  I<varningar> är en "
+"kommaseparerad lista av varningsnamn; om de inte anges är standardvärdet "
+"”mac”.  Se noden \\(lqVarningar\\(rq i B<info groff> för en lista av möjliga "
+"varningsnamn."
+
+#. type: SS
+#: ../../man/man1/man.man1:594
+#, no-wrap
+msgid "Main modes of operation"
+msgstr "Huvudarbetssätt"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:603
+msgid ""
+"Equivalent to B<%whatis%>.  Display a short description from the manual "
+"page, if available.  See B<%whatis%>(1)  for details."
+msgstr ""
+"Ekvivalent med B<%whatis%>.  Visa en kort beskrivning från manualsidan om "
+"den finns tillgänglig.  Se B<%whatis%>(1) för detaljer."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:612
+msgid ""
+"Equivalent to B<%apropos%>.  Search the short manual page descriptions for "
+"keywords and display any matches.  See B<%apropos%>(1)  for details."
+msgstr ""
+"Ekvivalent med B<%apropos%>.  Sök efter nyckelbord bland beskrivningarna för "
+"manualsidor och visa matchningar.  Se B<%apropos%>(1) för detaljer."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:622
+msgid ""
+"Search for text in all manual pages.  This is a brute-force search, and is "
+"likely to take some time; if you can, you should specify a section to reduce "
+"the number of pages that need to be searched.  Search terms may be simple "
+"strings (the default), or regular expressions if the B<--regex> option is "
+"used."
+msgstr ""
+"Sök efter text i alla manualsidor.  Detta är en naiv sökning och tar "
+"troligtvis lite tid; om du kan så bör du ange ett avsnitt för att reducera "
+"antalet sidor som måste genomsökas.  Söktermer kan vara enkla strängar (som "
+"standard) eller reguljära uttryck om flaggan B<--regex> används."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:628
+msgid ""
+"Note that this searches the I<sources> of the manual pages, not the rendered "
+"text, and so may include false positives due to things like comments in "
+"source files.  Searching the rendered text would be much slower."
+msgstr ""
+
+#.  Compressed nroff source files with a supported compression
+#.  extension will be decompressed by man prior to being displaying via the
+#.  usual filters.
+#. type: Plain text
+#: ../../man/man1/man.man1:644
+msgid ""
+"Activate `local' mode.  Format and display local manual files instead of "
+"searching through the system's manual collection.  Each manual page argument "
+"will be interpreted as an nroff source file in the correct format.  No cat "
+"file is produced.  If '-' is listed as one of the arguments, input will be "
+"taken from stdin.  When this option is not used, and man fails to find the "
+"page required, before displaying the error message, it attempts to act as if "
+"this option was supplied, using the name as a filename and looking for an "
+"exact match."
+msgstr ""
+"Aktivera ”lokalt” läge.  Formatera och visa lokala manualfiler istället för "
+"att söka genom systemets manualsamling.  Varje manualsidesargument kommer "
+"att tolkas som en nroff-källkodsfil i det korrekta formatet.  Ingen cat-fil "
+"produceras.  Om ”-” listas som en av argumenten kommer inmatningen att tas "
+"från standard in.  När denna flagga används och man misslyckas med att hitta "
+"den begärda sidan, innan felmeddelandet visas, så kommer det att bete sig "
+"som om flaggan angavs med namnet som ett filnamn och sökas efter som en "
+"exakt matchning."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:648
+msgid ""
+"Don't actually display the manual pages, but do print the location(s) of the "
+"source nroff files that would be formatted."
+msgstr ""
+"Visa inte själva manualsidorna, men skriv ut plats(erna) för nroff-"
+"källkodsfilerna som skulle ha formaterats."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:653
+msgid ""
+"Don't actually display the manual pages, but do print the location(s) of the "
+"cat files that would be displayed.  If -w and -W are both specified, print "
+"both separated by a space."
+msgstr ""
+"Visa inte själva manualsidorna, men skriv ut plats(erna) för cat-filerna som "
+"skulle ha visats. Om -w och -W anges båda två, skriv ut båda separerade av "
+"ett mellanslag."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:658
+msgid ""
+"This option is not for general use and should only be used by the B<%catman"
+"%> program."
+msgstr ""
+"Denna flagga är inte avsedd för allmänt bruk och bör bara användas av "
+"programmet B<%catman%>."
+
+#. type: TP
+#: ../../man/man1/man.man1:658
+#, no-wrap
+msgid "B<-R\\ >I<encoding>,\\ B<--recode>=I<encoding>"
+msgstr "B<-R\\ >I<kodning>,\\ B<--recode>=I<kodning>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:670
+msgid ""
+"Instead of formatting the manual page in the usual way, output its source "
+"converted to the specified I<encoding>.  If you already know the encoding of "
+"the source file, you can also use B<%manconv%>(1)  directly.  However, this "
+"option allows you to convert several manual pages to a single encoding "
+"without having to explicitly state the encoding of each, provided that they "
+"were already installed in a structure similar to a manual page hierarchy."
+msgstr ""
+"Istället för att formatera manualsidan på det vanliga sättet, mata ut dess "
+"källkod konverterat till den angivna I<kodningen>.  Om du redan vet "
+"kodningen för källkodsfilen kan du också använda B<%manconv%>(1) direkt.  "
+"Denna flagga låter dig dock konvertera flera manualsidor till en enstaka "
+"kodning utan att du måste explicit ange kodningstillstånden för var och en, "
+"givet att de redan fanns installerade i en struktur liknande en hierarki av "
+"manualsidor."
+
+#. type: SS
+#: ../../man/man1/man.man1:670
+#, no-wrap
+msgid "Finding manual pages"
+msgstr "Att hitta manualsidor"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:708
+msgid ""
+"If this system has access to other operating system's manual pages, they can "
+"be accessed using this option.  To search for a manual page from NewOS's "
+"manual page collection, use the option B<-m> B<NewOS>."
+msgstr ""
+"Om detta system har tillgång till andra operativsystems manualsidor kan de "
+"nås via den här flaggan.  För att söka efter en manualsida från samlingen av "
+"manualsidor för NyttOS, använd flaggan B<-m> B<NyttOS>."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:719
+msgid ""
+"The I<system> specified can be a combination of comma delimited operating "
+"system names.  To include a search of the native operating system's manual "
+"pages, include the system name B<man> in the argument string.  This option "
+"will override the $B<SYSTEM> environment variable."
+msgstr ""
+"I<system> som angetts kan vara en kombination av kommaavgränsade namn på "
+"operativsystem.  För att inkludera en sökning för det normala operativ "
+"systemets manualsidor, inkludera systemnamnet B<man> i argumentsträngen.  "
+"Denna flagga kommer att åsidosätta miljövariabeln $B<SYSTEM>."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:733
+msgid ""
+"Specify an alternate manpath to use.  By default, B<%man%> uses B<%manpath%> "
+"derived code to determine the path to search.  This option overrides the "
+"$B<MANPATH> environment variable and causes option B<-m> to be ignored."
+msgstr ""
+"Ange en alternativ man-sökväg att använda.  Som standard kommer B<%man%> att "
+"använda B<%manpath%>-härledd kod för att avgöra vilken sökväg som ska "
+"genomsökas.  Denna flagga åsidosätter miljövariabeln $B<MANPATH> och gör att "
+"flaggan B<-m> ignoreras."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:740
+msgid ""
+"A path specified as a manpath must be the root of a manual page hierarchy "
+"structured into sections as described in the man-db manual (under \"The "
+"manual page system\").  To view manual pages outside such hierarchies, see "
+"the B<-l> option."
+msgstr ""
+"En sökväg angiven som en man-sökväg måste vara roten för en hierarki av "
+"manualsidor strukturerad i sektions som beskrivits i man-db-manualen (Under "
+"”Systemet för manualsidor”). För att visa manualsidor utanför sådana "
+"hierarkier, se flaggan B<-l>."
+
+#. type: TP
+#: ../../man/man1/man.man1:740
+#, no-wrap
+msgid "B<-S\\ >I<list>,\\ B<-s\\ >I<list>,\\ B<--sections=>I<list>"
+msgstr "B<-S\\ >I<lista>,\\ B<-s\\ >I<lista>,\\ B<--sections=>I<lista>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:750
+msgid ""
+"List is a colon- or comma-separated list of `order specific' manual sections "
+"to search.  This option overrides the $B<MANSECT> environment variable.  "
+"(The B<-s> spelling is for compatibility with System V.)"
+msgstr ""
+"Lista är en kolon- eller kommaseparerad lista över ”ordningsspecifika” "
+"manualavsnitt att genomsöka.  Denna flagga åsidosätter miljövariabeln "
+"$B<MANSECT>.  (Stavningen B<-s> är för att vara kompatibel med System V.)"
+
+#. type: TP
+#: ../../man/man1/man.man1:750
+#, no-wrap
+msgid "B<-e\\ >I<sub-extension>,\\ B<--extension=>I<sub-extension>"
+msgstr "B<-e\\ >I<underändelse>,\\ B<--extension=>I<underändelse>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:784
+msgid ""
+"Some systems incorporate large packages of manual pages, such as those that "
+"accompany the B<Tcl> package, into the main manual page hierarchy.  To get "
+"around the problem of having two manual pages with the same name such as "
+"B<exit>(3), the B<Tcl> pages were usually all assigned to section B<l>.  As "
+"this is unfortunate, it is now possible to put the pages in the correct "
+"section, and to assign a specific `extension' to them, in this case, "
+"B<exit>(3tcl).  Under normal operation, B<%man%> will display B<exit>(3)  in "
+"preference to B<exit>(3tcl).  To negotiate this situation and to avoid "
+"having to know which section the page you require resides in, it is now "
+"possible to give B<%man%> a I<sub-extension> string indicating which package "
+"the page must belong to.  Using the above example, supplying the option B<-e"
+"\\ tcl> to B<%man%> will restrict the search to pages having an extension of "
+"B<*tcl>."
+msgstr ""
+"Vissa system införlivar stora paket med manualsidor, så som de som följer "
+"med paketet B<Tcl>, i huvudhierarkin för manualsidor.  För att komma runt "
+"problemet med att ha två manualsidor med samma namn, exempelvis B<exit>(3), "
+"så tilldelades normalt sett alla B<Tcl>-sidorna till avsnitt B<l>.  Då detta "
+"är olyckligt är det nu möjligt att placera sidorna i det korrekta avsnittet "
+"och att tilldela en specifik ”ändelse” till dem, i detta fallet "
+"B<exit>(3tcl).  Vid normal användning kommer B<%man%> att visa B<exit>(3) "
+"istället för B<exit>(3tcl).  För att förhandla denna situation och för att "
+"undvika att man måste veta vilket avsnitt sidan du begär finns i, är det nu "
+"möjligt att förse B<%man%> med en I<underändelse>-sträng som indikerar "
+"vilket paket sidan måste höra till.  Med exemplet ovan så kan man ange "
+"flaggan B<-e\\ tcl> till B<%man%> för att det ska begränsa sökningen till "
+"sidor som har ändelsen B<*tcl>."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:788
+msgid "Ignore case when searching for manual pages.  This is the default."
+msgstr "Ignorera skiftläge vid sökning efter manualsidor.  Detta är standard."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:791
+msgid "Search for manual pages case-sensitively."
+msgstr "Sök efter manual sidor på ett skiftlägeskänsligt sätt."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:801
+msgid ""
+"Show all pages with any part of either their names or their descriptions "
+"matching each I<page> argument as a regular expression, as with "
+"B<apropos>(1).  Since there is usually no reasonable way to pick a \"best\" "
+"page when searching for a regular expression, this option implies B<-a>."
+msgstr ""
+"Visa alla sidor där någon del av antingen deras namn eller deras "
+"beskrivningar matchar varje I<sida>-argument som ett reguljärt uttryck, som "
+"med B<apropos>(1).  Eftersom det vanligtvis inte finns något rimligt sätt "
+"att välja en ”bästa” sida vid sökning via ett reguljärt uttryck så "
+"implicerar denna flagga B<-a>."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:816
+msgid ""
+"Show all pages with any part of either their names or their descriptions "
+"matching each I<page> argument using shell-style wildcards, as with "
+"B<apropos>(1)  B<--wildcard>.  The I<page> argument must match the entire "
+"name or description, or match on word boundaries in the description.  Since "
+"there is usually no reasonable way to pick a \"best\" page when searching "
+"for a wildcard, this option implies B<-a>."
+msgstr ""
+"Visa alla sidor där någon del av antingen deras namn eller deras "
+"beskrivningar matchar varje I<sida>-argument med jokertecken i skal-stil, "
+"som med B<apropos>(1) B<--wildcard>.  Argumentet I<sida> måste matcha hela "
+"namnet eller beskrivningen eller matcha på ordgränser i beskrivningen.  "
+"Eftersom det vanligtvis inte finns något rimligt sätt att välja en ”bästa” "
+"sida vid sökning via jokertecken så implicerar denna flagga B<-a>."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:825
+msgid ""
+"If the B<--regex> or B<--wildcard> option is used, match only page names, "
+"not page descriptions, as with B<whatis>(1).  Otherwise, no effect."
+msgstr ""
+"Om flaggan B<--regex> eller B<--wildcard> används så matcha enbart sidnamn, "
+"inte sidbeskrivningar, som med B<whatis>(1).  Förövrigt har den ingen effekt."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:833
+msgid ""
+"By default, B<%man%> will exit after displaying the most suitable manual "
+"page it finds.  Using this option forces B<%man%> to display all the manual "
+"pages with names that match the search criteria."
+msgstr ""
+"Som standard kommer B<%man%> att avsluta efter ha visa den mest lämpliga "
+"manualsidan den hittar.  Om denna flagga används så tvingar B<%man%> att "
+"visa alla manualsidor med namn som matchar sökkriteriet."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:842
+msgid ""
+"This option causes B<%man%> to perform an `inode level' consistency check on "
+"its database caches to ensure that they are an accurate representation of "
+"the filesystem.  It will only have a useful effect if B<%man%> is installed "
+"with the setuid bit set."
+msgstr ""
+"Denna flagga gör så att B<%man%> utför en konsistenskontroll på ”inod-nivå” "
+"i dess databascachar för att försäkra att de är tillförlitliga "
+"representationer av filsystemet.  Den kommer endast att kan en användbart "
+"effekt om B<%man%> installerats med setuid-biten satt."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:854
+msgid ""
+"By default, B<%man%> will try to interpret pairs of manual page names given "
+"on the command line as equivalent to a single manual page name containing a "
+"hyphen or an underscore.  This supports the common pattern of programs that "
+"implement a number of subcommands, allowing them to provide manual pages for "
+"each that can be accessed using similar syntax as would be used to invoke "
+"the subcommands themselves.  For example:"
+msgstr ""
+"Som standard kommer B<%man%> att försöka tolka par av namn på manualsidor "
+"som anges på kommandoraden som ekvivalenta med ett enstaka namn på en "
+"manualsida som innehåller ett bindestreck eller ett understreck.  Detta "
+"stöder vanliga mönster för program som implementerar ett antal "
+"underkommandon, vilket låter dem tillhandahålla manualsidor för vart och ett "
+"som kan nås via liknande syntax som skulle ha använts för att köra "
+"underkommandona själva.  Till exempel:"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:863
+msgid "To disable this behaviour, use the B<--no-subpages> option."
+msgstr "För att inaktivera detta beteende, använd flaggan B<--no-subpages>."
+
+#. type: SS
+#: ../../man/man1/man.man1:870
+#, no-wrap
+msgid "Controlling formatted output"
+msgstr "Att kontrollera formaterad utmatning"
+
+#. type: TP
+#: ../../man/man1/man.man1:871
+#, no-wrap
+msgid "B<-P\\ >I<pager>,\\ B<--pager=>I<pager>"
+msgstr "B<-P\\ >I<sidvisare>,\\ B<--pager=>I<sidvisare>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:887
+msgid ""
+"Specify which output pager to use.  By default, B<%man%> uses B<%pager%>.  "
+"This option overrides the $B<MANPAGER> environment variable, which in turn "
+"overrides the $B<PAGER> environment variable.  It is not used in conjunction "
+"with B<-f> or B<-k>."
+msgstr ""
+"Ange vilken utmatningssidvisare som ska användas.  Som standard använder B<"
+"%man%> B<%pager%>.  Denna flagga åsidosätter miljövariabeln $B<MANPAGER>, "
+"vilken i sin tur åsidosätter miljövariabeln $B<PAGER>.  Den används inte i "
+"samband med B<-f> eller B<-k>."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:893 ../../man/man1/man.man1:1250
+msgid ""
+"The value may be a simple command name or a command with arguments, and may "
+"use shell quoting (backslashes, single quotes, or double quotes).  It may "
+"not use pipes to connect multiple commands; if you need that, use a wrapper "
+"script, which may take the file to display either as an argument or on "
+"standard input."
+msgstr ""
+"Värdet kan vara ett enkelt kommandonamn eller ett kommando med argument och "
+"får använda skalcitering (bakåtstreck, enkla citattecken eller dubbla "
+"citattecken).  Det får inte använda rörledningar för att koppla ihop flera "
+"kommando; om du behöver detta så använd ett inkapslingsskript som kan ta "
+"filen som ska visas antingen som ett argument eller via standard in."
+
+#. type: TP
+#: ../../man/man1/man.man1:893
+#, no-wrap
+msgid "B<-r\\ >I<prompt>,\\ B<--prompt=>I<prompt>"
+msgstr "B<-r\\ >I<prompt>,\\ B<--prompt=>I<prompt>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:901
+msgid ""
+"If a recent version of B<less> is used as the pager, B<%man%> will attempt "
+"to set its prompt and some sensible options.  The default prompt looks like"
+msgstr ""
+"Om en sen version av B<less> används som sidvisaren kommer B<%man%> att "
+"försöka ställa in dess prompt och en del vettiga flaggor.  Standard prompten "
+"ser ut som"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:905
+msgid "B<\\ Manual page>I<\\ name>B<(>I<sec>B<)>B<\\ line>I<\\ x>"
+msgstr "B<\\ Manualsida>I<\\ namn>B<(>I<avsn>B<)>B<\\ rad>I<\\ x>"
+
+#. The default options are
+#. .BR \-six8 .
+#. The actual default will depend on your chosen
+#. .BR locale .
+#. type: Plain text
+#: ../../man/man1/man.man1:920
+msgid ""
+"where I<name> denotes the manual page name, I<sec> denotes the section it "
+"was found under and I<x> the current line number.  This is achieved by using "
+"the $B<LESS> environment variable."
+msgstr ""
+"där I<namn> betecknar manualsidans namn, I<avsn> betecknar avsnittet i "
+"vilket den hittades och I<x> det aktuella radnumret.  Detta åstadkoms via "
+"miljövariabeln $B<LESS>."
+
+#. You may need to do this if your
+#. version of
+#. .B less
+#. rejects the default options or if you prefer a different prompt.
+#. type: Plain text
+#: ../../man/man1/man.man1:933
+msgid ""
+"Supplying B<-r> with a string will override this default.  The string may "
+"contain the text B<$MAN_PN> which will be expanded to the name of the "
+"current manual page and its section name surrounded by `(' and `)'.  The "
+"string used to produce the default could be expressed as"
+msgstr ""
+"Om B<-r> förses med en sträng kommer den att åsidosätta detta "
+"standardvärde.  Strängen får innehålla texten B<$MAN_PN> vilken kommer att "
+"expanderas till namn på den aktuella manualsidan och dess avsnittsnamn "
+"omgärdat av ”(” och ”)”.  Strängen som används för att producera "
+"standardvärdet kan uttryckas som"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:935
+msgid "B<\\e\\ Manual\\e\\ page\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
+msgstr "B<\\e\\ Manualsida\\e\\ \\e$MAN_PN\\e\\ ?ltrad\\e\\ %lt?L/%L.:>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:937
+msgid "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
+msgstr "B<byte\\e\\ %bB?s/%s..?\\e\\ (SLUT):?pB\\e\\ %pB\\e\\e%..>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:939
+msgid "B<(press h for help or q to quit)>"
+msgstr "B<(tryck på h för hjälp eller q för att avsluta)>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:954
+msgid ""
+"It is broken into three lines here for the sake of readability only.  For "
+"its meaning see the B<less>(1)  manual page.  The prompt string is first "
+"evaluated by the shell.  All double quotes, back-quotes and backslashes in "
+"the prompt must be escaped by a preceding backslash.  The prompt string may "
+"end in an escaped $ which may be followed by further options for less.  By "
+"default B<%man%> sets the B<-ix8> options."
+msgstr ""
+"Den har radbrutits till tre rader enkom för läslighet.  För dess innebörd se "
+"visade i manualsidan för B<less>(1).  Promptsträngen utvärderas av skalet.  "
+"Alla dubbla citattecken, bakåtcitattecken och bakåtstreck i prompten måste "
+"föregås av en kontrollsekvens med ett bakåtstreck.  Promptsträngen får sluta "
+"med en kontrollsekvens följd av ett $ vilket i sin tur kan följas av "
+"ytterligare flaggor till less.  Som standard sätter B<%man%> flaggorna B<-"
+"ix8>."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:959
+msgid ""
+"The $B<MANLESS> environment variable described below may be used to set a "
+"default prompt string if none is supplied on the command line."
+msgstr ""
+"Miljövariabeln $B<MANLESS> som beskrivs nedan kan användas för att ställa in "
+"en standardpromptsträng om ingen anges på kommandoraden."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:985
+msgid ""
+"When viewing a pure I<ascii>(7)  manual page on a 7 bit terminal or terminal "
+"emulator, some characters may not display correctly when using the "
+"I<latin1>(7)  device description with B<GNU> B<nroff>.  This option allows "
+"pure I<ascii> manual pages to be displayed in I<ascii> with the I<latin1> "
+"device.  It will not translate any I<latin1> text.  The following table "
+"shows the translations performed: some parts of it may only be displayed "
+"properly when using B<GNU> B<nroff>'s I<latin1>(7)  device."
+msgstr ""
+"När du tittar på en ren I<ascii>(7) manualsida på en 7-bitars terminal eller "
+"terminalemulator så kan vissa tecken komma att inte visas korrekt när "
+"I<latin1>(7) enhetsbeskrivningen används med B<GNU> B<nroff>.  Denna flagga "
+"låter rena I<ascii> manualsidor visas i I<ascii> med I<latin1>-enheten.  Den "
+"kommer inte att översätta någon I<latin1>-text.  Följande tabell visar "
+"översättningarna som görs: visa delar av den kan endast visas korrekt när "
+"B<GNU> B<nroff>:s I<latin1>(7)-enhet används."
+
+#. type: tbl table
+#: ../../man/man1/man.man1:994
+#, no-wrap
+msgid "Description"
+msgstr "Beskrivning"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:994
+#, no-wrap
+msgid "Octal"
+msgstr "Oktal"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:998
+#, no-wrap
+msgid "continuation hyphen"
+msgstr "bindestreck"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:1001
+#, no-wrap
+msgid "bullet (middle dot)"
+msgstr "punkt (mittpunkt)"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:1004
+#, no-wrap
+msgid "acute accent"
+msgstr "akut accent"
+
+#. type: tbl table
+#: ../../man/man1/man.man1:1007
+#, no-wrap
+msgid "multiplication sign"
+msgstr "multiplikationstecken"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1029
+msgid ""
+"If the I<latin1> column displays correctly, your terminal may be set up for "
+"I<latin1> characters and this option is not necessary.  If the I<latin1> and "
+"I<ascii> columns are identical, you are reading this page using this option "
+"or B<%man%> did not format this page using the I<latin1> device "
+"description.  If the I<latin1> column is missing or corrupt, you may need to "
+"view manual pages with this option."
+msgstr ""
+"Om I<latin1>-kolumnen visas korrekt kan din terminal vara inställd på "
+"I<latin1>-tecken och denna flagga behövs inte.  Om I<latin1>- och I<ascii>-"
+"kolumnerna är identiska läser du denna sida med hjälp av denna flagga eller "
+"så formaterade inte B<%man%> denna sidan via I<latin1>-enhetsbeskrivningen.  "
+"Om I<latin1>-kolumnen saknas eller är korrumperad så kan du vara tvungen att "
+"visa manualsidor med denna flagga."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1040
+msgid ""
+"This option is ignored when using options B<-t>, B<-H>, B<-T>, or B<-Z> and "
+"may be useless for B<nroff> other than B<GNU's>."
+msgstr ""
+"Denna flagga ignoreras om flaggorna B<-t>, B<-H>, B<-T>, eller B<-Z> används "
+"och kan vara meningslös för andra B<nroff> än B<GNU>:s."
+
+#. type: TP
+#: ../../man/man1/man.man1:1040
+#, no-wrap
+msgid "B<-E\\ >I<encoding>,\\ B<--encoding>=I<encoding>"
+msgstr "B<-E\\ >I<kodning>,\\ B<--encoding>=I<kodning>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1051
+msgid ""
+"Generate output for a character encoding other than the default.  For "
+"backward compatibility, I<encoding> may be an B<nroff> device such as "
+"B<ascii>, B<latin1>, or B<utf8> as well as a true character encoding such as "
+"B<UTF-8>."
+msgstr ""
+"Generera utmatning för en annan teckenkodning är standardkodningen.  För "
+"bakåtkompatibilitet kan I<kodning> så väl vara en B<nroff>-enhet, exempelvis "
+"B<ascii>, B<latin1> eller B<utf8>, som en riktig teckenkodning så som "
+"B<UTF-8>."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1060
+msgid ""
+"Normally, B<nroff> will automatically hyphenate text at line breaks even in "
+"words that do not contain hyphens, if it is necessary to do so to lay out "
+"words on a line without excessive spacing.  This option disables automatic "
+"hyphenation, so words will only be hyphenated if they already contain "
+"hyphens."
+msgstr ""
+"Normalt kommer B<nroff> automatiskt avstava text vid radbrytning även för "
+"ord som inte innehåller några bindestreck om detta behövs för att placera ut "
+"orden på en rad utan allt för mycket blanktecken.  Denna flagga inaktiverar "
+"automatisk avstavning så att ord bara kommer att avstavas om de redan "
+"innehåller bindestreck."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1069
+msgid ""
+"If you are writing a manual page and simply want to prevent B<nroff> from "
+"hyphenating a word at an inappropriate point, do not use this option, but "
+"consult the B<nroff> documentation instead; for instance, you can put \"\\e%"
+"\" inside a word to indicate that it may be hyphenated at that point, or put "
+"\"\\e%\" at the start of a word to prevent it from being hyphenated."
+msgstr ""
+"Om du skriver en manualsida och helt enkelt vill förhindra B<nroff> från att "
+"avstava ett ord vid en olämplig punkt ska du inte använda denna flagga utan "
+"konsultera B<nroff>-dokumentationen istället; du kan till exempel placera "
+"”\\e%” inuti ett ord för att indikera att det kan avstavas vid denna "
+"punkten, eller placera ”\\e%” vid ordets början för att förhindra det från "
+"att avstavas."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1076
+msgid ""
+"Normally, B<nroff> will automatically justify text to both margins.  This "
+"option disables full justification, leaving justified only to the left "
+"margin, sometimes called \"ragged-right\" text."
+msgstr ""
+"Normalt sett kommer B<nroff> automatiskt att justera text längs båda "
+"marginalerna.  Denna flagga inaktiverar fullständig justering men tillåter "
+"justering längs vänstermarginalen, ibland kallat ”text med ojämn "
+"högermarginal”."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1083
+msgid ""
+"If you are writing a manual page and simply want to prevent B<nroff> from "
+"justifying certain paragraphs, do not use this option, but consult the "
+"B<nroff> documentation instead; for instance, you can use the \".na\", \".nf"
+"\", \".fi\", and \".ad\" requests to temporarily disable adjusting and "
+"filling."
+msgstr ""
+"Om du skriver en manualsida och helt enkelt vill förhindra B<nroff> från att "
+"justera vissa stycken ska du inte använda denna flaggan, utan konsultera "
+"B<nroff>-dokumentationen istället; du kan till exempel använda ”.na”, ”.nf”, "
+"”.fi” och ”.ad”-begäran för att tillfälligt inaktivera justering och "
+"fyllning."
+
+#. type: TP
+#: ../../man/man1/man.man1:1083
+#, no-wrap
+msgid "B<-p\\ >I<string>,\\ B<--preprocessor=>I<string>"
+msgstr "B<-p\\ >I<sträng>,\\ B<--preprocessor=>I<sträng>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1102
+msgid ""
+"Specify the sequence of preprocessors to run before B<nroff> or B<troff>/"
+"B<groff>.  Not all installations will have a full set of preprocessors.  "
+"Some of the preprocessors and the letters used to designate them are: B<eqn> "
+"(B<e>), B<grap> (B<g>), B<pic> (B<p>), B<tbl> (B<t>), B<vgrind> (B<v>), "
+"B<refer> (B<r>).  This option overrides the $B<MANROFFSEQ> environment "
+"variable.  B<%zsoelim%> is always run as the very first preprocessor."
+msgstr ""
+"Ange sekvensen av preprocessorer som ska köras innan B<nroff> eller B<troff>/"
+"B<groff>.  Inte alla installationer kommer att ha den fullständiga "
+"uppsättningen av preprocessorer.  Visa av preprocessorerna och bokstäverna "
+"som används för att beteckna dem är B<eqn> (B<e>), B<grap> (B<g>), B<pic> "
+"(B<p>), B<tbl> (B<t>), B<vgrind> (B<v>), B<refer> (B<r>).  Denna flagga "
+"åsidosätter miljövariabeln $B<MANROFFSEQ>.  B<%zsoelim%> körs alltid som den "
+"allra första preprocessorn."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1112
+msgid ""
+"Use I<%troff%> to format the manual page to stdout.  This option is not "
+"required in conjunction with B<-H>, B<-T>, or B<-Z>."
+msgstr ""
+"Använd I<%troff%> för att formatera manualsidan till standard ut.  Denna "
+"flagga krävs inte i samband med B<-H>, B<-T>, eller B<-Z>."
+
+#. type: TP
+#: ../../man/man1/man.man1:1112
+#, no-wrap
+msgid "B<-T>[I<device\\/>], B<--troff-device>[=I<device\\/>]"
+msgstr "B<-T>[I<enhet\\/>], B<--troff-device>[=I<enhet\\/>]"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1124
+msgid ""
+"This option is used to change B<groff> (or possibly B<troff's>)  output to "
+"be suitable for a device other than the default.  It implies B<-t>.  "
+"Examples (provided with Groff-1.17) include B<dvi>, B<latin1>, B<ps>, "
+"B<utf8>, B<X75> and B<X100>."
+msgstr ""
+"Denna flagga används för att ändra B<groff>:s (eller möjligtvis B<troff>:s) "
+"utmatning för att vara lämplig för en enhet annan än standardenheten.  Den "
+"implicerar B<-t>.  Exempel (som tillhandahålls av Groff-1.17) inkluderar "
+"B<dvi>, B<latin1>, B<ps>, B<utf8>, B<X75> och B<X100>."
+
+#. type: TP
+#: ../../man/man1/man.man1:1124
+#, no-wrap
+msgid "B<-H>[I<browser\\/>], B<--html>[=I<browser\\/>]"
+msgstr "B<-H>[I<webbläsare\\/>], B<--html>[=I<webbläsare\\/>]"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1140
+msgid ""
+"This option will cause B<groff> to produce HTML output, and will display "
+"that output in a web browser.  The choice of browser is determined by the "
+"optional I<browser> argument if one is provided, by the $B<BROWSER> "
+"environment variable, or by a compile-time default if that is unset (usually "
+"B<lynx>).  This option implies B<-t>, and will only work with B<GNU> "
+"B<troff>."
+msgstr ""
+"Denna flagga kommer att få B<groff> att producera HTML-utmatning och kommer "
+"att visa den utmatningen i en webbläsare.  Valet av webbläsare bestäms av "
+"det valfria argumentet I<webbläsare> om det finns angivet, av miljövariabeln "
+"$B<BROWSER> eller av ett standardvärde vid kompileringen (vanligtvis "
+"B<lynx>).  Denna flagga implicerar B<-t> och kommer endast att fungera med "
+"B<GNU> B<troff>."
+
+#. type: TP
+#: ../../man/man1/man.man1:1140
+#, no-wrap
+msgid "B<-X>[I<dpi\\/>], B<--gxditview>[=I<dpi\\/>]"
+msgstr "B<-X>[I<ppt\\/>], B<--gxditview>[=I<ppt\\/>]"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1154
+msgid ""
+"This option displays the output of B<groff> in a graphical window using the "
+"B<gxditview> program.  The I<dpi> (dots per inch) may be 75, 75-12, 100, or "
+"100-12, defaulting to 75; the -12 variants use a 12-point base font.  This "
+"option implies B<-T> with the X75, X75-12, X100, or X100-12 device "
+"respectively."
+msgstr ""
+"Denna flagga visar utmatningen från B<groff> i ett grafiskt fönster med "
+"hjälp av programmet B<gxditview>.  I<ppt> (punkter per tum) kan vara 75, "
+"75-12, 100, eller 100-12 där standardvärdet är 75; varianterna med -12 "
+"använder ett 12-punkters bastypsnitt.  Denna flagga implicerar B<-T> med "
+"enheten X75, X75-12, X100, eller X100-12 respektive."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1170
+msgid ""
+"B<groff> will run B<troff> and then use an appropriate post-processor to "
+"produce output suitable for the chosen device.  If I<%troff%> is B<groff>, "
+"this option is passed to B<groff> and will suppress the use of a post-"
+"processor.  It implies B<-t>."
+msgstr ""
+"B<groff> kommer att köra B<troff> och sedan använda en lämplig postprocessor "
+"för att producera utmatning lämplig för den valda enheten.  Om I<%troff%> är "
+"B<groff> kommer denna flagga att skickas vidare till B<groff> och "
+"undertrycka användandet av en postprocessor.  Den implicerar B<-t>."
+
+#. type: SS
+#: ../../man/man1/man.man1:1170
+#, no-wrap
+msgid "Getting help"
+msgstr "Att få hjälp"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1193
+msgid "A child process returned a non-zero exit status."
+msgstr "En barnprocess returnerade en slutstatus som inte var noll."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1196
+msgid ""
+"At least one of the pages/files/keywords didn't exist or wasn't matched."
+msgstr ""
+"Åtminstone en av sidorna/filerna/nyckelorden existerade inte eller matchades "
+"inte."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1203
+msgid ""
+"If $B<MANPATH> is set, its value is used as the path to search for manual "
+"pages."
+msgstr ""
+"Om $B<MANPATH> är satt kommer dess värde att användas som sökvägen att "
+"genomsöka efter manualsidor."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1214
+msgid ""
+"The contents of $B<MANROFFOPT> are added to the command line every time "
+"B<man> invokes the formatter (B<nroff>, B<troff>, or B<groff>)."
+msgstr ""
+"Innehållet i $B<MANROFFOPT> läggs till kommandoraden varje gång B<man> "
+"startar formateraren (B<nroff>, B<troff> eller B<groff>)."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1221
+msgid ""
+"If $B<MANROFFSEQ> is set, its value is used to determine the set of "
+"preprocessors to pass each manual page through.  The default preprocessor "
+"list is system dependent."
+msgstr ""
+"Om $B<MANROFFSEQ> är satt kommer dess värde att användas för att bestämma "
+"uppsättningen av preprocessorer som varje manualsida ska propageras genom.  "
+"Standard preprocessorlistan är systemberoende."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1231 ../../man/man8/catman.man8:88
+msgid ""
+"If $B<MANSECT> is set, its value is a colon-delimited list of sections and "
+"it is used to determine which manual sections to search and in what order.  "
+"The default is \"%sections%\", unless overridden by the B<SECTION> directive "
+"in I<%manpath_config_file%>."
+msgstr ""
+"Om $B<MANSECT> är satt är dess värde en kolonavgränsad lista över avsnitt "
+"och den används för att bestämma vilka manualavsnitt som ska genomsökas och "
+"i vilken ordning.  Standardvärdet är ”%sections%” om det inte åsidosatts av "
+"direktivet B<SECTION> i I<%manpath_config_file%>."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1244
+msgid ""
+"If $B<MANPAGER> or $B<PAGER> is set ($B<MANPAGER> is used in preference), "
+"its value is used as the name of the program used to display the manual "
+"page.  By default, B<%pager%> is used."
+msgstr ""
+"Om $B<MANPAGER> eller $B<PAGER> är satt ($B<MANPAGER> används i första hand) "
+"så kommer dess värde att användas som namnet på det program som används för "
+"att visa manualsidan.  Som standard kommer B<%pager%> att användas."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1269
+msgid ""
+"If $B<MANLESS> is set, its value will be used as the default prompt string "
+"for the B<less> pager, as if it had been passed using the B<-r> option (so "
+"any occurrences of the text B<$MAN_PN> will be expanded in the same way).  "
+"For example, if you want to set the prompt string unconditionally to \\(lqmy "
+"prompt string\\(rq, set $B<MANLESS> to \\(oqB<-Psmy\\ prompt\\ string>"
+"\\(cq.  Using the B<-r> option overrides this environment variable."
+msgstr ""
+"Om $B<MANLESS> är satt kommer dess värde att användas som "
+"standardpromptsträngen för sidvisaren B<less>, som om den hade angetts via "
+"flaggan B<-r> (så förekomster av texten B<$MAN_PN> kommer att expanderas på "
+"samma sätt).  Om du till exempel ovillkorligen vill ställa in promptsträngen "
+"till \\(lqmin promptsträng\\(rq, sätt $B<MANLESS> till \\(oqB<-Psmin\\ "
+"promptsträng>\\(cq.  Om flaggan B<-r> används så åsidosätts denna "
+"miljövariabel."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1285
+msgid ""
+"If $B<BROWSER> is set, its value is a colon-delimited list of commands, each "
+"of which in turn is used to try to start a web browser for B<man> B<--"
+"html>.  In each command, I<%s> is replaced by a filename containing the HTML "
+"output from B<groff>, I<%%> is replaced by a single percent sign (%), and I<"
+"%c> is replaced by a colon (:)."
+msgstr ""
+"Om $B<BROWSER> är dess värde en kolonavgränsad lista av kommandon, som vart "
+"och ett kommer att användas för att försöka starta en webbläsare åt B<man> "
+"B<--html>.  I varje kommando kommer I<%s> att ersättas med ett filnamn "
+"innehållandes HTML-utmatningen från B<groff>, I<%%> ersätts med ett enkelt "
+"procenttecken (%) och I<%c> ersätts med ett kolon (:)."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1308
+msgid ""
+"If $B<MANOPT> is set, it will be parsed prior to B<%man%'s> command line and "
+"is expected to be in a similar format.  As all of the other B<%man%> "
+"specific environment variables can be expressed as command line options, and "
+"are thus candidates for being included in $B<MANOPT> it is expected that "
+"they will become obsolete.  N.B.  All spaces that should be interpreted as "
+"part of an option's argument must be escaped."
+msgstr ""
+"Om $B<MANOPT> är satt kommer den att tolkas innan B<%man%>:s kommandorad och "
+"förväntas att följa samma format.  Eftersom alla andra B<%man%>-specifika "
+"miljövariabler kan uttryckas som kommandoradsflaggor och därför är "
+"kandidater att inkluderas i $B<MANOPT> är det förväntat att de kommer att "
+"bli föråldrade.  Notera: alla blanksteg som ska tolkas som en del av en "
+"flaggas argument måste föregås av en kontrollsekvens."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1322
+msgid ""
+"If $B<MANWIDTH> is set, its value is used as the line length for which "
+"manual pages should be formatted.  If it is not set, manual pages will be "
+"formatted with a line length appropriate to the current terminal (using the "
+"value of $B<COLUMNS>, an B<ioctl>(2)  if available, or falling back to 80 "
+"characters if neither is available).  Cat pages will only be saved when the "
+"default formatting can be used, that is when the terminal line length is "
+"between 66 and 80 characters."
+msgstr ""
+"Om $B<MANWIDTH> är satt kommer dess värde att användas som radbredden för "
+"vilken manualsidor ska formateras.  Om den inte är satt kommer manualsidor "
+"att formateras med en radbredd som är lämplig för en aktuella terminalen "
+"(där värdet från $B<COLUMNS>, en B<ioctl>(2) användas eller så faller den "
+"tillbaka på 80 tecken om ingendera är tillgänglig).  Cat-sidor kommer endast "
+"att sparas om standardformateringen kan användas, det vill säga när "
+"terminalradbredden är mellan 66 och 80 tecken."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1333
+msgid ""
+"Normally, when output is not being directed to a terminal (such as to a file "
+"or a pipe), formatting characters are discarded to make it easier to read "
+"the result without special tools.  However, if $B<MAN_KEEP_FORMATTING> is "
+"set to any non-empty value, these formatting characters are retained.  This "
+"may be useful for wrappers around B<%man%> that can interpret formatting "
+"characters."
+msgstr ""
+"När utmatning inte dirigeras till en terminal utan exempelvis till en fil "
+"eller en rörledning så kasseras formateringstecken för att göra det enklare "
+"att läsa resultatet utan något särskilt verktyg.  Om $B<MAN_KEEP_FORMATTING> "
+"är satt till ett icke-tomt värde kommer dessa formateringstecken dock att "
+"bibehållas.  Detta kan vara användbart vid inkapsling av B<%man%> som kan "
+"tolka formateringstecken."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1346
+msgid ""
+"Normally, when output is being directed to a terminal (usually to a pager), "
+"any error output from the command used to produce formatted versions of "
+"manual pages is discarded to avoid interfering with the pager's display.  "
+"Programs such as B<groff> often produce relatively minor error messages "
+"about typographical problems such as poor alignment, which are unsightly and "
+"generally confusing when displayed along with the manual page.  However, "
+"some users want to see them anyway, so, if $B<MAN_KEEP_STDERR> is set to any "
+"non-empty value, error output will be displayed as usual."
+msgstr ""
+"När utmatning inte dirigeras till en terminal (vanligtvis en sidvisare) "
+"kommer felutskrifter från kommandot som använts för att producera "
+"formaterade versioner av manualsidor att kasseras för att undvika störning i "
+"sidvisarens visning.  Program så som B<groff> producerar ofta mindre "
+"felmeddelanden om typografiska problem så som dålig justering som är fula "
+"och allmänt förvirrande när de visas samtidigt med manualsidan.  Vissa "
+"användare vill dock se dem ändå så om $B<MAN_KEEP_STDERR> är satt till ett "
+"icke-tomt värde kommer felutskrifter att visas som normalt."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1358
+msgid ""
+"Depending on system and implementation, either or both of $B<LANG> and "
+"$B<LC_MESSAGES> will be interrogated for the current message locale.  B<%man"
+"%> will display its messages in that locale (if available).  See "
+"B<setlocale>(3)  for precise details."
+msgstr ""
+"Beroende på system och implementation kommer endera eller båda av $B<LANG> "
+"och $B<LC_MESSAGE> att studeras för att bestämma den aktuella "
+"meddelandelokalen.  B<%man%> kommer att visa sina meddelanden i den lokalen "
+"(om den finns tillgänglig).  Se B<setlocale>(3) för vidare detaljer."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1362 ../../man/man1/manpath.man1:128
+#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:195
+msgid "man-db configuration file."
+msgstr "man-db-konfigurationsfil."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1365
+msgid "A global manual page hierarchy."
+msgstr "En global hierarki av manualsidor."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1394
+msgid "the man-db package manual, B<FSSTND>"
+msgstr "man-db paketets manual, B<FSSTND>"
+
+#. type: SH
+#: ../../man/man1/man.man1:1394
+#, no-wrap
+msgid "HISTORY"
+msgstr "HISTORIA"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1396
+msgid ""
+"1990, 1991 \\(en Originally written by John W.\\& Eaton (jwe@che.utexas.edu)."
+msgstr ""
+"1990, 1991 \\(en Skrevs i original av John W.\\& Eaton (jwe@che.utexas.edu)."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1399
+msgid ""
+"Dec 23 1992: Rik Faith (faith@cs.unc.edu) applied bug fixes supplied by "
+"Willem Kasdorp (wkasdo@nikhefk.nikef.nl)."
+msgstr ""
+"23:e dec 1992: Rik Faith (faith@cs.unc.edu) lade till felfixar från Willem "
+"Kasdorp (wkasdo@nikhefk.nikef.nl)."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1403
+msgid ""
+"30th April 1994 \\(en 23rd February 2000: Wilf. (G.Wilford@ee.surrey.ac.uk)  "
+"has been developing and maintaining this package with the help of a few "
+"dedicated people."
+msgstr ""
+"30:e april 1994 \\(en 23:e februari 2000: Wilf. (G.Wilford@ee.surrey.ac.uk)  "
+"har utvecklat och underhållit detta paket med hjälp av ett par hängivna "
+"individer."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1407
+msgid ""
+"30th October 1996 \\(en 30th March 2001: Fabrizio Polacco "
+"E<lt>fpolacco@debian.orgE<gt> maintained and enhanced this package for the "
+"Debian project, with the help of all the community."
+msgstr ""
+"30:e oktober 1996 \\(en 30:e mars 2001: Farizio Polacco E<lt>fpolacco@debian."
+"orgE<gt> underhöll och förbättrade detta paket för Debian-projektet, med "
+"hjälp från hela gemenskapen."
+
+#. type: Plain text
+#: ../../man/man1/man.man1:1409
+msgid ""
+"31st March 2001 \\(en present day: Colin Watson E<lt>cjwatson@debian."
+"orgE<gt> is now developing and maintaining man-db."
+msgstr ""
+"31:a mars 2001 \\(en tidag: Colin Watson E<lt>cjwatson@debian.orgE<gt> "
+"utvecklar och underhåller nu man-db."
+
+#. type: TH
+#: ../../man/man1/manconv.man1:9
+#, no-wrap
+msgid "%thmanconv%"
+msgstr "%thmanconv%"
+
+#. type: Plain text
+#: ../../man/man1/manconv.man1:12
+msgid "%manconv% - convert manual page from one encoding to another"
+msgstr "%manconv% - konvertera manualsida från en kodning till en annan"
+
+#. type: Plain text
+#: ../../man/man1/manconv.man1:20
+msgid ""
+"B<%manconv%> B<-f> I<from-code>\\|[:I<from-code>\\|.\\|.\\|.] B<-t> I<to-"
+"code> [\\|B<-dqhV>\\|] [\\|I<filename>\\|]"
+msgstr ""
+"B<%manconv%> B<-f> I<från-kod>\\|[:I<från-kod>\\|.\\|.\\|.] B<-t> I<till-"
+"kod> [\\|B<-dqhV>\\|] [\\|I<filnamn>\\|]"
+
+#. type: Plain text
+#: ../../man/man1/manconv.man1:30
+msgid ""
+"B<%manconv%> converts a manual page from one encoding to another, like "
+"B<iconv>.  Unlike B<iconv>, it can try multiple possible input encodings in "
+"sequence.  This is useful for manual pages installed in directories without "
+"an explicit encoding declaration, since they may be in UTF-8 or in a legacy "
+"character set."
+msgstr ""
+"B<%mancov%> konverterar en manualsida från en kodning till en annan, likt "
+"B<iconv>.  Till skillnad från B<iconv> kan det prova flera möjliga "
+"inmatningskodningar i sekvens.  Detta är användbart för manualsidor som "
+"installerats i kataloger utan en uttrycklig kodningsdeklaration eftersom de "
+"kan använda UTF-8 eller någon föråldrad teckenkodning."
+
+#. type: Plain text
+#: ../../man/man1/manconv.man1:36
+msgid ""
+"If an encoding declaration is found on the first line of the manual page, "
+"that declaration overrides any input encodings specified on B<%manconv%>'s "
+"command line.  Encoding declarations have the following form:"
+msgstr ""
+"Om en kodningsdeklaration hittas på första raden i manualsidan kommer den "
+"deklarationen att åsidosätta inmatningskodningar som anges på B<%manconv%>:s "
+"kommandorad.  Kodningsdeklarationer anges på följande form:"
+
+#. type: Plain text
+#: ../../man/man1/manconv.man1:44
+msgid "or (if manual page preprocessors are also to be declared):"
+msgstr "eller (om preprocessorer för manualsidans också ska deklareras):"
+
+#. type: TP
+#: ../../man/man1/manconv.man1:51
+#, no-wrap
+msgid "B<-f> I<encodings>, B<--from-code> I<encodings>"
+msgstr "B<-f> I<kodningar>, B<--from-code> I<kodningar>"
+
+#. type: Plain text
+#: ../../man/man1/manconv.man1:56
+msgid ""
+"Try each of I<encodings> (a colon-separated list) in sequence as the input "
+"encoding."
+msgstr ""
+"Prova var och en av I<kodningar>:na (en kolonseparerad lista) i sekvens som "
+"inmatningskodningen."
+
+#. type: TP
+#: ../../man/man1/manconv.man1:56
+#, no-wrap
+msgid "B<-t> I<encoding>, B<--to-code> I<encoding>"
+msgstr "B<-t> I<kodning>, B<--to-code> I<kodning>"
+
+#. type: Plain text
+#: ../../man/man1/manconv.man1:60
+msgid "Convert the manual page to I<encoding>."
+msgstr "Konvertera manualsidan till I<kodning>."
+
+#. type: Plain text
+#: ../../man/man1/manconv.man1:63
+msgid "Do not issue error messages when the page cannot be converted."
+msgstr "Mata inte ut felmeddelanden när sidan inte kan konverteras."
+
+#. type: TH
+#: ../../man/man1/manpath.man1:12
+#, no-wrap
+msgid "%thmanpath%"
+msgstr "%thmanpath%"
+
+#. type: Plain text
+#: ../../man/man1/manpath.man1:15
+msgid "%manpath% - determine search path for manual pages"
+msgstr "%manpath% - bestäm sökvägen för manualsidor"
+
+#. type: Plain text
+#: ../../man/man1/manpath.man1:22
+msgid ""
+"B<%manpath%> [\\|B<-qgdc?V>\\|] [\\|B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|] "
+"[\\|B<-C> I<file>\\|]"
+msgstr ""
+"B<%manpath%> [\\|B<-qgdc?V>\\|] [\\|B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|] "
+"[\\|B<-C> I<fil>\\|]"
+
+#. type: Plain text
+#: ../../man/man1/manpath.man1:32
+msgid ""
+"If $B<MANPATH> is set, B<%manpath%> will simply display its contents and "
+"issue a warning.  If not, B<%manpath%> will determine a suitable manual page "
+"hierarchy search path and display the results."
+msgstr ""
+"Om $B<MANPATH> är satt kommer B<%manpath%> helt enkelt att visa dess "
+"innehåll och mata ut en varning.  Om inte så kommer B<%manpath%> att "
+"bestämma en lämplig sökväg för hierarkier av manualsidor och visa resultaten."
+
+#. type: Plain text
+#: ../../man/man1/manpath.man1:37
+msgid ""
+"The colon-delimited path is determined using information gained from the man-"
+"db configuration file - (I<%manpath_config_file%>)  and the user's "
+"environment."
+msgstr ""
+"Den kolonavgränsade sökvägen bestäms med information som hämtats från "
+"konfigurationsfilen för man-db - (I<%manpath_config_file%>) och användarens "
+"miljö."
+
+#. type: Plain text
+#: ../../man/man1/manpath.man1:41
+msgid "Do not issue warnings."
+msgstr "Mata inte ut varningar."
+
+#. type: Plain text
+#: ../../man/man1/manpath.man1:49
+msgid ""
+"Produce a catpath as opposed to a manpath.  Once the manpath is determined, "
+"each path element is converted to its relative catpath."
+msgstr ""
+"Producera en cat-sökväg till skillnad från en man-sökväg.  När man-sökvägen "
+"är bestämd kommer varje element i sökvägen att konverteras till dess "
+"relativa cat-sökväg."
+
+#
+#.  Due to the rather silly limit of 6 args per request in some `native'
+#.  *roff compilers, we have do the following to get the two-line
+#.  hanging tag on one line. .PP to begin a new paragraph, then the
+#.  tag, then .RS (start relative indent), the text, finally .RE
+#.  (end relative indent).
+#. type: Plain text
+#: ../../man/man1/manpath.man1:60
+msgid ""
+"Produce a manpath consisting of all paths named as `global' within the man-"
+"db configuration file."
+msgstr ""
+"Producera en man-sökväg som består av alla sökvägar som benämnts som "
+"”globala” i konfigurationsfilen för man-db."
+
+#. type: Plain text
+#: ../../man/man1/manpath.man1:73
+msgid ""
+"If this system has access to other operating system's manual hierarchies, "
+"this option can be used to include them in the output of B<%manpath%>.  To "
+"include NewOS's manual page hierarchies use the option B<-m> B<NewOS>."
+msgstr ""
+"Om detta system har tillgång till andra operativsystems hierarkier av "
+"manualsidor kan denna flagga användas för inkludera dem i utmatningen från B<"
+"%manpath%>.  För att inkludera hierarkierna av manualsidor för NyttOS använd "
+"flaggan B<-m> B<NyttOS>."
+
+#. type: Plain text
+#: ../../man/man1/manpath.man1:84
+msgid ""
+"The I<system> specified can be a combination of comma delimited operating "
+"system names.  To include the native operating system's manual page "
+"hierarchies, the system name B<man> must be included in the argument "
+"string.  This option will override the $B<SYSTEM> environment variable."
+msgstr ""
+"Det angivna I<system>-et kan vara en kombination av kommaavgränsade "
+"operativsystemsnamn.  För att inkludera det aktuella operativ systemets "
+"hierarkier av manualsidor måste systemnamnet B<man> inkluderas i "
+"argumentsträngen.  Denna flagga kommer att åsidosätta miljövariabeln "
+"$B<SYSTEM>."
+
+#. type: Plain text
+#: ../../man/man1/manpath.man1:116
+msgid ""
+"If $B<MANPATH> is set, B<%manpath%> displays its value rather than "
+"determining it on the fly.  If $B<MANPATH> is prefixed by a colon, then the "
+"value of the variable is appended to the list determined from the content of "
+"the configuration files.  If the colon comes at the end of the value in the "
+"variable, then the determined list is appended to the content of the "
+"variable.  If the value of the variable contains a double colon (B<::>), "
+"then the determined list is inserted in the middle of the value, between the "
+"two colons."
+msgstr ""
+"Om $B<MANPATH> är satt kommer B<%manpath%> att visa dess värde snarare än "
+"att bestämma det i farten.  Om $B<MANPATH> föregås av ett kolon så kommer "
+"variabelns värde att läggas till på slutet av den lista som bestämts från "
+"innehållet i konfigurationsfilen.  Om kolonet återfinns i slutet på värdet i "
+"variabeln kommer den bestämda lista att läggas till på slutet av variabeln.  "
+"Om variabelns värde innehåller dubbla kolon (B<::>) så kommer den bestämda "
+"listan att infogas mitt i värdet mellan de två kolonen."
+
+#. type: TH
+#: ../../man/man1/whatis.man1:12
+#, no-wrap
+msgid "%thwhatis%"
+msgstr "%thwhatis%"
+
+#. type: Plain text
+#: ../../man/man1/whatis.man1:15
+msgid "%whatis% - display one-line manual page descriptions"
+msgstr "%whatis% - visa en-rads-beskrivningar för manualsidor"
+
+#. type: Plain text
+#: ../../man/man1/whatis.man1:32
+msgid ""
+"B<%whatis%> [\\|B<-dlv?V>\\|] [\\|B<-r>\\||\\|B<-w>\\|] [\\|B<-s> I<list>"
+"\\|] [\\|B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|] [\\|B<-M> I<path>\\|] [\\|"
+"B<-L> I<locale>\\|] [\\|B<-C> I<file>\\|] I<name> \\&.\\|.\\|."
+msgstr ""
+"B<%whatis%> [\\|B<-dlv?V>\\|] [\\|B<-r>\\||\\|B<-w>\\|] [\\|B<-s> I<lista>"
+"\\|] [\\|B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|] [\\|B<-M> I<sökväg>\\|] "
+"[\\|B<-L> I<lokal>\\|] [\\|B<-C> I<fil>\\|] I<namn> \\&.\\|.\\|."
+
+#. type: Plain text
+#: ../../man/man1/whatis.man1:39
+msgid ""
+"Each manual page has a short description available within it.  B<%whatis%> "
+"searches the manual page names and displays the manual page descriptions of "
+"any I<name> matched."
+msgstr ""
+"Varje manualsida har en kort beskrivning inuti sig.  B<%whatis%> genomsöker "
+"namnen på manualsidor och visar manualsidornas beskrivningar om något "
+"I<namn> matchar."
+
+#. type: Plain text
+#: ../../man/man1/whatis.man1:49
+msgid ""
+"I<name> may contain wildcards (B<-w>)  or be a regular expression (B<-r>).  "
+"Using these options, it may be necessary to quote the I<name> or escape "
+"(\\e) the special characters to stop the shell from interpreting them."
+msgstr ""
+"I<namn> kan innehålla jokertecken (B<-w>) eller eller vara ett reguljärt "
+"uttryck (B<-r>).  Om dessa flaggor används kan det vara nödvändigt att "
+"citera I<namn> eller använda kontrollsekvenser (\\e) framför speciella "
+"tecken för att förhindra skalet från att tolka dem."
+
+#. type: Plain text
+#: ../../man/man1/whatis.man1:61
+msgid ""
+"B<index> databases are used during the search, and are updated by the B<"
+"%mandb%> program.  Depending on your installation, this may be run by a "
+"periodic cron job, or may need to be run manually after new manual pages "
+"have been installed.  To produce an old style text B<whatis> database from "
+"the relative B<index> database, issue the command:"
+msgstr ""
+"B<index>-databaser används under sökningen och uppdateras av programmet B<"
+"%mandb%>.  Beroende på din installation kan detta köras som ett periodiskt "
+"cron-jobb eller behöva köras manuellt efter att nya manualsidor har "
+"installerats.  För att producera en B<whatis>-textdatabas av gammalt snitt "
+"från den relativa B<index>-databasen, använd kommandot:"
+
+#. type: Plain text
+#: ../../man/man1/whatis.man1:66
+msgid "B<%whatis% -M> I<manpath> B<-w '*' | sort E<gt>> I<manpath/whatis>"
+msgstr ""
+"B<%whatis% -M> I<man-sökväg> B<-w '*' | sort E<gt>> I<man-sökväg/whatis>"
+
+#. type: Plain text
+#: ../../man/man1/whatis.man1:71
+msgid "where I<manpath> is a manual page hierarchy such as I</usr/man>."
+msgstr "där I<man-sökväg> är en hierarki av manualsidor så som I</usr/man>."
+
+#. type: Plain text
+#: ../../man/man1/whatis.man1:89
+msgid ""
+"Interpret each I<name> as a regular expression.  If a I<name> matches any "
+"part of a page name, a match will be made.  This option causes B<%whatis%> "
+"to be somewhat slower due to the nature of database searches."
+msgstr ""
+"Tolka varje I<namn> som ett reguljärt uttryck.  Om ett I<namn> matchar någon "
+"dela av ett sidnamn kommer ett matchning att lyckas.  Denna flagga får B<"
+"%whatis%> att bli något långsammare på grund av databassökningarna."
+
+#. type: Plain text
+#: ../../man/man1/whatis.man1:100
+msgid ""
+"Interpret each I<name> as a pattern containing shell style wildcards.  For a "
+"match to be made, an expanded I<name> must match the entire page name.  This "
+"option causes B<%whatis%> to be somewhat slower due to the nature of "
+"database searches."
+msgstr ""
+"Tolka varje I<namn> som ett mönster som innehåller jokertecken i skalstil.  "
+"För att en matchning ska lyckas måste ett expanderat I<namn> matcha hela "
+"sidnamnet.  Denna flagga får B<%whatis%> att bli något långsammare på grund "
+"av databassökningarna."
+
+#. type: Plain text
+#: ../../man/man1/whatis.man1:140
+msgid ""
+"If this system has access to other operating system's manual page names, "
+"they can be accessed using this option.  To search NewOS's manual page "
+"names, use the option B<-m> B<NewOS>."
+msgstr ""
+"Om detta systemet har tillgång till andra operativsystems namn på "
+"manualsidor kan de nås via denna flaggan.  För att genomsöka namnen på "
+"manualsidorna för NyttOS, använd flaggan B<-m> B<NyttOS>."
+
+#. type: Plain text
+#: ../../man/man1/whatis.man1:151
+msgid ""
+"The I<system> specified can be a combination of comma delimited operating "
+"system names.  To include a search of the native operating system's manual "
+"page names, include the system name B<man> in the argument string.  This "
+"option will override the $B<SYSTEM> environment variable."
+msgstr ""
+"Det I<system> som anges kan vara en kombination av kommaavgränsade "
+"operativsystemsnamn.  För att inkludera en sökning för det aktuella "
+"operativsystemets namn på manualsidor, inkludera systemnamnet B<man> i "
+"argumentsträngen.  Denna flagga kommer att åsidosätta miljövariabeln "
+"$B<SYSTEM>."
+
+#. type: TH
+#: ../../man/man1/zsoelim.man1:12
+#, no-wrap
+msgid "%thzsoelim%"
+msgstr "%thzsoelim%"
+
+#. type: Plain text
+#: ../../man/man1/zsoelim.man1:15
+msgid "%zsoelim% - satisfy .so requests in roff input"
+msgstr "%zsoelim% - uppfyll .so-begäran i roff-inmatning"
+
+#. type: Plain text
+#: ../../man/man1/zsoelim.man1:20
+msgid "B<%zsoelim%> [\\|B<-CVh>\\|] [\\|I<file> \\&.\\|.\\|.\\|]"
+msgstr "B<%zsoelim%> [\\|B<-CVh>\\|] [\\|I<fil> \\&.\\|.\\|.\\|]"
+
+#. type: Plain text
+#: ../../man/man1/zsoelim.man1:26
+msgid ""
+"B<%zsoelim%> parses I<file> arguments, or if none are specified, its "
+"standard input for lines of the form:"
+msgstr ""
+"B<%zsoelim%> tolkar I<fil> argumenten, eller om inget angivits, dess "
+"standard inmatning efter rader på formen:"
+
+#. type: Plain text
+#: ../../man/man1/zsoelim.man1:29
+msgid "B<.so> E<lt>\\|I<filename>\\|E<gt>"
+msgstr "B<.so> E<lt>\\|I<filnamn>\\|E<gt>"
+
+#. type: Plain text
+#: ../../man/man1/zsoelim.man1:48
+msgid ""
+"These requests are replaced by the contents of the I<filename> specified.  "
+"If the request cannot be met, B<%zsoelim%> looks for I<filename.ext> where "
+"I<.ext> can be one of B<.gz>, B<.Z> or B<.z>.  Other extension types may be "
+"supported depending upon compile time options.  If the request can be met by "
+"a compressed file, this file is decompressed using an appropriate "
+"decompressor and its output is used to satisfy the request."
+msgstr ""
+"Dessa begäran ersätts av innehåller från det I<filnamn> som angivits.  Om "
+"begäran inte kan uppfyllas letar B<%zsoelim%> efter I<filnamn.änd> där I<."
+"änd> kan vara någon av B<.gz>, B<.Z> eller B<.z>.  Andra ändelsetyper kan ha "
+"stöd beroende på vilka flaggor som använts vid kompileringen.  Om begäran "
+"kan uppfyllas av en komprimerad fil kommer denna fil att dekomprimeras med "
+"en lämplig dekomprimerare och dess utmatning kommer att användas för att "
+"uppfylla begäran."
+
+#. type: Plain text
+#: ../../man/man1/zsoelim.man1:55
+msgid ""
+"Traditionally, B<soelim> programs were used to allow roff preprocessors to "
+"be able to preprocess the files referred to by the requests.  This "
+"particular version was written to circumvent problems created by support for "
+"compressed manual pages."
+msgstr ""
+"Traditionellt användes B<soelim>-program för att låta roff-preprocessorer "
+"kunna preprocessa filer som refererats till av begäran.  Denna speciella "
+"version skrevs för att komma runt problemen som skapades då stöd för "
+"komprimerade manualsidor lades till."
+
+#. type: Plain text
+#: ../../man/man1/zsoelim.man1:64
+msgid ""
+"This flag is available for compatibility with other B<soelim> programs.  Its "
+"use is to enable .so requests followed by something other than whitespace.  "
+"As this is already the default behaviour, it is ignored."
+msgstr ""
+"Denna flagga är tillgänglig för kompatibilitet med andra B<soelim>-program.  "
+"Den är tänkt att tillåta .so-begäran att åtföljas av något annat än "
+"blanksteg.  Då detta redan är standardbeteendet ignoreras den."
+
+#. type: TH
+#: ../../man/man5/manpath.man5:13
+#, no-wrap
+msgid "MANPATH"
+msgstr "MANPATH"
+
+#. type: TH
+#: ../../man/man5/manpath.man5:13
+#, no-wrap
+msgid "%manpath_config_file%"
+msgstr "%manpath_config_file%"
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:16
+msgid "manpath - format of the %manpath_config_file% file"
+msgstr "manpath - formatet för filen %manpath_config_file%"
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:21
+msgid ""
+"The manpath configuration file is used by the manual page utilities to "
+"assess users' manpaths at run time, to indicate which manual page "
+"hierarchies (manpaths) are to be treated as system hierarchies and to assign "
+"them directories to be used for storing cat files."
+msgstr ""
+"Konfigurationsfilen för manpath används av verktygen för manualsidor för att "
+"bedöma användarnas man-sökvägar i körtid, för att indikera vilka hierarkier "
+"av manualsidor (man-sökvägar) som ska hanteras system systemhierarkier och "
+"för att tilldela dem kataloger som används för att lagra cat-filer."
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:26
+msgid ""
+"If the environment variable $B<MANPATH> is already set, the information "
+"contained within %manpath_config_file% will not override it."
+msgstr ""
+"Om miljövariabeln $B<MANPATH> redan är satt kommer informationen i "
+"%manpath_config_file% inte att åsidosätta den."
+
+#. type: SH
+#: ../../man/man5/manpath.man5:26
+#, no-wrap
+msgid "FORMAT"
+msgstr "FORMAT"
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:28
+msgid "The following field types are currently recognised:"
+msgstr "Följande fälttyper erkänns för närvarande:"
+
+#. type: TP
+#: ../../man/man5/manpath.man5:28
+#, no-wrap
+msgid "B<#>I<\\ comment>"
+msgstr "B<#>I<\\ kommentar>"
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:33
+msgid ""
+"Blank lines or those beginning with a B<#> will be treated as comments and "
+"ignored."
+msgstr ""
+"Tomma rader eller de som börjar med ett B<#> kommer att hanteras som "
+"kommentarer och ignoreras."
+
+#. type: TP
+#: ../../man/man5/manpath.man5:33
+#, no-wrap
+msgid "B<MANDATORY_MANPATH>I<\\ manpath_element>"
+msgstr "B<MANDATORY_MANPATH>I<\\ man-sökvägselement>"
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:40
+msgid ""
+"Lines of this form indicate manpaths that every automatically generated "
+"$B<MANPATH> should contain.  This will typically include I</usr/man>."
+msgstr ""
+"Rader på denna formen indikerar man-sökvägar som varje automatiskt genererad "
+"$B<MANPATH> bör innehålla.  Detta kommer typiskt att inkludera I</usr/man>."
+
+#. type: TP
+#: ../../man/man5/manpath.man5:40
+#, no-wrap
+msgid "B<MANPATH_MAP>I<\\ path_element\\ manpath_element>"
+msgstr "B<MANPATH_MAP>I<\\ sökvägselement\\ man-sökvägselement>"
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:54
+msgid ""
+"Lines of this form set up $B<PATH> to $B<MANPATH> mappings.  For each "
+"I<path_element> found in the user's $B<PATH>, I<manpath_element> will be "
+"added to the $B<MANPATH>."
+msgstr ""
+"Rader på denna formen ställer in mappningarna från $B<PATH> till "
+"$B<MANPATH>.  För varje I<sökvägselement> som hittas i användarens $B<PATH>, "
+"kommer I<man-sökvägselement> att läggas till i $B<MANPATH>."
+
+#. type: TP
+#: ../../man/man5/manpath.man5:54
+#, no-wrap
+msgid "B<MANDB_MAP >I<manpath_element >\\|[\\| I<catpath_element> \\|]"
+msgstr "B<MANDB_MAP >I<man-sökvägselement >\\|[\\| I<cat-sökvägselement> \\|]"
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:64
+msgid ""
+"Lines of this form indicate which manpaths are to be treated as system "
+"manpaths, and optionally where their cat files should be stored.  This field "
+"type is particularly important if B<man> is a setuid program, as (when in "
+"the system configuration file %manpath_config_file% rather than the per-user "
+"configuration file .manpath)  it indicates which manual page hierarchies to "
+"access as the setuid user and which as the invoking user."
+msgstr ""
+"Rader på denna format indikerar vilka man-sökvägar som ska behandlas som "
+"systemman-sökvägar och valfritt om deras cat-filer bör lagras.  Denna "
+"fälttyp är särskilt viktig om B<man> är ett setuid-program eftersom (när det "
+"finns i systemkonfigurationsfilen %manpath_config_file% snarare än i "
+"användarnas konfigurationsfil .manpath) det indikerar vilka hierarkier av "
+"manualsidor som ska nås som setuid-användaren och vilka som ska nås som den "
+"anropande användaren."
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:72
+msgid ""
+"The system manual page hierarchies are usually those stored under I</usr> "
+"such as I</usr/man>, I</usr/local/man> and I</usr/X11R6/man>."
+msgstr ""
+"Systemets hierarkier av manualsidor är vanligtvis de som lagras under I</"
+"usr> så som I</usr/man>, I</usr/local/man> och I</usr/X11R6/man>."
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:78
+msgid ""
+"If cat pages from a particular I<manpath_element> are not to be stored or "
+"are to be stored in the traditional location, I<catpath_element> may be "
+"omitted."
+msgstr ""
+"Om cat-sidor från ett visst I<man-sökvägselement> inte ska lagras eller ska "
+"lagras på den traditionella platsen kan I<cat-sökvägselement> utelämnas."
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:87
+msgid ""
+"Traditional cat placement would be impossible for read only mounted manual "
+"page hierarchies and because of this it is possible to specify any valid "
+"directory hierarchy for their storage.  To observe the B<Linux FSSTND> the "
+"keyword `B<FSSTND> can be used in place of an actual directory."
+msgstr ""
+"Traditionell cat-placering skulle vara omöjlig för skrivskyddade hierarkier "
+"av manualsidor och på grund av detta är det möjligt att ange vilken giltig "
+"katalog hierarki som helst för att lagra dem.  För att vara kompatibel med "
+"B<Linux FSSTND> kan nyckelordet `B<FSSTND> användas istället för en riktig "
+"katalog."
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:96
+msgid ""
+"Unfortunately, it is necessary to specify B<all> system man tree paths, "
+"including alternate operating system paths such as I</usr/man/sun> and any "
+"B<NLS locale> paths such as I</usr/man/de_DE.88591>."
+msgstr ""
+"Tyvärr är det nödvändigt att ange B<alla> systemsökvägar för manualträd, "
+"inklusive alternativa operativsystemssökvägar så som I</usr/man/sun> och "
+"eventuella B<NLS-lokal>-sökvägar så som I</usr/man/de_DE.88591>."
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:104
+msgid ""
+"As the information is parsed line by line in the order written, it is "
+"necessary for any manpath that is a sub-hierarchy of another hierarchy to be "
+"listed first, otherwise an incorrect match will be made.  An example is that "
+"I</usr/man/de_DE.88591> must come before I</usr/man>."
+msgstr ""
+"Eftersom informationen tolkas rad för rad i den ordning de är skrivna, så är "
+"det nödvändigt att först lista den man-sökväg som är underhierarki till en "
+"annan hierarki, annars kommer felaktiga matchningar att göras.  Ett exempel "
+"är att I</usr/man/de_DE.88591> måste komma före I</usr/man>."
+
+#. type: TP
+#: ../../man/man5/manpath.man5:104
+#, no-wrap
+msgid "B<DEFINE>I<\\ key\\ value>"
+msgstr "B<DEFINE>I<\\ nyckel\\ värde>"
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:114
+msgid ""
+"Lines of this form define miscellaneous configuration variables; see the "
+"default configuration file for those variables used by the manual pager "
+"utilities.  They include default paths to various programs (such as I<grep> "
+"and I<tbl>), and default sets of arguments to those programs."
+msgstr ""
+"Rader på denna format definierar diverse konfigurationsvariabler; se "
+"standardkonfigurationsfilen för vilka de variabler är som används av "
+"sidvisaren för manualsidor.  De inkluderar standardsökvägar till diverse "
+"program (så som I<grep> och I<tbl>), och standarduppsättningar av argument "
+"för dessa program."
+
+#. type: TP
+#: ../../man/man5/manpath.man5:114
+#, no-wrap
+msgid "B<SECTION> I<section> .\\|.\\|."
+msgstr "B<SECTION> I<avsnitt> .\\|.\\|."
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:122
+msgid ""
+"Lines of this form define the order in which manual sections should be "
+"searched.  If there are no B<SECTION> directives in the configuration file, "
+"the default is:"
+msgstr ""
+"Rader på denna form definierar ordningen i vilken manualavsnitt bör "
+"genomsökas.  Om det inte finns några B<SECTION>-direktiv i "
+"konfigurationsfilen är standardvärdet:"
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:132
+msgid ""
+"If multiple B<SECTION> directives are given, their section lists will be "
+"concatenated."
+msgstr ""
+"Om flera B<SECTION>-direktiv anges kommer avsnittslistorna att konkateneras."
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:139
+msgid ""
+"If a particular extension is not in this list (say, 1mh) it will be "
+"displayed with the rest of the section it belongs to.  The effect of this is "
+"that you only need to explicitly list extensions if you want to force a "
+"particular order.  Sections with extensions should usually be adjacent to "
+"their main section (e.g. \"1 1mh 8 ...\")."
+msgstr ""
+"Om en särskild ändelse inte finns i denna listan (säg, 1mh) kommer den att "
+"visas med resten av avsnittet som den hör till.  Effekten av detta är att du "
+"bara behöver att uttryckligen lista ändelser om du vill tvinga fram en "
+"särskild ordning.  Avsnitt med ändelser bör vanligtvis finnas intill deras "
+"huvudavsnitt (t.ex. ”1 1mh 8...”)."
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:142
+msgid "B<SECTIONS> is accepted as an alternative name for this directive."
+msgstr "B<SECTIONS> accepteras som ett alternativ namn på detta direktiv."
+
+#. type: TP
+#: ../../man/man5/manpath.man5:143
+#, no-wrap
+msgid "B<MINCATWIDTH>I<\\ width>"
+msgstr "B<MINCATWIDTH>I<\\ bredd>"
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:149
+msgid ""
+"If the terminal width is less than I<width>, cat pages will not be created "
+"(if missing) or displayed.  The default is 80."
+msgstr ""
+"Om terminalbredden är mindre än I<bredd> kommer cat-sidor inte att skapas "
+"(om de saknas) eller visas.  Standardvärdet är 80."
+
+#. type: TP
+#: ../../man/man5/manpath.man5:149
+#, no-wrap
+msgid "B<MAXCATWIDTH>I<\\ width>"
+msgstr "B<MAXCATWIDTH>I<\\ bredd>"
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:155
+msgid ""
+"If the terminal width is greater than I<width>, cat pages will not be "
+"created (if missing) or displayed.  The default is 80."
+msgstr ""
+"Om terminalbredden är större än I<bredd> kommer cat-sidor inte att skapas "
+"(om de saknas) eller visas.  Standardvärdet är 80."
+
+#. type: TP
+#: ../../man/man5/manpath.man5:155
+#, no-wrap
+msgid "B<CATWIDTH>I<\\ width>"
+msgstr "B<CATWIDTH>I<\\ bredd>"
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:165
+msgid ""
+"If I<width> is non-zero, cat pages will always be formatted for a terminal "
+"of the given width, regardless of the width of the terminal actually being "
+"used.  This should generally be within the range set by B<MINCATWIDTH> and "
+"B<MAXCATWIDTH>."
+msgstr ""
+"Om I<bredd> inte är noll kommer cat-sidor alltid att formateras för en "
+"terminal av en angivna bredden, oavsett bredden på terminalen som faktiskt "
+"används.  Detta bör generellt vara inom intervallet inställt av "
+"B<MINCATWIDTH> och B<MAXCATWIDTH>."
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:170
+msgid "This flag prevents B<%man%>(1)  from creating cat pages automatically."
+msgstr ""
+"Denna flagga förhindrar B<%man%>(1) från att automatiskt skapa cat-sidor."
+
+#. type: SH
+#: ../../man/man5/manpath.man5:170
+#, no-wrap
+msgid "BUGS"
+msgstr "FEL"
+
+#. type: Plain text
+#: ../../man/man5/manpath.man5:173
+msgid ""
+"Unless the rules above are followed and observed precisely, the manual pager "
+"utilities will not function as desired.  The rules are overly complicated."
+msgstr ""
+"Om reglerna ovan inte följs till punkt och pricka kommer verktygen för "
+"sidvisning av manualer inte att fungera som önskat.  Dessa regler är "
+"överdrivet komplicerade."
+
+#. type: TH
+#: ../../man/man8/accessdb.man8:12
+#, no-wrap
+msgid "ACCESSDB"
+msgstr "ACCESSDB"
+
+#. type: Plain text
+#: ../../man/man8/accessdb.man8:16
+msgid ""
+"accessdb - dumps the content of a man-db database in a human readable format"
+msgstr ""
+"accessdb - dumpar innehåller från en man-db-databas i ett läsbart format"
+
+#. type: Plain text
+#: ../../man/man8/accessdb.man8:20
+msgid "B</usr/sbin/accessdb> [\\|B<-d?V>\\|] [I<E<lt>index-fileE<gt>>]"
+msgstr "B</usr/sbin/accessdb> [\\|B<-d?V>\\|] [I<E<lt>indexfilE<gt>>]"
+
+#. type: Plain text
+#: ../../man/man8/accessdb.man8:27
+msgid ""
+"B<accessdb> will output the data contained within a man-db database in a "
+"human readable form.  By default, it will dump the data from B</var/cache/"
+"man/index.E<lt>db-typeE<gt>,> where E<lt>db-typeE<gt> is dependent on the "
+"database library in use."
+msgstr ""
+"B<accessdb> kommer att mata ut datan som finns i en man-db-databas i läsbart "
+"format.  Som standard kommer det att dump[a datan från B</var/cache/man/"
+"index.E<lt>db-typE<gt>,> där E<lt>db-typE<gt> är beroende av vilket "
+"databasbibliotek som används."
+
+#. type: Plain text
+#: ../../man/man8/accessdb.man8:29
+msgid "Supplying an argument to accessdb will override this default."
+msgstr ""
+"Om ett argument anges till accessdb går det att åsidosätta detta "
+"standardvärde."
+
+#. type: TH
+#: ../../man/man8/catman.man8:12
+#, no-wrap
+msgid "%thcatman%"
+msgstr "%thcatman%"
+
+#. type: Plain text
+#: ../../man/man8/catman.man8:15
+msgid "%catman% - create or update the pre-formatted manual pages"
+msgstr "%catman% - skapa eller uppdatera de förformaterade manualsidorna"
+
+#. type: Plain text
+#: ../../man/man8/catman.man8:24
+msgid ""
+"B<%catman%> [\\|B<-d?V>\\|] [\\|B<-M> I<path>\\|] [\\|B<-C> I<file>\\|] [\\|"
+"I<section>\\|] \\&.\\|.\\|."
+msgstr ""
+"B<%catman%> [\\|B<-d?V>\\|] [\\|B<-M> I<sökväg>\\|] [\\|B<-C> I<fil>\\|] [\\|"
+"I<avsnitt>\\|] \\&.\\|.\\|."
+
+#. type: Plain text
+#: ../../man/man8/catman.man8:32
+msgid ""
+"B<%catman%> is used to create an up to date set of pre-formatted manual "
+"pages known as cat pages.  Cat pages are generally much faster to display "
+"than the original manual pages, but require extra storage space.  The "
+"decision to support cat pages is that of the local administrator, who must "
+"provide suitable directories to contain them."
+msgstr ""
+"B<%catman%> används för att skapa en uppdaterad uppsättning av "
+"förformaterade manualsidor, också kända som cat-sidor.  cat-sidor är "
+"generellt sett mycket snabbare att visa än de vanliga manualsidorna, men "
+"kräver extra lagringsutrymme.  Beslutet att ha stöd för cat-sidor tas av den "
+"lokala administratören som måste tillhandahålla lämpliga kataloger som de "
+"kan ligga i."
+
+#. type: Plain text
+#: ../../man/man8/catman.man8:49
+msgid ""
+"The options available to B<%catman%> are the manual page hierarchies and "
+"sections to pre-format.  The default hierarchies are those specified as "
+"system hierarchies in the man-db configuration file, and the default "
+"sections are either the colon-delimited contents of the environment variable "
+"$B<MANSECT> or the standard set compiled into B<%man%> if $B<MANSECT> is "
+"undefined.  Supplying B<%catman%> with a set of whitespace-delimited section "
+"names will override both of the above."
+msgstr ""
+"Inställningarna som finns tillgängliga för B<%catman%> är hierarkierna av "
+"manualsidor och avsnitt som ska förformateras.  Standardhierarkierna är de "
+"som angetts som systemhierarkier i konfigurationsfilen för man-db, och "
+"standardavsnitten är antingen det kolonavgränsade innehållet i "
+"miljövariabeln $B<MANSECT> eller standarduppsättningen som kompilerats in i "
+"B<%man%> om $B<MANSECT> är odefinierad.  Om en uppsättning av "
+"blankstegsavgränsade avsnittsnamn anges till B<%catman%> så åsidosätts de "
+"båda ovan."
+
+#. type: Plain text
+#: ../../man/man8/catman.man8:55
+msgid ""
+"B<%catman%> makes use of the B<index> database cache associated with each "
+"hierarchy to determine which files need to be formatted."
+msgstr ""
+"B<%catman%> används B<index>-databascachen som finns associerad med varje "
+"hierarki för att avgöra vilka filer som behöver formateras."
+
+#. type: Plain text
+#: ../../man/man8/catman.man8:64
+msgid ""
+"Specify an alternate colon-delimited manual page hierarchy search path.  By "
+"default, this is all paths indicated as system hierarchies in the man-db "
+"configuration file."
+msgstr ""
+"Ange en alternativ kolonavgränsad sökväg för hierarkier av manualsidor.  Som "
+"standard är detta alla sökvägar som indikerats som systemhierarkier i "
+"konfigurationsfilen för man-db."
+
+#. type: Plain text
+#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:213
+msgid "An alternate or FSSTND compliant global I<index> database cache."
+msgstr "En alternativ eller FSSTND-kompatibel global I<index>-databascache."
+
+#. type: TH
+#: ../../man/man8/mandb.man8:13
+#, no-wrap
+msgid "%thmandb%"
+msgstr "%thmandb%"
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:16
+msgid "%mandb% - create or update the manual page index caches"
+msgstr "%mandb% - skapa eller uppdatera indexcachar för manualsidor"
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:22
+msgid ""
+"B<%mandb%> [\\|B<-dqsucpt?V>\\|] [\\|B<-C> I<file>\\|] [\\|I<manpath>\\|]"
+msgstr ""
+"B<%mandb%> [\\|B<-dqsucpt?V>\\|] [\\|B<-C> I<fil>\\|] [\\|I<man-sökväg>\\|]"
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:29
+msgid ""
+"B<%mandb%> [\\|B<-dqsut>\\|] [\\|B<-C> I<file>\\|] B<-f> I<filename>\\ .\\|."
+"\\|."
+msgstr ""
+"B<%mandb%> [\\|B<-dqsut>\\|] [\\|B<-C> I<fil>\\|] B<-f> I<filnamn>\\ .\\|."
+"\\|."
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:38
+msgid ""
+"B<%mandb%> is used to initialise or manually update B<index> database caches "
+"that are usually maintained by B<%man%>.  The caches contain information "
+"relevant to the current state of the manual page system and the information "
+"stored within them is used by the man-db utilities to enhance their speed "
+"and functionality."
+msgstr ""
+"B<%mandb%> används för att initiera eller manuellt uppdatera B<index>-"
+"databascachar som vanligtvis underhålls av B<%man%>.  Cacharna innehåller "
+"information relevant för det aktuella tillståndet för systemet av "
+"manualsidor och informationen som lagras i dem används av man-db-verktygen "
+"för att förbättra deras hastighet och funktionalitet."
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:46
+msgid ""
+"When creating or updating an B<index>, B<%mandb%> will warn of bad ROFF .so "
+"requests, bogus manual page filenames and manual pages from which the "
+"B<whatis> cannot be parsed."
+msgstr ""
+"När ett B<index> skapas eller uppdateras kommer B<%mandb%> att varna vid "
+"felaktiga ROFF .so-begäran, felaktiga filnamn för manualsidor och "
+"manualsidor för vilka B<whatis> inte kan tolkas."
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:52
+msgid ""
+"Supplying B<%mandb%> with an optional colon-delimited path will override the "
+"internal system manual page hierarchy search path, determined from "
+"information found within the man-db configuration file."
+msgstr ""
+"Om B<%mandb%> förses med en valfri kolonavgränsad sökväg så kommer detta att "
+"åsidosätta den interna sökvägen för hierarkier av manualsidor i systemet, "
+"fastställd från information hittad i konfigurationsfilen för man-db."
+
+#. type: SH
+#: ../../man/man8/mandb.man8:52
+#, no-wrap
+msgid "DATABASE CACHES"
+msgstr "DATABASCACHAR"
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:55
+msgid ""
+"B<%mandb%> can be compiled with support for any one of the following "
+"database types."
+msgstr "B<%mandb%> kan kompileras med stöd för någon av följande databastyper."
+
+#. type: tbl table
+#: ../../man/man8/mandb.man8:59
+#, no-wrap
+msgid "Name"
+msgstr "Namn"
+
+#. type: tbl table
+#: ../../man/man8/mandb.man8:59
+#, no-wrap
+msgid "Type"
+msgstr "Typ"
+
+#. type: tbl table
+#: ../../man/man8/mandb.man8:59
+#, no-wrap
+msgid "Async"
+msgstr "Asynk"
+
+#. type: tbl table
+#: ../../man/man8/mandb.man8:59
+#, fuzzy, no-wrap
+#| msgid "Filename\n"
+msgid "Filename"
+msgstr "Filnamn\n"
+
+#. type: tbl table
+#: ../../man/man8/mandb.man8:61
+#, no-wrap
+msgid "Berkeley db"
+msgstr "Berkeley-db"
+
+#. type: tbl table
+#: ../../man/man8/mandb.man8:63
+#, no-wrap
+msgid "Binary tree"
+msgstr "Binärträd"
+
+#. type: tbl table
+#: ../../man/man8/mandb.man8:63 ../../man/man8/mandb.man8:66
+#, no-wrap
+msgid "Yes"
+msgstr "Ja"
+
+#. type: tbl table
+#: ../../man/man8/mandb.man8:63
+#, fuzzy, no-wrap
+#| msgid "I<index.bt>\n"
+msgid "I<index.bt>"
+msgstr "I<index.bt>\n"
+
+#. type: tbl table
+#: ../../man/man8/mandb.man8:64
+#, no-wrap
+msgid "GNU gdbm"
+msgstr "GNU gdbm"
+
+#. type: tbl table
+#: ../../man/man8/mandb.man8:66 ../../man/man8/mandb.man8:69
+#, no-wrap
+msgid "Hashed"
+msgstr "Hashad"
+
+#. type: tbl table
+#: ../../man/man8/mandb.man8:66
+#, fuzzy, no-wrap
+#| msgid "I<index.db>\n"
+msgid "I<index.db>"
+msgstr "I<index.db>\n"
+
+#. type: tbl table
+#: ../../man/man8/mandb.man8:67
+#, no-wrap
+msgid "UNIX ndbm"
+msgstr "UNIX ndbm"
+
+#. type: tbl table
+#: ../../man/man8/mandb.man8:69
+#, no-wrap
+msgid "No"
+msgstr "Nej"
+
+#. type: tbl table
+#: ../../man/man8/mandb.man8:69
+#, fuzzy, no-wrap
+#| msgid "I<index.(dir|pag)>\n"
+msgid "I<index.(dir|pag)>"
+msgstr "I<index.(dir|pag)>\n"
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:80
+msgid ""
+"Those database types that support asynchronous updates provide enhanced "
+"speed at the cost of possible corruption in the event of unusual "
+"termination.  In an unusual case where this has occurred, it may be "
+"necessary to rerun B<%mandb%> with the B<-c> option to re-create the "
+"databases from scratch."
+msgstr ""
+"De databastyper som har stöd för asynkrona uppdateringar tillhandahåller "
+"förbättrad hastighet på bekostnad av potentiell korrumpering vid oväntat "
+"avslut.  I det ovanliga fall då detta inträffat kan det vara nödvändigt att "
+"köra om B<%mandb%> med flaggan B<-c> för att återskapa databaserna från "
+"grunden."
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:87
+msgid "Produce no warnings."
+msgstr "Producera inte några varningar."
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:91
+msgid ""
+"Do not spend time looking for or adding information to the databases "
+"regarding stray cats."
+msgstr ""
+"Spendera inte tid på att söka efter eller lägga till information till "
+"databaserna om lösa cat-sidor."
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:95
+msgid ""
+"Do not spend time checking for deleted manual pages and purging them from "
+"the databases."
+msgstr ""
+"Spendera inte till på att leta efter borttagna manualsidor och rensa bort "
+"dem från databaserna."
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:107
+msgid ""
+"By default, B<%mandb%> will try to update any previously created databases.  "
+"If a database does not exist, it will create it.  This option forces B<%mandb"
+"%> to delete previous databases and re-create them from scratch, and implies "
+"B<--no-purge.> This may be necessary if a database becomes corrupt or if a "
+"new database storage scheme is introduced in the future."
+msgstr ""
+"Som standard kommer B<%mandb%> att försöka uppdatera tidigare skapade "
+"databaser.  Om en databas inte existerar kommer den att skapas.  Denna "
+"flagga tvingar B<%mandb%> att ta bort tidigare databaser och återskapa dem "
+"från grunden och implicerar B<--no-purge.> Detta kan vara nödvändigt om "
+"databasen blir korrumperad eller om ett nya databaslagringssystem "
+"introduceras i framtiden."
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:111
+msgid ""
+"Create user databases only, even with write permissions necessary to create "
+"system databases."
+msgstr ""
+"Skapa endast användardatabaser, även med skrivbehörigheter som behövs för "
+"att skapa systemdatabaser."
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:117
+msgid ""
+"Perform correctness checks on manual pages in the hierarchy search path.  "
+"With this option, B<%mandb%> will not alter existing databases."
+msgstr ""
+"Utför konsistenskontroller på manualsidor i hierarkisökvägen.  Med denna "
+"flagga kommer B<%mandb%> inte att förändra några existerande databaser."
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:131
+msgid ""
+"Update only the entries for the given filename.  This option is not for "
+"general use; it is used internally by B<%man%> when it has been compiled "
+"with the B<MAN_DB_UPDATES> option and finds that a page is out of date.  It "
+"implies B<-p> and disables B<-c> and B<-s>."
+msgstr ""
+"Uppdatera bara posterna för det angivna filnamnet.  Denna flagga är inte "
+"avsedd för allmänt bruk; den används internt av B<%man%> när det har "
+"kompilerats med flaggan B<MAN_DB_UPDATES> och hittar sidor som är "
+"föråldrade.  Den implicerar B<-p> och inaktiverar B<-c> och B<-s>."
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:138
+msgid "Show the usage message, then exit."
+msgstr "Visa hjälptexten, avsluta sedan."
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:144
+msgid "Show the version, then exit."
+msgstr "Visa versionen, avsluta sedan."
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:151
+msgid "Usage, syntax, or configuration file error."
+msgstr "Användnings-, syntax- eller konfigurationsfilsfel."
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:157
+msgid "A child process failed."
+msgstr "En barnprocess misslyckades."
+
+#. type: SH
+#: ../../man/man8/mandb.man8:157
+#, no-wrap
+msgid "DIAGNOSTICS"
+msgstr "DIAGNOSTIC"
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:159
+msgid "The following warning messages can be emitted during database building."
+msgstr "Följande varningsmeddelanden kan matas ut under databasuppbyggnaden."
+
+#. type: TP
+#: ../../man/man8/mandb.man8:159
+#, no-wrap
+msgid "B<E<lt>filenameE<gt>: whatis parse for page(sec) failed>"
+msgstr "B<E<lt>filnamnE<gt>: whatis-tolkning för sida(sekt) misslyckades>"
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:170
+msgid ""
+"An attempt to extract whatis line(s) from the given E<lt>filenameE<gt> "
+"failed.  This is usually due to a poorly written manual page, but if many "
+"such messages are emitted it is likely that the system contains non-standard "
+"manual pages which are incompatible with the man-db whatis parser.  See the "
+"B<WHATIS PARSING> section in B<lexgrog>(1)  for more information."
+msgstr ""
+"Ett försök att extrahera whatis-rader från det angivna filnamnet "
+"E<lt>filnamnE<gt> misslyckades.  Detta sker vanligtvis på grund av en dåligt "
+"skriven manualsida, men om många sådana meddelanden matas ut är det troligt "
+"att systemet innehåller icke-standardiserade manualsidor som är inkompatibla "
+"med man-db:s whatis-tolk.  Se avsnittet B<WHATIS-TOLKNING> i B<lexgrog>(1) "
+"för vidare information."
+
+#. type: TP
+#: ../../man/man8/mandb.man8:170
+#, no-wrap
+msgid "B<E<lt>filenameE<gt>: is a dangling symlink>"
+msgstr "B<E<lt>filnamnE<gt>: är en lös symbolisk länk>"
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:175
+msgid ""
+"E<lt>filenameE<gt> does not exist but is referenced by a symbolic link.  "
+"Further diagnostics are usually emitted to identify the E<lt>filenameE<gt> "
+"of the offending link."
+msgstr ""
+"E<lt>filnamnE<gt> existerar inte men refereras till med en symbolisk länk.  "
+"Vidare diagnostikmeddelanden matas vanligtvis ut för att identifiera namnet "
+"E<lt>filnamnE<gt> på den länk som är problematisk."
+
+#. type: TP
+#: ../../man/man8/mandb.man8:175
+#, no-wrap
+msgid "B<E<lt>filenameE<gt>: bad symlink or ROFF `.so' request>"
+msgstr "B<E<lt>filnamnE<gt>: felaktig symbolisk länk eller ROFF ”.so”-begäran>"
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:179
+msgid ""
+"E<lt>filenameE<gt> is either a symbolic link to, or contains a ROFF include "
+"request to, a non existent file."
+msgstr ""
+"E<lt>filnamnE<gt> är antingen en symbolisk länk till, eller innehåller en "
+"ROFF-inklusionsbegäran till, en icke existerande fil."
+
+#. type: TP
+#: ../../man/man8/mandb.man8:179
+#, no-wrap
+msgid "B<E<lt>filenameE<gt>: ignoring bogus filename>"
+msgstr "B<E<lt>filnamnE<gt>: ignorerar felaktigt filnamn>"
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:185
+msgid ""
+"The E<lt>filenameE<gt> may or may not be a valid manual page but its name is "
+"invalid.  This is usually due to a manual page with sectional extension "
+"E<lt>xE<gt> being put in manual page section E<lt>yE<gt>."
+msgstr ""
+"Filnamnet E<lt>filnamnE<gt> kan vara en giltig manualsida med dess namn är "
+"ogiltigt.  Detta sker vanligtvis för att en manualsida med avsnittsändelsen "
+"E<lt>xE<gt> lagts till i avsnitt E<lt>yE<gt> i en manualsida."
+
+#. type: TP
+#: ../../man/man8/mandb.man8:185
+#, no-wrap
+msgid "B<E<lt>filename_maskE<gt>: competing extensions>"
+msgstr "B<E<lt>filnamn_maskE<gt>: filändelser i konflikt>"
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:191
+msgid ""
+"The wildcard E<lt>filename_maskE<gt> is not unique.  This is usually caused "
+"by the existence of both a compressed and uncompressed version of the same "
+"manual page.  All but the most recent are ignored."
+msgstr ""
+"Jokerteckensträngen E<lt>filnamn_maskE<gt> är inte unik.  Detta sker "
+"vanligtvis för att det finns både komprimerade och okomprimerade versioner "
+"av samma manualsida.  Alla, förutom de senaste, kommer att ignoreras."
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:202
+msgid "Older locations for the database cache included:"
+msgstr "Äldre platser för databascachen inkluderar:"
+
+#. type: Plain text
+#: ../../man/man8/mandb.man8:223
+msgid ""
+"The B<WHATIS PARSING> section formerly in this manual page is now part of "
+"B<lexgrog>(1)."
+msgstr ""
+"Avsnittet B<WHATIS-TOLKNING> som tidigare fanns på denna manualsida finns nu "
+"i B<lexgrog>(1)."
index 8483ed3..dd334f7 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: man-db-manpages-2.7.0-pre1\n"
-"POT-Creation-Date: 2014-09-16 14:04+0100\n"
+"POT-Creation-Date: 2016-12-11 13:52+0000\n"
 "PO-Revision-Date: 2015-09-03 23:05+0800\n"
 "Last-Translator: zwpwjwtz <zwpwjwtz@126.com>\n"
 "Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
@@ -143,20 +143,20 @@ msgstr ""
 
 #. type: SH
 #: ../../man/man1/apropos.man1:61 ../../man/man1/lexgrog.man1:45
-#: ../../man/man1/man.man1:553 ../../man/man1/manconv.man1:50
+#: ../../man/man1/man.man1:558 ../../man/man1/manconv.man1:50
 #: ../../man/man1/manpath.man1:37 ../../man/man1/whatis.man1:71
 #: ../../man/man1/zsoelim.man1:55 ../../man/man8/accessdb.man8:29
-#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:83
+#: ../../man/man8/catman.man8:55 ../../man/man8/mandb.man8:80
 #, no-wrap
 msgid "OPTIONS"
 msgstr "选项"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:65 ../../man/man1/lexgrog.man1:49
-#: ../../man/man1/man.man1:567 ../../man/man1/manconv.man1:66
+#: ../../man/man1/man.man1:572 ../../man/man1/manconv.man1:66
 #: ../../man/man1/manpath.man1:44 ../../man/man1/whatis.man1:75
 #: ../../man/man8/accessdb.man8:33 ../../man/man8/catman.man8:59
-#: ../../man/man8/mandb.man8:87
+#: ../../man/man8/mandb.man8:84
 msgid "Print debugging information."
 msgstr "打印调试信息。"
 
@@ -241,7 +241,7 @@ msgstr ""
 "册章节中对应部分的页面。"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:690
+#: ../../man/man1/apropos.man1:129 ../../man/man1/man.man1:701
 #: ../../man/man1/manpath.man1:66 ../../man/man1/whatis.man1:133
 msgid ""
 "B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|, B<--systems=>I<system>\\|[\\|,.\\|."
@@ -273,7 +273,7 @@ msgstr ""
 "$B<SYSTEM> 环境变量。"
 
 #. type: TP
-#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:709
+#: ../../man/man1/apropos.man1:148 ../../man/man1/man.man1:720
 #: ../../man/man1/whatis.man1:152 ../../man/man8/catman.man8:59
 #, no-wrap
 msgid "B<-M\\ >I<path>,\\ B<--manpath=>I<path>"
@@ -294,14 +294,14 @@ msgstr ""
 "的内容。"
 
 #. type: TP
-#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:660
+#: ../../man/man1/apropos.man1:162 ../../man/man1/man.man1:671
 #: ../../man/man1/whatis.man1:166
 #, no-wrap
 msgid "B<-L\\ >I<locale>,\\ B<--locale=>I<locale>"
 msgstr "B<-L\\ >I<区域>,\\ B<--locale=>I<区域>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:684
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:695
 #: ../../man/man1/whatis.man1:183
 msgid ""
 "B<%program%> will normally determine your current locale by a call to the C "
@@ -318,24 +318,24 @@ msgstr ""
 "在搜索页面实际开始前它不会生效。帮助消息等输出将始终以检测到的区域语言显示。"
 
 #. type: TP
-#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:560
+#: ../../man/man1/apropos.man1:179 ../../man/man1/man.man1:565
 #: ../../man/man1/manpath.man1:85 ../../man/man1/whatis.man1:183
-#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:134
+#: ../../man/man8/catman.man8:64 ../../man/man8/mandb.man8:131
 #, no-wrap
 msgid "B<-C\\ >I<file>,\\ B<--config-file=>I<file>"
 msgstr "B<-C\\ >I<文件>,\\ B<--config-file=>I<文件>"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:564
+#: ../../man/man1/apropos.man1:183 ../../man/man1/man.man1:569
 #: ../../man/man1/manpath.man1:89 ../../man/man1/whatis.man1:187
-#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:138
+#: ../../man/man8/catman.man8:68 ../../man/man8/mandb.man8:135
 msgid ""
 "Use this user configuration file rather than the default of I<~/.manpath>."
 msgstr "使用此用户配置文件代替默认的 I<~/.manpath>。"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:186 ../../man/man1/lexgrog.man1:89
-#: ../../man/man1/man.man1:1163 ../../man/man1/manconv.man1:69
+#: ../../man/man1/man.man1:1174 ../../man/man1/manconv.man1:69
 #: ../../man/man1/manpath.man1:92 ../../man/man1/whatis.man1:190
 #: ../../man/man1/zsoelim.man1:67 ../../man/man8/accessdb.man8:36
 #: ../../man/man8/catman.man8:71
@@ -344,15 +344,15 @@ msgstr "打印帮助消息并退出。"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:189 ../../man/man1/lexgrog.man1:92
-#: ../../man/man1/man.man1:1166 ../../man/man1/manpath.man1:95
+#: ../../man/man1/man.man1:1177 ../../man/man1/manpath.man1:95
 #: ../../man/man1/whatis.man1:193 ../../man/man8/accessdb.man8:39
-#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:144
+#: ../../man/man8/catman.man8:74 ../../man/man8/mandb.man8:141
 msgid "Print a short usage message and exit."
 msgstr "打印简短的帮助消息并退出。"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1180 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:196
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/accessdb.man8:42
 #: ../../man/man8/catman.man8:77
@@ -361,28 +361,28 @@ msgstr "显示版本信息。"
 
 #. type: SH
 #: ../../man/man1/apropos.man1:192 ../../man/man1/lexgrog.man1:95
-#: ../../man/man1/man.man1:1169 ../../man/man1/whatis.man1:196
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man1/man.man1:1180 ../../man/man1/whatis.man1:196
+#: ../../man/man8/mandb.man8:144
 #, no-wrap
 msgid "EXIT STATUS"
 msgstr "退出状态"
 
 #. type: Plain text
 #: ../../man/man1/apropos.man1:196 ../../man/man1/lexgrog.man1:99
-#: ../../man/man1/man.man1:1173 ../../man/man1/whatis.man1:200
-#: ../../man/man8/mandb.man8:151
+#: ../../man/man1/man.man1:1184 ../../man/man1/whatis.man1:200
+#: ../../man/man8/mandb.man8:148
 msgid "Successful program execution."
 msgstr "程序成功执行。"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1176
+#: ../../man/man1/apropos.man1:199 ../../man/man1/man.man1:1187
 #: ../../man/man1/whatis.man1:203
 msgid "Usage, syntax or configuration file error."
 msgstr "用法、语法或配置文件出错。"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1179
-#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:157
+#: ../../man/man1/apropos.man1:202 ../../man/man1/man.man1:1190
+#: ../../man/man1/whatis.man1:206 ../../man/man8/mandb.man8:154
 msgid "Operational error."
 msgstr "操作出错。"
 
@@ -392,7 +392,7 @@ msgid "Nothing was found that matched the criteria specified."
 msgstr "未找到符合指定条件的结果。"
 
 #. type: SH
-#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1185
+#: ../../man/man1/apropos.man1:205 ../../man/man1/man.man1:1196
 #: ../../man/man1/manpath.man1:98 ../../man/man1/whatis.man1:209
 #: ../../man/man8/catman.man8:77
 #, no-wrap
@@ -400,7 +400,7 @@ msgid "ENVIRONMENT"
 msgstr "环境"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1282
+#: ../../man/man1/apropos.man1:214 ../../man/man1/man.man1:1293
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:218
 msgid ""
 "If $B<SYSTEM> is set, it will have the same effect as if it had been "
@@ -440,23 +440,23 @@ msgstr ""
 "将视为扩展的正则表达式(B<-r>)。不过,现在这已经是默认行为了。"
 
 #. type: SH
-#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1347
+#: ../../man/man1/apropos.man1:241 ../../man/man1/man.man1:1358
 #: ../../man/man1/manpath.man1:124 ../../man/man1/whatis.man1:236
-#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:194
+#: ../../man/man8/catman.man8:94 ../../man/man8/mandb.man8:191
 #, no-wrap
 msgid "FILES"
 msgstr "文件"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1359
+#: ../../man/man1/apropos.man1:247 ../../man/man1/man.man1:1370
 #: ../../man/man1/whatis.man1:242 ../../man/man8/catman.man8:103
-#: ../../man/man8/mandb.man8:210
+#: ../../man/man8/mandb.man8:207
 msgid "A traditional global I<index> database cache."
 msgstr "传统的全局 I<索引> 数据库缓存。"
 
 #. type: Plain text
-#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1365
-#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:203
+#: ../../man/man1/apropos.man1:253 ../../man/man1/man.man1:1376
+#: ../../man/man1/whatis.man1:248 ../../man/man8/mandb.man8:200
 msgid "An FHS compliant global I<index> database cache."
 msgstr "与 FHS 兼容的全局 I<索引> 数据库缓存。"
 
@@ -467,10 +467,10 @@ msgstr "传统的 B<whatis> 文本数据库。"
 
 #. type: SH
 #: ../../man/man1/apropos.man1:258 ../../man/man1/lexgrog.man1:197
-#: ../../man/man1/man.man1:1365 ../../man/man1/manconv.man1:72
+#: ../../man/man1/man.man1:1376 ../../man/man1/manconv.man1:72
 #: ../../man/man1/manpath.man1:128 ../../man/man1/whatis.man1:253
 #: ../../man/man1/zsoelim.man1:70 ../../man/man8/catman.man8:109
-#: ../../man/man8/mandb.man8:216
+#: ../../man/man8/mandb.man8:213
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "亦见"
@@ -480,7 +480,7 @@ msgstr "亦见"
 #: ../../man/man1/manconv.man1:75 ../../man/man1/manpath.man1:132
 #: ../../man/man1/whatis.man1:257 ../../man/man1/zsoelim.man1:75
 #: ../../man/man8/accessdb.man8:42 ../../man/man8/catman.man8:113
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 #, no-wrap
 msgid "AUTHOR"
 msgstr "作者"
@@ -775,6 +775,19 @@ msgstr "%man% - 在线参考手册的接口"
 #.  The apropos command line
 #. type: Plain text
 #: ../../man/man1/man.man1:67
+#, fuzzy
+#| msgid ""
+#| "B<%man%> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--"
+#| "warnings>\\|[\\|=I<warnings>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-L> "
+#| "I<locale>\\|] [\\|B<-m> I<system>\\|[\\|,.\\|.\\|.\\|]\\|] [\\|B<-M> "
+#| "I<path>\\|] [\\|B<-S> I<list>\\|] [\\|B<-e> I<extension>\\|] [\\|B<-i>\\||"
+#| "\\|B<-I>\\|] [\\|B<--regex>\\||\\|B<--wildcard>\\|] [\\|B<--names-only>"
+#| "\\|] [\\|B<-a>\\|] [\\|B<-u>\\|] [\\|B<--no-subpages>\\|] [\\|B<-P> "
+#| "I<pager>\\|] [\\|B<-r> I<prompt>\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>"
+#| "\\|] [\\|B<--no-hyphenation>\\|] [\\|B<--no-justification>\\|] [\\|B<-p> "
+#| "I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|[\\|I<device>\\|]\\|] [\\|B<-H>\\|"
+#| "[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|"
+#| "[\\|I<section>\\|] I<page>\\ .\\|.\\|.\\|]\\ .\\|.\\|.\\&"
 msgid ""
 "B<%man%> [\\|B<-C> I<file>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--warnings>"
 "\\|[\\|=I<warnings>\\|]\\|] [\\|B<-R> I<encoding>\\|] [\\|B<-L> I<locale>"
@@ -785,8 +798,8 @@ msgid ""
 "\\|] [\\|B<-7>\\|] [\\|B<-E> I<encoding>\\|] [\\|B<--no-hyphenation>\\|] [\\|"
 "B<--no-justification>\\|] [\\|B<-p> I<string>\\|] [\\|B<-t>\\|] [\\|B<-T>\\|"
 "[\\|I<device>\\|]\\|] [\\|B<-H>\\|[\\|I<browser>\\|]\\|] [\\|B<-X>\\|[\\|"
-"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>\\ .\\|.\\|."
-"\\|]\\ .\\|.\\|.\\&"
+"I<dpi>\\|]\\|] [\\|B<-Z>\\|] [\\|[\\|I<section>\\|] I<page>[.\\|I<section>"
+"\\|]\\ \\|.\\|.\\|.\\|]\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> [\\|B<-C> I<文件>\\|] [\\|B<-d>\\|] [\\|B<-D>\\|] [\\|B<--warnings>"
 "\\|[\\|=I<警告>\\|]\\|] [\\|B<-R> I<编码>\\|] [\\|B<-L> I<区域>\\|] [\\|B<-"
@@ -811,10 +824,10 @@ msgstr ""
 #: ../../man/man1/man.man1:86
 msgid ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<section>\\|] I<term>\\ .\\|.\\|.\\&"
 msgstr ""
 "B<%man%> B<-K> [\\|B<-w>\\||\\|B<-W>\\|] [\\|B<-S> I<list>\\|] [\\|B<-i>\\||"
-"\\|B<-I>\\|] [\\|I<--regex>\\|] [\\|I<章节>\\|] I<词语>\\ .\\|.\\|.\\&"
+"\\|B<-I>\\|] [\\|B<--regex>\\|] [\\|I<章节>\\|] I<词语>\\ .\\|.\\|.\\&"
 
 #.  The --local command line
 #. type: Plain text
@@ -892,43 +905,43 @@ msgid ""
 msgstr "下表显示了手册的 I<章节> 号及其包含的手册页类型。"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:189
+#: ../../man/man1/man.man1:191
 #, no-wrap
 msgid "Executable programs or shell commands"
 msgstr "可执行程序或 shell 命令"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:192
+#: ../../man/man1/man.man1:194
 #, no-wrap
 msgid "System calls (functions provided by the kernel)"
 msgstr "系统调用(内核提供的函数)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:195
+#: ../../man/man1/man.man1:197
 #, no-wrap
 msgid "Library calls (functions within program libraries)"
 msgstr "库调用(程序库中的函数)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:198
+#: ../../man/man1/man.man1:200
 #, no-wrap
 msgid "Special files (usually found in I</dev\\/>)"
 msgstr "特殊文件(通常位于 I</dev\\/>)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:201
+#: ../../man/man1/man.man1:203
 #, no-wrap
 msgid "File formats and conventions eg I</etc/passwd>"
 msgstr "文件格式和规范,如 I</etc/passwd>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:204
+#: ../../man/man1/man.man1:206
 #, no-wrap
 msgid "Games"
 msgstr "游戏"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:207
+#: ../../man/man1/man.man1:210
 #, no-wrap
 msgid ""
 "Miscellaneous (including macro packages and conventions),\n"
@@ -936,13 +949,13 @@ msgid ""
 msgstr "杂项(包括宏包和规范,如 B<man>(7),B<groff>(7))"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:211
+#: ../../man/man1/man.man1:213
 #, no-wrap
 msgid "System administration commands (usually only for root)"
 msgstr "系统管理命令(通常只针对 root 用户)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:214
+#: ../../man/man1/man.man1:216
 #, no-wrap
 msgid "Kernel routines [\\|Non standard\\|]"
 msgstr "内核例程 [\\|非标准\\|"
@@ -980,7 +993,7 @@ msgid "B<bold text>"
 msgstr "B<加粗文本>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:250
+#: ../../man/man1/man.man1:252
 #, no-wrap
 msgid "type exactly as shown."
 msgstr "按原样显示。"
@@ -992,7 +1005,7 @@ msgid "I<italic text>"
 msgstr "I<倾斜文本>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:253
+#: ../../man/man1/man.man1:255
 #, no-wrap
 msgid "replace with appropriate argument."
 msgstr "用相应的参数进行替换。"
@@ -1004,7 +1017,7 @@ msgid "[\\|B<-abc>\\|]"
 msgstr "[\\|B<-abc>\\|]"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:256
+#: ../../man/man1/man.man1:258
 #, no-wrap
 msgid "any or all arguments within [ ] are optional."
 msgstr "“[ ]” 内的任意/全部参数都是可选的。"
@@ -1016,7 +1029,7 @@ msgid "B<-a\\|>|\\|B<-b>"
 msgstr "B<-a\\|>|\\|B<-b>"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:259
+#: ../../man/man1/man.man1:261
 #, no-wrap
 msgid "options delimited by | cannot be used together."
 msgstr "以“|”分隔的选项可以一起使用。"
@@ -1028,7 +1041,7 @@ msgid "I<argument> .\\|.\\|."
 msgstr "I<参数> .\\|.\\|."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:262
+#: ../../man/man1/man.man1:264
 #, no-wrap
 msgid "I<argument> is repeatable."
 msgstr "I<参数> 可以重复。"
@@ -1040,7 +1053,7 @@ msgid "[\\|I<expression>\\|] .\\|.\\|."
 msgstr "[\\|I<表达式>\\|] .\\|.\\|."
 
 #. type: tbl table
-#: ../../man/man1/man.man1:265
+#: ../../man/man1/man.man1:267
 #, no-wrap
 msgid "entire I<expression>\\ within [ ] is repeatable."
 msgstr "“[ ]”内的整个 I<表达式> 可以重复。"
@@ -1079,12 +1092,26 @@ msgstr "显示 I<项目> (程序)  I<ls> 对应的手册页"
 
 #. type: TP
 #: ../../man/man1/man.man1:287
+#, fuzzy, no-wrap
+#| msgid "B<%man%\\ -f>I<\\ smail>"
+msgid "B<%man% >I<man>.I<7>"
+msgstr "B<%man%\\ -f>I<\\ smail>"
+
+#. type: Plain text
+#: ../../man/man1/man.man1:292
+#, fuzzy
+#| msgid "Display the manual page for the I<item> (program)  I<ls>."
+msgid "Display the manual page for macro package I<man> from section I<7>."
+msgstr "显示 I<项目> (程序)  I<ls> 对应的手册页"
+
+#. type: TP
+#: ../../man/man1/man.man1:292
 #, no-wrap
 msgid "B<%man%\\ -a>I<\\ intro>"
 msgstr "B<%man%\\ -a>I<\\ intro>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 msgid ""
 "Display, in succession, all of the available I<intro> manual pages contained "
 "within the manual.  It is possible to quit between successive displays or "
@@ -1094,13 +1121,13 @@ msgstr ""
 "出或跳过任一页。"
 
 #. type: TP
-#: ../../man/man1/man.man1:293
+#: ../../man/man1/man.man1:298
 #, no-wrap
 msgid "B<%man% -t >I<alias >|I< lpr -Pps>"
 msgstr "B<%man% -t >I<alias >|I< lpr -Pps>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 msgid ""
 "Format the manual page referenced by `I<alias>', usually a shell manual "
 "page, into the default B<troff> or B<groff> format and pipe it to the "
@@ -1113,13 +1140,13 @@ msgstr ""
 "PostScript。B<%man% --help> 应该会提示哪个处理器程序与 B<-t> 选项绑定。"
 
 #. type: TP
-#: ../../man/man1/man.man1:310
+#: ../../man/man1/man.man1:315
 #, no-wrap
 msgid "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
 msgstr "B<%man% -l -T>I<dvi ./foo.1x.gz>B< E<gt> >I<./foo.1x.dvi>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 msgid ""
 "This command will decompress and format the nroff source manual page I<./"
 "foo.1x.gz> into a B<device independent (dvi)> file.  The redirection is "
@@ -1133,44 +1160,53 @@ msgstr ""
 "序进一步处理为 PostScript。"
 
 #. type: TP
-#: ../../man/man1/man.man1:326
+#: ../../man/man1/man.man1:331
 #, no-wrap
 msgid "B<%man%\\ -k>I<\\ printf>"
 msgstr "B<%man%\\ -k>I<\\ printf>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
+#, fuzzy
+#| msgid ""
+#| "Search the short descriptions and manual page names for the keyword "
+#| "I<printf> as regular expression.  Print out any matches.  Equivalent to B<"
+#| "%apropos%\\ -r>I<\\ printf>B<.>"
 msgid ""
 "Search the short descriptions and manual page names for the keyword "
 "I<printf> as regular expression.  Print out any matches.  Equivalent to B<"
-"%apropos%\\ -r>I<\\ printf>B<.>"
+"%apropos%>I<\\ printf>B<.>"
 msgstr ""
 "将关键词 I<printf> 作为正则表达式来搜索对应的手册页概述和手册页名称,并打印所"
 "有匹配结果。等效于 B<%apropos%\\ -r>I<\\ printf>B<.>"
 
 #. type: TP
-#: ../../man/man1/man.man1:334
+#: ../../man/man1/man.man1:339
 #, no-wrap
 msgid "B<%man%\\ -f>I<\\ smail>"
 msgstr "B<%man%\\ -f>I<\\ smail>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
+#, fuzzy
+#| msgid ""
+#| "Lookup the manual pages referenced by I<smail> and print out the short "
+#| "descriptions of any found.  Equivalent to B<%whatis%\\ -r>I<\\ smail>B<.>"
 msgid ""
 "Lookup the manual pages referenced by I<smail> and print out the short "
-"descriptions of any found.  Equivalent to B<%whatis%\\ -r>I<\\ smail>B<.>"
+"descriptions of any found.  Equivalent to B<%whatis%>I<\\ smail>B<.>"
 msgstr ""
 "查找 I<smail> 引用的手册页并输出找到的所有概述。等效于 B<%whatis%\\ -r>I<\\ "
 "smail>B<.>"
 
 #. type: SH
-#: ../../man/man1/man.man1:341
+#: ../../man/man1/man.man1:346
 #, no-wrap
 msgid "OVERVIEW"
 msgstr "概述"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:347
+#: ../../man/man1/man.man1:352
 msgid ""
 "Many options are available to B<%man%> in order to give as much flexibility "
 "as possible to the user.  Changes can be made to the search path, section "
@@ -1180,7 +1216,7 @@ msgstr ""
 "操作均可更改,具体如下。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:369
+#: ../../man/man1/man.man1:374
 msgid ""
 "If set, various environment variables are interrogated to determine the "
 "operation of B<%man%>.  It is possible to set the `catch all' variable "
@@ -1201,7 +1237,7 @@ msgstr ""
 "仍然是有效的。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:390
+#: ../../man/man1/man.man1:395
 msgid ""
 "The manual pager utilities packaged as B<man-db> make extensive use of "
 "B<index> database caches.  These caches contain information such as where "
@@ -1222,7 +1258,7 @@ msgstr ""
 #. .B index
 #. caches created `on the fly'.
 #. type: Plain text
-#: ../../man/man1/man.man1:412
+#: ../../man/man1/man.man1:417
 msgid ""
 "If B<%man%> cannot find a B<%mandb%> initiated B<index> database for a "
 "particular manual page hierarchy, it will still search for the requested "
@@ -1236,7 +1272,7 @@ msgstr ""
 "提取信息。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:432
+#: ../../man/man1/man.man1:437
 msgid ""
 "These utilities support compressed source nroff files having, by default, "
 "the extensions of B<.Z>, B<.z> and B<.gz>.  It is possible to deal with any "
@@ -1258,7 +1294,7 @@ msgstr ""
 "详细信息,请参阅 B<manpath>(5)。想了解这样做的详细原因,请阅读标准文档。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:445
+#: ../../man/man1/man.man1:450
 msgid ""
 "International support is available with this package.  Native language "
 "manual pages are accessible (if available on your system)  via use of "
@@ -1275,7 +1311,7 @@ msgstr ""
 #
 #.  Need a \c to make sure we don't get a space where we don't want one
 #. type: Plain text
-#: ../../man/man1/man.man1:456
+#: ../../man/man1/man.man1:461
 msgid ""
 "E<lt>I<language>E<gt>[\\|B<_>E<lt>I<territory>E<gt>\\|[\\|B<."
 ">E<lt>I<character-set>E<gt>\\|[\\|B<,>E<lt>I<version>E<gt>\\|]\\|]\\|]"
@@ -1284,7 +1320,7 @@ msgstr ""
 "[\\|B<,>E<lt>I<版本>E<gt>\\|]\\|]\\|]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:461
+#: ../../man/man1/man.man1:466
 msgid ""
 "If the desired page is available in your I<locale>, it will be displayed in "
 "lieu of the standard (usually American English) page."
@@ -1293,7 +1329,7 @@ msgstr ""
 "显示。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:468
+#: ../../man/man1/man.man1:473
 msgid ""
 "Support for international message catalogues is also featured in this "
 "package and can be activated in the same way, again if available.  If you "
@@ -1306,20 +1342,20 @@ msgstr ""
 "调这类活动的(手册本地化)维护者。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 msgid ""
 "For information regarding other features and extensions available with this "
 "manual pager, please read the documents supplied with the package."
 msgstr "有关此手册分页程序其他可用功能和扩展的信息,请阅读此包提供的文档。"
 
 #. type: SH
-#: ../../man/man1/man.man1:471
+#: ../../man/man1/man.man1:476
 #, no-wrap
 msgid "DEFAULTS"
 msgstr "默认值"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:491
+#: ../../man/man1/man.man1:496
 msgid ""
 "B<%man%> will search for the desired manual pages within the I<index> "
 "database caches. If the B<-u> option is given, a cache consistency check is "
@@ -1341,7 +1377,7 @@ msgstr ""
 "%> 会在查找缓存失败后退回到文件展开查找,就像没有缓存时一样。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:503
+#: ../../man/man1/man.man1:508
 msgid ""
 "Once a manual page has been located, a check is performed to find out if a "
 "relative preformatted `cat' file already exists and is newer than the nroff "
@@ -1357,7 +1393,7 @@ msgstr ""
 "件或它比 nroff 文件旧,nroff 将通过各种程序过滤并立即显示。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:508
+#: ../../man/man1/man.man1:513
 msgid ""
 "If a cat file can be produced (a relative cat directory exists and has "
 "appropriate permissions), B<%man%> will compress and store the cat file in "
@@ -1367,7 +1403,7 @@ msgstr ""
 "缩并保存 cat 文件。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:520
+#: ../../man/man1/man.man1:525
 msgid ""
 "The filters are deciphered by a number of means.  Firstly, the command line "
 "option B<-p> or the environment variable $B<MANROFFSEQ> is interrogated.  If "
@@ -1380,19 +1416,19 @@ msgstr ""
 "查找预处理器字符串。要包含有效的预处理器字符串,第一行必须这样写:"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:523
+#: ../../man/man1/man.man1:528
 msgid "B<'\\e\"> E<lt>B<string>E<gt>"
 msgstr "B<'\\e\"> E<lt>B<字符串>E<gt>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:529
+#: ../../man/man1/man.man1:534
 msgid ""
 "where B<string> can be any combination of letters described by option B<-p> "
 "below."
 msgstr "其中 B<字符串> 可以是下面 B<-p> 选项所描述的任何字符的组合。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:532
+#: ../../man/man1/man.man1:537
 msgid ""
 "If none of the above methods provide any filter information, a default set "
 "is used."
@@ -1400,7 +1436,7 @@ msgstr "如果以上方法都没有提供过滤程序信息,将使用默认程
 
 #.  ********************************************************************
 #. type: Plain text
-#: ../../man/man1/man.man1:553
+#: ../../man/man1/man.man1:558
 msgid ""
 "A formatting pipeline is formed from the filters and the primary formatter "
 "(B<nroff> or [B<tg>]B<roff> with B<-t>)  and executed.  Alternatively, if an "
@@ -1415,7 +1451,7 @@ msgstr ""
 "E> 指定的设备将作为参数传递给它。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 msgid ""
 "Non argument options that are duplicated either on the command line, in "
 "$B<MANOPT>, or both, are not harmful.  For options that require an argument, "
@@ -1425,13 +1461,13 @@ msgstr ""
 "的选项,每次重复将覆盖上个参数值。"
 
 #. type: SS
-#: ../../man/man1/man.man1:559
+#: ../../man/man1/man.man1:564
 #, no-wrap
 msgid "General options"
 msgstr "常规选项"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 msgid ""
 "This option is normally issued as the very first option and resets B<%man"
 "%'s> behaviour to its default.  Its use is to reset those options that may "
@@ -1442,13 +1478,13 @@ msgstr ""
 "何在 $B<MANOPT> 中设置的选项。B<-D> 之后的任何选项保留其原有效果。"
 
 #. type: TP
-#: ../../man/man1/man.man1:577
+#: ../../man/man1/man.man1:582
 #, no-wrap
 msgid "B<--warnings>[=I<warnings\\/>]"
 msgstr "B<--warnings>[=I<警告\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 msgid ""
 "Enable warnings from I<groff>.  This may be used to perform sanity checks on "
 "the source text of manual pages.  I<warnings> is a comma-separated list of "
@@ -1461,13 +1497,13 @@ msgstr ""
 "\\(lq警告\\(rq 节点了解可用的警告名列表。"
 
 #. type: SS
-#: ../../man/man1/man.man1:589
+#: ../../man/man1/man.man1:594
 #, no-wrap
 msgid "Main modes of operation"
 msgstr "主要操作方式"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:598
+#: ../../man/man1/man.man1:603
 msgid ""
 "Equivalent to B<%whatis%>.  Display a short description from the manual "
 "page, if available.  See B<%whatis%>(1)  for details."
@@ -1475,7 +1511,7 @@ msgstr ""
 "等同于 B<%whatis%>。显示来自手册页的加简短说明(若有)。详见 B<%whatis%>(1)。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:607
+#: ../../man/man1/man.man1:612
 msgid ""
 "Equivalent to B<%apropos%>.  Search the short manual page descriptions for "
 "keywords and display any matches.  See B<%apropos%>(1)  for details."
@@ -1484,7 +1520,7 @@ msgstr ""
 "%apropos%>。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:617
+#: ../../man/man1/man.man1:622
 msgid ""
 "Search for text in all manual pages.  This is a brute-force search, and is "
 "likely to take some time; if you can, you should specify a section to reduce "
@@ -1496,11 +1532,19 @@ msgstr ""
 "册章节以减少需要搜索的手册页数量。搜索条目可以是简单的字符串(默认),或正则表"
 "达式(若使用了 B<--regex> 选项)。"
 
+#. type: Plain text
+#: ../../man/man1/man.man1:628
+msgid ""
+"Note that this searches the I<sources> of the manual pages, not the rendered "
+"text, and so may include false positives due to things like comments in "
+"source files.  Searching the rendered text would be much slower."
+msgstr ""
+
 #.  Compressed nroff source files with a supported compression
 #.  extension will be decompressed by man prior to being displaying via the
 #.  usual filters.
 #. type: Plain text
-#: ../../man/man1/man.man1:633
+#: ../../man/man1/man.man1:644
 msgid ""
 "Activate `local' mode.  Format and display local manual files instead of "
 "searching through the system's manual collection.  Each manual page argument "
@@ -1517,14 +1561,14 @@ msgstr ""
 "定了此选项进行尝试,使用名称作为文件名并查找精确匹配。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:637
+#: ../../man/man1/man.man1:648
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "source nroff files that would be formatted."
 msgstr "不显示手册页,但打印将被格式化的 nroff 文件的位置。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:642
+#: ../../man/man1/man.man1:653
 msgid ""
 "Don't actually display the manual pages, but do print the location(s) of the "
 "cat files that would be displayed.  If -w and -W are both specified, print "
@@ -1534,20 +1578,20 @@ msgstr ""
 "同时打印二者,以空格隔开。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 msgid ""
 "This option is not for general use and should only be used by the B<%catman"
 "%> program."
 msgstr "此选项一般不使用,并且只应由 B<%catman%> 程序使用。"
 
 #. type: TP
-#: ../../man/man1/man.man1:647
+#: ../../man/man1/man.man1:658
 #, no-wrap
 msgid "B<-R\\ >I<encoding>,\\ B<--recode>=I<encoding>"
 msgstr "B<-R\\ >I<编码>,\\ B<--recode>=I<编码>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 msgid ""
 "Instead of formatting the manual page in the usual way, output its source "
 "converted to the specified I<encoding>.  If you already know the encoding of "
@@ -1562,13 +1606,13 @@ msgstr ""
 "似的目录结构中。"
 
 #. type: SS
-#: ../../man/man1/man.man1:659
+#: ../../man/man1/man.man1:670
 #, no-wrap
 msgid "Finding manual pages"
 msgstr "查找手册页"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:697
+#: ../../man/man1/man.man1:708
 msgid ""
 "If this system has access to other operating system's manual pages, they can "
 "be accessed using this option.  To search for a manual page from NewOS's "
@@ -1578,7 +1622,7 @@ msgstr ""
 "的手册页集中搜索某个手册页,使用 B<-m> B<NewOS> 选项。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:708
+#: ../../man/man1/man.man1:719
 msgid ""
 "The I<system> specified can be a combination of comma delimited operating "
 "system names.  To include a search of the native operating system's manual "
@@ -1590,7 +1634,7 @@ msgstr ""
 "变量。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:722
+#: ../../man/man1/man.man1:733
 msgid ""
 "Specify an alternate manpath to use.  By default, B<%man%> uses B<%manpath%> "
 "derived code to determine the path to search.  This option overrides the "
@@ -1600,7 +1644,7 @@ msgstr ""
 "码来确定搜索路径。此选项会覆盖 $B<SYSTEM> 环境变量。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 msgid ""
 "A path specified as a manpath must be the root of a manual page hierarchy "
 "structured into sections as described in the man-db manual (under \"The "
@@ -1612,13 +1656,13 @@ msgstr ""
 "项。"
 
 #. type: TP
-#: ../../man/man1/man.man1:729
+#: ../../man/man1/man.man1:740
 #, no-wrap
 msgid "B<-S\\ >I<list>,\\ B<-s\\ >I<list>,\\ B<--sections=>I<list>"
 msgstr "B<-S\\ >I<列表>,\\ B<-s\\ >I<列表>,\\ B<--sections=>I<列表>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 msgid ""
 "List is a colon- or comma-separated list of `order specific' manual sections "
 "to search.  This option overrides the $B<MANSECT> environment variable.  "
@@ -1628,13 +1672,13 @@ msgstr ""
 "$B<MANSECT> 环境变量。(使用 B<-s> 表示是为了与 System V 兼容。)"
 
 #. type: TP
-#: ../../man/man1/man.man1:739
+#: ../../man/man1/man.man1:750
 #, no-wrap
 msgid "B<-e\\ >I<sub-extension>,\\ B<--extension=>I<sub-extension>"
 msgstr "B<-e\\ >I<sub-extension>,\\ B<--extension=>I<sub-extension>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:773
+#: ../../man/man1/man.man1:784
 msgid ""
 "Some systems incorporate large packages of manual pages, such as those that "
 "accompany the B<Tcl> package, into the main manual page hierarchy.  To get "
@@ -1660,17 +1704,17 @@ msgstr ""
 "搜索带有 B<*tcl> 扩展的页面。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:777
+#: ../../man/man1/man.man1:788
 msgid "Ignore case when searching for manual pages.  This is the default."
 msgstr "搜索手册页时忽略大小写。此为默认值。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:780
+#: ../../man/man1/man.man1:791
 msgid "Search for manual pages case-sensitively."
 msgstr "搜索手册页时匹配大小写。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:790
+#: ../../man/man1/man.man1:801
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument as a regular expression, as with "
@@ -1682,7 +1726,7 @@ msgstr ""
 "隐含了 B<-a> 选项。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:805
+#: ../../man/man1/man.man1:816
 msgid ""
 "Show all pages with any part of either their names or their descriptions "
 "matching each I<page> argument using shell-style wildcards, as with "
@@ -1697,7 +1741,7 @@ msgstr ""
 "项隐含了 B<-a> 选项。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:814
+#: ../../man/man1/man.man1:825
 msgid ""
 "If the B<--regex> or B<--wildcard> option is used, match only page names, "
 "not page descriptions, as with B<whatis>(1).  Otherwise, no effect."
@@ -1706,7 +1750,7 @@ msgstr ""
 "像使用 B<whatis>(1) 一样。否则不起作用。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:822
+#: ../../man/man1/man.man1:833
 msgid ""
 "By default, B<%man%> will exit after displaying the most suitable manual "
 "page it finds.  Using this option forces B<%man%> to display all the manual "
@@ -1716,7 +1760,7 @@ msgstr ""
 "%> 显示名字匹配搜索条件的所有的手册页。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:831
+#: ../../man/man1/man.man1:842
 msgid ""
 "This option causes B<%man%> to perform an `inode level' consistency check on "
 "its database caches to ensure that they are an accurate representation of "
@@ -1727,7 +1771,7 @@ msgstr ""
 "系统精确对应。只有安装的 B<%man%> 程序设置了 setuid 权限位时它才有效。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:843
+#: ../../man/man1/man.man1:854
 msgid ""
 "By default, B<%man%> will try to interpret pairs of manual page names given "
 "on the command line as equivalent to a single manual page name containing a "
@@ -1741,24 +1785,24 @@ msgstr ""
 "为每个子命令提供手册页,并用和调用各子命令的语法类似的方式访问它们。例如:"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:852
+#: ../../man/man1/man.man1:863
 msgid "To disable this behaviour, use the B<--no-subpages> option."
 msgstr "要禁用此行为,请使用 B<--no-subpages> 选项。"
 
 #. type: SS
-#: ../../man/man1/man.man1:859
+#: ../../man/man1/man.man1:870
 #, no-wrap
 msgid "Controlling formatted output"
 msgstr "控制格式化输出"
 
 #. type: TP
-#: ../../man/man1/man.man1:860
+#: ../../man/man1/man.man1:871
 #, no-wrap
 msgid "B<-P\\ >I<pager>,\\ B<--pager=>I<pager>"
 msgstr "B<-P\\ >I<分页程序>,\\ B<--pager=>I<分页程序>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:876
+#: ../../man/man1/man.man1:887
 msgid ""
 "Specify which output pager to use.  By default, B<%man%> uses B<%pager%>.  "
 "This option overrides the $B<MANPAGER> environment variable, which in turn "
@@ -1770,7 +1814,7 @@ msgstr ""
 "合用。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:882 ../../man/man1/man.man1:1239
+#: ../../man/man1/man.man1:893 ../../man/man1/man.man1:1250
 msgid ""
 "The value may be a simple command name or a command with arguments, and may "
 "use shell quoting (backslashes, single quotes, or double quotes).  It may "
@@ -1783,13 +1827,13 @@ msgstr ""
 "式或从标准输入获得要显示的文件。"
 
 #. type: TP
-#: ../../man/man1/man.man1:882
+#: ../../man/man1/man.man1:893
 #, no-wrap
 msgid "B<-r\\ >I<prompt>,\\ B<--prompt=>I<prompt>"
 msgstr "B<-r\\ >I<提示>,\\ B<--prompt=>I<提示>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:890
+#: ../../man/man1/man.man1:901
 msgid ""
 "If a recent version of B<less> is used as the pager, B<%man%> will attempt "
 "to set its prompt and some sensible options.  The default prompt looks like"
@@ -1798,7 +1842,7 @@ msgstr ""
 "感选项。默认的提示消息类似于"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:894
+#: ../../man/man1/man.man1:905
 msgid "B<\\ Manual page>I<\\ name>B<(>I<sec>B<)>B<\\ line>I<\\ x>"
 msgstr "B<\\ Manual page>I<\\ name>B<(>I<sec>B<)>B<\\ line>I<\\ x>"
 
@@ -1807,7 +1851,7 @@ msgstr "B<\\ Manual page>I<\\ name>B<(>I<sec>B<)>B<\\ line>I<\\ x>"
 #. The actual default will depend on your chosen
 #. .BR locale .
 #. type: Plain text
-#: ../../man/man1/man.man1:909
+#: ../../man/man1/man.man1:920
 msgid ""
 "where I<name> denotes the manual page name, I<sec> denotes the section it "
 "was found under and I<x> the current line number.  This is achieved by using "
@@ -1821,7 +1865,7 @@ msgstr ""
 #. .B less
 #. rejects the default options or if you prefer a different prompt.
 #. type: Plain text
-#: ../../man/man1/man.man1:922
+#: ../../man/man1/man.man1:933
 msgid ""
 "Supplying B<-r> with a string will override this default.  The string may "
 "contain the text B<$MAN_PN> which will be expanded to the name of the "
@@ -1833,22 +1877,22 @@ msgstr ""
 "串可以表示为"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:924
+#: ../../man/man1/man.man1:935
 msgid "B<\\e\\ Manual\\e\\ page\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
 msgstr "B<\\e\\ Manual\\e\\ page\\e\\ \\e$MAN_PN\\e\\ ?ltline\\e\\ %lt?L/%L.:>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:926
+#: ../../man/man1/man.man1:937
 msgid "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
 msgstr "B<byte\\e\\ %bB?s/%s..?\\e\\ (END):?pB\\e\\ %pB\\e\\e%..>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:928
+#: ../../man/man1/man.man1:939
 msgid "B<(press h for help or q to quit)>"
 msgstr "B<(press h for help or q to quit)>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:943
+#: ../../man/man1/man.man1:954
 msgid ""
 "It is broken into three lines here for the sake of readability only.  For "
 "its meaning see the B<less>(1)  manual page.  The prompt string is first "
@@ -1863,7 +1907,7 @@ msgstr ""
 "设置 B<-ix8> 选项。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:948
+#: ../../man/man1/man.man1:959
 msgid ""
 "The $B<MANLESS> environment variable described below may be used to set a "
 "default prompt string if none is supplied on the command line."
@@ -1871,7 +1915,7 @@ msgstr ""
 "下面描述的 $B<MANLESS> 环境变量可以用来在命令行未指定时设置默认的提示字符串。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:974
+#: ../../man/man1/man.man1:985
 msgid ""
 "When viewing a pure I<ascii>(7)  manual page on a 7 bit terminal or terminal "
 "emulator, some characters may not display correctly when using the "
@@ -1888,43 +1932,43 @@ msgstr ""
 "B<nroff> 的 I<latin1>(7) 设备时才正确显示。"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Description"
 msgstr "描述"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:983
+#: ../../man/man1/man.man1:994
 #, no-wrap
 msgid "Octal"
 msgstr "八进制"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:985
+#: ../../man/man1/man.man1:998
 #, no-wrap
 msgid "continuation hyphen"
 msgstr "连字符"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:988
+#: ../../man/man1/man.man1:1001
 #, no-wrap
 msgid "bullet (middle dot)"
 msgstr "点(中间点)"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:991
+#: ../../man/man1/man.man1:1004
 #, no-wrap
 msgid "acute accent"
 msgstr "重音符号"
 
 #. type: tbl table
-#: ../../man/man1/man.man1:994
+#: ../../man/man1/man.man1:1007
 #, no-wrap
 msgid "multiplication sign"
 msgstr "乘号"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1018
+#: ../../man/man1/man.man1:1029
 msgid ""
 "If the I<latin1> column displays correctly, your terminal may be set up for "
 "I<latin1> characters and this option is not necessary.  If the I<latin1> and "
@@ -1939,7 +1983,7 @@ msgstr ""
 "要使用此选项来查看手册页。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 msgid ""
 "This option is ignored when using options B<-t>, B<-H>, B<-T>, or B<-Z> and "
 "may be useless for B<nroff> other than B<GNU's>."
@@ -1948,13 +1992,13 @@ msgstr ""
 "B<nroff> 程序无用。"
 
 #. type: TP
-#: ../../man/man1/man.man1:1029
+#: ../../man/man1/man.man1:1040
 #, no-wrap
 msgid "B<-E\\ >I<encoding>,\\ B<--encoding>=I<encoding>"
 msgstr "B<-E\\ >I<编码>,\\ B<--encoding>=I<编码>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1040
+#: ../../man/man1/man.man1:1051
 msgid ""
 "Generate output for a character encoding other than the default.  For "
 "backward compatibility, I<encoding> may be an B<nroff> device such as "
@@ -1965,7 +2009,7 @@ msgstr ""
 "备,如 B<ascii>、B<latin1> 或 B<utf8>,也可以是实际的字符编码如 B<UTF-8>。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1049
+#: ../../man/man1/man.man1:1060
 msgid ""
 "Normally, B<nroff> will automatically hyphenate text at line breaks even in "
 "words that do not contain hyphens, if it is necessary to do so to lay out "
@@ -1978,7 +2022,7 @@ msgstr ""
 "时才会被断开。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1058
+#: ../../man/man1/man.man1:1069
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "hyphenating a word at an inappropriate point, do not use this option, but "
@@ -1991,7 +2035,7 @@ msgstr ""
 "该位置可以断字,或在单词开头插入“\\e%”来阻止对它断字。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1065
+#: ../../man/man1/man.man1:1076
 msgid ""
 "Normally, B<nroff> will automatically justify text to both margins.  This "
 "option disables full justification, leaving justified only to the left "
@@ -2001,7 +2045,7 @@ msgstr ""
 "的“ragged-right”(右边不齐)的文本。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 msgid ""
 "If you are writing a manual page and simply want to prevent B<nroff> from "
 "justifying certain paragraphs, do not use this option, but consult the "
@@ -2014,13 +2058,13 @@ msgstr ""
 "时禁止对齐和填充。"
 
 #. type: TP
-#: ../../man/man1/man.man1:1072
+#: ../../man/man1/man.man1:1083
 #, no-wrap
 msgid "B<-p\\ >I<string>,\\ B<--preprocessor=>I<string>"
 msgstr "B<-p\\ >I<字符串>,\\ B<--preprocessor=>I<字符串>"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1091
+#: ../../man/man1/man.man1:1102
 msgid ""
 "Specify the sequence of preprocessors to run before B<nroff> or B<troff>/"
 "B<groff>.  Not all installations will have a full set of preprocessors.  "
@@ -2035,7 +2079,7 @@ msgstr ""
 "$B<MANROFFSEQ> 环境变量。B<%zsoelim%> 总是作为第一个预处理器运行。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 msgid ""
 "Use I<%troff%> to format the manual page to stdout.  This option is not "
 "required in conjunction with B<-H>, B<-T>, or B<-Z>."
@@ -2044,13 +2088,13 @@ msgstr ""
 "一起使用。"
 
 #. type: TP
-#: ../../man/man1/man.man1:1101
+#: ../../man/man1/man.man1:1112
 #, no-wrap
 msgid "B<-T>[I<device\\/>], B<--troff-device>[=I<device\\/>]"
 msgstr "B<-T>[I<设备\\/>], B<--troff-device>[=I<设备\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 msgid ""
 "This option is used to change B<groff> (or possibly B<troff's>)  output to "
 "be suitable for a device other than the default.  It implies B<-t>.  "
@@ -2062,13 +2106,13 @@ msgstr ""
 "B<utf8>、B<X75> 和 B<X100>。"
 
 #. type: TP
-#: ../../man/man1/man.man1:1113
+#: ../../man/man1/man.man1:1124
 #, no-wrap
 msgid "B<-H>[I<browser\\/>], B<--html>[=I<browser\\/>]"
 msgstr "B<-H>[I<浏览器\\/>], B<--html>[=I<浏览器\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 msgid ""
 "This option will cause B<groff> to produce HTML output, and will display "
 "that output in a web browser.  The choice of browser is determined by the "
@@ -2083,13 +2127,13 @@ msgstr ""
 "B<troff> 一起使用。"
 
 #. type: TP
-#: ../../man/man1/man.man1:1129
+#: ../../man/man1/man.man1:1140
 #, no-wrap
 msgid "B<-X>[I<dpi\\/>], B<--gxditview>[=I<dpi\\/>]"
 msgstr "B<-X>[I<dpi\\/>], B<--gxditview>[=I<dpi\\/>]"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1143
+#: ../../man/man1/man.man1:1154
 msgid ""
 "This option displays the output of B<groff> in a graphical window using the "
 "B<gxditview> program.  The I<dpi> (dots per inch) may be 75, 75-12, 100, or "
@@ -2102,7 +2146,7 @@ msgstr ""
 "字号。此选项隐含了带相应 X75、X75-12、X100 或 X100-12 参数的 B<-T> 选项。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 msgid ""
 "B<groff> will run B<troff> and then use an appropriate post-processor to "
 "produce output suitable for the chosen device.  If I<%troff%> is B<groff>, "
@@ -2114,31 +2158,31 @@ msgstr ""
 "了 B<-t> 选项。"
 
 #. type: SS
-#: ../../man/man1/man.man1:1159
+#: ../../man/man1/man.man1:1170
 #, no-wrap
 msgid "Getting help"
 msgstr "获取帮助"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1182
+#: ../../man/man1/man.man1:1193
 msgid "A child process returned a non-zero exit status."
 msgstr "子进程返回了非零的退出状态码。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1185
+#: ../../man/man1/man.man1:1196
 msgid ""
 "At least one of the pages/files/keywords didn't exist or wasn't matched."
 msgstr "至少有一个页面/文件/关键词不存在或不匹配。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1192
+#: ../../man/man1/man.man1:1203
 msgid ""
 "If $B<MANPATH> is set, its value is used as the path to search for manual "
 "pages."
 msgstr "如果设置了 $B<MANPATH>,它的值会用作搜索手册页的路径。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1203
+#: ../../man/man1/man.man1:1214
 msgid ""
 "The contents of $B<MANROFFOPT> are added to the command line every time "
 "B<man> invokes the formatter (B<nroff>, B<troff>, or B<groff>)."
@@ -2147,7 +2191,7 @@ msgstr ""
 "B<groff>)时添加到命令行。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1210
+#: ../../man/man1/man.man1:1221
 msgid ""
 "If $B<MANROFFSEQ> is set, its value is used to determine the set of "
 "preprocessors to pass each manual page through.  The default preprocessor "
@@ -2157,7 +2201,7 @@ msgstr ""
 "默认的预处理器列表因系统而异。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1220 ../../man/man8/catman.man8:88
+#: ../../man/man1/man.man1:1231 ../../man/man8/catman.man8:88
 msgid ""
 "If $B<MANSECT> is set, its value is a colon-delimited list of sections and "
 "it is used to determine which manual sections to search and in what order.  "
@@ -2169,7 +2213,7 @@ msgstr ""
 "B<SECTION> 指令覆盖。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1233
+#: ../../man/man1/man.man1:1244
 msgid ""
 "If $B<MANPAGER> or $B<PAGER> is set ($B<MANPAGER> is used in preference), "
 "its value is used as the name of the program used to display the manual "
@@ -2179,7 +2223,7 @@ msgstr ""
 "示手册页的程序的名称。默认使用 B<%pager%>。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1258
+#: ../../man/man1/man.man1:1269
 msgid ""
 "If $B<MANLESS> is set, its value will be used as the default prompt string "
 "for the B<less> pager, as if it had been passed using the B<-r> option (so "
@@ -2195,7 +2239,7 @@ msgstr ""
 "盖此环境变量。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1274
+#: ../../man/man1/man.man1:1285
 msgid ""
 "If $B<BROWSER> is set, its value is a colon-delimited list of commands, each "
 "of which in turn is used to try to start a web browser for B<man> B<--"
@@ -2208,7 +2252,7 @@ msgstr ""
 "HTML 输出的文件名,I<%%> 会替换成一个百分号(%),I<%c> 会替换成冒号(:)。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1297
+#: ../../man/man1/man.man1:1308
 msgid ""
 "If $B<MANOPT> is set, it will be parsed prior to B<%man%'s> command line and "
 "is expected to be in a similar format.  As all of the other B<%man%> "
@@ -2223,7 +2267,7 @@ msgstr ""
 "分的空格必须被转义。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1311
+#: ../../man/man1/man.man1:1322
 msgid ""
 "If $B<MANWIDTH> is set, its value is used as the line length for which "
 "manual pages should be formatted.  If it is not set, manual pages will be "
@@ -2239,7 +2283,7 @@ msgstr ""
 "时才会保存,即终端行长度介于 66 到 80 个字符时。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1322
+#: ../../man/man1/man.man1:1333
 msgid ""
 "Normally, when output is not being directed to a terminal (such as to a file "
 "or a pipe), formatting characters are discarded to make it easier to read "
@@ -2253,7 +2297,7 @@ msgstr ""
 "这些格式化字符将保存。这对于可以解释格式化字符的 B<%man%> 封装程序有用。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1335
+#: ../../man/man1/man.man1:1346
 msgid ""
 "Normally, when output is being directed to a terminal (usually to a pager), "
 "any error output from the command used to produce formatted versions of "
@@ -2271,7 +2315,7 @@ msgstr ""
 "非空的值,这些错误输出会照常显示。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1347
+#: ../../man/man1/man.man1:1358
 msgid ""
 "Depending on system and implementation, either or both of $B<LANG> and "
 "$B<LC_MESSAGES> will be interrogated for the current message locale.  B<%man"
@@ -2283,35 +2327,35 @@ msgstr ""
 "确的详情。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1351 ../../man/man1/manpath.man1:128
-#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:198
+#: ../../man/man1/man.man1:1362 ../../man/man1/manpath.man1:128
+#: ../../man/man8/catman.man8:98 ../../man/man8/mandb.man8:195
 msgid "man-db configuration file."
 msgstr "man-db 配置文件。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1354
+#: ../../man/man1/man.man1:1365
 msgid "A global manual page hierarchy."
 msgstr "全局手册页层次结构。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 msgid "the man-db package manual, B<FSSTND>"
 msgstr "man-db 包的手册,B<FSSTND>"
 
 #. type: SH
-#: ../../man/man1/man.man1:1383
+#: ../../man/man1/man.man1:1394
 #, no-wrap
 msgid "HISTORY"
 msgstr "历史"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1385
+#: ../../man/man1/man.man1:1396
 msgid ""
 "1990, 1991 \\(en Originally written by John W.\\& Eaton (jwe@che.utexas.edu)."
 msgstr "1990, 1991 \\(en 原作者 John W.\\& Eaton (jwe@che.utexas.edu)。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1388
+#: ../../man/man1/man.man1:1399
 msgid ""
 "Dec 23 1992: Rik Faith (faith@cs.unc.edu) applied bug fixes supplied by "
 "Willem Kasdorp (wkasdo@nikhefk.nikef.nl)."
@@ -2320,7 +2364,7 @@ msgstr ""
 "(wkasdo@nikhefk.nikef.nl) 提供的 bug 补丁。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1392
+#: ../../man/man1/man.man1:1403
 msgid ""
 "30th April 1994 \\(en 23rd February 2000: Wilf. (G.Wilford@ee.surrey.ac.uk)  "
 "has been developing and maintaining this package with the help of a few "
@@ -2330,7 +2374,7 @@ msgstr ""
 "热心人的帮助下开发和维护这个包。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1396
+#: ../../man/man1/man.man1:1407
 msgid ""
 "30th October 1996 \\(en 30th March 2001: Fabrizio Polacco "
 "E<lt>fpolacco@debian.orgE<gt> maintained and enhanced this package for the "
@@ -2340,7 +2384,7 @@ msgstr ""
 "orgE<gt> 为 Debian 项目维护并增强了这个包,过程中得到整个社区的帮助。"
 
 #. type: Plain text
-#: ../../man/man1/man.man1:1398
+#: ../../man/man1/man.man1:1409
 msgid ""
 "31st March 2001 \\(en present day: Colin Watson E<lt>cjwatson@debian."
 "orgE<gt> is now developing and maintaining man-db."
@@ -3101,7 +3145,7 @@ msgstr ""
 "件中指定的所有系统层次结构。"
 
 #. type: Plain text
-#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:216
+#: ../../man/man8/catman.man8:109 ../../man/man8/mandb.man8:213
 msgid "An alternate or FSSTND compliant global I<index> database cache."
 msgstr "替代的或 FSSTND 兼容的全局 I<索引> 数据库缓存。"
 
@@ -3199,8 +3243,9 @@ msgstr "异步"
 
 #. type: tbl table
 #: ../../man/man8/mandb.man8:59
-#, no-wrap
-msgid "Filename\n"
+#, fuzzy, no-wrap
+#| msgid "Filename\n"
+msgid "Filename"
 msgstr "文件名\n"
 
 #. type: tbl table
@@ -3210,68 +3255,64 @@ msgid "Berkeley db"
 msgstr "Berkeley db"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
+#: ../../man/man8/mandb.man8:63
 #, no-wrap
 msgid "Binary tree"
 msgstr "二叉树"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61 ../../man/man8/mandb.man8:64
+#: ../../man/man8/mandb.man8:63 ../../man/man8/mandb.man8:66
 #, no-wrap
 msgid "Yes"
 msgstr "是"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:61
-#, no-wrap
-msgid "I<index.bt>\n"
+#: ../../man/man8/mandb.man8:63
+#, fuzzy, no-wrap
+#| msgid "I<index.bt>\n"
+msgid "I<index.bt>"
 msgstr "I<index.bt>\n"
 
 #. type: tbl table
 #: ../../man/man8/mandb.man8:64
 #, no-wrap
-msgid "GNU gdbm v E<gt>= 1.6"
-msgstr "GNU gdbm v E<gt>= 1.6"
+msgid "GNU gdbm"
+msgstr "GNU gdbm"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
-#: ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:66 ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "Hashed"
 msgstr "已散列"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:64 ../../man/man8/mandb.man8:67
-#, no-wrap
-msgid "I<index.db>\n"
+#: ../../man/man8/mandb.man8:66
+#, fuzzy, no-wrap
+#| msgid "I<index.db>\n"
+msgid "I<index.db>"
 msgstr "I<index.db>\n"
 
 #. type: tbl table
 #: ../../man/man8/mandb.man8:67
 #, no-wrap
-msgid "GNU gdbm v E<lt>  1.6"
-msgstr "GNU gdbm v E<lt>  1.6"
+msgid "UNIX ndbm"
+msgstr "UNIX ndbm"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:67 ../../man/man8/mandb.man8:70
+#: ../../man/man8/mandb.man8:69
 #, no-wrap
 msgid "No"
 msgstr "否"
 
 #. type: tbl table
-#: ../../man/man8/mandb.man8:70
-#, no-wrap
-msgid "UNIX ndbm"
-msgstr "UNIX ndbm"
-
-#. type: tbl table
-#: ../../man/man8/mandb.man8:70
-#, no-wrap
-msgid "I<index.(dir|pag)>\n"
+#: ../../man/man8/mandb.man8:69
+#, fuzzy, no-wrap
+#| msgid "I<index.(dir|pag)>\n"
+msgid "I<index.(dir|pag)>"
 msgstr "I<index.(dir|pag)>\n"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:83
+#: ../../man/man8/mandb.man8:80
 msgid ""
 "Those database types that support asynchronous updates provide enhanced "
 "speed at the cost of possible corruption in the event of unusual "
@@ -3283,26 +3324,26 @@ msgstr ""
 "事情发生,可能要重新以 B<-c> 选项运行 B<%mandb%> 来重建数据库。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:90
+#: ../../man/man8/mandb.man8:87
 msgid "Produce no warnings."
 msgstr "不显示警告。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:94
+#: ../../man/man8/mandb.man8:91
 msgid ""
 "Do not spend time looking for or adding information to the databases "
 "regarding stray cats."
 msgstr "不花时间查找或向数据库添加有关野猫(stray cats)的信息。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:98
+#: ../../man/man8/mandb.man8:95
 msgid ""
 "Do not spend time checking for deleted manual pages and purging them from "
 "the databases."
 msgstr "不花时间检查删除的手册页并从数据库中清理它们。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:110
+#: ../../man/man8/mandb.man8:107
 msgid ""
 "By default, B<%mandb%> will try to update any previously created databases.  "
 "If a database does not exist, it will create it.  This option forces B<%mandb"
@@ -3316,14 +3357,14 @@ msgstr ""
 "到。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:114
+#: ../../man/man8/mandb.man8:111
 msgid ""
 "Create user databases only, even with write permissions necessary to create "
 "system databases."
 msgstr "只创建用户数据库,即使有创建系统数据库所需的写权限。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:120
+#: ../../man/man8/mandb.man8:117
 msgid ""
 "Perform correctness checks on manual pages in the hierarchy search path.  "
 "With this option, B<%mandb%> will not alter existing databases."
@@ -3332,7 +3373,7 @@ msgstr ""
 "现有的数据库。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:134
+#: ../../man/man8/mandb.man8:131
 msgid ""
 "Update only the entries for the given filename.  This option is not for "
 "general use; it is used internally by B<%man%> when it has been compiled "
@@ -3344,44 +3385,44 @@ msgstr ""
 "B<-c> 和 B<-s>。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:141
+#: ../../man/man8/mandb.man8:138
 msgid "Show the usage message, then exit."
 msgstr "显示用法消息,然后退出。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:147
+#: ../../man/man8/mandb.man8:144
 msgid "Show the version, then exit."
 msgstr "显示版本号,然后退出。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:154
+#: ../../man/man8/mandb.man8:151
 msgid "Usage, syntax, or configuration file error."
 msgstr "用法、语法或配置文件错误。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 msgid "A child process failed."
 msgstr "子进程失败。"
 
 #. type: SH
-#: ../../man/man8/mandb.man8:160
+#: ../../man/man8/mandb.man8:157
 #, no-wrap
 msgid "DIAGNOSTICS"
 msgstr "诊断"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 msgid "The following warning messages can be emitted during database building."
 msgstr "在构建数据库时可能会显示以下警告消息。"
 
 #. type: TP
-#: ../../man/man8/mandb.man8:162
+#: ../../man/man8/mandb.man8:159
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: whatis parse for page(sec) failed>"
 msgstr "B<E<lt>文件名E<gt>: 页面(章节) 的 whatis 解析失败>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 msgid ""
 "An attempt to extract whatis line(s) from the given E<lt>filenameE<gt> "
 "failed.  This is usually due to a poorly written manual page, but if many "
@@ -3394,13 +3435,13 @@ msgstr ""
 "兼容的手册页。请参阅 B<lexgrog>(1) 中的 B<WHATIS PARSING> 一节了解更多信息。"
 
 #. type: TP
-#: ../../man/man8/mandb.man8:173
+#: ../../man/man8/mandb.man8:170
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: is a dangling symlink>"
 msgstr "B<E<lt>文件名E<gt>: 是一个的无效的符号链接>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 msgid ""
 "E<lt>filenameE<gt> does not exist but is referenced by a symbolic link.  "
 "Further diagnostics are usually emitted to identify the E<lt>filenameE<gt> "
@@ -3410,13 +3451,13 @@ msgstr ""
 "别出非法链接的 E<lt>文件名E<gt>。"
 
 #. type: TP
-#: ../../man/man8/mandb.man8:178
+#: ../../man/man8/mandb.man8:175
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: bad symlink or ROFF `.so' request>"
 msgstr "B<E<lt>文件名E<gt>: 错误的符号链接或 ROFF `.so' 请求>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 msgid ""
 "E<lt>filenameE<gt> is either a symbolic link to, or contains a ROFF include "
 "request to, a non existent file."
@@ -3425,13 +3466,13 @@ msgstr ""
 "ROFF。"
 
 #. type: TP
-#: ../../man/man8/mandb.man8:182
+#: ../../man/man8/mandb.man8:179
 #, no-wrap
 msgid "B<E<lt>filenameE<gt>: ignoring bogus filename>"
 msgstr "B<E<lt>文件名E<gt>: 将忽略假的文件名>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 msgid ""
 "The E<lt>filenameE<gt> may or may not be a valid manual page but its name is "
 "invalid.  This is usually due to a manual page with sectional extension "
@@ -3441,13 +3482,13 @@ msgstr ""
 "册页包含章节扩展 E<lt>xE<gt> 却被放在了手册页章节 E<lt>yE<gt>。"
 
 #. type: TP
-#: ../../man/man8/mandb.man8:188
+#: ../../man/man8/mandb.man8:185
 #, no-wrap
 msgid "B<E<lt>filename_maskE<gt>: competing extensions>"
 msgstr "B<E<lt>文件名掩码E<gt>: 扩展冲突>"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:194
+#: ../../man/man8/mandb.man8:191
 msgid ""
 "The wildcard E<lt>filename_maskE<gt> is not unique.  This is usually caused "
 "by the existence of both a compressed and uncompressed version of the same "
@@ -3457,12 +3498,12 @@ msgstr ""
 "版本导致的。"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:205
+#: ../../man/man8/mandb.man8:202
 msgid "Older locations for the database cache included:"
 msgstr "包含的数据库缓存的较早位置:"
 
 #. type: Plain text
-#: ../../man/man8/mandb.man8:226
+#: ../../man/man8/mandb.man8:223
 msgid ""
 "The B<WHATIS PARSING> section formerly in this manual page is now part of "
 "B<lexgrog>(1)."
index ad38c30..a53a33a 100644 (file)
@@ -1,4 +1,4 @@
-[po4a_langs] da de fr id ja nl pl ru zh_CN
+[po4a_langs] da de fr id ja nl pl ru sv zh_CN
 
 [po4a_paths] $(podir)/man-db-manpages.pot $lang:$(podir)/$lang.po
 
index df6cdca..4707bfd 100644 (file)
@@ -90,6 +90,7 @@ subdir = man/ru
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -1147,6 +1148,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
diff --git a/man/sv/Makefile.am b/man/sv/Makefile.am
new file mode 100644 (file)
index 0000000..3980932
--- /dev/null
@@ -0,0 +1,43 @@
+## Process this file with automake to produce Makefile.in
+##
+## Copyright (C) 1994, 1995 Graeme Wilford.
+## Copyright (C) 2001, 2002, 2003, 2007, 2008 Colin Watson.
+##
+## This file is part of man-db.
+##
+## man-db is free software; you can redistribute it and/or modify it
+## under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2 of the License, or
+## (at your option) any later version.
+##
+## man-db is distributed in the hope that it will be useful, but
+## WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with man-db; if not, write to the Free Software Foundation,
+## Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+
+LINGUA = nl
+PO4A_LINGUA = yes
+
+EXTRA_DIST = translator.add
+
+man1_MANS = \
+       man1/apropos.1 \
+       man1/lexgrog.1 \
+       man1/man.1 \
+       man1/manconv.1 \
+       man1/manpath.1 \
+       man1/whatis.1 \
+       man1/zsoelim.1
+man5_MANS = \
+       man5/manpath.5
+man8_MANS = \
+       man8/accessdb.8 \
+       man8/catman.8 \
+       man8/mandb.8
+
+include $(top_srcdir)/man/Rules.man
+
diff --git a/man/sv/Makefile.in b/man/sv/Makefile.in
new file mode 100644 (file)
index 0000000..0680119
--- /dev/null
@@ -0,0 +1,2170 @@
+# Makefile.in generated by automake 1.15 from Makefile.am.
+# @configure_input@
+
+# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+VPATH = @srcdir@
+am__is_gnu_make = { \
+  if test -z '$(MAKELEVEL)'; then \
+    false; \
+  elif test -n '$(MAKE_HOST)'; then \
+    true; \
+  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+    true; \
+  else \
+    false; \
+  fi; \
+}
+am__make_running_with_option = \
+  case $${target_option-} in \
+      ?) ;; \
+      *) echo "am__make_running_with_option: internal error: invalid" \
+              "target option '$${target_option-}' specified" >&2; \
+         exit 1;; \
+  esac; \
+  has_opt=no; \
+  sane_makeflags=$$MAKEFLAGS; \
+  if $(am__is_gnu_make); then \
+    sane_makeflags=$$MFLAGS; \
+  else \
+    case $$MAKEFLAGS in \
+      *\\[\ \  ]*) \
+        bs=\\; \
+        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+          | sed "s/$$bs$$bs[$$bs $$bs  ]*//g"`;; \
+    esac; \
+  fi; \
+  skip_next=no; \
+  strip_trailopt () \
+  { \
+    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+  }; \
+  for flg in $$sane_makeflags; do \
+    test $$skip_next = yes && { skip_next=no; continue; }; \
+    case $$flg in \
+      *=*|--*) continue;; \
+        -*I) strip_trailopt 'I'; skip_next=yes;; \
+      -*I?*) strip_trailopt 'I';; \
+        -*O) strip_trailopt 'O'; skip_next=yes;; \
+      -*O?*) strip_trailopt 'O';; \
+        -*l) strip_trailopt 'l'; skip_next=yes;; \
+      -*l?*) strip_trailopt 'l';; \
+      -[dEDm]) skip_next=yes;; \
+      -[JT]) skip_next=yes;; \
+    esac; \
+    case $$flg in \
+      *$$target_option*) has_opt=yes; break;; \
+    esac; \
+  done; \
+  test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
+pkgdatadir = $(datadir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+install_sh_DATA = $(install_sh) -c -m 644
+install_sh_PROGRAM = $(install_sh) -c
+install_sh_SCRIPT = $(install_sh) -c
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = $(program_transform_name)
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+build_triplet = @build@
+host_triplet = @host@
+subdir = man/sv
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
+       $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
+       $(top_srcdir)/m4/man-arg-cats.m4 \
+       $(top_srcdir)/m4/man-arg-config-file.m4 \
+       $(top_srcdir)/m4/man-arg-db.m4 \
+       $(top_srcdir)/m4/man-arg-device.m4 \
+       $(top_srcdir)/m4/man-arg-mandirs.m4 \
+       $(top_srcdir)/m4/man-arg-override-dir.m4 \
+       $(top_srcdir)/m4/man-arg-sections.m4 \
+       $(top_srcdir)/m4/man-arg-setuid.m4 \
+       $(top_srcdir)/m4/man-arg-systemdtmpfilesdir.m4 \
+       $(top_srcdir)/m4/man-arg-undoc.m4 $(top_srcdir)/m4/man-bdb.m4 \
+       $(top_srcdir)/m4/man-check-progs.m4 \
+       $(top_srcdir)/m4/man-compress-lib.m4 \
+       $(top_srcdir)/m4/man-gnu-nroff.m4 \
+       $(top_srcdir)/m4/man-heirloom-nroff.m4 \
+       $(top_srcdir)/m4/man-linguas.m4 $(top_srcdir)/m4/man-po4a.m4 \
+       $(top_srcdir)/m4/man-trans-subst.m4 \
+       $(top_srcdir)/gnulib/m4/00gnulib.m4 \
+       $(top_srcdir)/gnulib/m4/absolute-header.m4 \
+       $(top_srcdir)/gnulib/m4/alloca.m4 \
+       $(top_srcdir)/gnulib/m4/argp.m4 \
+       $(top_srcdir)/gnulib/m4/asm-underscore.m4 \
+       $(top_srcdir)/gnulib/m4/btowc.m4 \
+       $(top_srcdir)/gnulib/m4/canonicalize.m4 \
+       $(top_srcdir)/gnulib/m4/chdir-long.m4 \
+       $(top_srcdir)/gnulib/m4/clock_time.m4 \
+       $(top_srcdir)/gnulib/m4/close.m4 \
+       $(top_srcdir)/gnulib/m4/closedir.m4 \
+       $(top_srcdir)/gnulib/m4/codeset.m4 \
+       $(top_srcdir)/gnulib/m4/configmake.m4 \
+       $(top_srcdir)/gnulib/m4/d-ino.m4 \
+       $(top_srcdir)/gnulib/m4/d-type.m4 \
+       $(top_srcdir)/gnulib/m4/dirent_h.m4 \
+       $(top_srcdir)/gnulib/m4/dirfd.m4 \
+       $(top_srcdir)/gnulib/m4/dirname.m4 \
+       $(top_srcdir)/gnulib/m4/double-slash-root.m4 \
+       $(top_srcdir)/gnulib/m4/dup.m4 $(top_srcdir)/gnulib/m4/dup2.m4 \
+       $(top_srcdir)/gnulib/m4/eealloc.m4 \
+       $(top_srcdir)/gnulib/m4/environ.m4 \
+       $(top_srcdir)/gnulib/m4/errno_h.m4 \
+       $(top_srcdir)/gnulib/m4/error.m4 \
+       $(top_srcdir)/gnulib/m4/exponentd.m4 \
+       $(top_srcdir)/gnulib/m4/extensions.m4 \
+       $(top_srcdir)/gnulib/m4/extern-inline.m4 \
+       $(top_srcdir)/gnulib/m4/fchdir.m4 \
+       $(top_srcdir)/gnulib/m4/fcntl-o.m4 \
+       $(top_srcdir)/gnulib/m4/fcntl.m4 \
+       $(top_srcdir)/gnulib/m4/fcntl_h.m4 \
+       $(top_srcdir)/gnulib/m4/fdopendir.m4 \
+       $(top_srcdir)/gnulib/m4/filenamecat.m4 \
+       $(top_srcdir)/gnulib/m4/float_h.m4 \
+       $(top_srcdir)/gnulib/m4/flock.m4 \
+       $(top_srcdir)/gnulib/m4/fnmatch.m4 \
+       $(top_srcdir)/gnulib/m4/fstat.m4 \
+       $(top_srcdir)/gnulib/m4/fstatat.m4 \
+       $(top_srcdir)/gnulib/m4/futimens.m4 \
+       $(top_srcdir)/gnulib/m4/getcwd-abort-bug.m4 \
+       $(top_srcdir)/gnulib/m4/getcwd-path-max.m4 \
+       $(top_srcdir)/gnulib/m4/getcwd.m4 \
+       $(top_srcdir)/gnulib/m4/getdelim.m4 \
+       $(top_srcdir)/gnulib/m4/getdtablesize.m4 \
+       $(top_srcdir)/gnulib/m4/getline.m4 \
+       $(top_srcdir)/gnulib/m4/getlogin_r.m4 \
+       $(top_srcdir)/gnulib/m4/getopt.m4 \
+       $(top_srcdir)/gnulib/m4/gettext.m4 \
+       $(top_srcdir)/gnulib/m4/gettime.m4 \
+       $(top_srcdir)/gnulib/m4/gettimeofday.m4 \
+       $(top_srcdir)/gnulib/m4/glibc21.m4 \
+       $(top_srcdir)/gnulib/m4/glob.m4 \
+       $(top_srcdir)/gnulib/m4/gnulib-common.m4 \
+       $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \
+       $(top_srcdir)/gnulib/m4/iconv.m4 \
+       $(top_srcdir)/gnulib/m4/idpriv.m4 \
+       $(top_srcdir)/gnulib/m4/include_next.m4 \
+       $(top_srcdir)/gnulib/m4/intlmacosx.m4 \
+       $(top_srcdir)/gnulib/m4/intmax_t.m4 \
+       $(top_srcdir)/gnulib/m4/inttypes_h.m4 \
+       $(top_srcdir)/gnulib/m4/ioctl.m4 \
+       $(top_srcdir)/gnulib/m4/langinfo_h.m4 \
+       $(top_srcdir)/gnulib/m4/largefile.m4 \
+       $(top_srcdir)/gnulib/m4/lib-ignore.m4 \
+       $(top_srcdir)/gnulib/m4/lib-ld.m4 \
+       $(top_srcdir)/gnulib/m4/lib-link.m4 \
+       $(top_srcdir)/gnulib/m4/lib-prefix.m4 \
+       $(top_srcdir)/gnulib/m4/libtool.m4 \
+       $(top_srcdir)/gnulib/m4/localcharset.m4 \
+       $(top_srcdir)/gnulib/m4/locale-fr.m4 \
+       $(top_srcdir)/gnulib/m4/locale-ja.m4 \
+       $(top_srcdir)/gnulib/m4/locale-zh.m4 \
+       $(top_srcdir)/gnulib/m4/locale_h.m4 \
+       $(top_srcdir)/gnulib/m4/localeconv.m4 \
+       $(top_srcdir)/gnulib/m4/lock.m4 \
+       $(top_srcdir)/gnulib/m4/longlong.m4 \
+       $(top_srcdir)/gnulib/m4/lstat.m4 \
+       $(top_srcdir)/gnulib/m4/ltoptions.m4 \
+       $(top_srcdir)/gnulib/m4/ltsugar.m4 \
+       $(top_srcdir)/gnulib/m4/ltversion.m4 \
+       $(top_srcdir)/gnulib/m4/lt~obsolete.m4 \
+       $(top_srcdir)/gnulib/m4/malloc.m4 \
+       $(top_srcdir)/gnulib/m4/malloca.m4 \
+       $(top_srcdir)/gnulib/m4/mbrtowc.m4 \
+       $(top_srcdir)/gnulib/m4/mbsinit.m4 \
+       $(top_srcdir)/gnulib/m4/mbsrtowcs.m4 \
+       $(top_srcdir)/gnulib/m4/mbstate_t.m4 \
+       $(top_srcdir)/gnulib/m4/mbtowc.m4 \
+       $(top_srcdir)/gnulib/m4/memchr.m4 \
+       $(top_srcdir)/gnulib/m4/mempcpy.m4 \
+       $(top_srcdir)/gnulib/m4/memrchr.m4 \
+       $(top_srcdir)/gnulib/m4/minmax.m4 \
+       $(top_srcdir)/gnulib/m4/mkdtemp.m4 \
+       $(top_srcdir)/gnulib/m4/mkstemp.m4 \
+       $(top_srcdir)/gnulib/m4/mmap-anon.m4 \
+       $(top_srcdir)/gnulib/m4/mode_t.m4 \
+       $(top_srcdir)/gnulib/m4/msvc-inval.m4 \
+       $(top_srcdir)/gnulib/m4/msvc-nothrow.m4 \
+       $(top_srcdir)/gnulib/m4/multiarch.m4 \
+       $(top_srcdir)/gnulib/m4/nanosleep.m4 \
+       $(top_srcdir)/gnulib/m4/nl_langinfo.m4 \
+       $(top_srcdir)/gnulib/m4/nls.m4 \
+       $(top_srcdir)/gnulib/m4/nocrash.m4 \
+       $(top_srcdir)/gnulib/m4/nonblocking.m4 \
+       $(top_srcdir)/gnulib/m4/off_t.m4 \
+       $(top_srcdir)/gnulib/m4/onceonly.m4 \
+       $(top_srcdir)/gnulib/m4/open.m4 \
+       $(top_srcdir)/gnulib/m4/openat.m4 \
+       $(top_srcdir)/gnulib/m4/opendir.m4 \
+       $(top_srcdir)/gnulib/m4/pathmax.m4 \
+       $(top_srcdir)/gnulib/m4/po.m4 \
+       $(top_srcdir)/gnulib/m4/printf.m4 \
+       $(top_srcdir)/gnulib/m4/progtest.m4 \
+       $(top_srcdir)/gnulib/m4/raise.m4 \
+       $(top_srcdir)/gnulib/m4/rawmemchr.m4 \
+       $(top_srcdir)/gnulib/m4/readdir.m4 \
+       $(top_srcdir)/gnulib/m4/readlink.m4 \
+       $(top_srcdir)/gnulib/m4/realloc.m4 \
+       $(top_srcdir)/gnulib/m4/regex.m4 \
+       $(top_srcdir)/gnulib/m4/rename.m4 \
+       $(top_srcdir)/gnulib/m4/rewinddir.m4 \
+       $(top_srcdir)/gnulib/m4/rmdir.m4 \
+       $(top_srcdir)/gnulib/m4/same.m4 \
+       $(top_srcdir)/gnulib/m4/save-cwd.m4 \
+       $(top_srcdir)/gnulib/m4/secure_getenv.m4 \
+       $(top_srcdir)/gnulib/m4/select.m4 \
+       $(top_srcdir)/gnulib/m4/setenv.m4 \
+       $(top_srcdir)/gnulib/m4/sigaction.m4 \
+       $(top_srcdir)/gnulib/m4/signal_h.m4 \
+       $(top_srcdir)/gnulib/m4/signalblocking.m4 \
+       $(top_srcdir)/gnulib/m4/size_max.m4 \
+       $(top_srcdir)/gnulib/m4/sleep.m4 \
+       $(top_srcdir)/gnulib/m4/socketlib.m4 \
+       $(top_srcdir)/gnulib/m4/sockets.m4 \
+       $(top_srcdir)/gnulib/m4/socklen.m4 \
+       $(top_srcdir)/gnulib/m4/ssize_t.m4 \
+       $(top_srcdir)/gnulib/m4/stat-time.m4 \
+       $(top_srcdir)/gnulib/m4/stat.m4 \
+       $(top_srcdir)/gnulib/m4/stdalign.m4 \
+       $(top_srcdir)/gnulib/m4/stdarg.m4 \
+       $(top_srcdir)/gnulib/m4/stdbool.m4 \
+       $(top_srcdir)/gnulib/m4/stddef_h.m4 \
+       $(top_srcdir)/gnulib/m4/stdint.m4 \
+       $(top_srcdir)/gnulib/m4/stdint_h.m4 \
+       $(top_srcdir)/gnulib/m4/stdio_h.m4 \
+       $(top_srcdir)/gnulib/m4/stdlib_h.m4 \
+       $(top_srcdir)/gnulib/m4/strcase.m4 \
+       $(top_srcdir)/gnulib/m4/strcasestr.m4 \
+       $(top_srcdir)/gnulib/m4/strchrnul.m4 \
+       $(top_srcdir)/gnulib/m4/strdup.m4 \
+       $(top_srcdir)/gnulib/m4/strerror.m4 \
+       $(top_srcdir)/gnulib/m4/string_h.m4 \
+       $(top_srcdir)/gnulib/m4/strings_h.m4 \
+       $(top_srcdir)/gnulib/m4/strndup.m4 \
+       $(top_srcdir)/gnulib/m4/strnlen.m4 \
+       $(top_srcdir)/gnulib/m4/strsep.m4 \
+       $(top_srcdir)/gnulib/m4/sys_file_h.m4 \
+       $(top_srcdir)/gnulib/m4/sys_ioctl_h.m4 \
+       $(top_srcdir)/gnulib/m4/sys_select_h.m4 \
+       $(top_srcdir)/gnulib/m4/sys_socket_h.m4 \
+       $(top_srcdir)/gnulib/m4/sys_stat_h.m4 \
+       $(top_srcdir)/gnulib/m4/sys_time_h.m4 \
+       $(top_srcdir)/gnulib/m4/sys_types_h.m4 \
+       $(top_srcdir)/gnulib/m4/sys_uio_h.m4 \
+       $(top_srcdir)/gnulib/m4/sysexits.m4 \
+       $(top_srcdir)/gnulib/m4/tempname.m4 \
+       $(top_srcdir)/gnulib/m4/threadlib.m4 \
+       $(top_srcdir)/gnulib/m4/time_h.m4 \
+       $(top_srcdir)/gnulib/m4/timespec.m4 \
+       $(top_srcdir)/gnulib/m4/unistd-safer.m4 \
+       $(top_srcdir)/gnulib/m4/unistd_h.m4 \
+       $(top_srcdir)/gnulib/m4/utimbuf.m4 \
+       $(top_srcdir)/gnulib/m4/utimens.m4 \
+       $(top_srcdir)/gnulib/m4/utimes.m4 \
+       $(top_srcdir)/gnulib/m4/vasnprintf.m4 \
+       $(top_srcdir)/gnulib/m4/vasprintf.m4 \
+       $(top_srcdir)/gnulib/m4/vsnprintf.m4 \
+       $(top_srcdir)/gnulib/m4/warn-on-use.m4 \
+       $(top_srcdir)/gnulib/m4/warnings.m4 \
+       $(top_srcdir)/gnulib/m4/wchar_h.m4 \
+       $(top_srcdir)/gnulib/m4/wchar_t.m4 \
+       $(top_srcdir)/gnulib/m4/wcrtomb.m4 \
+       $(top_srcdir)/gnulib/m4/wctype_h.m4 \
+       $(top_srcdir)/gnulib/m4/wint_t.m4 \
+       $(top_srcdir)/gnulib/m4/xalloc.m4 \
+       $(top_srcdir)/gnulib/m4/xgetcwd.m4 \
+       $(top_srcdir)/gnulib/m4/xsize.m4 \
+       $(top_srcdir)/gnulib/m4/xstrndup.m4 \
+       $(top_srcdir)/gnulib/m4/xvasprintf.m4 \
+       $(top_srcdir)/configure.ac
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+       $(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
+mkinstalldirs = $(install_sh) -d
+CONFIG_HEADER = $(top_builddir)/config.h
+CONFIG_CLEAN_FILES =
+CONFIG_CLEAN_VPATH_FILES =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo "  GEN     " $@;
+am__v_GEN_1 = 
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 = 
+SOURCES =
+DIST_SOURCES =
+am__can_run_installinfo = \
+  case $$AM_UPDATE_INFO_DIR in \
+    n|no|NO) false;; \
+    *) (install-info --version) >/dev/null 2>&1;; \
+  esac
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+am__vpath_adj = case $$p in \
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+    *) f=$$p;; \
+  esac;
+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
+am__install_max = 40
+am__nobase_strip_setup = \
+  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
+am__nobase_strip = \
+  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
+am__nobase_list = $(am__nobase_strip_setup); \
+  for p in $$list; do echo "$$p $$p"; done | \
+  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
+  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
+    if (++n[$$2] == $(am__install_max)) \
+      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
+    END { for (dir in files) print dir, files[dir] }'
+am__base_list = \
+  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
+  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+am__uninstall_files_from_dir = { \
+  test -z "$$files" \
+    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
+    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
+         $(am__cd) "$$dir" && rm -f $$files; }; \
+  }
+man1dir = $(mandir)/man1
+am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)" \
+       "$(DESTDIR)$(man8dir)"
+man5dir = $(mandir)/man5
+man8dir = $(mandir)/man8
+NROFF = nroff
+MANS = $(man1_MANS) $(man5_MANS) $(man8_MANS)
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+am__tty_colors_dummy = \
+  mgn= red= grn= lgn= blu= brg= std=; \
+  am__color_tests=no
+am__tty_colors = { \
+  $(am__tty_colors_dummy); \
+  if test "X$(AM_COLOR_TESTS)" = Xno; then \
+    am__color_tests=no; \
+  elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
+    am__color_tests=yes; \
+  elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
+    am__color_tests=yes; \
+  fi; \
+  if test $$am__color_tests = yes; then \
+    red='\e[0;31m'; \
+    grn='\e[0;32m'; \
+    lgn='\e[1;32m'; \
+    blu='\e[1;34m'; \
+    mgn='\e[0;35m'; \
+    brg='\e[1m'; \
+    std='\e[m'; \
+  fi; \
+}
+am__recheck_rx = ^[    ]*:recheck:[    ]*
+am__global_test_result_rx = ^[         ]*:global-test-result:[         ]*
+am__copy_in_global_log_rx = ^[         ]*:copy-in-global-log:[         ]*
+# A command that, given a newline-separated list of test names on the
+# standard input, print the name of the tests that are to be re-run
+# upon "make recheck".
+am__list_recheck_tests = $(AWK) '{ \
+  recheck = 1; \
+  while ((rc = (getline line < ($$0 ".trs"))) != 0) \
+    { \
+      if (rc < 0) \
+        { \
+          if ((getline line2 < ($$0 ".log")) < 0) \
+           recheck = 0; \
+          break; \
+        } \
+      else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \
+        { \
+          recheck = 0; \
+          break; \
+        } \
+      else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \
+        { \
+          break; \
+        } \
+    }; \
+  if (recheck) \
+    print $$0; \
+  close ($$0 ".trs"); \
+  close ($$0 ".log"); \
+}'
+# A command that, given a newline-separated list of test names on the
+# standard input, create the global log from their .trs and .log files.
+am__create_global_log = $(AWK) ' \
+function fatal(msg) \
+{ \
+  print "fatal: making $@: " msg | "cat >&2"; \
+  exit 1; \
+} \
+function rst_section(header) \
+{ \
+  print header; \
+  len = length(header); \
+  for (i = 1; i <= len; i = i + 1) \
+    printf "="; \
+  printf "\n\n"; \
+} \
+{ \
+  copy_in_global_log = 1; \
+  global_test_result = "RUN"; \
+  while ((rc = (getline line < ($$0 ".trs"))) != 0) \
+    { \
+      if (rc < 0) \
+         fatal("failed to read from " $$0 ".trs"); \
+      if (line ~ /$(am__global_test_result_rx)/) \
+        { \
+          sub("$(am__global_test_result_rx)", "", line); \
+          sub("[       ]*$$", "", line); \
+          global_test_result = line; \
+        } \
+      else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \
+        copy_in_global_log = 0; \
+    }; \
+  if (copy_in_global_log) \
+    { \
+      rst_section(global_test_result ": " $$0); \
+      while ((rc = (getline line < ($$0 ".log"))) != 0) \
+      { \
+        if (rc < 0) \
+          fatal("failed to read from " $$0 ".log"); \
+        print line; \
+      }; \
+      printf "\n"; \
+    }; \
+  close ($$0 ".trs"); \
+  close ($$0 ".log"); \
+}'
+# Restructured Text title.
+am__rst_title = { sed 's/.*/   &   /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; }
+# Solaris 10 'make', and several other traditional 'make' implementations,
+# pass "-e" to $(SHELL), and POSIX 2008 even requires this.  Work around it
+# by disabling -e (using the XSI extension "set +e") if it's set.
+am__sh_e_setup = case $$- in *e*) set +e;; esac
+# Default flags passed to test drivers.
+am__common_driver_flags = \
+  --color-tests "$$am__color_tests" \
+  --enable-hard-errors "$$am__enable_hard_errors" \
+  --expect-failure "$$am__expect_failure"
+# To be inserted before the command running the test.  Creates the
+# directory for the log if needed.  Stores in $dir the directory
+# containing $f, in $tst the test, in $log the log.  Executes the
+# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
+# passes TESTS_ENVIRONMENT.  Set up options for the wrapper that
+# will run the test scripts (or their associated LOG_COMPILER, if
+# thy have one).
+am__check_pre = \
+$(am__sh_e_setup);                                     \
+$(am__vpath_adj_setup) $(am__vpath_adj)                        \
+$(am__tty_colors);                                     \
+srcdir=$(srcdir); export srcdir;                       \
+case "$@" in                                           \
+  */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;;   \
+    *) am__odir=.;;                                    \
+esac;                                                  \
+test "x$$am__odir" = x"." || test -d "$$am__odir"      \
+  || $(MKDIR_P) "$$am__odir" || exit $$?;              \
+if test -f "./$$f"; then dir=./;                       \
+elif test -f "$$f"; then dir=;                         \
+else dir="$(srcdir)/"; fi;                             \
+tst=$$dir$$f; log='$@';                                \
+if test -n '$(DISABLE_HARD_ERRORS)'; then              \
+  am__enable_hard_errors=no;                           \
+else                                                   \
+  am__enable_hard_errors=yes;                          \
+fi;                                                    \
+case " $(XFAIL_TESTS) " in                             \
+  *[\ \        ]$$f[\ \        ]* | *[\ \      ]$$dir$$f[\ \   ]*) \
+    am__expect_failure=yes;;                           \
+  *)                                                   \
+    am__expect_failure=no;;                            \
+esac;                                                  \
+$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT)
+# A shell command to get the names of the tests scripts with any registered
+# extension removed (i.e., equivalently, the names of the test logs, with
+# the '.log' extension removed).  The result is saved in the shell variable
+# '$bases'.  This honors runtime overriding of TESTS and TEST_LOGS.  Sadly,
+# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)",
+# since that might cause problem with VPATH rewrites for suffix-less tests.
+# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'.
+am__set_TESTS_bases = \
+  bases='$(TEST_LOGS)'; \
+  bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
+  bases=`echo $$bases`
+RECHECK_LOGS = $(TEST_LOGS)
+AM_RECURSIVE_TARGETS = check recheck
+TEST_SUITE_LOG = test-suite.log
+TEST_EXTENSIONS = @EXEEXT@ .test
+LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver
+LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)
+am__set_b = \
+  case '$@' in \
+    */*) \
+      case '$*' in \
+        */*) b='$*';; \
+          *) b=`echo '$@' | sed 's/\.log$$//'`; \
+       esac;; \
+    *) \
+      b='$*';; \
+  esac
+am__test_logs1 = $(TESTS:=.log)
+am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
+TEST_LOGS = $(am__test_logs2:.test.log=.log)
+TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver
+TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
+       $(TEST_LOG_FLAGS)
+am__DIST_COMMON = $(srcdir)/Makefile.in \
+       $(top_srcdir)/build-aux/test-driver \
+       $(top_srcdir)/man/Rules.man
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+pkglibexecdir = @pkglibexecdir@
+ACLOCAL = @ACLOCAL@
+ALLOCA = @ALLOCA@
+ALLOCA_H = @ALLOCA_H@
+AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+APPLE_UNIVERSAL_BUILD = @APPLE_UNIVERSAL_BUILD@
+AR = @AR@
+ARFLAGS = @ARFLAGS@
+ASM_SYMBOL_PREFIX = @ASM_SYMBOL_PREFIX@
+AUTOCONF = @AUTOCONF@
+AUTOHEADER = @AUTOHEADER@
+AUTOMAKE = @AUTOMAKE@
+AWK = @AWK@
+BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@
+BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@
+BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@
+BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@
+BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@
+CC = @CC@
+CCDEPMODE = @CCDEPMODE@
+CFLAGS = @CFLAGS@
+CPP = @CPP@
+CPPFLAGS = @CPPFLAGS@
+CYGPATH_W = @CYGPATH_W@
+DBLIBS = @DBLIBS@
+DBTYPE = @DBTYPE@
+DEFS = @DEFS@
+DEPDIR = @DEPDIR@
+DLLTOOL = @DLLTOOL@
+DSYMUTIL = @DSYMUTIL@
+DUMPBIN = @DUMPBIN@
+ECHO_C = @ECHO_C@
+ECHO_N = @ECHO_N@
+ECHO_T = @ECHO_T@
+EGREP = @EGREP@
+EMULTIHOP_HIDDEN = @EMULTIHOP_HIDDEN@
+EMULTIHOP_VALUE = @EMULTIHOP_VALUE@
+ENOLINK_HIDDEN = @ENOLINK_HIDDEN@
+ENOLINK_VALUE = @ENOLINK_VALUE@
+EOVERFLOW_HIDDEN = @EOVERFLOW_HIDDEN@
+EOVERFLOW_VALUE = @EOVERFLOW_VALUE@
+ERRNO_H = @ERRNO_H@
+EXEEXT = @EXEEXT@
+FGREP = @FGREP@
+FLOAT_H = @FLOAT_H@
+FNMATCH_H = @FNMATCH_H@
+GETOPT_H = @GETOPT_H@
+GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
+GLIBC21 = @GLIBC21@
+GLOB_H = @GLOB_H@
+GMSGFMT = @GMSGFMT@
+GMSGFMT_015 = @GMSGFMT_015@
+GNULIB_ACCEPT = @GNULIB_ACCEPT@
+GNULIB_ACCEPT4 = @GNULIB_ACCEPT4@
+GNULIB_ALPHASORT = @GNULIB_ALPHASORT@
+GNULIB_ATOLL = @GNULIB_ATOLL@
+GNULIB_BIND = @GNULIB_BIND@
+GNULIB_BTOWC = @GNULIB_BTOWC@
+GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@
+GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@
+GNULIB_CHDIR = @GNULIB_CHDIR@
+GNULIB_CHOWN = @GNULIB_CHOWN@
+GNULIB_CLOSE = @GNULIB_CLOSE@
+GNULIB_CLOSEDIR = @GNULIB_CLOSEDIR@
+GNULIB_CONNECT = @GNULIB_CONNECT@
+GNULIB_DIRFD = @GNULIB_DIRFD@
+GNULIB_DPRINTF = @GNULIB_DPRINTF@
+GNULIB_DUP = @GNULIB_DUP@
+GNULIB_DUP2 = @GNULIB_DUP2@
+GNULIB_DUP3 = @GNULIB_DUP3@
+GNULIB_DUPLOCALE = @GNULIB_DUPLOCALE@
+GNULIB_ENVIRON = @GNULIB_ENVIRON@
+GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@
+GNULIB_FACCESSAT = @GNULIB_FACCESSAT@
+GNULIB_FCHDIR = @GNULIB_FCHDIR@
+GNULIB_FCHMODAT = @GNULIB_FCHMODAT@
+GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@
+GNULIB_FCLOSE = @GNULIB_FCLOSE@
+GNULIB_FCNTL = @GNULIB_FCNTL@
+GNULIB_FDATASYNC = @GNULIB_FDATASYNC@
+GNULIB_FDOPEN = @GNULIB_FDOPEN@
+GNULIB_FDOPENDIR = @GNULIB_FDOPENDIR@
+GNULIB_FFLUSH = @GNULIB_FFLUSH@
+GNULIB_FFS = @GNULIB_FFS@
+GNULIB_FFSL = @GNULIB_FFSL@
+GNULIB_FFSLL = @GNULIB_FFSLL@
+GNULIB_FGETC = @GNULIB_FGETC@
+GNULIB_FGETS = @GNULIB_FGETS@
+GNULIB_FLOCK = @GNULIB_FLOCK@
+GNULIB_FOPEN = @GNULIB_FOPEN@
+GNULIB_FPRINTF = @GNULIB_FPRINTF@
+GNULIB_FPRINTF_POSIX = @GNULIB_FPRINTF_POSIX@
+GNULIB_FPURGE = @GNULIB_FPURGE@
+GNULIB_FPUTC = @GNULIB_FPUTC@
+GNULIB_FPUTS = @GNULIB_FPUTS@
+GNULIB_FREAD = @GNULIB_FREAD@
+GNULIB_FREOPEN = @GNULIB_FREOPEN@
+GNULIB_FSCANF = @GNULIB_FSCANF@
+GNULIB_FSEEK = @GNULIB_FSEEK@
+GNULIB_FSEEKO = @GNULIB_FSEEKO@
+GNULIB_FSTAT = @GNULIB_FSTAT@
+GNULIB_FSTATAT = @GNULIB_FSTATAT@
+GNULIB_FSYNC = @GNULIB_FSYNC@
+GNULIB_FTELL = @GNULIB_FTELL@
+GNULIB_FTELLO = @GNULIB_FTELLO@
+GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@
+GNULIB_FUTIMENS = @GNULIB_FUTIMENS@
+GNULIB_FWRITE = @GNULIB_FWRITE@
+GNULIB_GETC = @GNULIB_GETC@
+GNULIB_GETCHAR = @GNULIB_GETCHAR@
+GNULIB_GETCWD = @GNULIB_GETCWD@
+GNULIB_GETDELIM = @GNULIB_GETDELIM@
+GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@
+GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@
+GNULIB_GETGROUPS = @GNULIB_GETGROUPS@
+GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@
+GNULIB_GETLINE = @GNULIB_GETLINE@
+GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@
+GNULIB_GETLOGIN = @GNULIB_GETLOGIN@
+GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@
+GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@
+GNULIB_GETPEERNAME = @GNULIB_GETPEERNAME@
+GNULIB_GETSOCKNAME = @GNULIB_GETSOCKNAME@
+GNULIB_GETSOCKOPT = @GNULIB_GETSOCKOPT@
+GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@
+GNULIB_GETTIMEOFDAY = @GNULIB_GETTIMEOFDAY@
+GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@
+GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@
+GNULIB_GRANTPT = @GNULIB_GRANTPT@
+GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@
+GNULIB_IOCTL = @GNULIB_IOCTL@
+GNULIB_ISATTY = @GNULIB_ISATTY@
+GNULIB_ISWBLANK = @GNULIB_ISWBLANK@
+GNULIB_ISWCTYPE = @GNULIB_ISWCTYPE@
+GNULIB_LCHMOD = @GNULIB_LCHMOD@
+GNULIB_LCHOWN = @GNULIB_LCHOWN@
+GNULIB_LINK = @GNULIB_LINK@
+GNULIB_LINKAT = @GNULIB_LINKAT@
+GNULIB_LISTEN = @GNULIB_LISTEN@
+GNULIB_LOCALECONV = @GNULIB_LOCALECONV@
+GNULIB_LSEEK = @GNULIB_LSEEK@
+GNULIB_LSTAT = @GNULIB_LSTAT@
+GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@
+GNULIB_MBRLEN = @GNULIB_MBRLEN@
+GNULIB_MBRTOWC = @GNULIB_MBRTOWC@
+GNULIB_MBSCASECMP = @GNULIB_MBSCASECMP@
+GNULIB_MBSCASESTR = @GNULIB_MBSCASESTR@
+GNULIB_MBSCHR = @GNULIB_MBSCHR@
+GNULIB_MBSCSPN = @GNULIB_MBSCSPN@
+GNULIB_MBSINIT = @GNULIB_MBSINIT@
+GNULIB_MBSLEN = @GNULIB_MBSLEN@
+GNULIB_MBSNCASECMP = @GNULIB_MBSNCASECMP@
+GNULIB_MBSNLEN = @GNULIB_MBSNLEN@
+GNULIB_MBSNRTOWCS = @GNULIB_MBSNRTOWCS@
+GNULIB_MBSPBRK = @GNULIB_MBSPBRK@
+GNULIB_MBSPCASECMP = @GNULIB_MBSPCASECMP@
+GNULIB_MBSRCHR = @GNULIB_MBSRCHR@
+GNULIB_MBSRTOWCS = @GNULIB_MBSRTOWCS@
+GNULIB_MBSSEP = @GNULIB_MBSSEP@
+GNULIB_MBSSPN = @GNULIB_MBSSPN@
+GNULIB_MBSSTR = @GNULIB_MBSSTR@
+GNULIB_MBSTOK_R = @GNULIB_MBSTOK_R@
+GNULIB_MBTOWC = @GNULIB_MBTOWC@
+GNULIB_MEMCHR = @GNULIB_MEMCHR@
+GNULIB_MEMMEM = @GNULIB_MEMMEM@
+GNULIB_MEMPCPY = @GNULIB_MEMPCPY@
+GNULIB_MEMRCHR = @GNULIB_MEMRCHR@
+GNULIB_MKDIRAT = @GNULIB_MKDIRAT@
+GNULIB_MKDTEMP = @GNULIB_MKDTEMP@
+GNULIB_MKFIFO = @GNULIB_MKFIFO@
+GNULIB_MKFIFOAT = @GNULIB_MKFIFOAT@
+GNULIB_MKNOD = @GNULIB_MKNOD@
+GNULIB_MKNODAT = @GNULIB_MKNODAT@
+GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@
+GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@
+GNULIB_MKSTEMP = @GNULIB_MKSTEMP@
+GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@
+GNULIB_MKTIME = @GNULIB_MKTIME@
+GNULIB_NANOSLEEP = @GNULIB_NANOSLEEP@
+GNULIB_NL_LANGINFO = @GNULIB_NL_LANGINFO@
+GNULIB_NONBLOCKING = @GNULIB_NONBLOCKING@
+GNULIB_OBSTACK_PRINTF = @GNULIB_OBSTACK_PRINTF@
+GNULIB_OBSTACK_PRINTF_POSIX = @GNULIB_OBSTACK_PRINTF_POSIX@
+GNULIB_OPEN = @GNULIB_OPEN@
+GNULIB_OPENAT = @GNULIB_OPENAT@
+GNULIB_OPENDIR = @GNULIB_OPENDIR@
+GNULIB_PCLOSE = @GNULIB_PCLOSE@
+GNULIB_PERROR = @GNULIB_PERROR@
+GNULIB_PIPE = @GNULIB_PIPE@
+GNULIB_PIPE2 = @GNULIB_PIPE2@
+GNULIB_POPEN = @GNULIB_POPEN@
+GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@
+GNULIB_PREAD = @GNULIB_PREAD@
+GNULIB_PRINTF = @GNULIB_PRINTF@
+GNULIB_PRINTF_POSIX = @GNULIB_PRINTF_POSIX@
+GNULIB_PSELECT = @GNULIB_PSELECT@
+GNULIB_PTHREAD_SIGMASK = @GNULIB_PTHREAD_SIGMASK@
+GNULIB_PTSNAME = @GNULIB_PTSNAME@
+GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@
+GNULIB_PUTC = @GNULIB_PUTC@
+GNULIB_PUTCHAR = @GNULIB_PUTCHAR@
+GNULIB_PUTENV = @GNULIB_PUTENV@
+GNULIB_PUTS = @GNULIB_PUTS@
+GNULIB_PWRITE = @GNULIB_PWRITE@
+GNULIB_RAISE = @GNULIB_RAISE@
+GNULIB_RANDOM = @GNULIB_RANDOM@
+GNULIB_RANDOM_R = @GNULIB_RANDOM_R@
+GNULIB_RAWMEMCHR = @GNULIB_RAWMEMCHR@
+GNULIB_READ = @GNULIB_READ@
+GNULIB_READDIR = @GNULIB_READDIR@
+GNULIB_READLINK = @GNULIB_READLINK@
+GNULIB_READLINKAT = @GNULIB_READLINKAT@
+GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@
+GNULIB_REALPATH = @GNULIB_REALPATH@
+GNULIB_RECV = @GNULIB_RECV@
+GNULIB_RECVFROM = @GNULIB_RECVFROM@
+GNULIB_REMOVE = @GNULIB_REMOVE@
+GNULIB_RENAME = @GNULIB_RENAME@
+GNULIB_RENAMEAT = @GNULIB_RENAMEAT@
+GNULIB_REWINDDIR = @GNULIB_REWINDDIR@
+GNULIB_RMDIR = @GNULIB_RMDIR@
+GNULIB_RPMATCH = @GNULIB_RPMATCH@
+GNULIB_SCANDIR = @GNULIB_SCANDIR@
+GNULIB_SCANF = @GNULIB_SCANF@
+GNULIB_SECURE_GETENV = @GNULIB_SECURE_GETENV@
+GNULIB_SELECT = @GNULIB_SELECT@
+GNULIB_SEND = @GNULIB_SEND@
+GNULIB_SENDTO = @GNULIB_SENDTO@
+GNULIB_SETENV = @GNULIB_SETENV@
+GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@
+GNULIB_SETLOCALE = @GNULIB_SETLOCALE@
+GNULIB_SETSOCKOPT = @GNULIB_SETSOCKOPT@
+GNULIB_SHUTDOWN = @GNULIB_SHUTDOWN@
+GNULIB_SIGACTION = @GNULIB_SIGACTION@
+GNULIB_SIGNAL_H_SIGPIPE = @GNULIB_SIGNAL_H_SIGPIPE@
+GNULIB_SIGPROCMASK = @GNULIB_SIGPROCMASK@
+GNULIB_SLEEP = @GNULIB_SLEEP@
+GNULIB_SNPRINTF = @GNULIB_SNPRINTF@
+GNULIB_SOCKET = @GNULIB_SOCKET@
+GNULIB_SPRINTF_POSIX = @GNULIB_SPRINTF_POSIX@
+GNULIB_STAT = @GNULIB_STAT@
+GNULIB_STDIO_H_NONBLOCKING = @GNULIB_STDIO_H_NONBLOCKING@
+GNULIB_STDIO_H_SIGPIPE = @GNULIB_STDIO_H_SIGPIPE@
+GNULIB_STPCPY = @GNULIB_STPCPY@
+GNULIB_STPNCPY = @GNULIB_STPNCPY@
+GNULIB_STRCASESTR = @GNULIB_STRCASESTR@
+GNULIB_STRCHRNUL = @GNULIB_STRCHRNUL@
+GNULIB_STRDUP = @GNULIB_STRDUP@
+GNULIB_STRERROR = @GNULIB_STRERROR@
+GNULIB_STRERROR_R = @GNULIB_STRERROR_R@
+GNULIB_STRNCAT = @GNULIB_STRNCAT@
+GNULIB_STRNDUP = @GNULIB_STRNDUP@
+GNULIB_STRNLEN = @GNULIB_STRNLEN@
+GNULIB_STRPBRK = @GNULIB_STRPBRK@
+GNULIB_STRPTIME = @GNULIB_STRPTIME@
+GNULIB_STRSEP = @GNULIB_STRSEP@
+GNULIB_STRSIGNAL = @GNULIB_STRSIGNAL@
+GNULIB_STRSTR = @GNULIB_STRSTR@
+GNULIB_STRTOD = @GNULIB_STRTOD@
+GNULIB_STRTOK_R = @GNULIB_STRTOK_R@
+GNULIB_STRTOLL = @GNULIB_STRTOLL@
+GNULIB_STRTOULL = @GNULIB_STRTOULL@
+GNULIB_STRVERSCMP = @GNULIB_STRVERSCMP@
+GNULIB_SYMLINK = @GNULIB_SYMLINK@
+GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@
+GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@
+GNULIB_TIMEGM = @GNULIB_TIMEGM@
+GNULIB_TIME_R = @GNULIB_TIME_R@
+GNULIB_TMPFILE = @GNULIB_TMPFILE@
+GNULIB_TOWCTRANS = @GNULIB_TOWCTRANS@
+GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@
+GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@
+GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@
+GNULIB_UNLINK = @GNULIB_UNLINK@
+GNULIB_UNLINKAT = @GNULIB_UNLINKAT@
+GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@
+GNULIB_UNSETENV = @GNULIB_UNSETENV@
+GNULIB_USLEEP = @GNULIB_USLEEP@
+GNULIB_UTIMENSAT = @GNULIB_UTIMENSAT@
+GNULIB_VASPRINTF = @GNULIB_VASPRINTF@
+GNULIB_VDPRINTF = @GNULIB_VDPRINTF@
+GNULIB_VFPRINTF = @GNULIB_VFPRINTF@
+GNULIB_VFPRINTF_POSIX = @GNULIB_VFPRINTF_POSIX@
+GNULIB_VFSCANF = @GNULIB_VFSCANF@
+GNULIB_VPRINTF = @GNULIB_VPRINTF@
+GNULIB_VPRINTF_POSIX = @GNULIB_VPRINTF_POSIX@
+GNULIB_VSCANF = @GNULIB_VSCANF@
+GNULIB_VSNPRINTF = @GNULIB_VSNPRINTF@
+GNULIB_VSPRINTF_POSIX = @GNULIB_VSPRINTF_POSIX@
+GNULIB_WCPCPY = @GNULIB_WCPCPY@
+GNULIB_WCPNCPY = @GNULIB_WCPNCPY@
+GNULIB_WCRTOMB = @GNULIB_WCRTOMB@
+GNULIB_WCSCASECMP = @GNULIB_WCSCASECMP@
+GNULIB_WCSCAT = @GNULIB_WCSCAT@
+GNULIB_WCSCHR = @GNULIB_WCSCHR@
+GNULIB_WCSCMP = @GNULIB_WCSCMP@
+GNULIB_WCSCOLL = @GNULIB_WCSCOLL@
+GNULIB_WCSCPY = @GNULIB_WCSCPY@
+GNULIB_WCSCSPN = @GNULIB_WCSCSPN@
+GNULIB_WCSDUP = @GNULIB_WCSDUP@
+GNULIB_WCSLEN = @GNULIB_WCSLEN@
+GNULIB_WCSNCASECMP = @GNULIB_WCSNCASECMP@
+GNULIB_WCSNCAT = @GNULIB_WCSNCAT@
+GNULIB_WCSNCMP = @GNULIB_WCSNCMP@
+GNULIB_WCSNCPY = @GNULIB_WCSNCPY@
+GNULIB_WCSNLEN = @GNULIB_WCSNLEN@
+GNULIB_WCSNRTOMBS = @GNULIB_WCSNRTOMBS@
+GNULIB_WCSPBRK = @GNULIB_WCSPBRK@
+GNULIB_WCSRCHR = @GNULIB_WCSRCHR@
+GNULIB_WCSRTOMBS = @GNULIB_WCSRTOMBS@
+GNULIB_WCSSPN = @GNULIB_WCSSPN@
+GNULIB_WCSSTR = @GNULIB_WCSSTR@
+GNULIB_WCSTOK = @GNULIB_WCSTOK@
+GNULIB_WCSWIDTH = @GNULIB_WCSWIDTH@
+GNULIB_WCSXFRM = @GNULIB_WCSXFRM@
+GNULIB_WCTOB = @GNULIB_WCTOB@
+GNULIB_WCTOMB = @GNULIB_WCTOMB@
+GNULIB_WCTRANS = @GNULIB_WCTRANS@
+GNULIB_WCTYPE = @GNULIB_WCTYPE@
+GNULIB_WCWIDTH = @GNULIB_WCWIDTH@
+GNULIB_WMEMCHR = @GNULIB_WMEMCHR@
+GNULIB_WMEMCMP = @GNULIB_WMEMCMP@
+GNULIB_WMEMCPY = @GNULIB_WMEMCPY@
+GNULIB_WMEMMOVE = @GNULIB_WMEMMOVE@
+GNULIB_WMEMSET = @GNULIB_WMEMSET@
+GNULIB_WRITE = @GNULIB_WRITE@
+GNULIB__EXIT = @GNULIB__EXIT@
+GREP = @GREP@
+HAVE_ACCEPT4 = @HAVE_ACCEPT4@
+HAVE_ALPHASORT = @HAVE_ALPHASORT@
+HAVE_ATOLL = @HAVE_ATOLL@
+HAVE_BTOWC = @HAVE_BTOWC@
+HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@
+HAVE_CHOWN = @HAVE_CHOWN@
+HAVE_CLOSEDIR = @HAVE_CLOSEDIR@
+HAVE_DECL_DIRFD = @HAVE_DECL_DIRFD@
+HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@
+HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@
+HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@
+HAVE_DECL_FDOPENDIR = @HAVE_DECL_FDOPENDIR@
+HAVE_DECL_FPURGE = @HAVE_DECL_FPURGE@
+HAVE_DECL_FSEEKO = @HAVE_DECL_FSEEKO@
+HAVE_DECL_FTELLO = @HAVE_DECL_FTELLO@
+HAVE_DECL_GETDELIM = @HAVE_DECL_GETDELIM@
+HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@
+HAVE_DECL_GETLINE = @HAVE_DECL_GETLINE@
+HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@
+HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@
+HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@
+HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@
+HAVE_DECL_LOCALTIME_R = @HAVE_DECL_LOCALTIME_R@
+HAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@
+HAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@
+HAVE_DECL_OBSTACK_PRINTF = @HAVE_DECL_OBSTACK_PRINTF@
+HAVE_DECL_SETENV = @HAVE_DECL_SETENV@
+HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@
+HAVE_DECL_SNPRINTF = @HAVE_DECL_SNPRINTF@
+HAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@
+HAVE_DECL_STRERROR_R = @HAVE_DECL_STRERROR_R@
+HAVE_DECL_STRNCASECMP = @HAVE_DECL_STRNCASECMP@
+HAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@
+HAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@
+HAVE_DECL_STRSIGNAL = @HAVE_DECL_STRSIGNAL@
+HAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@
+HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@
+HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@
+HAVE_DECL_VSNPRINTF = @HAVE_DECL_VSNPRINTF@
+HAVE_DECL_WCTOB = @HAVE_DECL_WCTOB@
+HAVE_DECL_WCWIDTH = @HAVE_DECL_WCWIDTH@
+HAVE_DIRENT_H = @HAVE_DIRENT_H@
+HAVE_DPRINTF = @HAVE_DPRINTF@
+HAVE_DUP2 = @HAVE_DUP2@
+HAVE_DUP3 = @HAVE_DUP3@
+HAVE_DUPLOCALE = @HAVE_DUPLOCALE@
+HAVE_EUIDACCESS = @HAVE_EUIDACCESS@
+HAVE_FACCESSAT = @HAVE_FACCESSAT@
+HAVE_FCHDIR = @HAVE_FCHDIR@
+HAVE_FCHMODAT = @HAVE_FCHMODAT@
+HAVE_FCHOWNAT = @HAVE_FCHOWNAT@
+HAVE_FCNTL = @HAVE_FCNTL@
+HAVE_FDATASYNC = @HAVE_FDATASYNC@
+HAVE_FDOPENDIR = @HAVE_FDOPENDIR@
+HAVE_FEATURES_H = @HAVE_FEATURES_H@
+HAVE_FFS = @HAVE_FFS@
+HAVE_FFSL = @HAVE_FFSL@
+HAVE_FFSLL = @HAVE_FFSLL@
+HAVE_FLOCK = @HAVE_FLOCK@
+HAVE_FSEEKO = @HAVE_FSEEKO@
+HAVE_FSTATAT = @HAVE_FSTATAT@
+HAVE_FSYNC = @HAVE_FSYNC@
+HAVE_FTELLO = @HAVE_FTELLO@
+HAVE_FTRUNCATE = @HAVE_FTRUNCATE@
+HAVE_FUTIMENS = @HAVE_FUTIMENS@
+HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@
+HAVE_GETGROUPS = @HAVE_GETGROUPS@
+HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@
+HAVE_GETLOGIN = @HAVE_GETLOGIN@
+HAVE_GETOPT_H = @HAVE_GETOPT_H@
+HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@
+HAVE_GETSUBOPT = @HAVE_GETSUBOPT@
+HAVE_GETTIMEOFDAY = @HAVE_GETTIMEOFDAY@
+HAVE_GRANTPT = @HAVE_GRANTPT@
+HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@
+HAVE_INTTYPES_H = @HAVE_INTTYPES_H@
+HAVE_ISWBLANK = @HAVE_ISWBLANK@
+HAVE_ISWCNTRL = @HAVE_ISWCNTRL@
+HAVE_LANGINFO_CODESET = @HAVE_LANGINFO_CODESET@
+HAVE_LANGINFO_ERA = @HAVE_LANGINFO_ERA@
+HAVE_LANGINFO_H = @HAVE_LANGINFO_H@
+HAVE_LANGINFO_T_FMT_AMPM = @HAVE_LANGINFO_T_FMT_AMPM@
+HAVE_LANGINFO_YESEXPR = @HAVE_LANGINFO_YESEXPR@
+HAVE_LCHMOD = @HAVE_LCHMOD@
+HAVE_LCHOWN = @HAVE_LCHOWN@
+HAVE_LINK = @HAVE_LINK@
+HAVE_LINKAT = @HAVE_LINKAT@
+HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@
+HAVE_LSTAT = @HAVE_LSTAT@
+HAVE_MBRLEN = @HAVE_MBRLEN@
+HAVE_MBRTOWC = @HAVE_MBRTOWC@
+HAVE_MBSINIT = @HAVE_MBSINIT@
+HAVE_MBSLEN = @HAVE_MBSLEN@
+HAVE_MBSNRTOWCS = @HAVE_MBSNRTOWCS@
+HAVE_MBSRTOWCS = @HAVE_MBSRTOWCS@
+HAVE_MEMCHR = @HAVE_MEMCHR@
+HAVE_MEMPCPY = @HAVE_MEMPCPY@
+HAVE_MKDIRAT = @HAVE_MKDIRAT@
+HAVE_MKDTEMP = @HAVE_MKDTEMP@
+HAVE_MKFIFO = @HAVE_MKFIFO@
+HAVE_MKFIFOAT = @HAVE_MKFIFOAT@
+HAVE_MKNOD = @HAVE_MKNOD@
+HAVE_MKNODAT = @HAVE_MKNODAT@
+HAVE_MKOSTEMP = @HAVE_MKOSTEMP@
+HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@
+HAVE_MKSTEMP = @HAVE_MKSTEMP@
+HAVE_MKSTEMPS = @HAVE_MKSTEMPS@
+HAVE_MSVC_INVALID_PARAMETER_HANDLER = @HAVE_MSVC_INVALID_PARAMETER_HANDLER@
+HAVE_NANOSLEEP = @HAVE_NANOSLEEP@
+HAVE_NL_LANGINFO = @HAVE_NL_LANGINFO@
+HAVE_OPENAT = @HAVE_OPENAT@
+HAVE_OPENDIR = @HAVE_OPENDIR@
+HAVE_OS_H = @HAVE_OS_H@
+HAVE_PCLOSE = @HAVE_PCLOSE@
+HAVE_PIPE = @HAVE_PIPE@
+HAVE_PIPE2 = @HAVE_PIPE2@
+HAVE_POPEN = @HAVE_POPEN@
+HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@
+HAVE_POSIX_SIGNALBLOCKING = @HAVE_POSIX_SIGNALBLOCKING@
+HAVE_PREAD = @HAVE_PREAD@
+HAVE_PSELECT = @HAVE_PSELECT@
+HAVE_PTHREAD_SIGMASK = @HAVE_PTHREAD_SIGMASK@
+HAVE_PTSNAME = @HAVE_PTSNAME@
+HAVE_PTSNAME_R = @HAVE_PTSNAME_R@
+HAVE_PWRITE = @HAVE_PWRITE@
+HAVE_RAISE = @HAVE_RAISE@
+HAVE_RANDOM = @HAVE_RANDOM@
+HAVE_RANDOM_H = @HAVE_RANDOM_H@
+HAVE_RANDOM_R = @HAVE_RANDOM_R@
+HAVE_RAWMEMCHR = @HAVE_RAWMEMCHR@
+HAVE_READDIR = @HAVE_READDIR@
+HAVE_READLINK = @HAVE_READLINK@
+HAVE_READLINKAT = @HAVE_READLINKAT@
+HAVE_REALPATH = @HAVE_REALPATH@
+HAVE_RENAMEAT = @HAVE_RENAMEAT@
+HAVE_REWINDDIR = @HAVE_REWINDDIR@
+HAVE_RPMATCH = @HAVE_RPMATCH@
+HAVE_SA_FAMILY_T = @HAVE_SA_FAMILY_T@
+HAVE_SCANDIR = @HAVE_SCANDIR@
+HAVE_SECURE_GETENV = @HAVE_SECURE_GETENV@
+HAVE_SETENV = @HAVE_SETENV@
+HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@
+HAVE_SIGACTION = @HAVE_SIGACTION@
+HAVE_SIGHANDLER_T = @HAVE_SIGHANDLER_T@
+HAVE_SIGINFO_T = @HAVE_SIGINFO_T@
+HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@
+HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@
+HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@
+HAVE_SIGSET_T = @HAVE_SIGSET_T@
+HAVE_SLEEP = @HAVE_SLEEP@
+HAVE_STDINT_H = @HAVE_STDINT_H@
+HAVE_STPCPY = @HAVE_STPCPY@
+HAVE_STPNCPY = @HAVE_STPNCPY@
+HAVE_STRCASECMP = @HAVE_STRCASECMP@
+HAVE_STRCASESTR = @HAVE_STRCASESTR@
+HAVE_STRCHRNUL = @HAVE_STRCHRNUL@
+HAVE_STRINGS_H = @HAVE_STRINGS_H@
+HAVE_STRPBRK = @HAVE_STRPBRK@
+HAVE_STRPTIME = @HAVE_STRPTIME@
+HAVE_STRSEP = @HAVE_STRSEP@
+HAVE_STRTOD = @HAVE_STRTOD@
+HAVE_STRTOLL = @HAVE_STRTOLL@
+HAVE_STRTOULL = @HAVE_STRTOULL@
+HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@
+HAVE_STRUCT_SIGACTION_SA_SIGACTION = @HAVE_STRUCT_SIGACTION_SA_SIGACTION@
+HAVE_STRUCT_SOCKADDR_STORAGE = @HAVE_STRUCT_SOCKADDR_STORAGE@
+HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY = @HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY@
+HAVE_STRUCT_TIMEVAL = @HAVE_STRUCT_TIMEVAL@
+HAVE_STRVERSCMP = @HAVE_STRVERSCMP@
+HAVE_SYMLINK = @HAVE_SYMLINK@
+HAVE_SYMLINKAT = @HAVE_SYMLINKAT@
+HAVE_SYSEXITS_H = @HAVE_SYSEXITS_H@
+HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@
+HAVE_SYS_CDEFS_H = @HAVE_SYS_CDEFS_H@
+HAVE_SYS_FILE_H = @HAVE_SYS_FILE_H@
+HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@
+HAVE_SYS_IOCTL_H = @HAVE_SYS_IOCTL_H@
+HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@
+HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@
+HAVE_SYS_SELECT_H = @HAVE_SYS_SELECT_H@
+HAVE_SYS_SOCKET_H = @HAVE_SYS_SOCKET_H@
+HAVE_SYS_TIME_H = @HAVE_SYS_TIME_H@
+HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@
+HAVE_SYS_UIO_H = @HAVE_SYS_UIO_H@
+HAVE_TIMEGM = @HAVE_TIMEGM@
+HAVE_TYPE_VOLATILE_SIG_ATOMIC_T = @HAVE_TYPE_VOLATILE_SIG_ATOMIC_T@
+HAVE_UNISTD_H = @HAVE_UNISTD_H@
+HAVE_UNLINKAT = @HAVE_UNLINKAT@
+HAVE_UNLOCKPT = @HAVE_UNLOCKPT@
+HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@
+HAVE_USLEEP = @HAVE_USLEEP@
+HAVE_UTIMENSAT = @HAVE_UTIMENSAT@
+HAVE_VASPRINTF = @HAVE_VASPRINTF@
+HAVE_VDPRINTF = @HAVE_VDPRINTF@
+HAVE_WCHAR_H = @HAVE_WCHAR_H@
+HAVE_WCHAR_T = @HAVE_WCHAR_T@
+HAVE_WCPCPY = @HAVE_WCPCPY@
+HAVE_WCPNCPY = @HAVE_WCPNCPY@
+HAVE_WCRTOMB = @HAVE_WCRTOMB@
+HAVE_WCSCASECMP = @HAVE_WCSCASECMP@
+HAVE_WCSCAT = @HAVE_WCSCAT@
+HAVE_WCSCHR = @HAVE_WCSCHR@
+HAVE_WCSCMP = @HAVE_WCSCMP@
+HAVE_WCSCOLL = @HAVE_WCSCOLL@
+HAVE_WCSCPY = @HAVE_WCSCPY@
+HAVE_WCSCSPN = @HAVE_WCSCSPN@
+HAVE_WCSDUP = @HAVE_WCSDUP@
+HAVE_WCSLEN = @HAVE_WCSLEN@
+HAVE_WCSNCASECMP = @HAVE_WCSNCASECMP@
+HAVE_WCSNCAT = @HAVE_WCSNCAT@
+HAVE_WCSNCMP = @HAVE_WCSNCMP@
+HAVE_WCSNCPY = @HAVE_WCSNCPY@
+HAVE_WCSNLEN = @HAVE_WCSNLEN@
+HAVE_WCSNRTOMBS = @HAVE_WCSNRTOMBS@
+HAVE_WCSPBRK = @HAVE_WCSPBRK@
+HAVE_WCSRCHR = @HAVE_WCSRCHR@
+HAVE_WCSRTOMBS = @HAVE_WCSRTOMBS@
+HAVE_WCSSPN = @HAVE_WCSSPN@
+HAVE_WCSSTR = @HAVE_WCSSTR@
+HAVE_WCSTOK = @HAVE_WCSTOK@
+HAVE_WCSWIDTH = @HAVE_WCSWIDTH@
+HAVE_WCSXFRM = @HAVE_WCSXFRM@
+HAVE_WCTRANS_T = @HAVE_WCTRANS_T@
+HAVE_WCTYPE_H = @HAVE_WCTYPE_H@
+HAVE_WCTYPE_T = @HAVE_WCTYPE_T@
+HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@
+HAVE_WINT_T = @HAVE_WINT_T@
+HAVE_WMEMCHR = @HAVE_WMEMCHR@
+HAVE_WMEMCMP = @HAVE_WMEMCMP@
+HAVE_WMEMCPY = @HAVE_WMEMCPY@
+HAVE_WMEMMOVE = @HAVE_WMEMMOVE@
+HAVE_WMEMSET = @HAVE_WMEMSET@
+HAVE_WS2TCPIP_H = @HAVE_WS2TCPIP_H@
+HAVE_XLOCALE_H = @HAVE_XLOCALE_H@
+HAVE__BOOL = @HAVE__BOOL@
+HAVE__EXIT = @HAVE__EXIT@
+IGNORE_UNUSED_LIBRARIES_CFLAGS = @IGNORE_UNUSED_LIBRARIES_CFLAGS@
+INCLUDE_NEXT = @INCLUDE_NEXT@
+INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@
+INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+INTLLIBS = @INTLLIBS@
+INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
+LD = @LD@
+LDFLAGS = @LDFLAGS@
+LEX = @LEX@
+LEXLIB = @LEXLIB@
+LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
+LIBCOMPRESS = @LIBCOMPRESS@
+LIBICONV = @LIBICONV@
+LIBINTL = @LIBINTL@
+LIBMULTITHREAD = @LIBMULTITHREAD@
+LIBOBJS = @LIBOBJS@
+LIBPTH = @LIBPTH@
+LIBPTH_PREFIX = @LIBPTH_PREFIX@
+LIBS = @LIBS@
+LIBSOCKET = @LIBSOCKET@
+LIBTHREAD = @LIBTHREAD@
+LIBTOOL = @LIBTOOL@
+LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@
+LIB_NANOSLEEP = @LIB_NANOSLEEP@
+LIB_SELECT = @LIB_SELECT@
+LINGUAS = @LINGUAS@
+LIPO = @LIPO@
+LN_S = @LN_S@
+LOCALCHARSET_TESTS_ENVIRONMENT = @LOCALCHARSET_TESTS_ENVIRONMENT@
+LOCALE_FR = @LOCALE_FR@
+LOCALE_FR_UTF8 = @LOCALE_FR_UTF8@
+LOCALE_JA = @LOCALE_JA@
+LOCALE_ZH_CN = @LOCALE_ZH_CN@
+LTALLOCA = @LTALLOCA@
+LTLIBICONV = @LTLIBICONV@
+LTLIBINTL = @LTLIBINTL@
+LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
+LTLIBOBJS = @LTLIBOBJS@
+LTLIBPTH = @LTLIBPTH@
+LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
+MAINT = @MAINT@
+MAKEINFO = @MAKEINFO@
+MANDIR_LAYOUT = @MANDIR_LAYOUT@
+MANIFEST_TOOL = @MANIFEST_TOOL@
+MAN_SUBDIRS = @MAN_SUBDIRS@
+MKDIR_P = @MKDIR_P@
+MSGFMT = @MSGFMT@
+MSGFMT_015 = @MSGFMT_015@
+MSGMERGE = @MSGMERGE@
+NEXT_AS_FIRST_DIRECTIVE_DIRENT_H = @NEXT_AS_FIRST_DIRECTIVE_DIRENT_H@
+NEXT_AS_FIRST_DIRECTIVE_ERRNO_H = @NEXT_AS_FIRST_DIRECTIVE_ERRNO_H@
+NEXT_AS_FIRST_DIRECTIVE_FCNTL_H = @NEXT_AS_FIRST_DIRECTIVE_FCNTL_H@
+NEXT_AS_FIRST_DIRECTIVE_FLOAT_H = @NEXT_AS_FIRST_DIRECTIVE_FLOAT_H@
+NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@
+NEXT_AS_FIRST_DIRECTIVE_LANGINFO_H = @NEXT_AS_FIRST_DIRECTIVE_LANGINFO_H@
+NEXT_AS_FIRST_DIRECTIVE_LOCALE_H = @NEXT_AS_FIRST_DIRECTIVE_LOCALE_H@
+NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H = @NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H@
+NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@
+NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@
+NEXT_AS_FIRST_DIRECTIVE_STDINT_H = @NEXT_AS_FIRST_DIRECTIVE_STDINT_H@
+NEXT_AS_FIRST_DIRECTIVE_STDIO_H = @NEXT_AS_FIRST_DIRECTIVE_STDIO_H@
+NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@
+NEXT_AS_FIRST_DIRECTIVE_STRINGS_H = @NEXT_AS_FIRST_DIRECTIVE_STRINGS_H@
+NEXT_AS_FIRST_DIRECTIVE_STRING_H = @NEXT_AS_FIRST_DIRECTIVE_STRING_H@
+NEXT_AS_FIRST_DIRECTIVE_SYSEXITS_H = @NEXT_AS_FIRST_DIRECTIVE_SYSEXITS_H@
+NEXT_AS_FIRST_DIRECTIVE_SYS_FILE_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_FILE_H@
+NEXT_AS_FIRST_DIRECTIVE_SYS_IOCTL_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_IOCTL_H@
+NEXT_AS_FIRST_DIRECTIVE_SYS_SELECT_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_SELECT_H@
+NEXT_AS_FIRST_DIRECTIVE_SYS_SOCKET_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_SOCKET_H@
+NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H@
+NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H@
+NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@
+NEXT_AS_FIRST_DIRECTIVE_SYS_UIO_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_UIO_H@
+NEXT_AS_FIRST_DIRECTIVE_TIME_H = @NEXT_AS_FIRST_DIRECTIVE_TIME_H@
+NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@
+NEXT_AS_FIRST_DIRECTIVE_WCHAR_H = @NEXT_AS_FIRST_DIRECTIVE_WCHAR_H@
+NEXT_AS_FIRST_DIRECTIVE_WCTYPE_H = @NEXT_AS_FIRST_DIRECTIVE_WCTYPE_H@
+NEXT_DIRENT_H = @NEXT_DIRENT_H@
+NEXT_ERRNO_H = @NEXT_ERRNO_H@
+NEXT_FCNTL_H = @NEXT_FCNTL_H@
+NEXT_FLOAT_H = @NEXT_FLOAT_H@
+NEXT_GETOPT_H = @NEXT_GETOPT_H@
+NEXT_LANGINFO_H = @NEXT_LANGINFO_H@
+NEXT_LOCALE_H = @NEXT_LOCALE_H@
+NEXT_SIGNAL_H = @NEXT_SIGNAL_H@
+NEXT_STDARG_H = @NEXT_STDARG_H@
+NEXT_STDDEF_H = @NEXT_STDDEF_H@
+NEXT_STDINT_H = @NEXT_STDINT_H@
+NEXT_STDIO_H = @NEXT_STDIO_H@
+NEXT_STDLIB_H = @NEXT_STDLIB_H@
+NEXT_STRINGS_H = @NEXT_STRINGS_H@
+NEXT_STRING_H = @NEXT_STRING_H@
+NEXT_SYSEXITS_H = @NEXT_SYSEXITS_H@
+NEXT_SYS_FILE_H = @NEXT_SYS_FILE_H@
+NEXT_SYS_IOCTL_H = @NEXT_SYS_IOCTL_H@
+NEXT_SYS_SELECT_H = @NEXT_SYS_SELECT_H@
+NEXT_SYS_SOCKET_H = @NEXT_SYS_SOCKET_H@
+NEXT_SYS_STAT_H = @NEXT_SYS_STAT_H@
+NEXT_SYS_TIME_H = @NEXT_SYS_TIME_H@
+NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@
+NEXT_SYS_UIO_H = @NEXT_SYS_UIO_H@
+NEXT_TIME_H = @NEXT_TIME_H@
+NEXT_UNISTD_H = @NEXT_UNISTD_H@
+NEXT_WCHAR_H = @NEXT_WCHAR_H@
+NEXT_WCTYPE_H = @NEXT_WCTYPE_H@
+NM = @NM@
+NMEDIT = @NMEDIT@
+OBJDUMP = @OBJDUMP@
+OBJEXT = @OBJEXT@
+OTOOL = @OTOOL@
+OTOOL64 = @OTOOL64@
+PACKAGE = @PACKAGE@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_URL = @PACKAGE_URL@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+PKG_CONFIG = @PKG_CONFIG@
+PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
+PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
+PO4A = @PO4A@
+POSUB = @POSUB@
+PRAGMA_COLUMNS = @PRAGMA_COLUMNS@
+PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@
+PTHREAD_H_DEFINES_STRUCT_TIMESPEC = @PTHREAD_H_DEFINES_STRUCT_TIMESPEC@
+PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@
+RANLIB = @RANLIB@
+REPLACE_BTOWC = @REPLACE_BTOWC@
+REPLACE_CALLOC = @REPLACE_CALLOC@
+REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@
+REPLACE_CHOWN = @REPLACE_CHOWN@
+REPLACE_CLOSE = @REPLACE_CLOSE@
+REPLACE_CLOSEDIR = @REPLACE_CLOSEDIR@
+REPLACE_DIRFD = @REPLACE_DIRFD@
+REPLACE_DPRINTF = @REPLACE_DPRINTF@
+REPLACE_DUP = @REPLACE_DUP@
+REPLACE_DUP2 = @REPLACE_DUP2@
+REPLACE_DUPLOCALE = @REPLACE_DUPLOCALE@
+REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@
+REPLACE_FCLOSE = @REPLACE_FCLOSE@
+REPLACE_FCNTL = @REPLACE_FCNTL@
+REPLACE_FDOPEN = @REPLACE_FDOPEN@
+REPLACE_FDOPENDIR = @REPLACE_FDOPENDIR@
+REPLACE_FFLUSH = @REPLACE_FFLUSH@
+REPLACE_FOPEN = @REPLACE_FOPEN@
+REPLACE_FPRINTF = @REPLACE_FPRINTF@
+REPLACE_FPURGE = @REPLACE_FPURGE@
+REPLACE_FREOPEN = @REPLACE_FREOPEN@
+REPLACE_FSEEK = @REPLACE_FSEEK@
+REPLACE_FSEEKO = @REPLACE_FSEEKO@
+REPLACE_FSTAT = @REPLACE_FSTAT@
+REPLACE_FSTATAT = @REPLACE_FSTATAT@
+REPLACE_FTELL = @REPLACE_FTELL@
+REPLACE_FTELLO = @REPLACE_FTELLO@
+REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@
+REPLACE_FUTIMENS = @REPLACE_FUTIMENS@
+REPLACE_GETCWD = @REPLACE_GETCWD@
+REPLACE_GETDELIM = @REPLACE_GETDELIM@
+REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@
+REPLACE_GETDTABLESIZE = @REPLACE_GETDTABLESIZE@
+REPLACE_GETGROUPS = @REPLACE_GETGROUPS@
+REPLACE_GETLINE = @REPLACE_GETLINE@
+REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@
+REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@
+REPLACE_GETTIMEOFDAY = @REPLACE_GETTIMEOFDAY@
+REPLACE_GMTIME = @REPLACE_GMTIME@
+REPLACE_IOCTL = @REPLACE_IOCTL@
+REPLACE_ISATTY = @REPLACE_ISATTY@
+REPLACE_ISWBLANK = @REPLACE_ISWBLANK@
+REPLACE_ISWCNTRL = @REPLACE_ISWCNTRL@
+REPLACE_ITOLD = @REPLACE_ITOLD@
+REPLACE_LCHOWN = @REPLACE_LCHOWN@
+REPLACE_LINK = @REPLACE_LINK@
+REPLACE_LINKAT = @REPLACE_LINKAT@
+REPLACE_LOCALECONV = @REPLACE_LOCALECONV@
+REPLACE_LOCALTIME = @REPLACE_LOCALTIME@
+REPLACE_LOCALTIME_R = @REPLACE_LOCALTIME_R@
+REPLACE_LSEEK = @REPLACE_LSEEK@
+REPLACE_LSTAT = @REPLACE_LSTAT@
+REPLACE_MALLOC = @REPLACE_MALLOC@
+REPLACE_MBRLEN = @REPLACE_MBRLEN@
+REPLACE_MBRTOWC = @REPLACE_MBRTOWC@
+REPLACE_MBSINIT = @REPLACE_MBSINIT@
+REPLACE_MBSNRTOWCS = @REPLACE_MBSNRTOWCS@
+REPLACE_MBSRTOWCS = @REPLACE_MBSRTOWCS@
+REPLACE_MBSTATE_T = @REPLACE_MBSTATE_T@
+REPLACE_MBTOWC = @REPLACE_MBTOWC@
+REPLACE_MEMCHR = @REPLACE_MEMCHR@
+REPLACE_MEMMEM = @REPLACE_MEMMEM@
+REPLACE_MKDIR = @REPLACE_MKDIR@
+REPLACE_MKFIFO = @REPLACE_MKFIFO@
+REPLACE_MKNOD = @REPLACE_MKNOD@
+REPLACE_MKSTEMP = @REPLACE_MKSTEMP@
+REPLACE_MKTIME = @REPLACE_MKTIME@
+REPLACE_NANOSLEEP = @REPLACE_NANOSLEEP@
+REPLACE_NL_LANGINFO = @REPLACE_NL_LANGINFO@
+REPLACE_NULL = @REPLACE_NULL@
+REPLACE_OBSTACK_PRINTF = @REPLACE_OBSTACK_PRINTF@
+REPLACE_OPEN = @REPLACE_OPEN@
+REPLACE_OPENAT = @REPLACE_OPENAT@
+REPLACE_OPENDIR = @REPLACE_OPENDIR@
+REPLACE_PERROR = @REPLACE_PERROR@
+REPLACE_POPEN = @REPLACE_POPEN@
+REPLACE_PREAD = @REPLACE_PREAD@
+REPLACE_PRINTF = @REPLACE_PRINTF@
+REPLACE_PSELECT = @REPLACE_PSELECT@
+REPLACE_PTHREAD_SIGMASK = @REPLACE_PTHREAD_SIGMASK@
+REPLACE_PTSNAME = @REPLACE_PTSNAME@
+REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@
+REPLACE_PUTENV = @REPLACE_PUTENV@
+REPLACE_PWRITE = @REPLACE_PWRITE@
+REPLACE_RAISE = @REPLACE_RAISE@
+REPLACE_RANDOM_R = @REPLACE_RANDOM_R@
+REPLACE_READ = @REPLACE_READ@
+REPLACE_READLINK = @REPLACE_READLINK@
+REPLACE_REALLOC = @REPLACE_REALLOC@
+REPLACE_REALPATH = @REPLACE_REALPATH@
+REPLACE_REMOVE = @REPLACE_REMOVE@
+REPLACE_RENAME = @REPLACE_RENAME@
+REPLACE_RENAMEAT = @REPLACE_RENAMEAT@
+REPLACE_RMDIR = @REPLACE_RMDIR@
+REPLACE_SELECT = @REPLACE_SELECT@
+REPLACE_SETENV = @REPLACE_SETENV@
+REPLACE_SETLOCALE = @REPLACE_SETLOCALE@
+REPLACE_SLEEP = @REPLACE_SLEEP@
+REPLACE_SNPRINTF = @REPLACE_SNPRINTF@
+REPLACE_SPRINTF = @REPLACE_SPRINTF@
+REPLACE_STAT = @REPLACE_STAT@
+REPLACE_STDIO_READ_FUNCS = @REPLACE_STDIO_READ_FUNCS@
+REPLACE_STDIO_WRITE_FUNCS = @REPLACE_STDIO_WRITE_FUNCS@
+REPLACE_STPNCPY = @REPLACE_STPNCPY@
+REPLACE_STRCASESTR = @REPLACE_STRCASESTR@
+REPLACE_STRCHRNUL = @REPLACE_STRCHRNUL@
+REPLACE_STRDUP = @REPLACE_STRDUP@
+REPLACE_STRERROR = @REPLACE_STRERROR@
+REPLACE_STRERROR_R = @REPLACE_STRERROR_R@
+REPLACE_STRNCAT = @REPLACE_STRNCAT@
+REPLACE_STRNDUP = @REPLACE_STRNDUP@
+REPLACE_STRNLEN = @REPLACE_STRNLEN@
+REPLACE_STRSIGNAL = @REPLACE_STRSIGNAL@
+REPLACE_STRSTR = @REPLACE_STRSTR@
+REPLACE_STRTOD = @REPLACE_STRTOD@
+REPLACE_STRTOK_R = @REPLACE_STRTOK_R@
+REPLACE_STRUCT_LCONV = @REPLACE_STRUCT_LCONV@
+REPLACE_STRUCT_TIMEVAL = @REPLACE_STRUCT_TIMEVAL@
+REPLACE_SYMLINK = @REPLACE_SYMLINK@
+REPLACE_TIMEGM = @REPLACE_TIMEGM@
+REPLACE_TMPFILE = @REPLACE_TMPFILE@
+REPLACE_TOWLOWER = @REPLACE_TOWLOWER@
+REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@
+REPLACE_UNLINK = @REPLACE_UNLINK@
+REPLACE_UNLINKAT = @REPLACE_UNLINKAT@
+REPLACE_UNSETENV = @REPLACE_UNSETENV@
+REPLACE_USLEEP = @REPLACE_USLEEP@
+REPLACE_UTIMENSAT = @REPLACE_UTIMENSAT@
+REPLACE_VASPRINTF = @REPLACE_VASPRINTF@
+REPLACE_VDPRINTF = @REPLACE_VDPRINTF@
+REPLACE_VFPRINTF = @REPLACE_VFPRINTF@
+REPLACE_VPRINTF = @REPLACE_VPRINTF@
+REPLACE_VSNPRINTF = @REPLACE_VSNPRINTF@
+REPLACE_VSPRINTF = @REPLACE_VSPRINTF@
+REPLACE_WCRTOMB = @REPLACE_WCRTOMB@
+REPLACE_WCSNRTOMBS = @REPLACE_WCSNRTOMBS@
+REPLACE_WCSRTOMBS = @REPLACE_WCSRTOMBS@
+REPLACE_WCSWIDTH = @REPLACE_WCSWIDTH@
+REPLACE_WCTOB = @REPLACE_WCTOB@
+REPLACE_WCTOMB = @REPLACE_WCTOMB@
+REPLACE_WCWIDTH = @REPLACE_WCWIDTH@
+REPLACE_WRITE = @REPLACE_WRITE@
+SED = @SED@
+SET_MAKE = @SET_MAKE@
+SHELL = @SHELL@
+SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@
+SIZE_T_SUFFIX = @SIZE_T_SUFFIX@
+STDALIGN_H = @STDALIGN_H@
+STDARG_H = @STDARG_H@
+STDBOOL_H = @STDBOOL_H@
+STDDEF_H = @STDDEF_H@
+STDINT_H = @STDINT_H@
+STRIP = @STRIP@
+SYSEXITS_H = @SYSEXITS_H@
+SYS_IOCTL_H_HAVE_WINSOCK2_H = @SYS_IOCTL_H_HAVE_WINSOCK2_H@
+SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@
+SYS_TIME_H_DEFINES_STRUCT_TIMESPEC = @SYS_TIME_H_DEFINES_STRUCT_TIMESPEC@
+TBL_X_FORMAT = @TBL_X_FORMAT@
+TIME_H_DEFINES_STRUCT_TIMESPEC = @TIME_H_DEFINES_STRUCT_TIMESPEC@
+TRANS_APROPOS = @TRANS_APROPOS@
+TRANS_APROPOS_UPPER = @TRANS_APROPOS_UPPER@
+TRANS_CATMAN = @TRANS_CATMAN@
+TRANS_CATMAN_UPPER = @TRANS_CATMAN_UPPER@
+TRANS_LEXGROG = @TRANS_LEXGROG@
+TRANS_LEXGROG_UPPER = @TRANS_LEXGROG_UPPER@
+TRANS_MAN = @TRANS_MAN@
+TRANS_MANCONV = @TRANS_MANCONV@
+TRANS_MANCONV_UPPER = @TRANS_MANCONV_UPPER@
+TRANS_MANDB = @TRANS_MANDB@
+TRANS_MANDB_UPPER = @TRANS_MANDB_UPPER@
+TRANS_MANPATH = @TRANS_MANPATH@
+TRANS_MANPATH_UPPER = @TRANS_MANPATH_UPPER@
+TRANS_MAN_UPPER = @TRANS_MAN_UPPER@
+TRANS_WHATIS = @TRANS_WHATIS@
+TRANS_WHATIS_UPPER = @TRANS_WHATIS_UPPER@
+TRANS_ZSOELIM = @TRANS_ZSOELIM@
+TRANS_ZSOELIM_UPPER = @TRANS_ZSOELIM_UPPER@
+TROFF = @TROFF@
+UNDEFINE_STRTOK_R = @UNDEFINE_STRTOK_R@
+UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@
+UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@
+USE_NLS = @USE_NLS@
+VERSION = @VERSION@
+WARN_CFLAGS = @WARN_CFLAGS@
+WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@
+WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@
+WINDOWS_64_BIT_ST_SIZE = @WINDOWS_64_BIT_ST_SIZE@
+WINT_T_SUFFIX = @WINT_T_SUFFIX@
+XGETTEXT = @XGETTEXT@
+XGETTEXT_015 = @XGETTEXT_015@
+XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
+abs_builddir = @abs_builddir@
+abs_srcdir = @abs_srcdir@
+abs_top_builddir = @abs_top_builddir@
+abs_top_srcdir = @abs_top_srcdir@
+ac_ct_AR = @ac_ct_AR@
+ac_ct_CC = @ac_ct_CC@
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+am__include = @am__include@
+am__leading_dot = @am__leading_dot@
+am__quote = @am__quote@
+am__tar = @am__tar@
+am__untar = @am__untar@
+bindir = @bindir@
+browser = @browser@
+build = @build@
+build_alias = @build_alias@
+build_cpu = @build_cpu@
+build_os = @build_os@
+build_vendor = @build_vendor@
+builddir = @builddir@
+bunzip2 = @bunzip2@
+bzip2 = @bzip2@
+cat = @cat@
+col = @col@
+compress = @compress@
+compress_ext = @compress_ext@
+compressor = @compressor@
+config_file = @config_file@
+config_file_basename = @config_file_basename@
+config_file_dirname = @config_file_dirname@
+datadir = @datadir@
+datarootdir = @datarootdir@
+date = @date@
+docdir = @docdir@
+dvidir = @dvidir@
+eqn = @eqn@
+exec_prefix = @exec_prefix@
+gl_LIBOBJS = @gl_LIBOBJS@
+gl_LTLIBOBJS = @gl_LTLIBOBJS@
+gltests_LIBOBJS = @gltests_LIBOBJS@
+gltests_LTLIBOBJS = @gltests_LTLIBOBJS@
+gltests_WITNESS = @gltests_WITNESS@
+grap = @grap@
+grep = @grep@
+gunzip = @gunzip@
+gzip = @gzip@
+host = @host@
+host_alias = @host_alias@
+host_cpu = @host_cpu@
+host_os = @host_os@
+host_vendor = @host_vendor@
+htmldir = @htmldir@
+includedir = @includedir@
+infodir = @infodir@
+install_sh = @install_sh@
+libdir = @libdir@
+libexecdir = @libexecdir@
+libpipeline_CFLAGS = @libpipeline_CFLAGS@
+libpipeline_LIBS = @libpipeline_LIBS@
+lispdir = @lispdir@
+localedir = @localedir@
+localstatedir = @localstatedir@
+lzip = @lzip@
+lzma = @lzma@
+man_mode = @man_mode@
+man_owner = @man_owner@
+mandir = @mandir@/$(LINGUA)
+mkdir_p = @mkdir_p@
+neqn = @neqn@
+nroff = @nroff@
+oldincludedir = @oldincludedir@
+override_dir = @override_dir@
+pager = @pager@
+pdfdir = @pdfdir@
+pic = @pic@
+preconv = @preconv@
+prefix = @prefix@
+program_transform_name = @program_transform_name@
+psdir = @psdir@
+refer = @refer@
+roff_version = @roff_version@
+runstatedir = @runstatedir@
+sbindir = @sbindir@
+sections = @sections@
+sharedstatedir = @sharedstatedir@
+srcdir = @srcdir@
+sysconfdir = @sysconfdir@
+systemdtmpfilesdir = @systemdtmpfilesdir@
+target_alias = @target_alias@
+tbl = @tbl@
+top_build_prefix = @top_build_prefix@
+top_builddir = @top_builddir@
+top_srcdir = @top_srcdir@
+tr = @tr@
+troff = @troff@
+uncompress = @uncompress@
+unlzip = @unlzip@
+unlzma = @unlzma@
+unxz = @unxz@
+vgrind = @vgrind@
+xz = @xz@
+LINGUA = nl
+PO4A_LINGUA = yes
+EXTRA_DIST = translator.add
+man1_MANS = \
+       man1/apropos.1 \
+       man1/lexgrog.1 \
+       man1/man.1 \
+       man1/manconv.1 \
+       man1/manpath.1 \
+       man1/whatis.1 \
+       man1/zsoelim.1
+
+man5_MANS = \
+       man5/manpath.5
+
+man8_MANS = \
+       man8/accessdb.8 \
+       man8/catman.8 \
+       man8/mandb.8
+
+CLEANFILES = $(man1_MANS) $(man5_MANS) $(man8_MANS) replace.sed
+@CROSS_COMPILING_FALSE@TESTS_ENVIRONMENT = top_builddir="$(top_builddir)"; export top_builddir; \
+@CROSS_COMPILING_FALSE@                    LINGUA="$(LINGUA)"; export LINGUA; \
+@CROSS_COMPILING_FALSE@                    EGREP="$(EGREP)"; export EGREP;
+
+@CROSS_COMPILING_FALSE@LOG_COMPILER = @SHELL@ $(top_srcdir)/man/check-man
+@CROSS_COMPILING_FALSE@TESTS = $(man1_MANS) $(man5_MANS) $(man8_MANS)
+all: all-am
+
+.SUFFIXES:
+.SUFFIXES: .1 .5 .8 .log .man1 .man5 .man8 .test .test$(EXEEXT) .trs
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/man/Rules.man $(am__configure_deps)
+       @for dep in $?; do \
+         case '$(am__configure_deps)' in \
+           *$$dep*) \
+             ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
+               && { if test -f $@; then exit 0; else break; fi; }; \
+             exit 1;; \
+         esac; \
+       done; \
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign man/sv/Makefile'; \
+       $(am__cd) $(top_srcdir) && \
+         $(AUTOMAKE) --foreign man/sv/Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+       @case '$?' in \
+         *config.status*) \
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
+         *) \
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+       esac;
+$(top_srcdir)/man/Rules.man $(am__empty):
+
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(am__aclocal_m4_deps):
+
+mostlyclean-libtool:
+       -rm -f *.lo
+
+clean-libtool:
+       -rm -rf .libs _libs
+install-man1: $(man1_MANS)
+       @$(NORMAL_INSTALL)
+       @list1='$(man1_MANS)'; \
+       list2=''; \
+       test -n "$(man1dir)" \
+         && test -n "`echo $$list1$$list2`" \
+         || exit 0; \
+       echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
+       $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
+       { for i in $$list1; do echo "$$i"; done;  \
+       if test -n "$$list2"; then \
+         for i in $$list2; do echo "$$i"; done \
+           | sed -n '/\.1[a-z]*$$/p'; \
+       fi; \
+       } | while read p; do \
+         if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
+         echo "$$d$$p"; echo "$$p"; \
+       done | \
+       sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
+             -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
+       sed 'N;N;s,\n, ,g' | { \
+       list=; while read file base inst; do \
+         if test "$$base" = "$$inst"; then list="$$list $$file"; else \
+           echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
+           $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
+         fi; \
+       done; \
+       for i in $$list; do echo "$$i"; done | $(am__base_list) | \
+       while read files; do \
+         test -z "$$files" || { \
+           echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
+           $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
+       done; }
+
+uninstall-man1:
+       @$(NORMAL_UNINSTALL)
+       @list='$(man1_MANS)'; test -n "$(man1dir)" || exit 0; \
+       files=`{ for i in $$list; do echo "$$i"; done; \
+       } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
+             -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
+       dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
+install-man5: $(man5_MANS)
+       @$(NORMAL_INSTALL)
+       @list1='$(man5_MANS)'; \
+       list2=''; \
+       test -n "$(man5dir)" \
+         && test -n "`echo $$list1$$list2`" \
+         || exit 0; \
+       echo " $(MKDIR_P) '$(DESTDIR)$(man5dir)'"; \
+       $(MKDIR_P) "$(DESTDIR)$(man5dir)" || exit 1; \
+       { for i in $$list1; do echo "$$i"; done;  \
+       if test -n "$$list2"; then \
+         for i in $$list2; do echo "$$i"; done \
+           | sed -n '/\.5[a-z]*$$/p'; \
+       fi; \
+       } | while read p; do \
+         if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
+         echo "$$d$$p"; echo "$$p"; \
+       done | \
+       sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \
+             -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
+       sed 'N;N;s,\n, ,g' | { \
+       list=; while read file base inst; do \
+         if test "$$base" = "$$inst"; then list="$$list $$file"; else \
+           echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man5dir)/$$inst'"; \
+           $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$inst" || exit $$?; \
+         fi; \
+       done; \
+       for i in $$list; do echo "$$i"; done | $(am__base_list) | \
+       while read files; do \
+         test -z "$$files" || { \
+           echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man5dir)'"; \
+           $(INSTALL_DATA) $$files "$(DESTDIR)$(man5dir)" || exit $$?; }; \
+       done; }
+
+uninstall-man5:
+       @$(NORMAL_UNINSTALL)
+       @list='$(man5_MANS)'; test -n "$(man5dir)" || exit 0; \
+       files=`{ for i in $$list; do echo "$$i"; done; \
+       } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \
+             -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
+       dir='$(DESTDIR)$(man5dir)'; $(am__uninstall_files_from_dir)
+install-man8: $(man8_MANS)
+       @$(NORMAL_INSTALL)
+       @list1='$(man8_MANS)'; \
+       list2=''; \
+       test -n "$(man8dir)" \
+         && test -n "`echo $$list1$$list2`" \
+         || exit 0; \
+       echo " $(MKDIR_P) '$(DESTDIR)$(man8dir)'"; \
+       $(MKDIR_P) "$(DESTDIR)$(man8dir)" || exit 1; \
+       { for i in $$list1; do echo "$$i"; done;  \
+       if test -n "$$list2"; then \
+         for i in $$list2; do echo "$$i"; done \
+           | sed -n '/\.8[a-z]*$$/p'; \
+       fi; \
+       } | while read p; do \
+         if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
+         echo "$$d$$p"; echo "$$p"; \
+       done | \
+       sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \
+             -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
+       sed 'N;N;s,\n, ,g' | { \
+       list=; while read file base inst; do \
+         if test "$$base" = "$$inst"; then list="$$list $$file"; else \
+           echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man8dir)/$$inst'"; \
+           $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man8dir)/$$inst" || exit $$?; \
+         fi; \
+       done; \
+       for i in $$list; do echo "$$i"; done | $(am__base_list) | \
+       while read files; do \
+         test -z "$$files" || { \
+           echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man8dir)'"; \
+           $(INSTALL_DATA) $$files "$(DESTDIR)$(man8dir)" || exit $$?; }; \
+       done; }
+
+uninstall-man8:
+       @$(NORMAL_UNINSTALL)
+       @list='$(man8_MANS)'; test -n "$(man8dir)" || exit 0; \
+       files=`{ for i in $$list; do echo "$$i"; done; \
+       } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \
+             -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
+       dir='$(DESTDIR)$(man8dir)'; $(am__uninstall_files_from_dir)
+tags TAGS:
+
+ctags CTAGS:
+
+cscope cscopelist:
+
+
+# Recover from deleted '.trs' file; this should ensure that
+# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create
+# both 'foo.log' and 'foo.trs'.  Break the recipe in two subshells
+# to avoid problems with "make -n".
+.log.trs:
+       rm -f $< $@
+       $(MAKE) $(AM_MAKEFLAGS) $<
+
+# Leading 'am--fnord' is there to ensure the list of targets does not
+# expand to empty, as could happen e.g. with make check TESTS=''.
+am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck)
+am--force-recheck:
+       @:
+
+$(TEST_SUITE_LOG): $(TEST_LOGS)
+       @$(am__set_TESTS_bases); \
+       am__f_ok () { test -f "$$1" && test -r "$$1"; }; \
+       redo_bases=`for i in $$bases; do \
+                     am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \
+                   done`; \
+       if test -n "$$redo_bases"; then \
+         redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \
+         redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \
+         if $(am__make_dryrun); then :; else \
+           rm -f $$redo_logs && rm -f $$redo_results || exit 1; \
+         fi; \
+       fi; \
+       if test -n "$$am__remaking_logs"; then \
+         echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
+              "recursion detected" >&2; \
+       elif test -n "$$redo_logs"; then \
+         am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
+       fi; \
+       if $(am__make_dryrun); then :; else \
+         st=0;  \
+         errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
+         for i in $$redo_bases; do \
+           test -f $$i.trs && test -r $$i.trs \
+             || { echo "$$errmsg $$i.trs" >&2; st=1; }; \
+           test -f $$i.log && test -r $$i.log \
+             || { echo "$$errmsg $$i.log" >&2; st=1; }; \
+         done; \
+         test $$st -eq 0 || exit 1; \
+       fi
+       @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \
+       ws='[   ]'; \
+       results=`for b in $$bases; do echo $$b.trs; done`; \
+       test -n "$$results" || results=/dev/null; \
+       all=`  grep "^$$ws*:test-result:"           $$results | wc -l`; \
+       pass=` grep "^$$ws*:test-result:$$ws*PASS"  $$results | wc -l`; \
+       fail=` grep "^$$ws*:test-result:$$ws*FAIL"  $$results | wc -l`; \
+       skip=` grep "^$$ws*:test-result:$$ws*SKIP"  $$results | wc -l`; \
+       xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
+       xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
+       error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
+       if test `expr $$fail + $$xpass + $$error` -eq 0; then \
+         success=true; \
+       else \
+         success=false; \
+       fi; \
+       br='==================='; br=$$br$$br$$br$$br; \
+       result_count () \
+       { \
+           if test x"$$1" = x"--maybe-color"; then \
+             maybe_colorize=yes; \
+           elif test x"$$1" = x"--no-color"; then \
+             maybe_colorize=no; \
+           else \
+             echo "$@: invalid 'result_count' usage" >&2; exit 4; \
+           fi; \
+           shift; \
+           desc=$$1 count=$$2; \
+           if test $$maybe_colorize = yes && test $$count -gt 0; then \
+             color_start=$$3 color_end=$$std; \
+           else \
+             color_start= color_end=; \
+           fi; \
+           echo "$${color_start}# $$desc $$count$${color_end}"; \
+       }; \
+       create_testsuite_report () \
+       { \
+         result_count $$1 "TOTAL:" $$all   "$$brg"; \
+         result_count $$1 "PASS: " $$pass  "$$grn"; \
+         result_count $$1 "SKIP: " $$skip  "$$blu"; \
+         result_count $$1 "XFAIL:" $$xfail "$$lgn"; \
+         result_count $$1 "FAIL: " $$fail  "$$red"; \
+         result_count $$1 "XPASS:" $$xpass "$$red"; \
+         result_count $$1 "ERROR:" $$error "$$mgn"; \
+       }; \
+       {                                                               \
+         echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" |       \
+           $(am__rst_title);                                           \
+         create_testsuite_report --no-color;                           \
+         echo;                                                         \
+         echo ".. contents:: :depth: 2";                               \
+         echo;                                                         \
+         for b in $$bases; do echo $$b; done                           \
+           | $(am__create_global_log);                                 \
+       } >$(TEST_SUITE_LOG).tmp || exit 1;                             \
+       mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG);                     \
+       if $$success; then                                              \
+         col="$$grn";                                                  \
+        else                                                           \
+         col="$$red";                                                  \
+         test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG);               \
+       fi;                                                             \
+       echo "$${col}$$br$${std}";                                      \
+       echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}";   \
+       echo "$${col}$$br$${std}";                                      \
+       create_testsuite_report --maybe-color;                          \
+       echo "$$col$$br$$std";                                          \
+       if $$success; then :; else                                      \
+         echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}";         \
+         if test -n "$(PACKAGE_BUGREPORT)"; then                       \
+           echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \
+         fi;                                                           \
+         echo "$$col$$br$$std";                                        \
+       fi;                                                             \
+       $$success || exit 1
+
+check-TESTS:
+       @list='$(RECHECK_LOGS)';           test -z "$$list" || rm -f $$list
+       @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
+       @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
+       @set +e; $(am__set_TESTS_bases); \
+       log_list=`for i in $$bases; do echo $$i.log; done`; \
+       trs_list=`for i in $$bases; do echo $$i.trs; done`; \
+       log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
+       $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
+       exit $$?;
+recheck: all 
+       @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
+       @set +e; $(am__set_TESTS_bases); \
+       bases=`for i in $$bases; do echo $$i; done \
+                | $(am__list_recheck_tests)` || exit 1; \
+       log_list=`for i in $$bases; do echo $$i.log; done`; \
+       log_list=`echo $$log_list`; \
+       $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \
+               am__force_recheck=am--force-recheck \
+               TEST_LOGS="$$log_list"; \
+       exit $$?
+man1/apropos.1.log: man1/apropos.1
+       @p='man1/apropos.1'; \
+       b='man1/apropos.1'; \
+       $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
+       --log-file $$b.log --trs-file $$b.trs \
+       $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
+       "$$tst" $(AM_TESTS_FD_REDIRECT)
+man1/lexgrog.1.log: man1/lexgrog.1
+       @p='man1/lexgrog.1'; \
+       b='man1/lexgrog.1'; \
+       $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
+       --log-file $$b.log --trs-file $$b.trs \
+       $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
+       "$$tst" $(AM_TESTS_FD_REDIRECT)
+man1/man.1.log: man1/man.1
+       @p='man1/man.1'; \
+       b='man1/man.1'; \
+       $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
+       --log-file $$b.log --trs-file $$b.trs \
+       $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
+       "$$tst" $(AM_TESTS_FD_REDIRECT)
+man1/manconv.1.log: man1/manconv.1
+       @p='man1/manconv.1'; \
+       b='man1/manconv.1'; \
+       $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
+       --log-file $$b.log --trs-file $$b.trs \
+       $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
+       "$$tst" $(AM_TESTS_FD_REDIRECT)
+man1/manpath.1.log: man1/manpath.1
+       @p='man1/manpath.1'; \
+       b='man1/manpath.1'; \
+       $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
+       --log-file $$b.log --trs-file $$b.trs \
+       $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
+       "$$tst" $(AM_TESTS_FD_REDIRECT)
+man1/whatis.1.log: man1/whatis.1
+       @p='man1/whatis.1'; \
+       b='man1/whatis.1'; \
+       $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
+       --log-file $$b.log --trs-file $$b.trs \
+       $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
+       "$$tst" $(AM_TESTS_FD_REDIRECT)
+man1/zsoelim.1.log: man1/zsoelim.1
+       @p='man1/zsoelim.1'; \
+       b='man1/zsoelim.1'; \
+       $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
+       --log-file $$b.log --trs-file $$b.trs \
+       $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
+       "$$tst" $(AM_TESTS_FD_REDIRECT)
+man5/manpath.5.log: man5/manpath.5
+       @p='man5/manpath.5'; \
+       b='man5/manpath.5'; \
+       $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
+       --log-file $$b.log --trs-file $$b.trs \
+       $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
+       "$$tst" $(AM_TESTS_FD_REDIRECT)
+man8/accessdb.8.log: man8/accessdb.8
+       @p='man8/accessdb.8'; \
+       b='man8/accessdb.8'; \
+       $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
+       --log-file $$b.log --trs-file $$b.trs \
+       $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
+       "$$tst" $(AM_TESTS_FD_REDIRECT)
+man8/catman.8.log: man8/catman.8
+       @p='man8/catman.8'; \
+       b='man8/catman.8'; \
+       $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
+       --log-file $$b.log --trs-file $$b.trs \
+       $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
+       "$$tst" $(AM_TESTS_FD_REDIRECT)
+man8/mandb.8.log: man8/mandb.8
+       @p='man8/mandb.8'; \
+       b='man8/mandb.8'; \
+       $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
+       --log-file $$b.log --trs-file $$b.trs \
+       $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
+       "$$tst" $(AM_TESTS_FD_REDIRECT)
+.test.log:
+       @p='$<'; \
+       $(am__set_b); \
+       $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
+       --log-file $$b.log --trs-file $$b.trs \
+       $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
+       "$$tst" $(AM_TESTS_FD_REDIRECT)
+@am__EXEEXT_TRUE@.test$(EXEEXT).log:
+@am__EXEEXT_TRUE@      @p='$<'; \
+@am__EXEEXT_TRUE@      $(am__set_b); \
+@am__EXEEXT_TRUE@      $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
+@am__EXEEXT_TRUE@      --log-file $$b.log --trs-file $$b.trs \
+@am__EXEEXT_TRUE@      $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
+@am__EXEEXT_TRUE@      "$$tst" $(AM_TESTS_FD_REDIRECT)
+
+distdir: $(DISTFILES)
+       @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+       list='$(DISTFILES)'; \
+         dist_files=`for file in $$list; do echo $$file; done | \
+         sed -e "s|^$$srcdirstrip/||;t" \
+             -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
+       case $$dist_files in \
+         */*) $(MKDIR_P) `echo "$$dist_files" | \
+                          sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
+                          sort -u` ;; \
+       esac; \
+       for file in $$dist_files; do \
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+         if test -d $$d/$$file; then \
+           dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
+           if test -d "$(distdir)/$$file"; then \
+             find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+           fi; \
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+             cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
+             find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+           fi; \
+           cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+         else \
+           test -f "$(distdir)/$$file" \
+           || cp -p $$d/$$file "$(distdir)/$$file" \
+           || exit 1; \
+         fi; \
+       done
+       $(MAKE) $(AM_MAKEFLAGS) \
+         top_distdir="$(top_distdir)" distdir="$(distdir)" \
+         dist-hook
+check-am: all-am
+       $(MAKE) $(AM_MAKEFLAGS) check-TESTS
+check: check-am
+all-am: Makefile $(MANS)
+installdirs:
+       for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(man8dir)"; do \
+         test -z "$$dir" || $(MKDIR_P) "$$dir"; \
+       done
+install: install-am
+install-exec: install-exec-am
+install-data: install-data-am
+uninstall: uninstall-am
+
+install-am: all-am
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-am
+install-strip:
+       if test -z '$(STRIP)'; then \
+         $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+           install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+             install; \
+       else \
+         $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+           install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+           "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
+       fi
+mostlyclean-generic:
+       -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS)
+       -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs)
+       -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
+
+clean-generic:
+       -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
+
+distclean-generic:
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
+       -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+
+maintainer-clean-generic:
+       @echo "This command is intended for maintainers to use"
+       @echo "it deletes files that may require special tools to rebuild."
+clean: clean-am
+
+clean-am: clean-generic clean-libtool mostlyclean-am
+
+distclean: distclean-am
+       -rm -f Makefile
+distclean-am: clean-am distclean-generic distclean-local
+
+dvi: dvi-am
+
+dvi-am:
+
+html: html-am
+
+html-am:
+
+info: info-am
+
+info-am:
+
+install-data-am: install-man
+
+install-dvi: install-dvi-am
+
+install-dvi-am:
+
+install-exec-am:
+
+install-html: install-html-am
+
+install-html-am:
+
+install-info: install-info-am
+
+install-info-am:
+
+install-man: install-man1 install-man5 install-man8
+
+install-pdf: install-pdf-am
+
+install-pdf-am:
+
+install-ps: install-ps-am
+
+install-ps-am:
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-am
+       -rm -f Makefile
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-am
+
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool \
+       mostlyclean-local
+
+pdf: pdf-am
+
+pdf-am:
+
+ps: ps-am
+
+ps-am:
+
+uninstall-am: uninstall-man
+
+uninstall-man: uninstall-man1 uninstall-man5 uninstall-man8
+
+.MAKE: check-am install-am install-strip
+
+.PHONY: all all-am check check-TESTS check-am clean clean-generic \
+       clean-libtool cscopelist-am ctags-am dist-hook distclean \
+       distclean-generic distclean-libtool distclean-local distdir \
+       dvi dvi-am html html-am info info-am install install-am \
+       install-data install-data-am install-dvi install-dvi-am \
+       install-exec install-exec-am install-html install-html-am \
+       install-info install-info-am install-man install-man1 \
+       install-man5 install-man8 install-pdf install-pdf-am \
+       install-ps install-ps-am install-strip installcheck \
+       installcheck-am installdirs maintainer-clean \
+       maintainer-clean-generic mostlyclean mostlyclean-generic \
+       mostlyclean-libtool mostlyclean-local pdf pdf-am ps ps-am \
+       recheck tags-am uninstall uninstall-am uninstall-man \
+       uninstall-man1 uninstall-man5 uninstall-man8
+
+.PRECIOUS: Makefile
+
+
+replace.sed: $(top_builddir)/man/replace.sin
+       $(AM_V_GEN)sed -e 's,%REPLACE_CONFIG_FILE%,$(config_file),g' $(top_builddir)/man/replace.sin > $@
+
+$(MANS): replace.sed
+
+.man1.1:
+       $(AM_V_at)$(MKDIR_P) man1
+       $(AM_V_GEN)program=`echo '$@' | sed -e 's/\.1//' -e 's,.*/,,' -e '$(program_transform_name)'`; \
+       sed -f replace.sed -e "s,%program%,$$program,g" $< > $@
+.man5.5:
+       $(AM_V_at)$(MKDIR_P) man5
+       $(AM_V_GEN)sed -f replace.sed $< > $@
+.man8.8:
+       $(AM_V_at)$(MKDIR_P) man8
+       $(AM_V_GEN)program=`echo '$@' | sed -e 's/\.8//' -e 's,.*/,,' -e '$(program_transform_name)'`; \
+       sed -f replace.sed -e "s,%program%,$$program,g" $< > $@
+
+mostlyclean-local:
+       -rm -f index.*
+
+dist-hook:
+       @if [ "x$(PO4A_LINGUA)" != xyes ]; then \
+               list='$(man1_MANS) $(man5_MANS) $(man8_MANS)'; \
+               dist_files=`for file in $$list; do \
+                               echo $$file | sed 's/\.\([0-9]\)/.man\1/'; \
+                           done`; \
+               $(MKDIR_P) `echo "$$dist_files" | \
+                           sed 's|^|$(distdir)/|;s,/[^/]*$$,,' | \
+                           sort -u`; \
+               for file in $$dist_files; do \
+                       test -f $(distdir)/$$file \
+                       || cp -p $(srcdir)/$$file $(distdir)/$$file \
+                       || exit 1; \
+               done; \
+       fi
+
+distclean-local:
+       @if [ "x$(PO4A_LINGUA)" = xyes ]; then \
+               rm -rf man1 man5 man8; \
+       fi
+
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
diff --git a/man/sv/translator.add b/man/sv/translator.add
new file mode 100644 (file)
index 0000000..add0adc
--- /dev/null
@@ -0,0 +1 @@
+PO4A-HEADER:mode=after;position=^\.TH;beginboundary=FakePo4aBoundary
index 5a438ea..1b4e365 100644 (file)
@@ -90,6 +90,7 @@ subdir = man/zh_CN
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -1147,6 +1148,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
index 4a59d1b..364a688 100644 (file)
@@ -91,6 +91,7 @@ subdir = manual
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -937,6 +938,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
index 7b35827..e83de89 100644 (file)
@@ -259,16 +259,21 @@ Options that are specific to the \*M package are described below.
 MAN\-OPTIONS\-BEGIN
 \}
 .lp
-.ip \-\-enable\-setuid[=ARG]
+.ip \-\-enable\-cache\-owner[=ARG]
+By default, system-wide cache files will be owned by user man.
+Use this option with an argument to change the cache file owner.
+.ip \-\-disable\-cache\-owner
+Use this option to leave the ownership of system-wide cache files
+unconstrained.
+Users will be allowed to modify them.
+.ip \-\-disable\-setuid
 By default,
 .b man
-will be installed as a setuid program to user man.
-Use this option with an argument to change the setuid owner.
-.ip \-\-disable\-setuid
+will be installed as a setuid program to the user that owns the
+system-wide cache files.
 Use this option to install
 .b man
-as a non-setuid program and to change the default cat and database files'
-access flags to allow users to modify them.
+as a non-setuid program instead.
 .ip \-\-enable\-mandirs=OS
 By default, \*M supports manual page directories in any of several layouts
 used by free and proprietary versions of \*U.
index ea01866..0dbd470 100644 (file)
@@ -83,8 +83,8 @@ will be completely passive in its action, i.e. no index databases will be
 written to and no cat files are ever produced.
 .br
 To use the \*M utilities in this mode, supply the options
-\(oq\-\-disable\-setuid \-\-disable\-automatic\-update \-\-disable\-cats\(cq
-to
+\(oq\-\-disable\-cache\-owner \-\-disable\-setuid
+\-\-disable\-automatic\-update \-\-disable\-cats\(cq to
 .b configure ,
 or build \*M as in mode (1) and install the binaries without the setuid
 bit set.
@@ -102,7 +102,8 @@ Cat files are produced and stored in world writable cat directories and have
 world write access themselves.
 .br
 To use the \*M utilities in this mode, supply the options
-\(oq\-\-disable\-setuid \-\-disable\-automatic\-update\(cq to
+\(oq\-\-disable\-cache\-owner \-\-disable\-setuid
+\-\-disable\-automatic\-update\(cq to
 .b configure ,
 edit
 .i include/manconfig.h
@@ -131,7 +132,7 @@ the setuid installation and operation of
 is modified by supplying either of the following options to
 .b configure :
 .bu
-\-\-enable\-setuid=USER
+\-\-enable\-setuid
 .bu
 \-\-disable\-setuid
 .lp
index 0bff2a4..7fdf9b9 100644 (file)
@@ -1,4 +1,5 @@
 lib/security.c
+lib/xchown.c
 lib/xregcomp.c
 libdb/db_delete.c
 libdb/db_lookup.c
index 7070547..b248fb2 100644 (file)
--- a/po/ca.po
+++ b/po/ca.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.7.0-pre1\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2015-08-04 08:34+0200\n"
 "Last-Translator: Jordi Mallach <jordi@gnu.org>\n"
 "Language-Team: Catalan <ca@dodds.net>\n"
@@ -17,16 +17,21 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n!=1;\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "no es pot establir l'uid efectiu"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "l'usuari man setuid «%s» no existeix"
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "no es pot fer «chown» a %s"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -131,24 +136,24 @@ msgstr "FITXER"
 msgid "use this user configuration file"
 msgstr "empra aquest fitxer de configuració de l'usuari"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "l'ordre de man ha fallat amb l'estat d'eixida %d"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "no es pot llegir la base de dades %s"
 
 # Potser siga només «per», en tot cas crec que «de» és més adequat.  ivb
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "contingut NUL de la clau: %s"
 
 # Alguna guia d'estil proposava «S'estan actualitzant...».  ivb
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -158,75 +163,80 @@ msgstr ""
 "S'estan actualitzant els fitxers cat per a la secció %s de la jerarquia de "
 "man %s\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "no es pot escriure en %s"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "no es pot actualitzar %s"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "avís: %s/man%s/%s.%s*: extensions en competència"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "no es pot actualitzar la memòria cau d'índex %s"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr "avís: %s: enllaç simbòlic o petició ROFF «.so» incorrecte"
 
 # «es descarta...»  ivb
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "avís: %s: es descarta un fitxer buit"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "avís: %s: l'anàlisi de whatis per a %s(%s) ha fallat"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "no es pot cercar el directori %s"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "avís: no es pot crear el directori de cat %s"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "no es pot fer «chmod» a %s"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "no es pot canviar al directori %s"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "no es pot crear la memòria cau d'índex %s"
 
 # S'està... Per/per a/de?  ivb
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "S'està actualitzant la memòria cau d'índex del camí «%s/%s». Espereu…"
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "fet.\n"
 
 # S'estan...  ivb
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "S'estan purgant entrades antigues de la base de dades en %s…\n"
@@ -280,7 +290,7 @@ msgid_plural "warning: whatis for %s exceeds %d bytes, truncating."
 msgstr[0] "avís: el whatis per a %s s'excedeix en %d octet, es truncarà."
 msgstr[1] "avís: el whatis per a %s s'excedeix en %d octets, es truncarà."
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -551,17 +561,7 @@ msgstr ""
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "es descarta el preprocessador desconegut «%c»"
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "no es pot fer «chown» a %s"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "no es pot fer «chmod» a %s"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "no es pot reanomenar %s a %s"
@@ -569,53 +569,53 @@ msgstr "no es pot reanomenar %s a %s"
 # Segurament es referirà a l'{a,m,c}time; hores/dates?  ivb
 # I en eixe cas, què sugereixes? jm
 # Allò que s'use majoritàriament pel cas, només era per assegurar-me.  ivb
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "no es poden establir les hores en %s"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "no es pot desenllaçar %s"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr "no es pot crear un fitxer cat temporal per a %s"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, c-format
 msgid "can't create temporary directory"
 msgstr "no es pot crear un directori temporal"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr "no es pot obrir el fitxer temporal %s"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "no es pot crear un directori temporal"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "no es pot eliminar el directori %s"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 "--Man-- següent: %s [ visualitza (retorn) | omet (Ctrl-D) | surt (Ctrl-C ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "no es pot canviar de directori a %s"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -624,29 +624,29 @@ msgstr ""
 "\n"
 "no es pot escriure a %s en el mode catman"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "No es pot convertir %s a nom cat"
 
 # Lo de sempre, deprecated? jm
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: basar-se en referències whatis està desaconsellat\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "l'ordre de mandb ha fallat amb l'estat d'eixida %d"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr ""
 "s'ha produït un error intern: el candidat de tipus %d està fora de rang"
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Pàgina de manual "
 
@@ -729,69 +729,69 @@ msgstr "NOMFITXER"
 msgid "update just the entry for this filename"
 msgstr "actualitza només l'entrada per a aquest nom de fitxer"
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "no es pot eliminar %s"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "no es pot escriure en %s"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "no es pot llegir de %s"
 
 # Si es refereix a un directori, «sota».  ivb
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Processant pàgines de manual sota %s…\n"
 
 # S'estan...  ivb
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "S'està suprimint el directori de cats obsolet %s…\n"
 
 # s'està utilitzant/s'utilitza/s'utilitzarà  ivb
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr ""
 "avís: no hi ha directives MANDB_MAP en %s, s'utilitzarà el vostre camí de man"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
 msgstr[0] "%d subdirectori de man contenia pàgines de manual més noves.\n"
 msgstr[1] "%d subdirectoris de man contenien pàgines de manual més noves.\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
 msgstr[0] "S'ha afegit %d pàgina de manual.\n"
 msgstr[1] "S'han afegit %d pàgines de manual.\n"
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
 msgstr[0] "S'ha afegit %d cat orfe.\n"
 msgstr[1] "S'han afegit %d cats orfes.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
 msgstr[0] "S'ha purgat %d entrada vella de la base de dades.\n"
 msgstr[1] "S'han purgat %d entrades velles de la base de dades.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr "No s'ha creat cap base de dades."
index 506963d..ba43bf4 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.6.1-pre1\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2012-04-07 19:04+0100\n"
 "Last-Translator: Marek Černocký <marek@manet.cz>\n"
 "Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
@@ -18,16 +18,21 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "nelze nastavit platné uid"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "uživatel manuálových stránek „%s“ použitý v setuid neexistuje"
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "nelze změnit vlastnictví %s"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -128,22 +133,22 @@ msgstr "SOUBOR"
 msgid "use this user configuration file"
 msgstr "použít tento soubor s uživatelským nastavením"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "příkaz man skončil s návratovým kódem %d"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "databázi %s nelze číst"
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "položka pod klíčem %s je prázdná"
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -152,72 +157,77 @@ msgstr ""
 "\n"
 "Aktualizují se katalogové soubory pro oddíl %s v manuálové hierarchii %s\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "nelze zapisovat do %s"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "nelze aktualizovat %s"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "varování: %s/man%s/%s.%s*: neslučitelné přípony"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "nelze aktualizovat rejstřík %s"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr "varování: %s: chybný symbolický odkaz nebo požadavek „.so“ od ROFF"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "varování: %s: ignoruje se prázdný soubor"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "varování: %s: selhalo zpracování programem whatis pro %s(%s)"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "nelze prohledat složku %s"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "varování: nelze vytvořit složku %s pro katalogy"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "nelze změnit oprávnění k %s"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "nelze se přepnout do složky %s"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "nelze vytvořit rejstřík %s"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "Aktualizuje se rejstřík pro cestu „%s/%s“. Čekejte…"
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "dokončeno.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "Mažou se staré databázové záznamy v %s…\n"
@@ -268,7 +278,7 @@ msgstr[0] "varování: program whatis pro %s překročil %d bajt, bude zkrácen"
 msgstr[1] "varování: program whatis pro %s překročil %d bajty, bude zkrácen"
 msgstr[2] "varování: program whatis pro %s překročil %d bajtů, bude zkrácen"
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -535,69 +545,59 @@ msgstr "Pokud nejsou manuálové stránky dostupné, použijte pro nápovědu 
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "ignoruje se neznámé předzpracování „%c“"
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "nelze změnit vlastnictví %s"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "nelze změnit oprávnění k %s"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "%s nelze přejmenovat na %s"
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "nelze nastavit čas na %s"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "nelze smazat %s"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr "nelze vytvořit dočasný katalog pro %s"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, c-format
 msgid "can't create temporary directory"
 msgstr "nelze vytvořit dočasnou složku"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr "nelze otevřít dočasný soubor %s"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "nelze vytvořit dočasnou složku"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "nelze odstranit složku %s"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 "--Man-- následující: %s [zobrazit (enter) | přeskočit (Ctrl-D) | ukončit "
 "(Ctrl-C)]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "nelze se přepnout do složky %s"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -606,27 +606,27 @@ msgstr ""
 "\n"
 "do %s nelze v režimu catman zapisovat"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "%s nelze převést na název katalogu"
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: spoléhat se na to, co program whatis považuje za neschválené\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "program mandb skončil s návratovým kódem %d"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr "interní chyba: kandidující typ %d je mimo rozsah"
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Manuálová stránka "
 
@@ -709,38 +709,38 @@ msgstr "SOUBOR"
 msgid "update just the entry for this filename"
 msgstr "aktualizovat jen záznam pro tento soubor"
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "nelze odstranit soubor %s"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "nelze zapisovat do souboru %s"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "nelze číst ze souboru %s"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Zpracovávají se manuálové stránky ve složce %s…\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "Odstraňuje se zastaralá složka katalogů %s…\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr ""
 "varování: v souboru %s není direktiva MANDB_MAP, použije se program manpath"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
@@ -748,7 +748,7 @@ msgstr[0] "%d manuálová podsložka obsahovala nové manuálové stránky.\n"
 msgstr[1] "%d manuálové podsložky obsahovaly nové manuálové stránky.\n"
 msgstr[2] "%d manuálových podsložek obsahovalo nové manuálové stránky.\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
@@ -756,7 +756,7 @@ msgstr[0] "%d manuálová stránka byla přidána.\n"
 msgstr[1] "%d manuálové stránky byly přidány.\n"
 msgstr[2] "%d manuálových stránek bylo přidáno.\n"
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
@@ -764,7 +764,7 @@ msgstr[0] "Byl přidán %d bezprizorní katalog.\n"
 msgstr[1] "Byly přidány %d bezprizorní katalogy.\n"
 msgstr[2] "Bylo přidáno %d bezprizorních katalogů.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
@@ -772,7 +772,7 @@ msgstr[0] "Byl vymazán %d starý databázový záznam.\n"
 msgstr[1] "Byly vymazány %d staré databázové záznamy.\n"
 msgstr[2] "Bylo vymazáno %d starých databázových záznamů.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr "Nebyla vytvořena žádná databáze."
index 1a44ef6..205e034 100644 (file)
--- a/po/da.po
+++ b/po/da.po
@@ -20,7 +20,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.6.1-pre1\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2012-03-17 23:42+0100\n"
 "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
 "Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
@@ -30,16 +30,21 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "kan ikke sætte effektivt uid"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "en manualbruger »%s« som er setuid findes ikke"
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "kan ikke skifte ejer på %s"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -139,22 +144,22 @@ msgstr "FIL"
 msgid "use this user configuration file"
 msgstr "brug denne brugers konfigurationsfil"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "man-kommandoen mislykkedes med slutstatus %d"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "kan ikke læse databasen %s"
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "NULL-indhold for nøgle: %s"
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -163,72 +168,77 @@ msgstr ""
 "\n"
 "Opdaterer katalogfiler for afsnit %s i man-hierarkiet %s\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "kan ikke skrive indenfor %s"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "kan ikke opdatere %s"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "advarsel: %s/man%s/%s.%s*: filendelser i konflikt"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "kan ikke opdatere indekscachen %s"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr "advarsel: %s: fejlagtig symbolsk lænke eller ROFF ».so-anmodning«"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "advarsel: %s: ignorerer tom fil"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "advarsel: %s: whatis-tolkning for %s(%s) mislykkedes"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "kan ikke søge i kataloget %s"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "advarsel: kan ikke oprette katalogmappe %s"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "kan ikke ændre rettigheder på %s"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "kan ikke skifte til kataloget %s"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "kan ikke oprette indekscachen %s"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "Opdaterer indekscache for søgestien »%s/%s«. Vent..."
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "færdig.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "Tømmer gamle databaseindgange i %s...\n"
@@ -282,7 +292,7 @@ msgid_plural "warning: whatis for %s exceeds %d bytes, truncating."
 msgstr[0] "advarsel: whatis for %s overskrider %d byte, forkorter."
 msgstr[1] "advarsel: whatis for %s overskrider %d byte, forkorter."
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -552,68 +562,58 @@ msgstr "Se »%s« for hjælp når manualsider ikke er tilgængelige.\n"
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "ignorerer ukendt forbehandler »%c«"
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "kan ikke skifte ejer på %s"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "kan ikke ændre rettigheder på %s"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "kan ikke omdøbe %s til %s"
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "kan ikke sætte tider på %s"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "kan ikke aflænke %s"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr "kan ikke oprette midlertidigt katalog for %s"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, c-format
 msgid "can't create temporary directory"
 msgstr "kan ikke oprette midlertidig mappe"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr "kan ikke åbne midlertidig fil %s"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "kan ikke oprette midlertidig mappe"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "kan ikke fjerne kataloget %s"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 "--Man-- næste: %s [ vis (retur) | overspring (Ctrl-D) | afslut (Ctrl-C) ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "kan ikke skifte katalog til %s"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -622,27 +622,27 @@ msgstr ""
 "\n"
 "kan ikke skrive til %s i tilstanden katalogmanual"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "Kan ikke konvertere %s til katalognavn"
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: at stole på whatis-referencer er forældet\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "mandb-kommandoen mislykkedes med slutstatus %d"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr "intern fejl: kandidattype %d uden for gyldigt interval"
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Manualside "
 
@@ -725,65 +725,65 @@ msgstr "FILNAVN"
 msgid "update just the entry for this filename"
 msgstr "opdater kun punktet for dette filnavn"
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "kan ikke fjerne %s"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "kan ikke skrive til %s"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "kan ikke læse fra %s"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Bearbejder manualsider under %s...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "Fjerner forældet katalogside %s...\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr "advarsel: intet MANDB_MAP-direktiv i %s, bruger din manualsøgesti"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
 msgstr[0] "%d manualunderkatalog indeholdt nyere manualsider.\n"
 msgstr[1] "%d manualunderkataloger indeholdt nyere manualsider.\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
 msgstr[0] "%d manualside blev tilføjet.\n"
 msgstr[1] "%d manualsider blev tilføjet.\n"
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
 msgstr[0] "%d vildfaren katalogside blev tilføjet.\n"
 msgstr[1] "%d vildfarne katalogsider blev tilføjet.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
 msgstr[0] "%d gammel databaseindgang blev tømt.\n"
 msgstr[1] "%d gamle databaseindgange blev tømt.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr "Ingen databaser er oprettet."
index f65c7ee..4498f56 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.6.1-pre1\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2012-04-25 21:22-0700\n"
 "Last-Translator: Arun Persaud <arun@nubati.net>\n"
 "Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
@@ -23,16 +23,21 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: KBabel 1.11.4\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "effektive Benutzerkennung kann nicht gesetzt werden"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "Der von »man« verwandte Benutzer »%s« existiert nicht"
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "Besitzer und/oder Gruppe von %s können nicht geändert werden"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -132,22 +137,22 @@ msgstr "DATEI"
 msgid "use this user configuration file"
 msgstr "diese Benutzerkonfigurationsdatei verwenden"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "Man-Befehl schlug mit Exit-Status %d fehl"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "Datenbank %s kann nicht gelesen werden"
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "Inhalt für Suchschlüssel ist NULL: %s"
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -157,73 +162,78 @@ msgstr ""
 "»cat«-Dateien des Abschnitts %s der Handbuchhierarchie %s werden "
 "aktualisiert.\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "innerhalb von %s kann nicht geschrieben werden"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "%s kann nicht aktualisiert werden"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "Warnung: %s/man%s/%s.%s*: konkurrierende Dateierweiterungen"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "Indexcache %s kann nicht aktualisiert werden"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr ""
 "Warnung: %s: ungültige symbolische Verknüpfung oder »roff«-».so«-Anfrage"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "Warnung: %s: leere Datei wird ignoriert"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "Warnung: %s: whatis-Verarbeitung für %s(%s) fehlgeschlagen"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "Verzeichnis %s kann nicht durchsucht werden"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "Warnung: »cat«-Verzeichnis %s kann nicht angelegt werden"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "Zugriffsrechte von %s können nicht geändert werden"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "Es konnte nicht ins Verzeichnis %s gewechselt werden"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "Indexcache %s kann nicht erzeugt werden"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "Indexcache des Pfades »%s/%s« wird aktualisiert. Bitte warten ..."
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "fertig.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "Alte Datenbankeinträge in %s werden gelöscht ...\n"
@@ -276,7 +286,7 @@ msgstr[0] ""
 msgstr[1] ""
 "Warnung: whatis-Eintrag für %s ist größer als %d Bytes, verkürze ihn."
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -547,71 +557,61 @@ msgstr "Siehe auch »%s« für Hilfe, wenn Handbuchseiten nicht verfügbar sind.
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "Ignoriere unbekannten Präprozessor »%c«"
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "Besitzer und/oder Gruppe von %s können nicht geändert werden"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "Zugriffsrechte von %s können nicht geändert werden"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "%s kann nicht in %s umbenannt werden"
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "Es können keine Zeiten für %s gesetzt werden"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "%s kann nicht gelöscht werden"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr "Es kann keine temporäre »cat«-Datei für %s erzeugt werden"
 
 # (mes) NEU
-#: src/man.c:1884
+#: src/man.c:1885
 #, c-format
 msgid "can't create temporary directory"
 msgstr "Temporäres Verzeichnis kann nicht erzeugt werden."
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr "Temporäre Datei %s kann nicht geöffnet werden"
 
 # (mes) NEU
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "Temporäres Verzeichnis kann nicht erzeugt werden."
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "Verzeichnis %s kann nicht entfernt werden"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 "--Man-- nächste: %s [ Anzeigen (Return) | Überspringen (Strg+D) | Beenden "
 "(Strg+C) ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "Es kann nicht ins Verzeichnis %s gewechselt werden"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -620,27 +620,27 @@ msgstr ""
 "\n"
 "im »catman«-Modus kann nicht nach %s geschrieben werden"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "%s kann nicht in »cat«-Namen umgewandelt werden"
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: es wird davon abgeraten, auf »whatis«-Referenzen zu vertrauen\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "»mandb«-Befehl schlug fehl mit Beendigungs-Status %d"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr "interner Fehler: Kandidatentyp %d außerhalb des Bereichs"
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Handbuchseite "
 
@@ -724,66 +724,66 @@ msgstr "DATEINAME"
 msgid "update just the entry for this filename"
 msgstr "nur den Eintrag für diesen Dateinamen aktualisieren"
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "%s kann nicht entfernt werden"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "es kann nicht nach %s geschrieben werden"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "%s kann nicht ausgelesen werden"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Handbuchseiten unter %s werden verarbeitet ...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "veraltetes »cat«-Verzeichnis %s wird entfernt ...\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr ""
 "Warnung: keine MANDB_MAP-Anweisungen in %s, ihr Handbuchpfad wird verwendet"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
 msgstr[0] "%d Handbuchverzeichnis enthielt neuere Handbuchseiten.\n"
 msgstr[1] "%d Handbuchverzeichnisse enthielten neuere Handbuchseiten.\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
 msgstr[0] "%d Handbuchseite wurde hinzugefügt.\n"
 msgstr[1] "%d Handbuchseiten wurden hinzugefügt.\n"
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
 msgstr[0] "%d herrenlose »cat«-Datei wurde hinzugefügt.\n"
 msgstr[1] "%d herrenlose »cat«-Dateien wurden hinzugefügt.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
 msgstr[0] "%d alter Datenbankeintrag wurde entfernt.\n"
 msgstr[1] "%d alte Datenbankeinträge wurden entfernt.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr "Keine Datenbanken erstellt."
index 5770c8c..ee270bd 100644 (file)
--- a/po/eo.po
+++ b/po/eo.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.6.1-pre1\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2013-02-19 13:10-0300\n"
 "Last-Translator: Felipe Castro <fefcas@gmail.com>\n"
 "Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
@@ -17,16 +17,21 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "ne eblas difini la faktan uid"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "la man-uzanto kun setuid \"%s\" ne ekzistas"
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "ne eblas apliki chown %s"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -126,22 +131,22 @@ msgstr "DOSIERO"
 msgid "use this user configuration file"
 msgstr "uzi tiun ĉi uzant-agorda dosiero"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "komando man fiaskis kun elir-stato %d"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "ne eblas legi la datumbazon %s"
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "Enhavo NULL por ŝlosilo: %s"
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -150,72 +155,77 @@ msgstr ""
 "\n"
 "Ĝisdatigo de cat-dosieroj por sekcio %s de man-hierarkio %s\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "ne eblas skribi ene de %s"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "Ne eblas ĝisdatigi %s"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "averto: %s/man%s/%s.%s*: konkurantaj sufiksoj"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "ne eblas ĝisdatigi la indeksan kaŝmemoron %s"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr "averto: %s: malĝusta symlink aŭ peto de ROFF '.so'"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "averto: %s: ni preteratentas malplenan dosieron"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "averto: %s: analizo de whatis por %s(%s) fiaskis"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "ne eblas serĉi la dosierujon %s"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "averto: ne eblas krei la catdir %s"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "ne eblas apliki chmod %s"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "ne eblas ŝanĝi al la dosierujo %s"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "ne eblas krei la indeksan kaŝmemoron %s"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "Ĝisdatigo de indeksa kaŝmemoro por la vojo '%s/%s'. Atendu..."
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "farite.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "Viŝo de malnovaj datumbazaj enigoj en %s...\n"
@@ -265,7 +275,7 @@ msgid_plural "warning: whatis for %s exceeds %d bytes, truncating."
 msgstr[0] "averto: whatis por %s troigas %d bajton, ni tranĉas."
 msgstr[1] "averto: whatis por %s troigas %d bajtojn, ni tranĉas."
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -529,68 +539,58 @@ msgstr "Konsultu '%s' por helpo kiam manlibraj paĝoj ne disponeblas.\n"
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "ni preteratentas nekonatan antaŭprocezilon '%c'"
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "ne eblas apliki chown %s"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "ne eblas apliki chmod %s"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "ne eblas renomigi %s al %s"
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "ne eblas difini horon en %s"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "ne eblas forigi %s"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr "ne eblas krei provizoran cat por %s"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, c-format
 msgid "can't create temporary directory"
 msgstr "ne eblas krei provizoran dosierujon"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr "ne eblas malfermi la provizoran dosieron %s"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "ne eblas krei provizoran dosierujon"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "ne eblas forigi la dosierujon %s"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 "--Man-- sekva: %s [ vidi (enigklavo) | salti (Ctrl-D) | eliri (Ctrl-C) ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "ne eblas apliki chdir al %s"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -599,27 +599,27 @@ msgstr ""
 "\n"
 "ne eblas skribi al %s sub reĝimo catman"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "Ne eblas konverti %s al cat-nomo"
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: fini je whatis refs estas malrekomendinde\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "komando mandb fiaskis kun elir-stato %d"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr "interna eraro: kanditata tipo %d estas for de intervalo"
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Manlibra paĝo "
 
@@ -702,65 +702,65 @@ msgstr "DOSIERNOMO"
 msgid "update just the entry for this filename"
 msgstr "ĝisdatigi nur la elementon por tiu ĉi dosiernomo"
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "ne eblas forigi %s"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "ne eblas skribi al %s"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "ne eblas legi el %s"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Procezado de manlibraj paĝoj sub %s...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "Forigado de malaktuala cat-dosierujo %s...\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr "averto: neniu instrukcio MANDB_MAP en %s, ni uzas vian man-vojon"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
 msgstr[0] "%d man-subdosierujo enhavis pli novajn manlibrajn paĝojn.\n"
 msgstr[1] "%d man-subdosierujoj enhavis pli novajn manlibrajn paĝojn.\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
 msgstr[0] "%d manlibra paĝo estis aldonata.\n"
 msgstr[1] "%d manlibraj paĝoj estis aldonataj.\n"
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
 msgstr[0] "%d perdita cat estis aldonata.\n"
 msgstr[1] "%d perditaj cat estis aldonataj.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
 msgstr[0] "%d malnova datumbaza elemento estis forpurigata.\n"
 msgstr[1] "%d malnovaj datumbazaj elementoj estis forpurigataj.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr "Neniu datumbazo estis kreata."
index 3746f01..fb5fee7 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.3.20\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2002-07-03 21:52+0200\n"
 "Last-Translator: David Martínez <ender@debian.org>\n"
 "Language-Team: debian-l10n-spanish@lists.debian.org\n"
@@ -15,16 +15,21 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-1\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "no se puede asignar el uid efectivo."
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "el usuario setuid a man \"%s\" no existe."
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "no se puede realizar el chown %s."
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -125,22 +130,22 @@ msgstr ""
 msgid "use this user configuration file"
 msgstr "no se puede abrir el fichero de configuración de rutas de man %s."
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "la orden man falló con código de salida %d."
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "no se puede leer la base de datos %s."
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "contenido NULL para la clave: %s."
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -149,72 +154,77 @@ msgstr ""
 "\n"
 "Actualizando los ficheros cat para la sección %s de la jerarquía de man %s.\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "no se puede escribir en %s."
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "no se puede actualizar %s."
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "aviso: %s/man%s/%s.%s*: extensiones en conflicto."
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "no se puede actualizar el caché de índices %s."
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr "aviso: %s: enlace simbólico o solicitud `.so' de ROFF incorrectos."
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "aviso: %s: ignorando fichero vacío."
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "aviso: %s: falló la exploración de whatis para %s(%s)."
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "no se puede buscar en el directorio %s."
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "aviso: no se pudo crear directorio para «cat» %s."
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "no se puede realizar el chmod %s."
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "no se puede entrar en el directorio %s."
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "no se puede crear el caché de índices %s."
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "Actualizando el caché de índices para la ruta `%s/%s'. Aguarde..."
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "listo.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "Purgando entradas antiguas en la base de datos en %s...\n"
@@ -264,7 +274,7 @@ msgid_plural "warning: whatis for %s exceeds %d bytes, truncating."
 msgstr[0] "aviso: whatis para %s excede de %d bytes, se truncará el exceso."
 msgstr[1] "aviso: whatis para %s excede de %d bytes, se truncará el exceso."
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -526,68 +536,58 @@ msgstr ""
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "se ignora el preprocesador desconocido `%c'."
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "no se puede realizar el chown %s."
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "no se puede realizar el chmod %s."
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "no se puede cambiar el nombre %s a %s."
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "no se puede cambiar la fecha de %s."
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "no se puede eliminar %s."
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, fuzzy, c-format
 msgid "can't create temporary cat for %s"
 msgstr "no se puede crear un nombre de fichero temporal."
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, fuzzy, c-format
 msgid "can't create temporary directory"
 msgstr "no se puede crear un nombre de fichero temporal."
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, fuzzy, c-format
 msgid "can't open temporary file %s"
 msgstr "no se puede abrir el fichero de configuración de rutas de man %s."
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "no se puede crear un nombre de fichero temporal."
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "no se puede borrar el directorio %s."
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 "--Man-- próxima: %s [ ver (return) | siguiente (Ctrl-D) | salir (Ctrl-C) ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "no se puede cambiar al directorio %s."
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -596,27 +596,27 @@ msgstr ""
 "\n"
 "no se puede escribir en %s en modo catman."
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "No se puede convertir %s a un nombre de tipo cat."
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: depender de las referencias de whatis está en desuso.\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, fuzzy, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "la orden man falló con código de salida %d."
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr ""
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr "Página de manual "
 
@@ -699,39 +699,39 @@ msgstr ""
 msgid "update just the entry for this filename"
 msgstr ""
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "no se puede borrar %s."
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, fuzzy, c-format
 msgid "can't write to %s"
 msgstr "no se puede escribir en %s."
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, fuzzy, c-format
 msgid "can't read from %s"
 msgstr "no se puede crear %s."
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Procesando las páginas de manual bajo %s...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, fuzzy, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "Controlando si hay páginas cat sin fuentes bajo %s...\n"
 
 # manpath es algo específico, debe estar presente. nl
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr ""
 "aviso: no hay directivas MANDB_MAP en %s, se utilizará su ruta man (manpath)"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, fuzzy, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
@@ -742,28 +742,28 @@ msgstr[1] ""
 "%d subdirectorios man tenían páginas de manual más recientes.\n"
 "Se añadieron %d páginas de manual.\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, fuzzy, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
 msgstr[0] "Página de manual "
 msgstr[1] "Página de manual "
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, fuzzy, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
 msgstr[0] "Se añadieron %d «cats» sin fuentes.\n"
 msgstr[1] "Se añadieron %d «cats» sin fuentes.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, fuzzy, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
 msgstr[0] "Se han eliminado %d entradas antiguas en la base de datos.\n"
 msgstr[1] "Se han eliminado %d entradas antiguas en la base de datos.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr ""
index 375595a..10de228 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.7.0-pre1\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2015-07-28 21:52+0300\n"
 "Last-Translator: Lauri Nurmi <lanurmi@iki.fi>\n"
 "Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
@@ -18,16 +18,21 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Poedit 1.8.3\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "voimassaolevaa UID:ta ei voi asettaa"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr ""
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr ""
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -129,94 +134,99 @@ msgstr "TIEDOSTO"
 msgid "use this user configuration file"
 msgstr "opastepolkujen asetustiedostoa %s ei voi avata"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr ""
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "tietokantaa %s ei voi lukea"
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr ""
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
 "Updating cat files for section %s of man hierarchy %s\n"
 msgstr ""
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr ""
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr ""
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr ""
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr ""
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr ""
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "varoitus: %s: ei huomioida tyhjää tiedostoa"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr ""
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr ""
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr ""
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr ""
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr ""
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr ""
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr ""
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "valmis.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr ""
@@ -266,7 +276,7 @@ msgid_plural "warning: whatis for %s exceeds %d bytes, truncating."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -525,94 +535,84 @@ msgstr ""
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "ei huomioida tuntematonta esikäsittelintä \"%c\""
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr ""
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr ""
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr ""
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr ""
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr ""
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, fuzzy, c-format
 msgid "can't create temporary cat for %s"
 msgstr "varoitus: väliaikaistiedostoa %s ei voi luoda"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, fuzzy, c-format
 msgid "can't create temporary directory"
 msgstr "nykyistä hakemistoa ei voi määrittää"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, fuzzy, c-format
 msgid "can't open temporary file %s"
 msgstr "opastepolkujen asetustiedostoa %s ei voi avata"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "nykyistä hakemistoa ei voi määrittää"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr ""
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr ""
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
 "cannot write to %s in catman mode"
 msgstr ""
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr ""
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr ""
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "mandb-komento epäonnistui paluuarvolla %d"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr ""
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Opastesivu "
 
@@ -695,65 +695,65 @@ msgstr "TIEDOSTONIMI"
 msgid "update just the entry for this filename"
 msgstr ""
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "tiedostoa %s ei voi poistaa"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "tiedostoon %s ei voi kirjoittaa"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "tiedostosta %s ei voi lukea"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Käsitellään opastesivuja hakemistossa %s...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "Poistetaan vanhentunut cat-hakemisto %s...\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr ""
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
 msgstr[0] "%d man-alihakemisto sisälsi uudempia opastesivuja.\n"
 msgstr[1] "%d man-alihakemistoa sisälsi uudempia opastesivuja.\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, fuzzy, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
 msgstr[0] " Opastesivu "
 msgstr[1] " Opastesivu "
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, fuzzy, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
 msgstr[0] "%d jotain .. ööö.. kulkukissaa lisättiin.\n"
 msgstr[1] "%d jotain .. ööö.. kulkukissaa lisättiin.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, fuzzy, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
 msgstr[0] "%d vanhaa tietokantamerkintää poistettiin.\n"
 msgstr[1] "%d vanhaa tietokantamerkintää poistettiin.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr "Tietokantoja ei luotu."
index 9d4c515..cc42f37 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.6.1-pre1\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2012-02-06 14:43-0400\n"
 "Last-Translator: David Prévot <david@tilapin.org>\n"
 "Language-Team: French <traduc@traduc.org>\n"
@@ -19,16 +19,21 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1\n"
 "X-Generator: Lokalize 1.2\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "impossible de positionner le propriétaire (UID) effectif"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "l'utilisateur man privilégié (setuid) « %s » n'existe pas"
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "impossible de changer le propriétaire de %s"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -128,22 +133,22 @@ msgstr "FICHIER"
 msgid "use this user configuration file"
 msgstr "utilise ce fichier de configuration utilisateur"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "la commande man a échoué avec %d comme code de retour"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "impossible de lire la base de données %s"
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "contenu vide (NULL) pour la clef : %s"
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -152,72 +157,77 @@ msgstr ""
 "\n"
 "Mise à jour des fichiers préformatés pour la section %s de %s\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "impossible d'écrire dans %s"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "impossible de mettre %s à jour"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "attention : %s/man%s/%s.%s* : extensions en conflit"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "impossible de mettre à jour le cache d'index %s"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr "attention : %s : lien symbolique ou directive ROFF « .so » incorrect"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "attention : %s : fichier vide ignoré"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "attention : %s : la recherche de whatis sur %s(%s) a échoué"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "impossible de chercher dans le répertoire %s"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "attention : impossible de créer le répertoire de pages préformatées %s"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "impossible de changer les droits de %s"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "impossible d'aller dans le répertoire %s"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "impossible de créer le cache d'index %s"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "Mise à jour du cache d'index pour le chemin « %s/%s ». Attendez…"
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "terminé.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "Effacement des entrées inutiles de %s en cours…\n"
@@ -267,7 +277,7 @@ msgid_plural "warning: whatis for %s exceeds %d bytes, truncating."
 msgstr[0] "attention : whatis pour %s dépasse d'un octet, excédent tronqué."
 msgstr[1] "attention : whatis pour %s dépasse de %d octets, excédent tronqué."
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -536,69 +546,59 @@ msgstr ""
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "le préprocesseur « %c » est inconnu et ignoré"
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "impossible de changer le propriétaire de %s"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "impossible de changer les droits de %s"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "impossible de renommer %s en %s"
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "impossible de changer la date de %s"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "impossible de supprimer %s"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr "impossible de créer une page « cat » temporaire pour %s"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, c-format
 msgid "can't create temporary directory"
 msgstr "impossible de créer le répertoire temporaire"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr "impossible d'ouvrir le fichier temporaire %s"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "impossible de créer le répertoire temporaire"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "impossible de supprimer le répertoire %s"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 "--Man-- prochain : %s [ voir (entrée) | passer (Ctrl-D) | quitter (Ctrl-"
 "C) ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "impossible d'aller dans le répertoire %s"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -607,28 +607,28 @@ msgstr ""
 "\n"
 "impossible d'écrire vers %s en mode catman"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "Impossible de convertir %s en nom de page préformatée"
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr ""
 "%s : il est conseillé de ne plus se baser sur les références de whatis\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "la commande mandb a échoué avec le code de retour %d"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr "erreur interne : le type candidat %d est hors de portée"
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Page de manuel "
 
@@ -711,67 +711,67 @@ msgstr "NOM_DE_FICHIER"
 msgid "update just the entry for this filename"
 msgstr "met seulement à jour l'entrée correspondant à ce nom de fichier"
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "impossible de supprimer %s"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "impossible d'écrire dans %s"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "impossible de lire à partir de %s"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Traitement des pages du manuel sous %s…\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "Suppression du répertoire « cat » obsolète %s…\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr ""
 "attention : aucune directive MANDB_MAP dans %s, votre fichier manpath est "
 "utilisé"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
 msgstr[0] "Un sous-répertoire de manuel contient de nouvelles pages.\n"
 msgstr[1] "%d sous-répertoires de manuel contiennent de nouvelles pages.\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
 msgstr[0] "Une page de manuel a été ajoutée.\n"
 msgstr[1] "%d pages de manuel ont été ajoutées.\n"
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
 msgstr[0] "Une page sans source a été ajoutée.\n"
 msgstr[1] "%d pages sans source ont été ajoutées.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
 msgstr[0] "Une entrée inutile de la base a été supprimée.\n"
 msgstr[1] "%d entrées inutiles de la base ont été supprimées.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr "Aucune base de données créée."
index 5cd952b..f1a3162 100644 (file)
--- a/po/id.po
+++ b/po/id.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.6.6-pre2\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2014-08-10 19:00+0700\n"
 "Last-Translator: Arif E. Nugroho <arif_endro@yahoo.com>\n"
 "Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\n"
@@ -17,16 +17,21 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "tidak dapat menset uid efektif"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "setuid pengguna man \"%s\" tidak ada"
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "tidak dapat chown %s"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -126,22 +131,22 @@ msgstr "BERKAS"
 msgid "use this user configuration file"
 msgstr "gunakan berkas konfigurasi pengguna ini"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "perintah man gagal dengan status keluar %d"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "tidak dapat membaca basis data %s"
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "isi KOSONG untuk kunci: %s"
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -150,72 +155,77 @@ msgstr ""
 "\n"
 "Memperbarui berkas cat untuk bagian %s dari struktur man %s\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "tidak dapat menulis didalam %s"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "tidak dapat memperbarui %s"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "peringatan: %s/man%s/%s.%s*: ekstensi berkompetisi"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "tidak dapat mengupdate persediaan indeks %s"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr "peringatan: %s: symlink buruk atau ROFF `.so' diminta"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "peringatan: %s: mengabaikan berkas kosong"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "peringatan: %s: whatis parse untuk %s(%s) gagal"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "tidak dapat mencari direktori %s"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "peringatan: tidak dapat membuat catdir %s"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "tidak dapat chmod %s"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "tidak  dapat mengubah direktori %s"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "tidak dapat membuat persediaan indeks %s"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "Memperbarui persediaan indeks untuk jalur `%s/%s'. Mohon tunggu..."
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "selesai.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "Menghapus masukan basis data lama dalam %s...\n"
@@ -265,7 +275,7 @@ msgid_plural "warning: whatis for %s exceeds %d bytes, truncating."
 msgstr[0] "peringatan: whatis untuk %s melebihi %d bytes, dipotong."
 msgstr[1] "peringatan: whatis untuk %s melebihi %d bytes, dipotong."
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -532,69 +542,59 @@ msgstr "Lihat '%s' untuk bantuan ketika halaman manual tidak tersedia.\n"
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "mengabaikan preprosesor tidak dikenal `%c'"
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "tidak dapat chown %s"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "tidak dapat chmod %s"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "tidak dapat mengubah nama %s ke %s"
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "tidak dapat menset waktu di %s"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "tidak dapat unlink %s"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr "tidak dapat membuat cat sementara untuk %s"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, c-format
 msgid "can't create temporary directory"
 msgstr "tidak dapat membuat direktori sementara"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr "tidak dapat membuka berkas sementara %s"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "tidak dapat membuat direktori sementara"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "tidak dapat menghapus direktori %s"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 "--Man-- selanjutnya: %s [ lihat (return) | lewat (Ctrl-D) | berhenti (Ctrl-"
 "C) ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "tidak dapat chdir ke %s"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -603,27 +603,27 @@ msgstr ""
 "\n"
 "tidak dapat menulis ke %s dalam mode catman"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "Tidak dapat mengubah %s ke nama cat"
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: bergantung ke referensi whatis sudah ditinggalkan\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "perintah mandb gagal dengan status keluar %d"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr "internal error: tipe kandidat %d diluar dari jangkauan"
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Halaman buku panduan "
 
@@ -706,38 +706,38 @@ msgstr "NAMA BERKAS"
 msgid "update just the entry for this filename"
 msgstr "perbarui hanya masukan untuk nama berkas ini"
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "tidak dapat menghapus %s"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "tidak dapat menulis ke %s"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "tidak dapat membaca dari %s"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Memproses halaman buku panduan dibawah %s...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "Memeriksa untuk cats menyimpang dibawah %s...\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr ""
 "peringatan: tidak ada direktif MANDB_MAP dalam %s, menggunakan jalur man anda"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
@@ -748,28 +748,28 @@ msgstr[1] ""
 "%d man subdirektori berisi halaman buku panduan lebih baru. halaman buku "
 "panduan telah ditambahkan.\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
 msgstr[0] "%d Halaman buku panduan \n"
 msgstr[1] "%d Halaman buku panduan \n"
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
 msgstr[0] "%d cats menyimpang telah ditambahkan.\n"
 msgstr[1] "%d cats menyimpang telah ditambahkan.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
 msgstr[0] "%d masukan basis data lama telah dihapus.\n"
 msgstr[1] "%d masukan basis data lama telah dihapus.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr "Tidak ada basis data yang dibuat."
index 9441924..cd38adc 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.4.3\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2005-12-10 17:30+0100\n"
 "Last-Translator: Giuseppe Sacco <eppesuig@debian.org>\n"
 "Language-Team: Italian <tp@linux.it>\n"
@@ -16,16 +16,21 @@ msgstr ""
 "Content-Type: text/plain; charset=iso-8859-1\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "impossibile impostare lo uid effettivo"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "non esiste l'utente man con setuid \"%s\""
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "impossibile fare chown su %s"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -126,22 +131,22 @@ msgstr ""
 msgid "use this user configuration file"
 msgstr "impossibile aprire il file di configurazione dei percorsi man %s"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "comando man fallito con stato d'uscita %d"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "impossibile leggere il database %s"
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "contenuto NULL per la chiave: %s"
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -150,73 +155,78 @@ msgstr ""
 "\n"
 "Aggiornamento dei file cat della sezione %s della gerarchia di manuali %s\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "impossibile scrivere all'interno di %s"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "impossibile aggiornare %s"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "attenzione: %s/man%s/%s.%s*: estensioni in conflitto"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "impossibile aggiornare l'indice %s della cache"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr "attenzione: %s: link simbolico o richiesta ROFF \".so\" errato(a)"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "attenzione: %s: viene ignorato un file vuoto"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "attenzione: %s: analisi whatis per %s(%s) fallita"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "impossibile ricercare nella directory %s"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "attenzione: impossibile creare la directory %s"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "impossibile fare chmod su %s"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "impossibile posizionarsi nella directory %s"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "impossibile creare l'indice %s della cache"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr ""
 "Aggiornamento dell'indice della cache per il percorso \"%s/%s\". Attendere..."
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "fatto.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "Rimozione delle vecchie voci di basi dati in %s...\n"
@@ -266,7 +276,7 @@ msgid_plural "warning: whatis for %s exceeds %d bytes, truncating."
 msgstr[0] "attenzione: whatis per %s eccede di %d byte, troncato."
 msgstr[1] "attenzione: whatis per %s eccede di %d byte, troncato."
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -526,68 +536,58 @@ msgstr ""
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "preprocessore \"%c\" sconosciuto, lo ignoro"
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "impossibile fare chown su %s"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "impossibile fare chmod su %s"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "impossibile rinominare %s in %s"
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "impossibile impostare la data per %s"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "impossibile fare unlink di %s"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr "impossibile creare un file 'cat' temporaneo per %s"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, fuzzy, c-format
 msgid "can't create temporary directory"
 msgstr "impossibile creare un file 'cat' temporaneo per %s"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr "impossibile aprire il file temporaneo %s"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "impossibile creare un file 'cat' temporaneo per %s"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "impossibile rimuovere la directory %s"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 "--Man-- successivo: %s [ mostra (return) | salta (Ctrl-D) | esci (Ctrl-C) ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "impossibile fare chdir a %s"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -596,27 +596,27 @@ msgstr ""
 "\n"
 "impossibile scrivere in %s in modo catman"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "Impossibile convertire %s nel nome cat"
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: confidare nei whatis refs è obsoleto\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "comando mandb fallito con stato d'uscita %d"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr "errore interno: il tipo %d candidato è oltre il limite"
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Pagina di manuale "
 
@@ -699,37 +699,37 @@ msgstr ""
 msgid "update just the entry for this filename"
 msgstr ""
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "impossibile rimuovere %s"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "impossibile scrivere in %s"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "impossibile leggere da %s"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Lavorazione delle pagine di manuale sotto a %s...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, fuzzy, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "Ricerca degli stray cat sotto a %s...\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr "attenzione: nessuna direttiva MANDB_MAP in %s, uso del tuo manpath"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, fuzzy, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
@@ -740,28 +740,28 @@ msgstr[1] ""
 "%d sottodirectory man contenevano nuove pagine di manuale.\n"
 "Sono state aggiunte %d pagine di manuale\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, fuzzy, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
 msgstr[0] " Pagina di manuale "
 msgstr[1] " Pagina di manuale "
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, fuzzy, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
 msgstr[0] "%d stray cat sono stati aggiunti.\n"
 msgstr[1] "%d stray cat sono stati aggiunti.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, fuzzy, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
 msgstr[0] "%d vecchie voci di database sono state rimosse.\n"
 msgstr[1] "%d vecchie voci di database sono state rimosse.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, fuzzy, c-format
 msgid "No databases created."
 msgstr "Il database non è stato aggiornato."
index 014d935..f3e3003 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db-2.6.5\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2013-06-27 19:41+0900\n"
 "Last-Translator: Yasuaki Taniguchi <yasuakit@gmail.com>\n"
 "Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
@@ -18,16 +18,21 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "実効 UID を設定できません"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "setuid された man ユーザー \"%s\" は存在しません"
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "%s の所有者を変更 (chown) できません"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -128,22 +133,22 @@ msgstr "FILE"
 msgid "use this user configuration file"
 msgstr "このユーザ設定ファイルを使用する"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "man コマンドが終了ステータス %d で失敗しました"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "データベース %s を読み込めません"
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "キー %s の内容は NULL です"
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -152,73 +157,78 @@ msgstr ""
 "\n"
 "man 階層 %2$s のセクション %1$s の cat ファイルを更新しています\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "%s に書き込めません"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "%s を更新できません"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "警告: %s/man%s/%s.%s*: 拡張子が競合しています"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "index キャッシュ %s を更新できません"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr ""
 "警告: %s: シンボリックリンクまたは ROFF の `.so' 要求に誤りがあります"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "警告: %s: 空ファイルを無視しています"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "警告: %s: whatis が %s(%s) の解釈に失敗しました"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "ディレクトリー %s を検索できません"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "警告: cat ディレクトリー %s を作成できません"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "%s の許可属性を変更 (chmod) できません"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "ディレクトリ %s に移動できません"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "index キャッシュ %s を作成できません"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "パス `%s/%s' の index キャッシュを更新しています。お待ちください..."
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "完了しました。\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "%s 内の古いデータベース要素を取り除いています...\n"
@@ -267,7 +277,7 @@ msgid "warning: whatis for %s exceeds %d byte, truncating."
 msgid_plural "warning: whatis for %s exceeds %d bytes, truncating."
 msgstr[0] "警告: %s 用の whatis が %d バイトを超えています。切り詰めます。"
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -533,68 +543,58 @@ msgstr ""
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "不明な前処理系 `%c' を無視しています"
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "%s の所有者を変更 (chown) できません"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "%s の許可属性を変更 (chmod) できません"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "%s の名前を %s に変更できません"
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "%s の時刻を設定できません"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "%s を削除(unlink)できません"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr "%s 用の一時的な整形済みファイルを作成できません"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, c-format
 msgid "can't create temporary directory"
 msgstr "一時ディレクトリを作成できません"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr "一時ファイル %s を開けません"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "一時ディレクトリを作成できません"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "ディレクトリ %s を削除できません"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 "--Man-- 次は: %s [ 閲覧 (return) | スキップ (Ctrl-D) | 終了 (Ctrl-C) ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "%s にディレクトリを変更できません"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -603,27 +603,27 @@ msgstr ""
 "\n"
 "catman モードで %s に書き込みできません"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "%s を整形済みファイル名に変換できません"
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: whatis の参照に頼ることは勧められなくなっています\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "mandb コマンドが終了ステータス %d で失敗しました"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr "内部エラー: 候補の種類 %d は範囲内にありません"
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " マニュアルページ "
 
@@ -708,38 +708,38 @@ msgstr "FILENAME"
 msgid "update just the entry for this filename"
 msgstr "このファイル名の要素だけを更新"
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "%s を削除できません"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "%s に書き込めません"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "%s から読み込めません"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "%s 配下のマニュアルページを処理しています...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "古い cat ディレクトリ %s を削除しています...\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr ""
 "警告: %s に MANDB_MAP の指定はありません。あなたの manpath を使用します"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
@@ -747,25 +747,25 @@ msgstr[0] ""
 "%d 個のマニュアルページ子ディレクトリに新しいマニュアルページが含まれていまし"
 "た。\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
 msgstr[0] "%d 個のマニュアルページが追加されました。\n"
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
 msgstr[0] "roff のない cat ファイルが %d 個追加されました。\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
 msgstr[0] "%d 個の古いデータベース要素が除去されました。\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr "データベースは作成されませんでした。"
index 88dae24..31441f6 100644 (file)
@@ -6,9 +6,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: man-db 2.7.5\n"
+"Project-Id-Version: man-db 2.7.6\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,16 +18,21 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr ""
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr ""
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr ""
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -127,94 +132,99 @@ msgstr ""
 msgid "use this user configuration file"
 msgstr ""
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr ""
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr ""
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr ""
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
 "Updating cat files for section %s of man hierarchy %s\n"
 msgstr ""
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr ""
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr ""
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr ""
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr ""
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr ""
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr ""
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr ""
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr ""
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr ""
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr ""
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr ""
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr ""
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr ""
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr ""
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr ""
@@ -264,7 +274,7 @@ msgid_plural "warning: whatis for %s exceeds %d bytes, truncating."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -522,94 +532,84 @@ msgstr ""
 msgid "ignoring unknown preprocessor `%c'"
 msgstr ""
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr ""
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr ""
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr ""
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr ""
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr ""
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr ""
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, c-format
 msgid "can't create temporary directory"
 msgstr ""
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr ""
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, c-format
 msgid "can't restore previous working directory"
 msgstr ""
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr ""
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr ""
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
 "cannot write to %s in catman mode"
 msgstr ""
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr ""
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr ""
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr ""
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr ""
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr ""
 
@@ -692,65 +692,65 @@ msgstr ""
 msgid "update just the entry for this filename"
 msgstr ""
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr ""
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr ""
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr ""
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr ""
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr ""
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr ""
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr ""
index 946b96e..9d1d067 100644 (file)
--- a/po/nl.po
+++ b/po/nl.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db-2.5.7-pre1\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2009-11-16 08:36+0100\n"
 "Last-Translator: Erwin Poeze <erwin.poeze@gmail.com>\n"
 "Language-Team: Dutch <vertaling@vrijschrift.org>\n"
@@ -19,16 +19,21 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: KBabel 1.11.4\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "kan de effectieve UID niet instellen"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "de SETUID-gebruiker '%s' bestaat niet"
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "kan eigenaar van %s niet wijzigen"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -128,22 +133,22 @@ msgstr "BESTAND"
 msgid "use this user configuration file"
 msgstr "te gebruiken configuratiebestand"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "'man' is mislukt met afsluitwaarde %d"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "kan database %s niet lezen"
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "NULL-inhoud voor sleutel %s"
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -152,74 +157,79 @@ msgstr ""
 "\n"
 "Bijwerken van cat-bestanden voor sectie %s van man-hiërachie %s\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "kan in %s niet schrijven"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "kan %s niet bijwerken"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "waarschuwing: botsende subsecties in %s/man%s/%s.%s*"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "kan index-cache %s niet bijwerken"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr ""
 "waarschuwing: %s: onjuiste symbolische koppeling of onjuist roff-'.so'-"
 "verzoek"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "waarschuwing: %s: leeg bestand wordt genegeerd"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "waarschuwing: %s: ontleden van %s(%s) voor 'whatis' is mislukt"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "kan map %s niet doorzoeken"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "waarschuwing: kan cat-map %s niet aanmaken"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "kan de toegangsrechten van %s niet wijzigen"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "kan niet naar map %s gaan"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "kan index-cache %s niet aanmaken"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "Bijwerken van index-cache voor pad '%s/%s'.  Even geduld..."
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "voltooid.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "Verwijderen van oude databaseitems uit %s...\n"
@@ -269,7 +279,7 @@ msgid_plural "warning: whatis for %s exceeds %d bytes, truncating."
 msgstr[0] "waarschuwing: de 'whatis' voor %s is meer dan %d bytes -- afgekapt"
 msgstr[1] "waarschuwing: de 'whatis' voor %s is meer dan %d bytes -- afgekapt"
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -533,68 +543,58 @@ msgstr "Zie '%s' voor hulp als man-pagina's niet beschikbaar zijn.\n"
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "onbekende preprocessor '%c' wordt genegeerd"
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "kan eigenaar van %s niet wijzigen"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "kan de toegangsrechten van %s niet wijzigen"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "kan %s niet hernoemen naar %s"
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "kan tijdsstempels van %s niet zetten"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "kan %s niet verwijderen"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr "kan geen tijdelijk cat-bestand aanmaken voor %s"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, c-format
 msgid "can't create temporary directory"
 msgstr "kan geen tijdelijk map aanmaken"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr "kan tijdelijk bestand %s niet openen"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "kan geen tijdelijk map aanmaken"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "kan map %s niet verwijderen"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 "--Man-- volgende: %s [ Enter=zien | Ctrl-D=overslaan | Ctrl-C=afsluiten ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "kan niet naar map %s gaan"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -603,27 +603,27 @@ msgstr ""
 "\n"
 "kan niet naar %s schrijven in 'catman'-modus"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "Kan %s niet omzetten naar een cat-naam"
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: vertrouwen op 'whatis'-referenties wordt ontraden\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "'mandb' is mislukt met afsluitwaarde %d"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr "**interne fout**: kandidaattype %d valt buiten bereik"
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Handleidingspagina "
 
@@ -706,38 +706,38 @@ msgstr "BESTAND"
 msgid "update just the entry for this filename"
 msgstr "alleen het item voor dit bestand bijwerken"
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "kan %s niet verwijderen"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "kan niet naar %s schrijven"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "kan niet uit %s lezen"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Verwerken van pagina's onder %s...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, fuzzy, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "Zoeken naar losse cat-bestanden onder %s...\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr ""
 "waarschuwing: geen 'MANDB_MAP'-opdrachten in %s; uw man-pad wordt gebruikt"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, fuzzy, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
@@ -748,28 +748,28 @@ msgstr[1] ""
 "%d man-mappen bevatten nieuwere pagina's,\n"
 "%d man-pagina's werden toegevoegd.\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, fuzzy, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
 msgstr[0] " Handleidingspagina "
 msgstr[1] " Handleidingspagina "
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, fuzzy, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
 msgstr[0] "%d losse cat-bestanden werden toegevoegd.\n"
 msgstr[1] "%d losse cat-bestanden werden toegevoegd.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, fuzzy, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
 msgstr[0] "%d verouderde databaseitems werden verwijderd.\n"
 msgstr[1] "%d verouderde databaseitems werden verwijderd.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr "Geen databases aangemaakt."
index 3b39553..960fb55 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.6.1-pre1\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2013-02-03 20:23+0100\n"
 "Last-Translator: Robert Luberda <robert@debian.org>\n"
 "Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
@@ -19,16 +19,21 @@ msgstr ""
 "|| n%100>=20) ? 1 : 2);\n"
 "X-Generator: Lokalize 1.4\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "nie można ustawić efektywnego identyfikatora użytkownika"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "użytkownik \"%s\" nie istnieje"
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "nie można zmienić właściciela %s"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -132,22 +137,22 @@ msgstr "PLIK"
 msgid "use this user configuration file"
 msgstr "używa tego pliku konfiguracyjnego użytkownika"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "polecenie man zakończyło się błędem %d"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "nie można odczytać bazy danych %s"
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "Pusta (NULL) zawartość klucza %s"
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -156,73 +161,78 @@ msgstr ""
 "\n"
 "Aktualizowanie preformatowanych stron w sekcji %s hierarchii stron %s\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "nie można zapisać w %s"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "nie można zaktualizować %s"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "ostrzeżenie: %s/man%s/%s.%s*: konkurujące rozszerzenia"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "nie można zaktualizować bufora indeksu %s"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr ""
 "ostrzeżenie: %s złe dowiązanie symboliczne lub błędne żądanie \".so\" ROFF"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "ostrzeżenie: %s: ignorowanie pustego pliku"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "ostrzeżenie: %s: przetwarzanie whatis %s(%s) się nie powiodło"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "nie można przeszukać katalogu %s"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "ostrzeżenie: błąd tworzenia katalogu preformatowanych stron %s"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "nie można zmienić praw dostępu %s"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "nie można przejść do katalogu %s"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "nie można utworzyć bufora indeksu %s"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "Aktualizowanie bufora indeksu dla ścieżki \"%s/%s\". Proszę czekać..."
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "zakończono.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "Usuwanie starych wpisów w bazie danych %s...\n"
@@ -275,7 +285,7 @@ msgstr[1] ""
 msgstr[2] ""
 "ostrzeżenie: whatis dla argumentu %s przekracza %d bajtów, obcinanie."
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -543,69 +553,59 @@ msgstr ""
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "ignorowanie nieznanego preprocesora \"%c\""
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "nie można zmienić właściciela %s"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "nie można zmienić praw dostępu %s"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "nie można zmienić nazwy %s na %s"
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "nie można ustawić czasów na %s"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "nie można usunąć %s"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr "nie można utworzyć tymczasowego pliku cat dla %s"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, c-format
 msgid "can't create temporary directory"
 msgstr "nie można utworzyć katalogu tymczasowego"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr "nie można otworzyć pliku tymczasowego %s"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "nie można utworzyć katalogu tymczasowego"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "nie można usunąć katalogu %s"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 "--Man-- następna: %s [ przeglądaj (return) | pomiń (Ctrl-D) | zakończ (Ctrl-"
 "C) ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "nie można zmienić katalogu na %s"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -614,28 +614,28 @@ msgstr ""
 "\n"
 "nie można zapisać do %s w trybie catman"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "Nie można skonwertować %s do nazwy preformatowanej strony podręcznika"
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: poleganie na odnośnikach whatis jest niezalecane\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "polecenie mandb zakończyło się błędem %d"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr ""
 "błąd wewnętrzny: typ kandydata %d poza zakresem dopuszczalnych wartości"
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Strona podręcznika ekranowego "
 
@@ -718,37 +718,37 @@ msgstr "NAZWA_PLIKU"
 msgid "update just the entry for this filename"
 msgstr "aktualizuje wpis dotyczący tej nazwy pliku"
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "nie można usunąć %s"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "nie można pisać do %s"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "nie można czytać z %s"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Przetwarzanie stron podręcznika w %s...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "Usuwanie przestarzałego katalogu stron preformatowanych %s...\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr "ostrzeżenie: w %s brak dyrektyw MANDB_MAP, używanie ścieżki manpath"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
@@ -756,7 +756,7 @@ msgstr[0] "%d podkatalog man zawierał nowsze strony podręcznika.\n"
 msgstr[1] "%d podkatalogi man zawierały nowsze strony podręcznika.\n"
 msgstr[2] "%d podkatalogów man zawierało nowsze strony podręcznika.\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
@@ -764,7 +764,7 @@ msgstr[0] "Dodano %d stronę podręcznika.\n"
 msgstr[1] "Dodano %d strony podręcznika.\n"
 msgstr[2] "Dodano %d stron podręcznika.\n"
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
@@ -772,7 +772,7 @@ msgstr[0] "Dodano %d zabłąkaną preformatowaną stronę podręcznika.\n"
 msgstr[1] "Dodano %d zabłąkane preformatowane strony podręcznika.\n"
 msgstr[2] "Dodano %d zabłąkanych preformatowanych stron podręcznika.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
@@ -780,7 +780,7 @@ msgstr[0] "Usunięto %d stary wpis z bazy danych.\n"
 msgstr[1] "Usunięto %d stare wpisy z bazy danych.\n"
 msgstr[2] "Usunięto %d starych wpisów z bazy danych.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr "Nie utworzono żadnej bazy danych."
index 541ade1..56b3bea 100644 (file)
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.4.1\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2003-02-22 18:45-0300\n"
 "Last-Translator: Alexandre Folle de Menezes <afmenez@terra.com.br>\n"
 "Language-Team: Brazilian Portuguese <ldp-br@bazar.conectiva.com.br>\n"
@@ -15,16 +15,21 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-1\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "impossível setar o uid efetivo"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "o usuário man setuid \"%s\" não existe"
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "impossível fazer chown em %s"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -125,22 +130,22 @@ msgstr ""
 msgid "use this user configuration file"
 msgstr "impossível abrir o arquivo de configuração do manpath %s"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "o comando man falhou com estado de saída %d"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "impossível ler o banco de dados %s"
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "Conteúdo NULL para chave: %s"
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -149,72 +154,77 @@ msgstr ""
 "\n"
 "Atualizando arquivos cat para seção %s da hierarquia man %s\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "impossível escrever dentro de %s"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "incapaz de atualizar %s"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "aviso: %s/man%s/%s.%s*: extensões conflitantes"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "impossível atualizar cache de índice %s"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr "aviso: %s: link simbólico ruim ou requisição `.so' ROFF"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "aviso: %s: ignorando arquivo vazio"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "aviso: %s: exame whatis para %s(%s) falhou"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "impossível buscar no diretório %s"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "aviso: impossível criar o catdir %s"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "impossível fazer chmod em %s"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "impossível mudar para o diretório %s"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "impossível criar cache de índice %s"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "Atualizando o cache de índice para o caminho `%s/%s'. Aguarde..."
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "feito.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "Descartando entradas antigas do banco de dados em %s...\n"
@@ -264,7 +274,7 @@ msgid_plural "warning: whatis for %s exceeds %d bytes, truncating."
 msgstr[0] "aviso: whatis para %s excede %d bytes, truncando."
 msgstr[1] "aviso: whatis para %s excede %d bytes, truncando."
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -527,67 +537,57 @@ msgstr ""
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "igorando preprocessador desconhecido '%c'"
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "impossível fazer chown em %s"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "impossível fazer chmod em %s"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "impossível renomear %s para %s"
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "impossível setar os horários de %s"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "impossível remover %s"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, fuzzy, c-format
 msgid "can't create temporary cat for %s"
 msgstr "impossível criar um nome de arquivo temporário"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, fuzzy, c-format
 msgid "can't create temporary directory"
 msgstr "impossível criar um nome de arquivo temporário"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, fuzzy, c-format
 msgid "can't open temporary file %s"
 msgstr "impossível abrir o arquivo de configuração do manpath %s"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "impossível criar um nome de arquivo temporário"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "impossível remover o diretório %s"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "impossível chdir para %s"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -596,27 +596,27 @@ msgstr ""
 "\n"
 "impossível escrever em %s no modo catman"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "Impossível converter %s para um nome 'cat'"
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: uso de whatis refs está obsoleto\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, fuzzy, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "o comando man falhou com estado de saída %d"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr ""
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Pagina de manual "
 
@@ -699,37 +699,37 @@ msgstr ""
 msgid "update just the entry for this filename"
 msgstr ""
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "impossível remover %s"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, fuzzy, c-format
 msgid "can't write to %s"
 msgstr "impossível escrever dentro de %s"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, fuzzy, c-format
 msgid "can't read from %s"
 msgstr "impossível criar %s"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Processando as páginas de manual sob %s...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, fuzzy, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "Verificando por vira-latas sob %s...\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr "aviso: nenhuma diretiva MANDB_MAP em %s, usando o seu manpath"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, fuzzy, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
@@ -740,28 +740,28 @@ msgstr[1] ""
 "%d subdiretorios man continham páginas de manual novas.\n"
 "%d páginas de manual foram adicionadas.\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, fuzzy, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
 msgstr[0] " Pagina de manual "
 msgstr[1] " Pagina de manual "
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, fuzzy, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
 msgstr[0] "%d vira-latas foram adicionados.\n"
 msgstr[1] "%d vira-latas foram adicionados.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, fuzzy, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
 msgstr[0] "%d entradas antigas no banco de dados foram descartadas.\n"
 msgstr[1] "%d entradas antigas no banco de dados foram descartadas.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr ""
index e957a07..fa307f3 100644 (file)
--- a/po/ro.po
+++ b/po/ro.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.4.2-pre1\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2003-10-27 08:40+0200\n"
 "Last-Translator: Eugen Hoanca <eugenh@urban-grafx.ro>\n"
 "Language-Team: Romanian <translation-team-ro@lists.sourceforge.net>\n"
@@ -16,16 +16,21 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-2\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "nu se poate seta uid efectiv"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "utilizatorul man setuidat \"%s\" nu existã"
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "nu se poate face chown pe %s"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -126,22 +131,22 @@ msgstr ""
 msgid "use this user configuration file"
 msgstr "nu se poate deschide fiºierul de configurare al cãii de man %s"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "comanda man a eºuat cu stare de ieºire %d"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "nu se poate citi baza de date %s."
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "conþinut NULL pentru cheia: %s"
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -150,72 +155,77 @@ msgstr ""
 "\n"
 "Se înnoiesc(update) fiºierele cat pentru secþiunea %s a ierarhiei man %s\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "nu se poate scrie în %s"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "nu se poate înnoi(update) %s"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "avertisment: %s/man%s/%s.%s*: extensii concurente"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "nu se poate înnoi(update) index cache %s"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr "avertisment: %s: symlink eronat sau cerere ROFF `.so'"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "avertisment: %s: se ignorã fiºierul vid."
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "avertisment: %s: analiza(parse) whatis pentru %s(%s) eºuatã"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "nu se poate cãuta directorul %s"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "avertisment: nu se poate crea catdir %s"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "nu se poate face chmod pe %s"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "nu se poate schimba în directorul %s"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "nu se poate crea index cache-ului %s"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "Se înnoieºte(update) index cache-ul pentru calea `%s%s'. Aºteptaþi..."
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "efectuat.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "Se curãþã(purge) intrãrile vechi ale bazei de date în %s...\n"
@@ -265,7 +275,7 @@ msgid_plural "warning: whatis for %s exceeds %d bytes, truncating."
 msgstr[0] "avertisment: whatis pentru %s depãºeºte %d octeþi, se trunchiazã."
 msgstr[1] "avertisment: whatis pentru %s depãºeºte %d octeþi, se trunchiazã."
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -525,69 +535,59 @@ msgstr ""
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "se ignorã preprocesorul necunoscut `%c'"
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "nu se poate face chown pe %s"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "nu se poate face chmod pe %s"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "nu se poate redenumi %s în %s"
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "nu se poate seta timpul pe %s"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "nu se poate scoate linkul(unlink) la %s"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, fuzzy, c-format
 msgid "can't create temporary cat for %s"
 msgstr "nu se poate crea un nume de fiºier temporar"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, fuzzy, c-format
 msgid "can't create temporary directory"
 msgstr "nu se poate crea un nume de fiºier temporar"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, fuzzy, c-format
 msgid "can't open temporary file %s"
 msgstr "nu se poate deschide fiºierul de configurare al cãii de man %s"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "nu se poate crea un nume de fiºier temporar"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "nu se poate ºterge directorul %s"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 "--Man-- urmãtor: %s [ vizualizare (return) | omitere (Ctrl-D) | ieºire (Ctrl-"
 "C) ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "nu se poate schimba directorul(chdir) în %s"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -596,27 +596,27 @@ msgstr ""
 "\n"
 "nu se poate scrie în %s în modul catman"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "Nu pot converti %s în nume cat"
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: încrederea în referinþele whatis este învechitã\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "comanda mandb a eºuat cu stare de ieºire %d"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr "eroare internã: candidatul tip %d depãºeºte domeniul"
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Paginã de manual "
 
@@ -699,39 +699,39 @@ msgstr ""
 msgid "update just the entry for this filename"
 msgstr ""
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "nu se poate ºterge %s"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "nu se poate scrie în %s"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "nu se poate citi din %s"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Se proceseazã paginile de manual sub %s...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, fuzzy, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "Se verificã cat-urile rãtãcite sub %s...\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr ""
 "avertisment: nu existã directive MANDB_MAP în %s, se foloseºte calea voastrã "
 "de man"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, fuzzy, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
@@ -742,28 +742,28 @@ msgstr[1] ""
 "%d subdirectoare man conþin pagini de manual noi.\n"
 "%d pagini de manual au fost adãugate.\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, fuzzy, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
 msgstr[0] " Paginã de manual "
 msgstr[1] " Paginã de manual "
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, fuzzy, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
 msgstr[0] "%d cat-uri rãtãcite au fost adãugate.\n"
 msgstr[1] "%d cat-uri rãtãcite au fost adãugate.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, fuzzy, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
 msgstr[0] "%d intrãri vechi în baza de date au fost eliminate.\n"
 msgstr[1] "%d intrãri vechi în baza de date au fost eliminate.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, fuzzy, c-format
 msgid "No databases created."
 msgstr "Nici o bazã de date înnoitã (updated)."
index 97bfb98..23ca1d7 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.6.1-pre1\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2012-02-06 20:46+0400\n"
 "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
 "Language-Team: Russian <gnu@mx.ru>\n"
@@ -19,16 +19,21 @@ msgstr ""
 "Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "не удалось установить эффективный uid"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "setuid man пользователь \"%s\" не существует"
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "не удалось выполнить функцию chown %s"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -129,22 +134,22 @@ msgstr "ФАЙЛ"
 msgid "use this user configuration file"
 msgstr "использовать указанный пользовательских файл настроек"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "команда man завершилась неудачно (код выхода %d)"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "не удалось прочитать базу данных %s"
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "содержимое ключа равно NULL: %s"
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -153,73 +158,78 @@ msgstr ""
 "\n"
 "Обновление cat файлов в разделе %s man иерархии %s\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "не удалось записать в %s"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "не удалось обновить %s"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "предупреждение: %s/man%s/%s.%s*: конкурирующие расширения"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "не удалось обновить индексный кэш %s"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr ""
 "предупреждение: %s: неверная символическая ссылка или запрос ROFF `.so'"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "предупреждение: %s: игнорируется пустой файл"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "предупреждение: %s: whatis анализ %s(%s) не удался"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "не удалось найти каталог %s"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "предупреждение: не удалось создать cat каталог %s"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "не удалось выполнить функцию chmod %s"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "не удалось сменить каталог на %s"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "не удалось создать индексный кэш %s"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "Обновление индексного кэша для пути `%s/%s'. Ждите..."
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "завершено.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "Удаление старых записей базы данных в %s...\n"
@@ -273,7 +283,7 @@ msgstr[1] ""
 msgstr[2] ""
 "предупреждение: результат whatis для %s превысил %d байт, обрезается."
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -537,68 +547,58 @@ msgstr "Смотрите '%s' в справке, если недоступны 
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "игнорирование неизвестного препроцессора `%c'"
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "не удалось выполнить функцию chown %s"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "не удалось выполнить функцию chmod %s"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "не удалось переименовать %s в %s"
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "не удалось установить время доступа для %s"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "не удалось выполнить функцию unlink %s"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr "не удалось создать временный cat файл %s"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, c-format
 msgid "can't create temporary directory"
 msgstr "не удалось создать временный каталог"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr "не удалось открыть временный файл %s"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "не удалось создать временный каталог"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "не удалось удалить каталог %s"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 "--Man-- след: %s [ просм (ввод) | пропуск (Ctrl-D) | выход (Ctrl-C) ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "не удалось выполнить функцию chdir в %s"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -607,27 +607,27 @@ msgstr ""
 "\n"
 "не удалось записать в %s в режиме catman"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "Не удалось преобразовать %s в cat имя"
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: полагаться на ссылки whatis настоятельно не рекомендуется\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "команда mandb завершилась неудачно (код выхода %d)"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr "внутренняя ошибка: тип кандидата %d вне диапазона"
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Справочная страница "
 
@@ -710,37 +710,37 @@ msgstr "ИМЯ-ФАЙЛА"
 msgid "update just the entry for this filename"
 msgstr "обновить запись только для этого файла"
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "не удалось удалить %s"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "не удалось записать в %s"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "не удалось прочитать из %s"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Обработка справочных страниц в %s...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "Удаляется устаревший каталог cat %s...\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr "предупреждение: нет директивы MANDB_MAP в %s, используется ваш manpath"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
@@ -748,7 +748,7 @@ msgstr[0] "В %d man-подкаталоге содержатся более но
 msgstr[1] "В %d man-подкаталогах содержатся более новые справочные страницы.\n"
 msgstr[2] "В %d man-подкаталогах содержатся более новые справочные страницы.\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
@@ -756,7 +756,7 @@ msgstr[0] "Добавлена %d справочная страница.\n"
 msgstr[1] "Добавлено %d справочные страницы.\n"
 msgstr[2] "Добавлено %d справочных страниц.\n"
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
@@ -764,7 +764,7 @@ msgstr[0] "Добавлена %d побочная cat-страница.\n"
 msgstr[1] "Добавлено %d побочные cat-страницы.\n"
 msgstr[2] "Добавлено %d побочных cat-страниц.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
@@ -772,7 +772,7 @@ msgstr[0] "Вычищена %d старая запись базы данных.\
 msgstr[1] "Вычищено %d старые записи базы данных.\n"
 msgstr[2] "Вычищено %d старых записей базы данных.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr "Базы данных не созданы."
index a5fc0aa..0ce5988 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.6.6-pre1\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2014-01-16 09:51+0200\n"
 "Last-Translator: Мирослав Николић <miroslavnikolic@rocketmail.com>\n"
 "Language-Team: Serbian <(nothing)>\n"
@@ -17,16 +17,21 @@ msgstr ""
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "не могу да подесим стварни јиб"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "подесииб ман корисник „%s“ не постоји"
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "не могу да променим власника „%s“"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -127,22 +132,22 @@ msgstr "ДАТОТЕКА"
 msgid "use this user configuration file"
 msgstr "користи ову корисничку датотеку подешавања"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "наредба мана није успела са излазним стањем „%d“"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "не могу да прочитам базу података „%s“"
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "НИШТАВАН садржај за кључ: %s"
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -151,72 +156,77 @@ msgstr ""
 "\n"
 "Ажурирам кат датотеке за одељак %s манове хијерархије %s\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "не могу да пишем у „%s“"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "не могу да ажурирам „%s“"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "упозорење: %s/man%s/%s.%s*: конкурентна проширења"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "не могу да ажурирам оставу индекса „%s“"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr "упозорење: %s: лоша симболичка веза или РОФФ „.so“ захтев"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "упозорење: %s: занемарујем празну датотеку"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "упозорење: %s: није успела обрада шта-је за %s(%s)"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "не могу да претражим директоријум „%s“"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "упозорење: не могу да направим катдир „%s“"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "не могу да променим режим „%s“"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "не могу да пређем у директоријум „%s“"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "не могу да направим оставу индекса „%s“"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "Ажурирам оставу индекса за путању „%s/%s“. Сачекајте..."
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "готово.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "Избацујем старе уносе базе података у „%s“...\n"
@@ -267,7 +277,7 @@ msgstr[0] "упозорење: шта-је за „%s“ премашује %d 
 msgstr[1] "упозорење: шта-је за „%s“ премашује %d бајта, скраћујем."
 msgstr[2] "упозорење: шта-је за „%s“ премашује %d бајтова, скраћујем."
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -531,69 +541,59 @@ msgstr "Погледајте „%s“ за помоћ када странице
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "занемарујем неознати препроцесор „%c“"
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "не могу да променим власника „%s“"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "не могу да променим режим „%s“"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "не могу да преименујем „%s“ у „%s“"
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "не могу да подесим времена на „%s“"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "не могу да развежем „%s“"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr "не могу да направим привремени кат за „%s“"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, c-format
 msgid "can't create temporary directory"
 msgstr "не могу да направим привремени директоријум"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr "не могу да отворим привремену датотеку „%s“"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "не могу да направим привремени директоријум"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "не могу да уклоним директоријум „%s“"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 "--Ман-- следеће: %s [ преглед (повратница) | прескочи (Ктрл-Д) | изађи (Ктрл-"
 "Ц) ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "не могу да се пребацим у „%s“"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -602,27 +602,27 @@ msgstr ""
 "\n"
 "не могу да пишем у „%s“ у катман режиму"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "Не могу да претворим „%s“ у кат назив"
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: ослањање на упуте шта-је је застарело\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "наредба мандб није успела са излазним стањем „%d“"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr "унутрашња грешка: врста кандидата „%d“ је ван опсега"
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Страница упутства "
 
@@ -705,37 +705,37 @@ msgstr "ДАТОТЕКА"
 msgid "update just the entry for this filename"
 msgstr "ажурира само унос за ову датотеку"
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "не могу да уклоним „%s“"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "не могу да пишем у „%s“"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "не могу да читам из „%s“"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Обрађујем странице упутства под „%s“...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "Уклањам застареле кат директоријуме „%s“...\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr "упозорење: нема МАНБП_МАП смерница у „%s“, користим вашу ман-путању"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
@@ -743,7 +743,7 @@ msgstr[0] "%d ман подиректоријум је садржао новиј
 msgstr[1] "%d ман подиректоријума су садржала новије странице упутства.\n"
 msgstr[2] "%d ман подиректоријума је садржало новије странице упутства.\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
@@ -751,7 +751,7 @@ msgstr[0] "%d страница упутства је додата.\n"
 msgstr[1] "%d странице упутства су додате.\n"
 msgstr[2] "%d страница упутства је додато.\n"
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
@@ -759,7 +759,7 @@ msgstr[0] "%d залутали кат је додат.\n"
 msgstr[1] "%d залутала ката су додата.\n"
 msgstr[2] "%d залуталих катова је додато.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
@@ -767,7 +767,7 @@ msgstr[0] "%d стари унос базе података је избачен.
 msgstr[1] "%d стара уноса базе података су избачена.\n"
 msgstr[2] "%d старих уноса базе података је избачено.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr "Нису направљене базе података."
index 8853fed..95018a1 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,31 +1,40 @@
 # Swedish messages for man-db.
-# Copyright (C) 2006, 2007 Colin Watson
+# Copyright (C) 2006, 2007, 2015 Colin Watson (msgids)
+# This file is distributed under the same license as the man-db package.
 # Christian Rose <menthos@menthos.com>, 2002, 2003.
 # Daniel Nylander <po@danielnylander.se>, 2006, 2007.
+# Sebastian Rasmussen <sebras@gmail.com>, 2015.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: man-db 2.5.0-pre2\n"
+"Project-Id-Version: man-db 2.7.0-pre1\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
-"PO-Revision-Date: 2007-09-17 16:57+0100\n"
-"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
+"PO-Revision-Date: 2015-12-26 15:39+0100\n"
+"Last-Translator: Sebastian Rasmussen <sebras@gmail.com>\n"
 "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
 "Language: sv\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Poedit 1.8.6\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "kan inte ställa in effektivt uid"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "en manualanvändare \"%s\" som är setuid finns inte"
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "kan inte byta ägare på %s"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -52,7 +61,7 @@ msgid "cannot replace key %s"
 msgstr "kan inte ersätta nyckeln %s"
 
 #: libdb/db_lookup.c:182 libdb/db_lookup.c:193
-#, fuzzy, c-format
+#, c-format
 msgid "only %d field in content"
 msgid_plural "only %d fields in content"
 msgstr[0] "endast %d fält i innehåll"
@@ -85,18 +94,19 @@ msgstr "ödesdiger: kan inte infoga versionsidentifierare i %s"
 
 #: src/accessdb.c:59
 msgid "[MAN DATABASE]"
-msgstr ""
+msgstr "[MANUALDATABAS"
 
+# %s%s är en sökväg.
 #: src/accessdb.c:60
 #, c-format
 msgid "The man database defaults to %s%s."
-msgstr ""
+msgstr "Manualdatabasen är som standard %s%s."
 
 #: src/accessdb.c:63 src/catman.c:98 src/globbing_test.c:58
 #: src/lexgrog_test.c:68 src/man.c:280 src/manconv_main.c:94 src/mandb.c:108
 #: src/manpath.c:65 src/whatis.c:122 src/zsoelim_main.c:66
 msgid "emit debugging messages"
-msgstr ""
+msgstr "avge felsökningsmeddelanden"
 
 #: src/accessdb.c:130
 #, c-format
@@ -105,43 +115,42 @@ msgstr "kan inte öppna %s för läsning"
 
 #: src/catman.c:95
 msgid "[SECTION...]"
-msgstr ""
+msgstr "[AVSNITT…]"
 
 #: src/catman.c:99 src/man.c:301 src/whatis.c:132
 msgid "PATH"
-msgstr ""
+msgstr "SÖKVÄG"
 
 #: src/catman.c:99 src/man.c:301 src/whatis.c:132
 msgid "set search path for manual pages to PATH"
-msgstr ""
+msgstr "ställ in sökväg för manualsidor till SÖKVÄG"
 
 #: src/catman.c:100 src/man.c:279 src/mandb.c:116 src/manpath.c:67
 #: src/whatis.c:134
 msgid "FILE"
-msgstr ""
+msgstr "FIL"
 
 #: src/catman.c:100 src/man.c:279 src/mandb.c:116 src/manpath.c:67
 #: src/whatis.c:134
-#, fuzzy
 msgid "use this user configuration file"
-msgstr "kan inte öppna konfigurationsfilen för manualsökväg %s"
+msgstr "använd denna användarkonfigurationsfil"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "manualkommandot misslyckades med slutstatus %d"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "kan inte läsa databasen %s"
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "NULL-innehåll för nyckel: %s"
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -150,72 +159,77 @@ msgstr ""
 "\n"
 "Uppdaterar cat-filer för avsnitt %s i man-hierarkin %s\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "kan inte skriva inom %s"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "kan inte uppdatera %s"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "varning: %s/man%s/%s.%s*: filändelser i konflikt"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "kan inte uppdatera indexcachen %s"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr "varning: %s: felaktig symbolisk länk eller ROFF \".so\"-begäran"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "varning: %s: ignorerar tom fil"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "varning: %s: whatis-tolkning för %s(%s) misslyckades"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "kan inte söka i katalogen %s"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "varning: kan inte skapa cat-katalog %s"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "kan inte ändra rättigheter på %s"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "kan inte byta till katalogen %s"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "kan inte skapa indexcachen %s"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "Uppdaterar indexcache för sökvägen \"%s/%s\". Vänta..."
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "klar.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "Tömmer gamla databasposter i %s...\n"
@@ -232,40 +246,40 @@ msgstr "varning: %s: ignorerar felaktigt filnamn"
 
 #: src/globbing_test.c:55
 msgid "PATH SECTION NAME"
-msgstr ""
+msgstr "SÖKVÄG AVSNITT NAMN"
 
 #: src/globbing_test.c:59 src/man.c:304
 msgid "EXTENSION"
-msgstr ""
+msgstr "ÄNDELSE"
 
 #: src/globbing_test.c:59 src/man.c:305
 msgid "limit search to extension type EXTENSION"
-msgstr ""
+msgstr "begränsa sökning till ändelsetyp ÄNDELSE"
 
 #: src/globbing_test.c:60 src/man.c:306
 msgid "look for pages case-insensitively (default)"
-msgstr ""
+msgstr "leta efter sidor skiftlägesoberoende (standard)"
 
 #: src/globbing_test.c:61 src/man.c:307
 msgid "look for pages case-sensitively"
-msgstr ""
+msgstr "leta efter sidor skiftlägesberoende"
 
 #: src/globbing_test.c:62
 msgid "interpret page name as a regex"
-msgstr ""
+msgstr "tolka sidnamn som ett reguljärt uttryck"
 
 #: src/globbing_test.c:63
 msgid "the page name contains wildcards"
-msgstr ""
+msgstr "sidnamnet innehåller jokertecken"
 
 #: src/lexgrog.l:665
-#, fuzzy, c-format
+#, c-format
 msgid "warning: whatis for %s exceeds %d byte, truncating."
 msgid_plural "warning: whatis for %s exceeds %d bytes, truncating."
 msgstr[0] "varning: whatis för %s överskrider %d byte, förkortar."
 msgstr[1] "varning: whatis för %s överskrider %d byte, förkortar."
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -274,41 +288,40 @@ msgstr "kan inte öppna %s"
 
 #: src/lexgrog_test.c:64 src/zsoelim_main.c:63
 msgid "FILE..."
-msgstr ""
+msgstr "FIL…"
 
 #: src/lexgrog_test.c:65
 msgid "The defaults are --man and --whatis."
-msgstr ""
+msgstr "Standardflaggorns är --man och --whatis."
 
 #: src/lexgrog_test.c:69
 msgid "parse as man page"
-msgstr ""
+msgstr "tolka som manualsida"
 
 #: src/lexgrog_test.c:70
 msgid "parse as cat page"
-msgstr ""
+msgstr "tolka som cat-sida"
 
 #: src/lexgrog_test.c:71
 msgid "show whatis information"
-msgstr ""
+msgstr "visa whatis-information"
 
 #: src/lexgrog_test.c:72
 msgid "show guessed series of preprocessing filters"
-msgstr ""
+msgstr "visa gissade serier av preprocessorfilter"
 
 #: src/lexgrog_test.c:73 src/man.c:296 src/man.c:321
 msgid "ENCODING"
-msgstr ""
+msgstr "KODNING"
 
 #: src/lexgrog_test.c:73 src/man.c:321
-#, fuzzy
 msgid "use selected output encoding"
-msgstr "måste ange en utmatningskodning"
+msgstr "använd vald utmatningskodning"
 
 #: src/lexgrog_test.c:117 src/man.c:548 src/man.c:557
-#, fuzzy, c-format
+#, c-format
 msgid "%s: incompatible options"
-msgstr ": inkompatibla flaggor"
+msgstr "%s: inkompatibla flaggor"
 
 #: src/man.c:165
 #, c-format
@@ -317,140 +330,139 @@ msgstr "kommandot avslutade med status %d: %s"
 
 #: src/man.c:263
 msgid "[SECTION] PAGE..."
-msgstr ""
+msgstr "[AVSNITT] SIDA…"
 
 #: src/man.c:281
 msgid "reset all options to their default values"
-msgstr ""
+msgstr "återställ alla flaggor till deras standardvärden"
 
 #: src/man.c:282
 msgid "WARNINGS"
-msgstr ""
+msgstr "VARNINGAR"
 
 #: src/man.c:283
 msgid "enable warnings from groff"
-msgstr ""
+msgstr "aktivera varningar från groff"
 
 #: src/man.c:285
 msgid "Main modes of operation:"
-msgstr ""
+msgstr "Huvudlägen för drift:"
 
 #: src/man.c:286
 msgid "equivalent to whatis"
-msgstr ""
+msgstr "ekvivalent med whatis"
 
 #: src/man.c:287
 msgid "equivalent to apropos"
-msgstr ""
+msgstr "ekvivalent med apropos"
 
 #: src/man.c:288
 msgid "search for text in all pages"
-msgstr ""
+msgstr "sök efter text i alla sidor"
 
 #: src/man.c:289
 msgid "print physical location of man page(s)"
-msgstr ""
+msgstr "skriv ut manualsidors fysiska platser"
 
 #: src/man.c:292
 msgid "print physical location of cat file(s)"
-msgstr ""
+msgstr "skriv ut fysisk platser för cat-filer"
 
 #: src/man.c:294
 msgid "interpret PAGE argument(s) as local filename(s)"
-msgstr ""
+msgstr "tolka SIDA argument som lokala filnamn"
 
 #: src/man.c:295
 msgid "used by catman to reformat out of date cat pages"
-msgstr ""
+msgstr "används av catman för att omformatera för gamla cat-sidor"
 
 #: src/man.c:296
 msgid "output source page encoded in ENCODING"
-msgstr ""
+msgstr "mata ut källsida kodad i KODNING"
 
 #: src/man.c:298
-#, fuzzy
 msgid "Finding manual pages:"
-msgstr " Manualsida "
+msgstr "Hittar manualsidor:"
 
 #: src/man.c:299 src/whatis.c:133
 msgid "LOCALE"
-msgstr ""
+msgstr "LOKAL"
 
 #: src/man.c:299
 msgid "define the locale for this particular man search"
-msgstr ""
+msgstr "definiera lokalen för denna specifika manualsökning"
 
 #: src/man.c:300 src/manpath.c:68 src/whatis.c:131
 msgid "SYSTEM"
-msgstr ""
+msgstr "SYSTEM"
 
 #: src/man.c:300 src/manpath.c:68 src/whatis.c:131
 msgid "use manual pages from other systems"
-msgstr ""
+msgstr "använd manualsidor från andra system"
 
 #: src/man.c:302 src/whatis.c:129
 msgid "LIST"
-msgstr ""
+msgstr "LISTA"
 
 #: src/man.c:302
 msgid "use colon separated section list"
-msgstr ""
+msgstr "använd kolonseparerad avsnittslista"
 
 #: src/man.c:308
 msgid "show all pages matching regex"
-msgstr ""
+msgstr "visa alla sidor som matchar reguljärt uttryck"
 
 #: src/man.c:309
 msgid "show all pages matching wildcard"
-msgstr ""
+msgstr "visa alla sidor som matchar jokertecken"
 
 #: src/man.c:310
 msgid "make --regex and --wildcard match page names only, not descriptions"
-msgstr ""
+msgstr "få --regex och --wildcard att match endast sidnamn, inte beskrivningar"
 
 #: src/man.c:312
 msgid "find all matching manual pages"
-msgstr ""
+msgstr "hitta alla matchande manualsidor"
 
 #: src/man.c:313
 msgid "force a cache consistency check"
-msgstr ""
+msgstr "tvinga fram en konsistenskontroll av cachen"
 
 #: src/man.c:315
 msgid "don't try subpages, e.g. 'man foo bar' => 'man foo-bar'"
-msgstr ""
+msgstr "prova inte med undersidor, t.ex. “man foo bar“ => “man foo-bar“"
 
 #: src/man.c:317
 msgid "Controlling formatted output:"
-msgstr ""
+msgstr "Kontrollerar formaterad utmatning:"
 
 #: src/man.c:318
 msgid "PAGER"
-msgstr ""
+msgstr "SIDVISARE"
 
 #: src/man.c:318
 msgid "use program PAGER to display output"
-msgstr ""
+msgstr "använd programmet SIDVISARE för att visa utmatning"
 
 #: src/man.c:319 src/man.c:328
 msgid "STRING"
-msgstr ""
+msgstr "STRÄNG"
 
 #: src/man.c:319
 msgid "provide the `less' pager with a prompt"
-msgstr ""
+msgstr "tillhandahåll “less“-sidvisaren med en prompt"
 
 #: src/man.c:320
 msgid "display ASCII translation of certain latin1 chars"
-msgstr ""
+msgstr "visa ASCII-översättningen av vissa latin1-tecken"
 
 #: src/man.c:323
 msgid "turn off hyphenation"
-msgstr ""
+msgstr "stäng av avstavning"
 
 #: src/man.c:326
 msgid "turn off justification"
-msgstr ""
+msgstr "stäng av justering"
 
 #: src/man.c:328
 msgid ""
@@ -458,47 +470,48 @@ msgid ""
 "e - [n]eqn, p - pic, t - tbl,\n"
 "g - grap, r - refer, v - vgrind"
 msgstr ""
+"STRÄNG indikerar vilken preprocessor som ska köras:\n"
+"e - [n]eqn, p - pic, t - tbl,\n"
+"g - grap, r - refer, v - vgrind"
 
 #: src/man.c:332
 #, c-format
 msgid "use %s to format pages"
-msgstr ""
+msgstr "använd %s för att formatera sidor"
 
 #: src/man.c:333
 msgid "DEVICE"
-msgstr ""
+msgstr "ENHET"
 
 #: src/man.c:334
 #, c-format
 msgid "use %s with selected device"
-msgstr ""
+msgstr "använd %s med vald enhet"
 
 #: src/man.c:335
 msgid "BROWSER"
-msgstr ""
+msgstr "WEBBLÄSARE"
 
 #: src/man.c:336
 #, c-format
 msgid "use %s or BROWSER to display HTML output"
-msgstr ""
+msgstr "använd %s eller WEBBLÄSARE för att visa HTML-utmatning"
 
 #: src/man.c:337
 msgid "RESOLUTION"
-msgstr ""
+msgstr "UPPLÖSNING"
 
 #: src/man.c:339
-#, fuzzy
 msgid ""
 "use groff and display through gxditview (X11):\n"
 "-X = -TX75, -X100 = -TX100, -X100-12 = -TX100-12"
 msgstr ""
-"                            -X = -TX75, -X100 = -TX100, -X100-12 = -TX100-12."
+"använd groff och visa via gxditview (X11):\n"
+"-X = -TX75, -X100 = -TX100, -X100-12 = -TX100-12"
 
 #: src/man.c:341
-#, fuzzy
 msgid "use groff and force it to produce ditroff"
-msgstr ""
-"-Z, --ditroff               använd groff och tvinga det att skapa ditroff."
+msgstr "använd groff och tvinga det att skapa ditroff"
 
 #: src/man.c:604 src/man.c:771
 #, c-format
@@ -527,73 +540,63 @@ msgstr "Se \"%s\" för hjälp när manualsidor inte är tillgängliga.\n"
 #: src/man.c:1342
 #, c-format
 msgid "ignoring unknown preprocessor `%c'"
-msgstr "ignorerar okänd förbehandlare \"%c\""
+msgstr "ignorerar okänd preprocessor \"%c\""
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "kan inte byta ägare på %s"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "kan inte ändra rättigheter på %s"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "kan inte byta namn på %s till %s"
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "kan inte ställa in tider på %s"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "kan inte avlänka %s"
 
 # cat är vad? catalogue? kommandot "cat"?
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr "kan inte skapa temporär cat för %s"
 
 # cat är vad? catalogue? kommandot "cat"?
-#: src/man.c:1884
-#, fuzzy, c-format
+#: src/man.c:1885
+#, c-format
 msgid "can't create temporary directory"
-msgstr "kan inte skapa temporär cat för %s"
+msgstr "kan inte skapa temporärkatalog"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr "kan inte öppna temporärfil %s"
 
 # cat är vad? catalogue? kommandot "cat"?
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
-msgstr "kan inte skapa temporär cat för %s"
+msgstr "kan inte skapa temporärkatalog"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "kan inte ta bort katalogen %s"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr ""
 "--Man-- nästa: %s [ visa (retur) | hoppa över (Ctrl-D) | avsluta (Ctrl-C) ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "kan inte byta katalog till %s"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -602,27 +605,27 @@ msgstr ""
 "\n"
 "kan inte skriva till %s i catman-läge"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "Kan inte konvertera %s till cat-namn"
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: förlitande på whatis-referenser är föråldrat\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "mandb-kommandot misslyckades med slutstatus %d"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr "internt fel: kandidattypen %d utanför intervallet"
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Manualsida "
 
@@ -637,27 +640,27 @@ msgstr "iconv: ofullständigt tecken i slutet av buffert"
 
 #: src/manconv_main.c:88
 msgid "-f CODE[:...] -t CODE [FILENAME]"
-msgstr ""
+msgstr "-f KOD[:…] -t KOD [FILNAMN]"
 
 #: src/manconv_main.c:91
 msgid "CODE[:...]"
-msgstr ""
+msgstr "KOD[:…]"
 
 #: src/manconv_main.c:92
 msgid "possible encodings of original text"
-msgstr ""
+msgstr "möjliga kodningar av originaltext"
 
 #: src/manconv_main.c:93
 msgid "CODE"
-msgstr ""
+msgstr "KOD"
 
 #: src/manconv_main.c:93
 msgid "encoding for output"
-msgstr ""
+msgstr "kodning för utmatning"
 
 #: src/manconv_main.c:95 src/manpath.c:66
 msgid "produce fewer warnings"
-msgstr ""
+msgstr "producera färre varningar"
 
 #: src/manconv_main.c:130 src/manconv_main.c:139
 #, c-format
@@ -671,103 +674,99 @@ msgstr "måste ange en utmatningskodning"
 
 #: src/mandb.c:105
 msgid "[MANPATH]"
-msgstr ""
+msgstr "[MANUALSÖKVÄG]"
 
 #: src/mandb.c:109
 msgid "work quietly, except for 'bogus' warning"
-msgstr ""
+msgstr "arbeta tyst, förutom vid felaktiga varning"
 
 #: src/mandb.c:110
 msgid "don't look for or add stray cats to the dbs"
-msgstr ""
+msgstr "leta inte efter eller lägg till lösa cat-sidor i databasen"
 
 #: src/mandb.c:111
 msgid "don't purge obsolete entries from the dbs"
-msgstr ""
+msgstr "rensa inte bort föråldrade poster från databasen"
 
 #: src/mandb.c:112
 msgid "produce user databases only"
-msgstr ""
+msgstr "producera endast användardatabaser"
 
 #: src/mandb.c:113
 msgid "create dbs from scratch, rather than updating"
-msgstr ""
+msgstr "skapa databaser från grunden, istället för att uppdatera dem"
 
 #: src/mandb.c:114
 msgid "check manual pages for correctness"
-msgstr ""
+msgstr "kontrollera att manualsidor är korrekta"
 
 #: src/mandb.c:115
 msgid "FILENAME"
-msgstr ""
+msgstr "FILNAMN"
 
 #: src/mandb.c:115
 msgid "update just the entry for this filename"
-msgstr ""
+msgstr "uppdatera bara posten för detta filnamn"
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "kan inte ta bort %s"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "kan inte skriva till %s"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "kan inte läsa från %s"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Bearbetar manualsidor under %s...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
-#, fuzzy, c-format
+#: src/mandb.c:655 src/mandb.c:681
+#, c-format
 msgid "Removing obsolete cat directory %s...\n"
-msgstr "Undersöker lösa cat-sidor under %s...\n"
+msgstr "Tar bort föråldrad cat-katalog %s…\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr "varning: inga MANDB_MAP-direktiv i %s, använder din manualsökväg"
 
-#: src/mandb.c:918
-#, fuzzy, c-format
+#: src/mandb.c:909
+#, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
-msgstr[0] ""
-"%d manualunderkataloger innehöll nyare manualsidor.\n"
-"%d manualsidor lades till.\n"
-msgstr[1] ""
-"%d manualunderkataloger innehöll nyare manualsidor.\n"
-"%d manualsidor lades till.\n"
+msgstr[0] "%d manualunderkataloger innehöll nyare manualsidor.\n"
+msgstr[1] "%d manualunderkataloger innehöll nyare manualsidor.\n"
 
-#: src/mandb.c:923
-#, fuzzy, c-format
+#: src/mandb.c:914
+#, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
-msgstr[0] " Manualsida "
-msgstr[1] " Manualsida "
+msgstr[0] "%d manualsida lades till.\n"
+msgstr[1] "%d manualsidor lades till.\n"
 
-#: src/mandb.c:927
-#, fuzzy, c-format
+#: src/mandb.c:918
+#, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
-msgstr[0] "%d lösa cat-sidor lades till.\n"
+msgstr[0] "%d lös cat-sida lades till.\n"
 msgstr[1] "%d lösa cat-sidor lades till.\n"
 
-#: src/mandb.c:932
-#, fuzzy, c-format
+#: src/mandb.c:923
+#, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
-msgstr[0] "%d gamla databasposter tömdes.\n"
-msgstr[1] "%d gamla databasposter tömdes.\n"
+msgstr[0] "%d gammal databaspost rensades.\n"
+msgstr[1] "%d gamla databasposter rensades.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr "Inga databaser skapade."
@@ -849,11 +848,11 @@ msgstr "varning: %s börjar inte med %s"
 
 #: src/manpath.c:63
 msgid "show relative catpaths"
-msgstr ""
+msgstr "visa relativa cat-sökvägar"
 
 #: src/manpath.c:64
 msgid "show the entire global manpath"
-msgstr ""
+msgstr "visa hela den globala manualsökvägen"
 
 #: src/manpath.c:126
 #, c-format
@@ -887,43 +886,43 @@ msgstr "%s refererar till sig själv"
 
 #: src/whatis.c:118
 msgid "KEYWORD..."
-msgstr ""
+msgstr "NYCKELORD…"
 
 #: src/whatis.c:119
 msgid "The --regex option is enabled by default."
-msgstr ""
+msgstr "--regex-flaggan är aktiverad som standard."
 
 #: src/whatis.c:123
 msgid "print verbose warning messages"
-msgstr ""
+msgstr "skriv ut utförliga varningsmeddelanden"
 
 #: src/whatis.c:124
 msgid "interpret each keyword as a regex"
-msgstr ""
+msgstr "tolka varje nyckelord som ett reguljärt uttryck"
 
 #: src/whatis.c:125
 msgid "search each keyword for exact match"
-msgstr ""
+msgstr "sök efter exakt matchning för varje nyckelord"
 
 #: src/whatis.c:126
 msgid "the keyword(s) contain wildcards"
-msgstr ""
+msgstr "nyckelord(en) innehåller jokertecken"
 
 #: src/whatis.c:127
 msgid "require all keywords to match"
-msgstr ""
+msgstr "kräv att alla nyckelord matchar"
 
 #: src/whatis.c:128
 msgid "do not trim output to terminal width"
-msgstr ""
+msgstr "justera utmatning till terminalbredd"
 
 #: src/whatis.c:129
 msgid "search only these sections (colon-separated)"
-msgstr ""
+msgstr "sök endast i dessa avsnitt (kolonseparerade)"
 
 #: src/whatis.c:133
 msgid "define the locale for this search"
-msgstr ""
+msgstr "definiera lokalen för denna sökning"
 
 #: src/whatis.c:230
 #, c-format
@@ -947,67 +946,40 @@ msgstr "%s: ingenting lämpligt.\n"
 #: src/zsoelim.l:168
 #, c-format
 msgid "%s:%d: .so requests nested too deeply or are recursive"
-msgstr ""
+msgstr "%s:%d: .so-begäran nästlade för djupt eller är rekursiva"
 
 #: src/zsoelim.l:183
 #, c-format
 msgid "%s:%d: warning: failed .so request"
-msgstr ""
+msgstr "%s:%d: varning: misslyckades med .so-begäran"
 
 #: src/zsoelim.l:205
 #, c-format
 msgid "%s:%d: warning: newline in .so request, ignoring"
-msgstr ""
+msgstr "%s:%d: varning: nyrad i .so-begäran, ignorerar"
 
 #: src/zsoelim.l:265
 #, c-format
 msgid "%s:%d: warning: malformed .lf request, ignoring"
-msgstr ""
+msgstr "%s:%d: varning: felformaterad .lf-begäran, ignorerar"
 
 #: src/zsoelim.l:275
 #, c-format
 msgid "%s:%d: warning: newline in .lf request, ignoring"
-msgstr ""
+msgstr "%s:%d: varning: nyrad i .lf-begäran, ignorerar"
 
 #: src/zsoelim.l:316
 #, c-format
 msgid "%s:%d: unterminated quote in roff request"
-msgstr ""
+msgstr "%s:%d: oavslutat citat i roff-begäran"
 
 #: src/zsoelim_main.c:67
 msgid "compatibility switch (ignored)"
-msgstr ""
-
-#~ msgid "can't fork"
-#~ msgstr "kan inte grena"
-
-#~ msgid "fork failed"
-#~ msgstr "grening misslyckades"
-
-#~ msgid "can't get man command's exit status"
-#~ msgstr "kan inte få tag i manualkommandots slutstatus"
-
-#~ msgid "unable to reset cursor position in %s"
-#~ msgstr "kan inte återställa markörpositionen i %s"
+msgstr "kompatibilitetsflagga (ignorerad)"
 
 #~ msgid "badly formed configuration directive: '%s'"
 #~ msgstr "felaktigt utformat konfigurationsdirektiv: \"%s\""
 
-#~ msgid "can't install SIGCHLD handler"
-#~ msgstr "kan inte installera SIGCHLD-hanterare"
-
-#~ msgid "waitpid failed"
-#~ msgstr "waitpid misslyckades"
-
-#~ msgid "%s: %s (core dumped)"
-#~ msgstr "%s: %s (kärna dumpad)"
-
-#~ msgid "%s: %s"
-#~ msgstr "%s: %s"
-
-#~ msgid "can't execute %s"
-#~ msgstr "kan inte köra %s"
-
 #~ msgid "pipeline input not open"
 #~ msgstr "pipeline-inmatning inte öppen"
 
@@ -1017,12 +989,18 @@ msgstr ""
 #~ msgid "pipe failed"
 #~ msgstr "rör misslyckades"
 
+#~ msgid "fork failed"
+#~ msgstr "grening misslyckades"
+
 #~ msgid "dup2 failed"
 #~ msgstr "dup2 misslyckades"
 
 #~ msgid "close failed"
 #~ msgstr "stängning misslyckades"
 
+#~ msgid "can't execute %s"
+#~ msgstr "kan inte köra %s"
+
 #~ msgid "closing pipeline input stream failed"
 #~ msgstr "stängning av pipeline-inmatningsflöde misslyckades"
 
@@ -1035,23 +1013,20 @@ msgstr ""
 #~ msgid "closing pipeline output failed"
 #~ msgstr "stängning av pipeline-utmatning misslyckades"
 
-#~ msgid "can't get passwd structure for uid 0"
-#~ msgstr "kan inte få tag i passwd-struktur för uid 0"
-
-#~ msgid "cannot insert unused key %s"
-#~ msgstr "kan inte infoga oanvänd nyckel %s"
+#~ msgid "%s: %s (core dumped)"
+#~ msgstr "%s: %s (kärna dumpad)"
 
-#~ msgid "Don't know which program should I run being >%s<\n"
-#~ msgstr "Vet inte vilket program jag ska köra om jag är >%s<\n"
+#~ msgid "%s: %s"
+#~ msgstr "%s: %s"
 
-#~ msgid "%s: Failed su to user %s\n"
-#~ msgstr "%s: Misslyckades med att su:a till användare %s\n"
+#~ msgid "waitpid failed"
+#~ msgstr "waitpid misslyckades"
 
-#~ msgid "can't create index cache directory %s"
-#~ msgstr "kan inte skapa indexcachekatalogen %s"
+#~ msgid "can't install SIGCHLD handler"
+#~ msgstr "kan inte installera SIGCHLD-hanterare"
 
-#~ msgid "-m -c: incompatible options"
-#~ msgstr "-m -c: inkompatibla flaggor"
+#~ msgid "cannot insert unused key %s"
+#~ msgstr "kan inte infoga oanvänd nyckel %s"
 
 #~ msgid "usage: %s [-hV] [man database]\n"
 #~ msgstr "användning: %s [-hV] [manualdatabas]\n"
@@ -1084,6 +1059,18 @@ msgstr ""
 #~ "-V, --version               visa versionsnummer.\n"
 #~ "-h, --help                  visa detta användningsmeddelande.\n"
 
+#~ msgid "can't get man command's exit status"
+#~ msgstr "kan inte få tag i manualkommandots slutstatus"
+
+#~ msgid "unable to reset cursor position in %s"
+#~ msgstr "kan inte återställa markörpositionen i %s"
+
+#~ msgid "can't create index cache directory %s"
+#~ msgstr "kan inte skapa indexcachekatalogen %s"
+
+#~ msgid "can't get passwd structure for uid 0"
+#~ msgstr "kan inte få tag i passwd-struktur för uid 0"
+
 #~ msgid "usage: %s [-deiIhV] path section name\n"
 #~ msgstr "användning: %s [-deiIhV] sökväg avsnitt namn\n"
 
@@ -1129,6 +1116,9 @@ msgstr ""
 #~ "\n"
 #~ "Standardflaggorna är --man och --whatis.\n"
 
+#~ msgid "-m -c: incompatible options"
+#~ msgstr "-m -c: inkompatibla flaggor"
+
 #~ msgid ""
 #~ "usage: %s [-c|-f|-k|-w|-tZT device] [-i|-I] [-adlhu7V] [-Mpath] [-"
 #~ "Ppager]\n"
@@ -1324,6 +1314,9 @@ msgstr ""
 #~ "-V, --version               visa versionsnummer.\n"
 #~ "-h, --help                  visa detta användningsmeddelande.\n"
 
+#~ msgid "can't fork"
+#~ msgstr "kan inte grena"
+
 #~ msgid "%s, version %s, %s\n"
 #~ msgstr "%s version %s, %s\n"
 
@@ -1409,6 +1402,12 @@ msgstr ""
 #~ "-V, --version              visa versionsnummer.\n"
 #~ "-h, --help                 visa detta användningsmeddelande.\n"
 
+#~ msgid "Don't know which program should I run being >%s<\n"
+#~ msgstr "Vet inte vilket program jag ska köra om jag är >%s<\n"
+
+#~ msgid "%s: Failed su to user %s\n"
+#~ msgstr "%s: Misslyckades med att su:a till användare %s\n"
+
 #~ msgid "can't create a temporary filename"
 #~ msgstr "kan inte skapa temporärt filnamn"
 
index 415c902..a5dd369 100644 (file)
--- a/po/vi.po
+++ b/po/vi.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.6.6-pre1\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2014-01-12 16:01+0700\n"
 "Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n"
 "Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n"
@@ -22,16 +22,21 @@ msgstr ""
 "X-Generator: Poedit 1.5.5\n"
 "X-Poedit-SourceCharset: utf-8\n"
 
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "không thể đặt UID chịu tác động"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "không có người dùng hướng dẫn \"setuid\" \"%s\""
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "không thể \"chown\" (thay đổi quyền sở hữu) %s"
+
 #: lib/xregcomp.c:47
 #, c-format
 msgid "fatal: regex `%s': %s"
@@ -131,22 +136,22 @@ msgstr "TẬP_TIN"
 msgid "use this user configuration file"
 msgstr "dùng tập tin cấu hình này"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "lệnh \"man\" đã thất bại với trạng thái thoát là %d"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "không thể đọc cơ sở dữ liệu %s"
 
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "nội dung VÔ GIÁ TRỊ cho khóa: %s"
 
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -155,74 +160,79 @@ msgstr ""
 "\n"
 "Đang cập nhật các tập tin \"cat\" cho phần %s của cây phân cấp \"man\" %s\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "không thể ghi ở trong %s"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "không thể cập nhật %s"
 
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "cảnh báo: \"%s/man%s/%s.%s*\": phần mở rộng cạnh tranh với nhau"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "không thể cập nhật bộ nhớ tạm mục lục %s"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr "cảnh báo: %s: liên kết mềm sai, hoặc yêu cầu \".so\" ROFF sai"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "cảnh báo: %s: đang bỏ qua tập tin rỗng"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr ""
 "cảnh báo: %s: việc phân tách kiểu \"whatis\" (là gì?) cho \"%s(%s)\" bị lỗi"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "không thể tìm kiếm trong danh mục %s"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "cảnh báo: không thể tạo catdir (thư mục \"cat\") %s"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "không thể \"chmod\" (thay đổi chế độ đọc ghi) %s"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "không thể chuyển sang thư mục %s"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "không thể tạo bộ nhớ tạm mục lục %s"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr ""
 "Đang cập nhật bộ nhớ tạm mục lục cho đường dẫn \"%s/%s\". Vui lòng chờ..."
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "hoàn tất.\n"
 
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "Đang tẩy các mục tin cơ sở dữ liệu cũ trong %s...\n"
@@ -273,7 +283,7 @@ msgstr[0] ""
 "cảnh báo: thông tin \"whatis\" (là gì?) cho %s vượt quá %d byte nên đang cắt "
 "bớt nó."
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -538,67 +548,57 @@ msgstr "Hãy xem \"%s\" để tìm trợ giúp khi trang hướng dẫn không s
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "đang bỏ qua bộ tiền xử lý trước không hiểu \"%c\""
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "không thể \"chown\" (thay đổi quyền sở hữu) %s"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "không thể \"chmod\" (thay đổi chế độ đọc ghi) %s"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "không thể thay đổi tên %s thành %s"
 
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "không thể đặt thời gian trên %s"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "không thể bỏ liên kết %s"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr "không thể tạo \"cat\" tạm cho %s"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, c-format
 msgid "can't create temporary directory"
 msgstr "không thể tạo thư mục tạm thời"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr "không thể mở tập tin tạm %s"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "không thể tạo thư mục tạm thời"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "không thể gỡ bỏ thư mục %s"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr "--Man-- kế: %s [ xem (enter) | nhảy qua (Ctrl-D) | thoát (Ctrl-C) ]\n"
 
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "không thể chdir (chuyển đổi thư mục) sang %s"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -607,28 +607,28 @@ msgstr ""
 "\n"
 "không thể ghi vào %s trong chế độ \"catman\""
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "Không thể chuyển đổi %s sang tên \"cat\""
 
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s: nhờ các \"ref\" (tham chiếu) của lệnh \"whatis\" bị phản đối\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr ""
 "lệnh \"mandb\" (cơ sở dữ liệu hướng dẫn) gặp lỗi với trạng thái thoát là %d"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr "lỗi nội bộ: kiểu ứng cử %d nằm ngoài phạm vi"
 
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Trang hướng dẫn "
 
@@ -711,63 +711,63 @@ msgstr "TÊN_TẬP_TIN"
 msgid "update just the entry for this filename"
 msgstr "chỉ cập nhật mục tin cho tên tập tin này"
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "không thể gỡ bỏ %s"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "không thể ghi vào %s"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "không thể đọc từ %s"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "Đang xử lý các trang hướng dẫn dưới %s...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "Đang gỡ bỏ các thư mục “cat” không dùng nữa %s...\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr ""
 "cảnh báo: không có chỉ thị \"MANDB_MAP\" trong “%s” nên sẽ dùng đường dẫn "
 "hướng dẫn của bạn."
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
 msgstr[0] "%d thư mục con hướng dẫn chứa trang hướng dẫn mới hơn.\n"
 
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
 msgstr[0] "%d trang hướng dẫn được thêm vào.\n"
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
 msgstr[0] "%d trang \"cat\" thất lạc đã được thêm vào.\n"
 
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
 msgstr[0] "%d mục tin cơ sở dữ liệu cũ bị tẩy.\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr "Chưa tạo cơ sở dữ liệu."
index 943d63b..ec85329 100644 (file)
@@ -17,7 +17,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: man-db 2.5.1-pre2\n"
 "Report-Msgid-Bugs-To: Colin Watson <cjwatson@debian.org>\n"
-"POT-Creation-Date: 2015-11-06 15:42+0000\n"
+"POT-Creation-Date: 2016-12-11 15:54+0000\n"
 "PO-Revision-Date: 2008-01-16 17:49-0600\n"
 "Last-Translator: Ming Hua <minghua-guest@users.alioth.debian.org>\n"
 "Language-Team: Chinese (simplified) <translation-team-zh-cn@lists."
@@ -28,16 +28,21 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 
 #  need-proofread
-#: lib/security.c:74
+#: lib/security.c:77
 #, c-format
 msgid "can't set effective uid"
 msgstr "无法设置等效 uid"
 
-#: lib/security.c:101 src/mandb.c:824
+#: lib/security.c:107 src/mandb.c:815
 #, c-format
 msgid "the setuid man user \"%s\" does not exist"
 msgstr "不存在用来将 man 程序 setuid 的用户 %s"
 
+#: lib/xchown.c:38 lib/xchown.c:47 src/man.c:1673
+#, c-format
+msgid "can't chown %s"
+msgstr "无法 chown %s"
+
 #  need-proofread
 #: lib/xregcomp.c:47
 #, c-format
@@ -140,24 +145,24 @@ msgstr "文件"
 msgid "use this user configuration file"
 msgstr "使用该用户设置文件"
 
-#: src/catman.c:194
+#: src/catman.c:193
 #, c-format
 msgid "man command failed with exit status %d"
 msgstr "man 命令失败,退出状态代码为 %d"
 
-#: src/catman.c:233
+#: src/catman.c:232
 #, c-format
 msgid "cannot read database %s"
 msgstr "无法读取数据库 %s"
 
 #  need-proofread
-#: src/catman.c:276
+#: src/catman.c:275
 #, c-format
 msgid "NULL content for key: %s"
 msgstr "关于 %s 词条的内容为空"
 
 #  need-proofread
-#: src/catman.c:291
+#: src/catman.c:290
 #, c-format
 msgid ""
 "\n"
@@ -166,74 +171,79 @@ msgstr ""
 "\n"
 "正在更新 man 目录树 %2$s 中第 %1$s 节的 cat 文件\n"
 
-#: src/catman.c:345
+#: src/catman.c:344
 #, c-format
 msgid "cannot write within %s"
 msgstr "无法在 %s 里写入"
 
-#: src/catman.c:422
+#: src/catman.c:421
 #, c-format
 msgid "unable to update %s"
 msgstr "无法更新 %s"
 
 #  need-proofread
-#: src/check_mandirs.c:95
+#: src/check_mandirs.c:96
 #, c-format
 msgid "warning: %s/man%s/%s.%s*: competing extensions"
 msgstr "警告:%s/man%s/%s.%s*:互相竞争的扩展"
 
-#: src/check_mandirs.c:109 src/check_mandirs.c:563
+#: src/check_mandirs.c:110 src/check_mandirs.c:622
 #, c-format
 msgid "can't update index cache %s"
 msgstr "无法更新索引缓存 %s"
 
-#: src/check_mandirs.c:237
+#: src/check_mandirs.c:238
 #, c-format
 msgid "warning: %s: bad symlink or ROFF `.so' request"
 msgstr "警告:%s:坏的符号链接或坏的 ROFF“.so”请求"
 
-#: src/check_mandirs.c:295
+#: src/check_mandirs.c:296
 #, c-format
 msgid "warning: %s: ignoring empty file"
 msgstr "警告:%s:忽略空文件"
 
-#: src/check_mandirs.c:299 src/straycats.c:280
+#: src/check_mandirs.c:300 src/straycats.c:280
 #, c-format
 msgid "warning: %s: whatis parse for %s(%s) failed"
 msgstr "警告:%s:用 whatis 解读 %s(%s) 失败"
 
-#: src/check_mandirs.c:328 src/check_mandirs.c:448 src/mandb.c:881
+#: src/check_mandirs.c:328 src/check_mandirs.c:507 src/mandb.c:872
 #: src/straycats.c:77 src/straycats.c:310 src/ult_src.c:80
 #, c-format
 msgid "can't search directory %s"
 msgstr "无法搜索目录 %s"
 
-#: src/check_mandirs.c:384 src/check_mandirs.c:411
+#: src/check_mandirs.c:409 src/check_mandirs.c:432
 #, c-format
 msgid "warning: cannot create catdir %s"
 msgstr "警告:无法创建 catdir %s"
 
-#: src/check_mandirs.c:453 src/man.c:1886
+#: src/check_mandirs.c:464 src/man.c:1685 src/mandb.c:226
+#, c-format
+msgid "can't chmod %s"
+msgstr "无法 chmod %s"
+
+#: src/check_mandirs.c:512 src/man.c:1887
 #, c-format
 msgid "can't change to directory %s"
 msgstr "无法切换到目录 %s 中"
 
-#: src/check_mandirs.c:503
+#: src/check_mandirs.c:562
 #, c-format
 msgid "can't create index cache %s"
 msgstr "无法创建索引缓存 %s"
 
-#: src/check_mandirs.c:528
+#: src/check_mandirs.c:587
 #, c-format
 msgid "Updating index cache for path `%s/%s'. Wait..."
 msgstr "正在为路径 %s/%s 更新索引缓存。请等待..."
 
-#: src/check_mandirs.c:590 src/check_mandirs.c:650
+#: src/check_mandirs.c:649 src/check_mandirs.c:709
 msgid "done.\n"
 msgstr "完成。\n"
 
 #  need-proofread
-#: src/check_mandirs.c:910
+#: src/check_mandirs.c:969
 #, c-format
 msgid "Purging old database entries in %s...\n"
 msgstr "正在删除 %s 里的旧数据库条目...\n"
@@ -287,7 +297,7 @@ msgid_plural "warning: whatis for %s exceeds %d bytes, truncating."
 msgstr[0] "警告:对 %s 的 whatis 操作结果超过 %d 字节,正在截断。"
 msgstr[1] "警告:对 %s 的 whatis 操作结果超过 %d 字节,正在截断。"
 
-#: src/lexgrog.l:816 src/man.c:2246 src/man.c:2328 src/man.c:2425
+#: src/lexgrog.l:816 src/man.c:2249 src/man.c:2331 src/man.c:2428
 #: src/manconv_main.c:165 src/straycats.c:221 src/ult_src.c:346
 #: src/ult_src.c:360 src/zsoelim.l:505
 #, c-format
@@ -554,69 +564,59 @@ msgstr "当没有手册页时,可以用 %s 命令来寻求帮助。\n"
 msgid "ignoring unknown preprocessor `%c'"
 msgstr "忽略未知的预处理器 `%c'"
 
-#: src/man.c:1672 src/mandb.c:327
-#, c-format
-msgid "can't chown %s"
-msgstr "无法 chown %s"
-
-#: src/man.c:1684 src/mandb.c:224
-#, c-format
-msgid "can't chmod %s"
-msgstr "无法 chmod %s"
-
-#: src/man.c:1695 src/mandb.c:215
+#: src/man.c:1696 src/mandb.c:217
 #, c-format
 msgid "can't rename %s to %s"
 msgstr "无法将 %s 改名为 %s"
 
 #  need-proofread
-#: src/man.c:1712
+#: src/man.c:1713
 #, c-format
 msgid "can't set times on %s"
 msgstr "无法设定 %s 文件的时间"
 
-#: src/man.c:1721
+#: src/man.c:1722
 #, c-format
 msgid "can't unlink %s"
 msgstr "无法删除 (unlink) %s"
 
-#: src/man.c:1772
+#: src/man.c:1773
 #, c-format
 msgid "can't create temporary cat for %s"
 msgstr "无法为 %s 创建临时 cat 文件"
 
-#: src/man.c:1884
+#: src/man.c:1885
 #, fuzzy, c-format
 msgid "can't create temporary directory"
 msgstr "无法为 %s 创建临时 cat 文件"
 
-#: src/man.c:1896
+#: src/man.c:1897
 #, c-format
 msgid "can't open temporary file %s"
 msgstr "无法打开临时文件 %s"
 
-#: src/man.c:1926 src/man.c:1963 src/man.c:3709
+#: src/man.c:1927 src/man.c:1965 src/man.c:3712
 #, fuzzy, c-format
 msgid "can't restore previous working directory"
 msgstr "无法为 %s 创建临时 cat 文件"
 
-#: src/man.c:1933 src/man.c:1968
+#: src/man.c:1935 src/man.c:1971
 #, c-format
 msgid "can't remove directory %s"
 msgstr "无法移除目录 %s"
 
-#: src/man.c:2088
+#: src/man.c:2091
 #, c-format
 msgid "--Man-- next: %s [ view (return) | skip (Ctrl-D) | quit (Ctrl-C) ]\n"
 msgstr "--Man-- 下一页: %s [ 查看 (return) | 跳过 (Ctrl-D) | 退出 (Ctrl-C) ]\n"
 
 #  need-proofread
-#: src/man.c:2136
+#: src/man.c:2139
 #, c-format
 msgid "can't chdir to %s"
 msgstr "无法进入到 %s 目录中"
 
-#: src/man.c:2370
+#: src/man.c:2373
 #, c-format
 msgid ""
 "\n"
@@ -625,23 +625,23 @@ msgstr ""
 "\n"
 "无法在 catman 模式下对 %s 写入"
 
-#: src/man.c:2451
+#: src/man.c:2454
 #, c-format
 msgid "Can't convert %s to cat name"
 msgstr "无法把 %s 转换为 cat 名称"
 
 #  need-proofread
-#: src/man.c:3176
+#: src/man.c:3179
 #, c-format
 msgid "%s: relying on whatis refs is deprecated\n"
 msgstr "%s:依赖于 whatis 引用是已被废弃的做法\n"
 
-#: src/man.c:3326 src/man.c:4095
+#: src/man.c:3329 src/man.c:4134
 #, c-format
 msgid "mandb command failed with exit status %d"
 msgstr "mandb 命令失败,退出状态代码为 %d"
 
-#: src/man.c:3531
+#: src/man.c:3534
 #, c-format
 msgid "internal error: candidate type %d out of range"
 msgstr "内部错误:候选类型 %d 超出正常范围"
@@ -649,7 +649,7 @@ msgstr "内部错误:候选类型 %d 超出正常范围"
 #  I'm not sure this should be translated.  It comes from a less prompt string
 #  but seems to be only part of it.  (Ming)
 #  need-proofread
-#: src/man.c:4025
+#: src/man.c:4064
 msgid " Manual page "
 msgstr " Manual page "
 
@@ -735,37 +735,37 @@ msgstr "文件名"
 msgid "update just the entry for this filename"
 msgstr "仅更新该文件名对应的条目"
 
-#: src/mandb.c:208
+#: src/mandb.c:210
 #, c-format
 msgid "can't remove %s"
 msgstr "无法移除 %s"
 
-#: src/mandb.c:272
+#: src/mandb.c:274
 #, c-format
 msgid "can't write to %s"
 msgstr "无法对 %s 写入"
 
-#: src/mandb.c:277
+#: src/mandb.c:279
 #, c-format
 msgid "can't read from %s"
 msgstr "无法从 %s 读取"
 
-#: src/mandb.c:454
+#: src/mandb.c:447
 #, c-format
 msgid "Processing manual pages under %s...\n"
 msgstr "正在处理 %s 下的手册页...\n"
 
-#: src/mandb.c:664 src/mandb.c:690
+#: src/mandb.c:655 src/mandb.c:681
 #, fuzzy, c-format
 msgid "Removing obsolete cat directory %s...\n"
 msgstr "正在 %s 下查找流浪猫...\n"
 
-#: src/mandb.c:846
+#: src/mandb.c:837
 #, c-format
 msgid "warning: no MANDB_MAP directives in %s, using your manpath"
 msgstr "警告:在 %s 中没有 MANDB_MAP 指令,使用您的手册路径设置"
 
-#: src/mandb.c:918
+#: src/mandb.c:909
 #, fuzzy, c-format
 msgid "%d man subdirectory contained newer manual pages.\n"
 msgid_plural "%d man subdirectories contained newer manual pages.\n"
@@ -779,14 +779,14 @@ msgstr[1] ""
 #  I'm not sure this should be translated.  It comes from a less prompt string
 #  but seems to be only part of it.  (Ming)
 #  need-proofread
-#: src/mandb.c:923
+#: src/mandb.c:914
 #, fuzzy, c-format
 msgid "%d manual page was added.\n"
 msgid_plural "%d manual pages were added.\n"
 msgstr[0] " Manual page "
 msgstr[1] " Manual page "
 
-#: src/mandb.c:927
+#: src/mandb.c:918
 #, fuzzy, c-format
 msgid "%d stray cat was added.\n"
 msgid_plural "%d stray cats were added.\n"
@@ -794,14 +794,14 @@ msgstr[0] "添加了 %d 只流浪猫。\n"
 msgstr[1] "添加了 %d 只流浪猫。\n"
 
 #  need-proofread
-#: src/mandb.c:932
+#: src/mandb.c:923
 #, fuzzy, c-format
 msgid "%d old database entry was purged.\n"
 msgid_plural "%d old database entries were purged.\n"
 msgstr[0] "删除了 %d 条旧数据库条目。\n"
 msgstr[1] "删除了 %d 条旧数据库条目。\n"
 
-#: src/mandb.c:950
+#: src/mandb.c:941
 #, c-format
 msgid "No databases created."
 msgstr "未创建任何数据库。"
index d485ef4..dd7232e 100644 (file)
@@ -173,10 +173,11 @@ apropos$(EXEEXT): whatis$(EXEEXT)
 all-am: apropos$(EXEEXT)
 
 install-exec-hook:
-       -test -z "$(man_owner)" || \
-       chown $(man_owner) \
-               $(DESTDIR)$(bindir)/$(TRANS_MAN) \
-               $(DESTDIR)$(bindir)/$(TRANS_MANDB)
+       if [ "$(man_owner)" ] && [ "$(man_mode)" = 6755 ]; then \
+               chown $(man_owner):$(man_owner) \
+                       $(DESTDIR)$(bindir)/$(TRANS_MAN) \
+                       $(DESTDIR)$(bindir)/$(TRANS_MANDB); \
+       fi
        chmod $(man_mode) \
                $(DESTDIR)$(bindir)/$(TRANS_MAN) \
                $(DESTDIR)$(bindir)/$(TRANS_MANDB)
index 5d1e416..9515df1 100644 (file)
@@ -97,6 +97,7 @@ subdir = src
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -1101,6 +1102,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
@@ -2208,10 +2210,11 @@ apropos$(EXEEXT): whatis$(EXEEXT)
 all-am: apropos$(EXEEXT)
 
 install-exec-hook:
-       -test -z "$(man_owner)" || \
-       chown $(man_owner) \
-               $(DESTDIR)$(bindir)/$(TRANS_MAN) \
-               $(DESTDIR)$(bindir)/$(TRANS_MANDB)
+       if [ "$(man_owner)" ] && [ "$(man_mode)" = 6755 ]; then \
+               chown $(man_owner):$(man_owner) \
+                       $(DESTDIR)$(bindir)/$(TRANS_MAN) \
+                       $(DESTDIR)$(bindir)/$(TRANS_MANDB); \
+       fi
        chmod $(man_mode) \
                $(DESTDIR)$(bindir)/$(TRANS_MAN) \
                $(DESTDIR)$(bindir)/$(TRANS_MANDB)
index 8bd17f7..5c665b8 100644 (file)
@@ -171,8 +171,7 @@ static void post_fork (void)
                MYDBM_CLOSE (dbf_close_post_fork);
 }
 
-/* Execute man with the appropriate catman args.  Always frees cmd.
-   If we inline this function, gcc v2.6.2 gives us `clobber' warnings ?? */
+/* Execute man with the appropriate catman args.  Always frees cmd. */
 static void catman (pipecmd *cmd)
 {
        pipeline *p;
@@ -197,7 +196,7 @@ static void catman (pipecmd *cmd)
 /* Add key to this command, stripping off tab-and-following if necessary.
  * Return length of argument.
  */
-static inline size_t add_arg (pipecmd *cmd, datum key)
+static size_t add_arg (pipecmd *cmd, datum key)
 {
        char *tab;
        size_t len;
@@ -339,7 +338,7 @@ static int parse_for_sec (const char *manpath, const char *section)
        return 0;
 }
 
-static inline int check_access (const char *directory)
+static int check_access (const char *directory)
 {
        if (access (directory, W_OK)) {
                error (0, errno, _("cannot write within %s"), directory);
index 46911c6..a721396 100644 (file)
@@ -56,6 +56,7 @@
 #include "hashtable.h"
 #include "orderfiles.h"
 #include "security.h"
+#include "xchown.h"
 
 #include "mydbm.h"
 #include "db_storage.h"
@@ -305,8 +306,7 @@ void test_manfile (MYDBM_FILE dbf, const char *file, const char *path)
                free (lg.whatis);
 }
 
-static inline void add_dir_entries (MYDBM_FILE dbf,
-                                   const char *path, char *infile)
+static void add_dir_entries (MYDBM_FILE dbf, const char *path, char *infile)
 {
        char *manpage;
        int len;
@@ -362,23 +362,48 @@ static inline void add_dir_entries (MYDBM_FILE dbf,
 }
 
 #ifdef SECURE_MAN_UID
-extern uid_t ruid;                     /* initial real user id */
+extern uid_t uid;                      /* current effective user id */
+extern gid_t gid;                      /* current effective group id */
+
+/* Fix a path's ownership if possible and necessary. */
+void chown_if_possible (const char *path)
+{
+       struct stat st;
+       struct passwd *man_owner = get_man_owner ();
+
+       if (lstat (path, &st) != 0)
+               return;
+
+       if ((uid == 0 ||
+            (uid == man_owner->pw_uid && st.st_uid == man_owner->pw_uid &&
+             gid == man_owner->pw_gid)) &&
+           (st.st_uid != man_owner->pw_uid ||
+            st.st_gid != man_owner->pw_gid)) {
+               debug ("fixing ownership of %s\n", path);
+#ifdef HAVE_LCHOWN
+               xlchown (path, man_owner->pw_uid, man_owner->pw_gid);
+#else
+               xchown (path, man_owner->pw_uid, man_owner->pw_gid);
+#endif
+       }
+}
+#else /* !SECURE_MAN_UID */
+void chown_if_possible (const char *path)
+{
+}
 #endif /* SECURE_MAN_UID */
 
 /* create the catman hierarchy if it doesn't exist */
 static void mkcatdirs (const char *mandir, const char *catdir)
 {
        char *manname, *catname;
-#ifdef SECURE_MAN_UID
-       struct passwd *man_owner = get_man_owner ();
-#endif
 
        if (catdir) {
                int oldmask = umask (022);
                /* first the base catdir */
                if (is_directory (catdir) != 1) {
                        regain_effective_privs ();
-                       if (mkdir (catdir, S_ISGID | 0755) < 0) {
+                       if (mkdir (catdir, 0755) < 0) {
                                if (!quiet)
                                        error (0, 0,
                                               _("warning: cannot create catdir %s"),
@@ -387,10 +412,7 @@ static void mkcatdirs (const char *mandir, const char *catdir)
                                       catdir);
                        } else
                                debug ("created base catdir %s\n", catdir);
-#ifdef SECURE_MAN_UID
-                       if (ruid == 0)
-                               chown (catdir, man_owner->pw_uid, 0);
-#endif /* SECURE_MAN_UID */
+                       chown_if_possible (catdir);
                        drop_effective_privs ();
                }
                /* then the hierarchy */
@@ -405,18 +427,13 @@ static void mkcatdirs (const char *mandir, const char *catdir)
                                manname[strlen (manname) - 1] = '0' + j;
                                if ((is_directory (manname) == 1)
                                 && (is_directory (catname) != 1)) {
-                                       if (mkdir (catname,
-                                                  S_ISGID | 0755) < 0) {
+                                       if (mkdir (catname, 0755) < 0) {
                                                if (!quiet)
                                                        error (0, 0, _("warning: cannot create catdir %s"), catname);
                                                debug ("warning: cannot create catdir %s\n", catname);
                                        } else
                                                debug (" cat%d", j);
-#ifdef SECURE_MAN_UID
-                                       if (ruid == 0)
-                                               chown (catname,
-                                                      man_owner->pw_uid, 0);
-#endif /* SECURE_MAN_UID */
+                                       chown_if_possible (catname);
                                }
                        }
                        debug ("\n");
@@ -428,6 +445,45 @@ static void mkcatdirs (const char *mandir, const char *catdir)
        }
 }
 
+/* We used to install cat directories with the setgid bit set, but this
+ * wasn't very useful and introduces the ability to escalate privileges to
+ * that group:
+ *   http://www.halfdog.net/Security/2015/SetgidDirectoryPrivilegeEscalation/
+ */
+static void fix_permissions (const char *dir)
+{
+       struct stat st;
+
+       if (stat (dir, &st) == 0) {
+               if ((st.st_mode & S_ISGID) != 0) {
+                       int status;
+
+                       debug ("removing setgid bit from %s\n", dir);
+                       status = chmod (dir, st.st_mode & ~S_ISGID);
+                       if (status)
+                               error (0, errno, _("can't chmod %s"), dir);
+               }
+
+               chown_if_possible (dir);
+       }
+}
+
+static void fix_permissions_tree (const char *catdir)
+{
+       if (is_directory (catdir) == 1) {
+               char *catname;
+               int i;
+
+               fix_permissions (catdir);
+               catname = xasprintf ("%s/cat1", catdir);
+               for (i = 1; i <= 9; ++i) {
+                       catname[strlen (catname) - 1] = '0' + i;
+                       fix_permissions (catname);
+               }
+               free (catname);
+       }
+}
+
 /*
  * accepts the raw man dir tree eg. "/usr/man" and the time stored in the db
  * any dirs of the tree that have been modified (ie added to) will then be
@@ -443,6 +499,9 @@ static int testmandirs (const char *path, const char *catpath,
 
        debug ("Testing %s for new files\n", path);
 
+       if (catpath)
+               fix_permissions_tree (catpath);
+
        dir = opendir (path);
        if (!dir) {
                error (0, errno, _("can't search directory %s"), path);
index 39f68d2..c6565ac 100644 (file)
@@ -24,6 +24,7 @@
 
 /* check_mandirs.c */
 extern void test_manfile (MYDBM_FILE dbf, const char *file, const char *path);
+extern void chown_if_possible (const char *path);
 extern int create_db (const char *manpath, const char *catpath);
 extern int update_db (const char *manpath, const char *catpath);
 extern void purge_pointers (MYDBM_FILE dbf, const char *name);
index bea684f..15a568a 100644 (file)
--- a/src/man.c
+++ b/src/man.c
@@ -160,7 +160,7 @@ struct candidate {
 #define CANDIDATE_FILESYSTEM 0
 #define CANDIDATE_DATABASE   1
 
-static inline void gripe_system (pipeline *p, int status)
+static void gripe_system (pipeline *p, int status)
 {
        error (CHILD_FAIL, 0, _("command exited with status %d: %s"),
               status, pipeline_tostring (p));
@@ -748,7 +748,7 @@ static pipecmd *add_roff_line_length (pipecmd *cmd, int *save_cat_p)
 }
 #endif /* TROFF_IS_GROFF || HEIRLOOM_NROFF */
 
-static inline void gripe_no_man (const char *name, const char *sec)
+static void gripe_no_man (const char *name, const char *sec)
 {
        /* On AIX and IRIX, fall back to the vendor supplied browser. */
 #if defined _AIX || defined __sgi
@@ -810,7 +810,7 @@ static void do_extern (int argc, char *argv[])
 }
 
 /* lookup $MANOPT and if available, put in *argv[] format for argp */
-static inline char **manopt_to_env (int *argc)
+static char **manopt_to_env (int *argc)
 {
        char *manopt, *manopt_copy, *opt_start, **argv;
 
@@ -860,7 +860,7 @@ static inline char **manopt_to_env (int *argc)
 }
 
 /* Return char array with 'less' special chars escaped. Uses static storage. */
-static inline const char *escape_less (const char *string)
+static const char *escape_less (const char *string)
 {
        static char *escaped_string; 
        char *ptr;
@@ -957,7 +957,7 @@ static char *locale_manpath (const char *manpath)
  * The list of sections in config.h simply allows us to specify oddly
  * named directories like .../man3f.  Yuk.
  */
-static inline const char *is_section (const char *name)
+static const char *is_section (const char *name)
 {
        const char **vs;
 
@@ -1667,7 +1667,8 @@ static int commit_tmp_cat (const char *cat_file, const char *tmp_cat,
                        status = 0;
                } else {
                        struct passwd *man_owner = get_man_owner ();
-                       status = chown (tmp_cat, man_owner->pw_uid, -1);
+                       status = chown (tmp_cat, man_owner->pw_uid,
+                                       man_owner->pw_gid);
                        if (status)
                                error (0, errno, _("can't chown %s"), tmp_cat);
                }
@@ -1807,7 +1808,7 @@ static int close_cat_stream (pipeline *cat_p, const char *cat_file,
                status |= commit_tmp_cat (cat_file, tmp_cat_file,
                                          delete || status);
                if (!debug_level)
-                       pop_cleanup ();
+                       pop_cleanup ((cleanup_fun) unlink, tmp_cat_file);
        }
        free (tmp_cat_file);
        return status;
@@ -1925,7 +1926,8 @@ static void format_display (pipeline *decomp,
                                error (0, errno,
                                       _("can't restore previous working "
                                         "directory"));
-                               chdir ("/");
+                               /* last resort */
+                               if (chdir ("/")) { /* ignore errors */ }
                        }
                        free_cwd (&old_cwd);
                        if (remove_directory (htmldir, 0) == -1)
@@ -1961,7 +1963,8 @@ static void format_display (pipeline *decomp,
                if (have_old_cwd && restore_cwd (&old_cwd) < 0) {
                        error (0, errno,
                               _("can't restore previous working directory"));
-                       chdir ("/");
+                       /* last resort */
+                       if (chdir ("/")) { /* ignore errors */ }
                }
                free_cwd (&old_cwd);
                if (remove_directory (htmldir, 0) == -1)
@@ -2017,7 +2020,7 @@ static void display_catman (const char *cat_file, pipeline *decomp,
 
        close (tmp_cat_fd);
        commit_tmp_cat (cat_file, tmpcat, status);
-       pop_cleanup();
+       pop_cleanup ((cleanup_fun) unlink, tmpcat);
        free (tmpcat);
 }
 
@@ -2072,7 +2075,7 @@ static void locale_macros (void *data)
    return 1 to skip
    return 0 to view
  */
-static inline int do_prompt (const char *name)
+static int do_prompt (const char *name)
 {
        int ch;
        FILE *tty = NULL;
@@ -2445,8 +2448,8 @@ static int display (const char *dir, const char *man_file,
        return found;
 }
 
-static inline void gripe_converting_name (const char *name) ATTRIBUTE_NORETURN;
-static inline void gripe_converting_name (const char *name)
+static void gripe_converting_name (const char *name) ATTRIBUTE_NORETURN;
+static void gripe_converting_name (const char *name)
 {
        error (FATAL, 0, _("Can't convert %s to cat name"), name);
        abort (); /* error should have exited; help compilers prove noreturn */
@@ -3810,6 +3813,39 @@ executable_out:
 }
 
 /*
+ * Splits a "name[.section]" into { "name", "section" }.
+ * Section would be NULL if not present.
+ * The caller is responsible for freeing *ret_name and *ret_section.
+ * */
+static void split_page_name (const char *page_name,
+                            char **ret_name,
+                            char **ret_section)
+{
+       char *dot;
+
+       dot = strrchr (page_name, '.');
+
+       if (dot && is_section (dot + 1)) {
+               *ret_name = xstrndup (page_name, dot - page_name);
+               *ret_section = xstrdup (dot + 1);
+       } else {
+               *ret_name = xstrdup (page_name);
+               *ret_section = NULL;
+       }
+}
+
+static void locate_page_in_manpath (const char *page_section,
+                                   const char *page_name,
+                                   struct candidate **candidates,
+                                   int *found)
+{
+       char **mp;
+
+       for (mp = manpathlist; *mp; mp++)
+               *found += locate_page (*mp, page_section, page_name, candidates);
+}
+
+/*
  * Search for manual pages.
  *
  * If preformatted manual pages are supported, look for the formatted
@@ -3825,6 +3861,7 @@ executable_out:
  */
 static int man (const char *name, int *found)
 {
+       char *page_name, *page_section;
        struct candidate *candidates = NULL, *cand, *candnext;
 
        *found = 0;
@@ -3837,23 +3874,25 @@ static int man (const char *name, int *found)
                return status;
        }
 
-       if (section) {
-               char **mp;
-
-               for (mp = manpathlist; *mp; mp++)
-                       *found += locate_page (*mp, section, name, &candidates);
-       } else {
+       if (section)
+               locate_page_in_manpath (section, name, &candidates, found);
+       else {
                const char **sp;
 
                for (sp = section_list; *sp; sp++) {
-                       char **mp;
-
-                       for (mp = manpathlist; *mp; mp++)
-                               *found += locate_page (*mp, *sp, name,
-                                                      &candidates);
+                       locate_page_in_manpath (*sp, name, &candidates, found);
                }
        }
 
+       split_page_name (name, &page_name, &page_section);
+
+       if (!*found && page_section)
+               locate_page_in_manpath (page_section, page_name, &candidates,
+                                       found);
+
+       free (page_name);
+       free (page_section);
+
        sort_candidates (&candidates);
 
        if (*found)
index 17a0cd5..6eea9e2 100644 (file)
@@ -177,20 +177,22 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state)
 
 static struct argp argp = { options, parse_opt, args_doc };
 
+struct dbpaths {
 #ifdef NDBM
 #  ifdef BERKELEY_DB
-static char *dbfile;
-static char *tmpdbfile;
+       char *dbfile;
+       char *tmpdbfile;
 #  else /* !BERKELEY_DB NDBM */
-static char *dirfile;
-static char *pagfile;
-static char *tmpdirfile;
-static char *tmppagfile;
+       char *dirfile;
+       char *pagfile;
+       char *tmpdirfile;
+       char *tmppagfile;
 #  endif /* BERKELEY_DB */
 #else /* !NDBM */
-static char *xfile;
-static const char *xtmpfile;
+       char *xfile;
+       char *xtmpfile;
 #endif /* NDBM */
+};
 
 #ifdef SECURE_MAN_UID
 extern uid_t ruid;
@@ -202,27 +204,27 @@ static char *manpathlist[MAXDIRS];
 extern int pages;
 
 /* remove() with error checking */
-static inline void xremove (const char *path)
+static void check_remove (const char *path)
 {
        if (remove (path) == -1 && errno != ENOENT)
                error (0, errno, _("can't remove %s"), path);
 }
 
 /* rename() with error checking */
-static inline void xrename (const char *from, const char *to)
+static void check_rename (const char *from, const char *to)
 {
        if (rename (from, to) == -1 && errno != ENOENT) {
                error (0, errno, _("can't rename %s to %s"), from, to);
-               xremove (from);
+               check_remove (from);
        }
 }
 
 /* chmod() with error checking */
-static inline void xchmod (const char *path, mode_t mode)
+static void check_chmod (const char *path, mode_t mode)
 {
        if (chmod (path, mode) == -1) {
                error (0, errno, _("can't chmod %s"), path);
-               xremove (path);
+               check_remove (path);
        }
 }
 
@@ -284,9 +286,9 @@ static int xcopy (const char *from, const char *to)
        fclose (ofp);
 
        if (ret < 0)
-               xremove (to);
+               check_remove (to);
        else {
-               xchmod (to, DBMODE);
+               check_chmod (to, DBMODE);
                utimens (to, times);
        }
 
@@ -294,53 +296,44 @@ static int xcopy (const char *from, const char *to)
 }
 
 /* rename and chmod the database */
-static inline void finish_up (void)
+static void finish_up (struct dbpaths *dbpaths)
 {
 #ifdef NDBM
 #  ifdef BERKELEY_DB
-       xrename (tmpdbfile, dbfile);
-       xchmod (dbfile, DBMODE);
-       free (tmpdbfile);
-       tmpdbfile = NULL;
+       check_rename (dbpaths->tmpdbfile, dbpaths->dbfile);
+       check_chmod (dbpaths->dbfile, DBMODE);
+       free (dbpaths->tmpdbfile);
+       dbpaths->tmpdbfile = NULL;
 #  else /* not BERKELEY_DB */
-       xrename (tmpdirfile, dirfile);
-       xchmod (dirfile, DBMODE);
-       xrename (tmppagfile, pagfile);
-       xchmod (pagfile, DBMODE);
-       free (tmpdirfile);
-       free (tmppagfile);
-       tmpdirfile = tmppagfile = NULL;
+       check_rename (dbpaths->tmpdirfile, dbpaths->dirfile);
+       check_chmod (dbpaths->dirfile, DBMODE);
+       check_rename (dbpaths->tmppagfile, dbpaths->pagfile);
+       check_chmod (dbpaths->pagfile, DBMODE);
+       free (dbpaths->tmpdirfile);
+       free (dbpaths->tmppagfile);
+       dbpaths->tmpdirfile = dbpaths->tmppagfile = NULL;
 #  endif /* BERKELEY_DB */
 #else /* not NDBM */
-       xrename (xtmpfile, xfile);
-       xchmod (xfile, DBMODE);
-       /* xtmpfile == database, so freed elsewhere */
-       xtmpfile = NULL;
+       check_rename (dbpaths->xtmpfile, dbpaths->xfile);
+       check_chmod (dbpaths->xfile, DBMODE);
+       free (dbpaths->xtmpfile);
+       dbpaths->xtmpfile = NULL;
 #endif /* NDBM */
 }
 
 #ifdef SECURE_MAN_UID
-/* chown() with error checking */
-static inline void xchown (const char *path, uid_t owner, uid_t group)
-{
-       if (chown (path, owner, group) == -1) {
-               error (0, errno, _("can't chown %s"), path);
-               xremove (path);
-       }
-}
-
 /* change the owner of global man databases */
-static inline void do_chown (uid_t uid)
+static void do_chown (struct dbpaths *dbpaths)
 {
 #  ifdef NDBM
 #    ifdef BERKELEY_DB
-       xchown (dbfile, uid, -1);
+       chown_if_possible (dbpaths->dbfile);
 #    else /* not BERKELEY_DB */
-       xchown (dirfile, uid, -1);
-       xchown (pagfile, uid, -1);
+       chown_if_possible (dbpaths->dirfile);
+       chown_if_possible (dbpaths->pagfile);
 #    endif /* BERKELEY_DB */
 #  else /* not NDBM */
-       xchown (xfile, uid, -1);
+       chown_if_possible (dbpaths->xfile);
 #  endif /* NDBM */
 }
 #endif /* SECURE_MAN_UID */
@@ -372,7 +365,7 @@ static int update_one_file (const char *manpath, const char *filename)
 }
 
 /* dont actually create any dbs, just do an update */
-static inline int update_db_wrapper (const char *manpath, const char *catpath)
+static int update_db_wrapper (const char *manpath, const char *catpath)
 {
        int amount;
 
@@ -387,51 +380,50 @@ static inline int update_db_wrapper (const char *manpath, const char *catpath)
 }
 
 /* remove incomplete databases */
-static void cleanup_sigsafe (void *dummy ATTRIBUTE_UNUSED)
+static void cleanup_sigsafe (void *arg)
 {
+       struct dbpaths *dbpaths = arg;
+
 #ifdef NDBM
 #  ifdef BERKELEY_DB
-       if (tmpdbfile)
-               unlink (tmpdbfile);
+       if (dbpaths->tmpdbfile)
+               unlink (dbpaths->tmpdbfile);
 #  else /* !BERKELEY_DB NDBM */
-       if (tmpdirfile)
-               unlink (tmpdirfile);
-       if (tmppagfile)
-               unlink (tmppagfile);
+       if (dbpaths->tmpdirfile)
+               unlink (dbpaths->tmpdirfile);
+       if (dbpaths->tmppagfile)
+               unlink (dbpaths->tmppagfile);
 #  endif /* BERKELEY_DB NDBM */
 #else /* !NDBM */
-       if (xtmpfile)
-               unlink (xtmpfile);
+       if (dbpaths->xtmpfile)
+               unlink (dbpaths->xtmpfile);
 #endif /* NDBM */
 }
 
-/* remove incomplete databases */
-static void cleanup (void *dummy ATTRIBUTE_UNUSED)
+/* free database names */
+static void cleanup (void *arg)
 {
+       struct dbpaths *dbpaths = arg;
+
 #ifdef NDBM
 #  ifdef BERKELEY_DB
-       if (tmpdbfile) {
-               free (tmpdbfile);
-               tmpdbfile = NULL;
-       }
+       free (dbpaths->dbfile);
+       free (dbpaths->tmpdbfile);
+       dbpaths->dbfile = dbpaths->tmpdbfile = NULL;
 #  else /* !BERKELEY_DB NDBM */
-       if (tmpdirfile) {
-               free (tmpdirfile);
-               tmpdirfile = NULL;
-       }
-       if (tmppagfile) {
-               free (tmppagfile);
-               tmppagfile = NULL;
-       }
+       free (dbpaths->dirfile);
+       free (dbpaths->pagfile);
+       free (dbpaths->tmpdirfile);
+       free (dbpaths->tmppagfile);
+       dbpaths->dirfile = dbpaths->pagfile = NULL;
+       dbpaths->tmpdirfile = dbpaths->tmppagfile = NULL;
 #  endif /* BERKELEY_DB NDBM */
 #else /* !NDBM */
-       if (xtmpfile) {
-               /* xtmpfile == database, so freed elsewhere */
-               xtmpfile = NULL;
-       }
-       free (xfile);
-       xfile = NULL;
+       free (dbpaths->xfile);
+       free (dbpaths->xtmpfile);
+       dbpaths->xfile = dbpaths->xtmpfile = NULL;
 #endif /* NDBM */
+       free (dbpaths);
 }
 
 #define CACHEDIR_TAG \
@@ -441,7 +433,8 @@ static void cleanup (void *dummy ATTRIBUTE_UNUSED)
        "#\thttp://www.brynosaurus.com/cachedir/\n"
 
 /* sort out the database names */
-static int mandb (const char *catpath, const char *manpath, int global_manpath)
+static int mandb (struct dbpaths *dbpaths,
+                 const char *catpath, const char *manpath, int global_manpath)
 {
        int ret, amount;
        char *dbname;
@@ -463,20 +456,17 @@ static int mandb (const char *catpath, const char *manpath, int global_manpath)
                        FILE *cachedir_tag_file;
 
                        if (errno != ENOENT)
-                               xremove (cachedir_tag);
+                               check_remove (cachedir_tag);
                        cachedir_tag_file = fopen (cachedir_tag, "w");
                        if (cachedir_tag_file) {
                                fputs (CACHEDIR_TAG, cachedir_tag_file);
                                fclose (cachedir_tag_file);
-#ifdef SECURE_MAN_UID
-                               if (global_manpath && euid == 0)
-                                       xchown (cachedir_tag,
-                                               man_owner->pw_uid, -1);
-#endif
-                               xchmod (cachedir_tag, DBMODE);
                        }
                } else
                        close (fd);
+               if (global_manpath)
+                       chown_if_possible (cachedir_tag);
+               check_chmod (cachedir_tag, DBMODE);
                free (cachedir_tag);
        }
 
@@ -484,15 +474,15 @@ static int mandb (const char *catpath, const char *manpath, int global_manpath)
 
 #ifdef NDBM
 #  ifdef BERKELEY_DB
-       dbfile = xasprintf ("%s.db", dbname);
+       dbpaths->dbfile = xasprintf ("%s.db", dbname);
        free (dbname);
-       tmpdbfile = xasprintf ("%s.db", database);
+       dbpaths->tmpdbfile = xasprintf ("%s.db", database);
        if (!should_create) {
-               if (xcopy (dbfile, tmpdbfile) < 0)
+               if (xcopy (dbpaths->dbfile, dbpaths->tmpdbfile) < 0)
                        should_create = 1;
        }
        if (should_create) {
-               xremove (tmpdbfile);
+               check_remove (dbpaths->tmpdbfile);
                ret = create_db (manpath, catpath);
                if (ret < 0)
                        return ret;
@@ -504,19 +494,19 @@ static int mandb (const char *catpath, const char *manpath, int global_manpath)
                amount = ret;
        }
 #  else /* !BERKELEY_DB NDBM */
-       dirfile = xasprintf ("%s.dir", dbname);
-       pagfile = xasprintf ("%s.pag", dbname);
+       dbpaths->dirfile = xasprintf ("%s.dir", dbname);
+       dbpaths->pagfile = xasprintf ("%s.pag", dbname);
        free (dbname);
-       tmpdirfile = xasprintf ("%s.dir", database);
-       tmppagfile = xasprintf ("%s.pag", database);
+       dbpaths->tmpdirfile = xasprintf ("%s.dir", database);
+       dbpaths->tmppagfile = xasprintf ("%s.pag", database);
        if (!should_create) {
-               if (xcopy (dirfile, tmpdirfile) < 0 ||
-                   xcopy (pagfile, tmppagfile) < 0)
+               if (xcopy (dbpaths->dirfile, dbpaths->tmpdirfile) < 0 ||
+                   xcopy (dbpaths->pagfile, dbpaths->tmppagfile) < 0)
                        should_create = 1;
        }
        if (should_create) {
-               xremove (tmpdirfile);
-               xremove (tmppagfile);
+               check_remove (dbpaths->tmpdirfile);
+               check_remove (dbpaths->tmppagfile);
                ret = create_db (manpath, catpath);
                if (ret < 0)
                        return ret;
@@ -529,14 +519,14 @@ static int mandb (const char *catpath, const char *manpath, int global_manpath)
        }
 #  endif /* BERKELEY_DB NDBM */
 #else /* !NDBM */
-       xfile = dbname; /* steal memory */
-       xtmpfile = database;
+       dbpaths->xfile = dbname; /* steal memory */
+       dbpaths->xtmpfile = xstrdup (database);
        if (!should_create) {
-               if (xcopy (xfile, xtmpfile) < 0)
+               if (xcopy (dbpaths->xfile, dbpaths->xtmpfile) < 0)
                        should_create = 1;
        }
        if (should_create) {
-               xremove (xtmpfile);
+               check_remove (dbpaths->xtmpfile);
                ret = create_db (manpath, catpath);
                if (ret < 0)
                        return ret;
@@ -559,6 +549,7 @@ static int process_manpath (const char *manpath, int global_manpath,
        struct tried_catdirs_entry *tried;
        struct stat st;
        int run_mandb = 0;
+       struct dbpaths *dbpaths;
        int amount = 0;
 
        if (global_manpath) {   /* system db */
@@ -598,10 +589,11 @@ static int process_manpath (const char *manpath, int global_manpath,
                database = NULL;
        }
 
-       push_cleanup (cleanup, NULL, 0);
-       push_cleanup (cleanup_sigsafe, NULL, 1);
+       dbpaths = XZALLOC (struct dbpaths);
+       push_cleanup (cleanup, dbpaths, 0);
+       push_cleanup (cleanup_sigsafe, dbpaths, 1);
        if (run_mandb) {
-               int ret = mandb (catpath, manpath, global_manpath);
+               int ret = mandb (dbpaths, catpath, manpath, global_manpath);
                if (ret < 0) {
                        amount = ret;
                        goto out;
@@ -609,19 +601,18 @@ static int process_manpath (const char *manpath, int global_manpath,
                amount += ret;
        }
 
-       if (!opt_test && amount) {
-               finish_up ();
+       if (!opt_test && amount)
+               finish_up (dbpaths);
 #ifdef SECURE_MAN_UID
-               if (global_manpath && euid == 0)
-                       do_chown (man_owner->pw_uid);
+       if (global_manpath)
+               do_chown (dbpaths);
 #endif /* SECURE_MAN_UID */
-       }
 
 out:
-       cleanup_sigsafe (NULL);
-       pop_cleanup ();
-       cleanup (NULL);
-       pop_cleanup ();
+       cleanup_sigsafe (dbpaths);
+       pop_cleanup (cleanup_sigsafe, dbpaths);
+       cleanup (dbpaths);
+       pop_cleanup (cleanup, dbpaths);
        free (database);
        database = NULL;
 
index 985c188..0d864f1 100644 (file)
@@ -102,8 +102,8 @@ char *user_config_file = NULL;
 int disable_cache;
 int min_cat_width = 80, max_cat_width = 80, cat_width = 0;
 
-static inline char *has_mandir (const char *p);
-static inline char *fsstnd (const char *path);
+static char *has_mandir (const char *p);
+static char *fsstnd (const char *path);
 static char *def_path (int flag);
 static void add_dir_to_list (char **lp, const char *dir);
 static char **add_dir_to_path_list (char **mphead, char **mp, const char *p);
@@ -325,19 +325,19 @@ static char *pathappend (char *oldpath, const char *appendage)
                return xstrdup (appendage);
 }
 
-static inline void gripe_reading_mp_config (const char *file)
+static void gripe_reading_mp_config (const char *file)
 {
        error (FAIL, 0,
               _("can't make sense of the manpath configuration file %s"),
               file);
 }
 
-static inline void gripe_stat_file (const char *file)
+static void gripe_stat_file (const char *file)
 {
        debug_error (_("warning: %s"), file);
 }
 
-static inline void gripe_not_directory (const char *dir)
+static void gripe_not_directory (const char *dir)
 {
        if (!quiet)
                error (0, 0, _("warning: %s isn't a directory"), dir);
@@ -1121,7 +1121,7 @@ static void add_dir_to_list (char **lp, const char *dir)
 /* path does not exist in config file: check to see if path/../man,
    path/man, path/../share/man, or path/share/man exist.  If so return
    it, if not return NULL. */
-static inline char *has_mandir (const char *path)
+static char *has_mandir (const char *path)
 {
        char *newpath;
 
@@ -1373,7 +1373,7 @@ int is_global_mandir (const char *dir)
 
 /* Accept a manpath (not a full pathname to a file) and return an FSSTND 
    equivalent catpath */
-static inline char *fsstnd (const char *path)
+static char *fsstnd (const char *path)
 {
        char *manpath;
        char *catpath;
index ba5c3d0..27a2616 100644 (file)
@@ -28,7 +28,7 @@ TESTS_ENVIRONMENT = PATH=$(abs_builddir)/..:$$PATH; export PATH; \
 AM_LOG_FLAGS = $(SHELL)
 ALL_TESTS = \
        lexgrog-1 \
-       man-1 man-2 man-3 man-4 man-5 man-6 man-7 man-8 man-9 man-10 \
+       man-1 man-2 man-3 man-4 man-5 man-6 man-7 man-8 man-9 man-10 man-11 \
        manconv-1 manconv-2 manconv-3 \
        mandb-1 mandb-2 mandb-3 mandb-4 mandb-5 mandb-6 mandb-7 \
        whatis-1 \
index 742f6b8..ca61c6e 100644 (file)
@@ -91,6 +91,7 @@ subdir = src/tests
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -1191,6 +1192,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@
@@ -1583,7 +1585,7 @@ TESTS_ENVIRONMENT = PATH=$(abs_builddir)/..:$$PATH; export PATH; \
 AM_LOG_FLAGS = $(SHELL)
 ALL_TESTS = \
        lexgrog-1 \
-       man-1 man-2 man-3 man-4 man-5 man-6 man-7 man-8 man-9 man-10 \
+       man-1 man-2 man-3 man-4 man-5 man-6 man-7 man-8 man-9 man-10 man-11 \
        manconv-1 manconv-2 manconv-3 \
        mandb-1 mandb-2 mandb-3 mandb-4 mandb-5 mandb-6 mandb-7 \
        whatis-1 \
@@ -1954,6 +1956,13 @@ man-10.log: man-10
        --log-file $$b.log --trs-file $$b.trs \
        $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
        "$$tst" $(AM_TESTS_FD_REDIRECT)
+man-11.log: man-11
+       @p='man-11'; \
+       b='man-11'; \
+       $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
+       --log-file $$b.log --trs-file $$b.trs \
+       $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
+       "$$tst" $(AM_TESTS_FD_REDIRECT)
 manconv-1.log: manconv-1
        @p='manconv-1'; \
        b='manconv-1'; \
index 8c8d619..33b67ec 100755 (executable)
@@ -21,8 +21,8 @@ mkdir -p "$tmpdir/usr/local/man/man1"
 ln -s ../../../share/man/man1/md5sum.textutils.1.gz \
        "$tmpdir/usr/local/man/man1/md5sum.1.gz"
 cat >"$tmpdir/1.exp" <<EOF
-$(pwd -P)/$tmpdir/usr/share/man/man1/md5sum.textutils.1.gz
-$(pwd -P)/$tmpdir/usr/share/man/man1/md5sum.1.gz
+$abstmpdir/usr/share/man/man1/md5sum.textutils.1.gz
+$abstmpdir/usr/share/man/man1/md5sum.1.gz
 EOF
 run $MAN -C "$tmpdir/manpath.config" -aw md5sum >"$tmpdir/1.out"
 expect_pass 'symlinks with matching names win' \
diff --git a/src/tests/man-11 b/src/tests/man-11
new file mode 100755 (executable)
index 0000000..a16e41c
--- /dev/null
@@ -0,0 +1,45 @@
+#!/bin/sh
+
+# Test for:
+#   man chmod.2 => man 2 chmod
+#   man chmod.2p => man 2p chmod
+
+: ${srcdir=.}
+. "$srcdir/testlib.sh"
+
+: ${MAN=man}
+
+init
+fake_config /usr/share/man
+MANPATH="$tmpdir/usr/share/man"
+export MANPATH
+
+page_name="chmod"
+
+write_page "$page_name" 1 "$tmpdir/usr/share/man/man1/${page_name}.1.gz" \
+        UTF-8 gz '' "$page_name \- coreutils $page_name manual page"
+write_page "$page_name" 2 "$tmpdir/usr/share/man/man2/${page_name}.2.gz" \
+        UTF-8 gz '' "$page_name \- $page_name() syscall manual page"
+
+cat >"$tmpdir/2.exp" <<EOF
+$abstmpdir/usr/share/man/man2/${page_name}.2.gz
+EOF
+
+run $MAN -C "$tmpdir/manpath.config" -aw "$page_name".2 >"$tmpdir/2.out"
+expect_pass '"man name.2" is the same as "man 2 name"' \
+        'diff -u "$tmpdir/2.exp" "$tmpdir/2.out"'
+
+(
+        cd "$tmpdir/usr/share/man/man2/"
+        mv "${page_name}.2.gz" "${page_name}.2p.gz"
+)
+
+cat >"$tmpdir/2p.exp" <<EOF
+$abstmpdir/usr/share/man/man2/${page_name}.2p.gz
+EOF
+
+run $MAN -C "$tmpdir/manpath.config" -aw "$page_name".2p >"$tmpdir/2p.out"
+expect_pass '"man name.2p" is the same as "man 2p name"' \
+        'diff -u "$tmpdir/2p.exp" "$tmpdir/2p.out"'
+
+finish
index c4e3561..d2bac98 100755 (executable)
@@ -31,8 +31,8 @@ write_page md5sum 3pm "$tmpdir/usr/share/man/man3/open.3pm.gz" \
 write_page md5sum 3p "$tmpdir/usr/share/man/man3p/open.3p.gz" \
        UTF-8 gz '' 'open \- section 3p'
 cat >"$tmpdir/1.exp" <<EOF
-$(pwd -P)/$tmpdir/usr/share/man/man3p/open.3p.gz
-$(pwd -P)/$tmpdir/usr/share/man/man3/open.3pm.gz
+$abstmpdir/usr/share/man/man3p/open.3p.gz
+$abstmpdir/usr/share/man/man3/open.3pm.gz
 EOF
 run $MAN -C "$tmpdir/manpath.config" -aw 3p open >"$tmpdir/1.out"
 expect_pass 'exact section matches win' \
index c8c6832..a729311 100755 (executable)
@@ -37,7 +37,7 @@ expect_pass 'wildcards: -M option: without wildcards: check missing man page' \
 run $MAN -C "$tmpdir/manpath.config" \
     -aw -M "${Mpath}" manx > "$tmpdir/1.out"
 cat > "$tmpdir/1.exp" <<EOF
-$(pwd -P)/$tmpdir/usr/share/man/man1/manx.1.gz
+$abstmpdir/usr/share/man/man1/manx.1.gz
 EOF
 expect_pass 'wildcards: -M option: without wildcards: check existing man page' \
     'diff -u "$tmpdir/1.exp" "$tmpdir/1.out"'
@@ -54,7 +54,7 @@ expect_pass 'wildcards: -M option: with wildcards: check missing man page' \
 run $MAN -C "$tmpdir/manpath.config" \
     -aw -M "${Mpath}" manpathx > "$tmpdir/1.out"
 cat > "$tmpdir/1.exp" <<EOF
-$(pwd -P)/$tmpdir/usr/share/prog/a/man/man1/manpathx.1.gz
+$abstmpdir/usr/share/prog/a/man/man1/manpathx.1.gz
 EOF
 expect_pass 'wildcards: -M option: with wildcards: check existing man page' \
     'diff -u "$tmpdir/1.exp" "$tmpdir/1.out"'
@@ -64,7 +64,7 @@ Mpath="$tmpdir/usr/share/prog/[ab]/man"
 run $MAN -C "$tmpdir/manpath.config" \
     -aw -M "${Mpath}" whatisx > "$tmpdir/1.out"
 cat > "$tmpdir/1.exp" <<EOF
-$(pwd -P)/$tmpdir/usr/share/prog/b/man/man1/whatisx.1.gz
+$abstmpdir/usr/share/prog/b/man/man1/whatisx.1.gz
 EOF
 expect_pass 'wildcards: -M option: with wildcards: check existing man page II' \
     'diff -u "$tmpdir/1.exp" "$tmpdir/1.out"'
@@ -86,7 +86,7 @@ expect_pass 'wildcards: MANPATH: without wildcards: check missing man page' \
 run $MAN -C "$tmpdir/manpath.config" \
     -aw manx > "$tmpdir/1.out"
 cat > "$tmpdir/1.exp" <<EOF
-$(pwd -P)/$tmpdir/usr/share/man/man1/manx.1.gz
+$abstmpdir/usr/share/man/man1/manx.1.gz
 EOF
 expect_pass 'wildcards: MANPATH: without wildcards: check existing man page' \
     'diff -u "$tmpdir/1.exp" "$tmpdir/1.out"'
@@ -104,7 +104,7 @@ expect_pass 'wildcards: MANPATH: with wildcards: check missing man page' \
 run $MAN -C "$tmpdir/manpath.config" \
     -aw manpathx > "$tmpdir/1.out"
 cat > "$tmpdir/1.exp" <<EOF
-$(pwd -P)/$tmpdir/usr/share/prog/a/man/man1/manpathx.1.gz
+$abstmpdir/usr/share/prog/a/man/man1/manpathx.1.gz
 EOF
 expect_pass 'wildcards: MANPATH: with wildcards: check existing man page' \
     'diff -u "$tmpdir/1.exp" "$tmpdir/1.out"'
@@ -115,7 +115,7 @@ export MANPATH
 run $MAN -C "$tmpdir/manpath.config" \
     -aw whatisx > "$tmpdir/1.out"
 cat > "$tmpdir/1.exp" <<EOF
-$(pwd -P)/$tmpdir/usr/share/prog/b/man/man1/whatisx.1.gz
+$abstmpdir/usr/share/prog/b/man/man1/whatisx.1.gz
 EOF
 expect_pass 'wildcards: MANPATH: with wildcards: check existing man page II' \
     'diff -u "$tmpdir/1.exp" "$tmpdir/1.out"'
@@ -138,7 +138,7 @@ expect_pass 'wildcards: MANDATORY_MANPATH: without wildcards: check missing man
 run $MAN -C "$tmpdir/manpath.config" \
     -aw manx > "$tmpdir/1.out"
 cat > "$tmpdir/1.exp" <<EOF
-$(pwd -P)/$tmpdir/usr/share/man/man1/manx.1.gz
+$abstmpdir/usr/share/man/man1/manx.1.gz
 EOF
 expect_pass 'wildcards: MANDATORY_MANPATH: without wildcards: check existing man page' \
     'diff -u "$tmpdir/1.exp" "$tmpdir/1.out"'
@@ -155,7 +155,7 @@ expect_pass 'wildcards: MANDATORY_MANPATH: with wildcards: check missing man pag
 run $MAN -C "$tmpdir/manpath.config" \
     -aw manpathx > "$tmpdir/1.out"
 cat > "$tmpdir/1.exp" <<EOF
-$(pwd -P)/$tmpdir/usr/share/prog/a/man/man1/manpathx.1.gz
+$abstmpdir/usr/share/prog/a/man/man1/manpathx.1.gz
 EOF
 expect_pass 'wildcards: MANDATORY_MANPATH: with wildcards: check existing man page' \
     'diff -u "$tmpdir/1.exp" "$tmpdir/1.out"'
@@ -165,7 +165,7 @@ fake_config "/usr/share/prog/[ab]/man"
 run $MAN -C "$tmpdir/manpath.config" \
     -aw whatisx > "$tmpdir/1.out"
 cat > "$tmpdir/1.exp" <<EOF
-$(pwd -P)/$tmpdir/usr/share/prog/b/man/man1/whatisx.1.gz
+$abstmpdir/usr/share/prog/b/man/man1/whatisx.1.gz
 EOF
 expect_pass 'wildcards: MANDATORY_MANPATH: with wildcards: check existing man page II' \
     'diff -u "$tmpdir/1.exp" "$tmpdir/1.out"'
index 017b695..32eddaa 100755 (executable)
@@ -18,7 +18,7 @@ cat >"$tmpdir/fake-program" <<EOF
 exec cat
 EOF
 chmod +x "$tmpdir/fake-program"
-PATH="$(pwd -P)/$tmpdir:$PATH"
+PATH="$abstmpdir:$PATH"
 export PATH
 
 cat >>"$tmpdir/manpath.config" <<EOF
index 896a354..e994fd2 100755 (executable)
@@ -17,7 +17,7 @@ cat >"$tmpdir/fake-program" <<EOF
 exec cat
 EOF
 chmod +x "$tmpdir/fake-program"
-PATH="$(pwd -P)/$tmpdir:$PATH"
+PATH="$abstmpdir:$PATH"
 export PATH
 
 cat >>"$tmpdir/manpath.config" <<EOF
index 9d3eda1..4dc0331 100755 (executable)
@@ -18,6 +18,8 @@ fi
 init
 fake_config /usr/share/man
 mkdir -p "${tmpdir}/usr/share/man/${OVERRIDE}/man1"
+MANPATH="$tmpdir/usr/share/man"
+export MANPATH
 
 
 write_page abc 1 "${tmpdir}/usr/share/man/man1/abc.1" \
@@ -27,12 +29,12 @@ write_page abc 1 "${tmpdir}/usr/share/man/${OVERRIDE}/man1/abc.1" \
 
 if [ -n "$OVERRIDE_DIR" ]; then
 cat >"$tmpdir/1.exp" <<EOF
-$(pwd -P)/${tmpdir}/usr/share/man/${OVERRIDE}/man1/abc.1
-$(pwd -P)/${tmpdir}/usr/share/man/man1/abc.1
+$abstmpdir/usr/share/man/${OVERRIDE}/man1/abc.1
+$abstmpdir/usr/share/man/man1/abc.1
 EOF
 else
 cat >"$tmpdir/1.exp" <<EOF
-$(pwd -P)/${tmpdir}/usr/share/man/man1/abc.1
+$abstmpdir/usr/share/man/man1/abc.1
 EOF
 fi
 
index fb86156..657c8e0 100755 (executable)
@@ -12,7 +12,6 @@ fake_config /usr/share/man
 mkdir -p "$tmpdir/usr/share/man"
 mkdir -p "$tmpdir/usr/dir/man"
 mkdir -p "$tmpdir/var/cache/man"
-abstmpdir="$(pwd -P)/$tmpdir"
 echo "MANDATORY_MANPATH        $abstmpdir/usr/share/man" > "$tmpdir/manpath.config"
 echo "MANDATORY_MANPATH        $abstmpdir/usr/dir/man" >> "$tmpdir/manpath.config"
 echo "MANDB_MAP $abstmpdir/usr/share/man $abstmpdir/var/cache/man" >> "$tmpdir/manpath.config"
index d8fbc6c..f23df4b 100644 (file)
@@ -8,10 +8,20 @@ MAN_TEST_DISABLE_SYSTEM_CONFIG=1
 export MAN_TEST_DISABLE_SYSTEM_CONFIG
 
 init () {
-       tmpdir="tmp-${0##*/}"
-       mkdir -p "$tmpdir" || exit $?
+       # Create a temporary directory in /tmp or ./ ,
+       # put path to it into $tmpdir and $abstmpdir,
+       # remove it on exit.
+       {
+               tmpdir=$(mktemp -d) &&
+               abstmpdir="$tmpdir" &&
+               test -d "$tmpdir"
+       } || {
+               tmpdir="tmp-${0##*/}"
+               abstmpdir="$(pwd -P)/$tmpdir"
+               mkdir "$tmpdir"
+       } ||
+               exit $?
        trap 'rm -rf "$tmpdir"' HUP INT QUIT TERM
-       abstmpdir="$(pwd -P)/$tmpdir"
 }
 
 run () {
index 686ad2b..5542140 100755 (executable)
@@ -18,7 +18,7 @@ cat >"$tmpdir/fake-program" <<EOF
 exec cat
 EOF
 chmod +x "$tmpdir/fake-program"
-PATH="$(pwd -P)/$tmpdir:$PATH"
+PATH="$abstmpdir:$PATH"
 export PATH
 
 cat >>"$tmpdir/manpath.config" <<EOF
index 39aa093..4cf14a5 100644 (file)
@@ -476,8 +476,8 @@ out:
 }
 
 /* lookup the page and display the results */
-static inline int do_whatis_section (MYDBM_FILE dbf,
-                                    const char *page, const char *section)
+static int do_whatis_section (MYDBM_FILE dbf,
+                             const char *page, const char *section)
 {
        struct mandata *info;
        int count = 0;
index 51b4bbc..bbd52d3 100644 (file)
@@ -92,6 +92,7 @@ subdir = tools
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/man-arg-automatic-create.m4 \
        $(top_srcdir)/m4/man-arg-automatic-update.m4 \
+       $(top_srcdir)/m4/man-arg-cache-owner.m4 \
        $(top_srcdir)/m4/man-arg-cats.m4 \
        $(top_srcdir)/m4/man-arg-config-file.m4 \
        $(top_srcdir)/m4/man-arg-db.m4 \
@@ -939,6 +940,7 @@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
 LTLIBOBJS = @LTLIBOBJS@
 LTLIBPTH = @LTLIBPTH@
 LTLIBTHREAD = @LTLIBTHREAD@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDIR_LAYOUT = @MANDIR_LAYOUT@