1dnl 2dnl Manpage stuff for CUPS. 3dnl 4dnl Copyright © 2007-2019 by Apple Inc. 5dnl Copyright © 1997-2006 by Easy Software Products, all rights reserved. 6dnl 7dnl Licensed under Apache License v2.0. See the file "LICENSE" for more 8dnl information. 9dnl 10 11dnl Fix "mandir" variable... 12if test "$mandir" = "\${datarootdir}/man" -a "$prefix" = "/"; then 13 # New GNU "standards" break previous ones, so make sure we use 14 # the right default location for the operating system... 15 mandir="\${prefix}/man" 16fi 17 18if test "$mandir" = "\${prefix}/man" -a "$prefix" = "/"; then 19 case "$host_os_name" in 20 darwin* | linux* | gnu* | *bsd*) 21 # Darwin, macOS, Linux, GNU HURD, and *BSD 22 mandir="/usr/share/man" 23 ;; 24 *) 25 # All others 26 mandir="/usr/man" 27 ;; 28 esac 29fi 30