cups/config-scripts/cups-manpages.m4

29 lines
814 B
Plaintext
Raw Permalink Normal View History

2022-05-13 20:08:20 +08:00
dnl
dnl Manpage stuff for CUPS.
dnl
2023-10-26 10:19:35 +08:00
dnl Copyright © 2021-2023 by OpenPrinting.
2022-05-13 20:08:20 +08:00
dnl Copyright © 2007-2019 by Apple Inc.
dnl Copyright © 1997-2006 by Easy Software Products, all rights reserved.
dnl
dnl Licensed under Apache License v2.0. See the file "LICENSE" for more
dnl information.
dnl
dnl Fix "mandir" variable...
2023-01-11 16:57:48 +08:00
AS_IF([test "$mandir" = "\${datarootdir}/man" -a "$prefix" = "/"], [
# New GNU "standards" break previous ones, so make sure we use
# the right default location for the operating system...
mandir="\${prefix}/man"
])
2022-05-13 20:08:20 +08:00
2023-01-11 16:57:48 +08:00
AS_IF([test "$mandir" = "\${prefix}/man" -a "$prefix" = "/"], [
AS_CASE(["$host_os_name"], [darwin* | linux* | gnu* | *bsd*], [
# Darwin, macOS, Linux, GNU HURD, and *BSD
mandir="/usr/share/man"
], [*], [
# All others
mandir="/usr/man"
])
])