mirror of
https://github.com/tmux/tmux.git
synced 2025-01-12 03:08:46 +00:00
Solaris 11.4 and later prefers mdoc, from Alan Coopersmith.
This commit is contained in:
parent
ead6d652ff
commit
ffebf00585
11
configure.ac
11
configure.ac
@ -610,7 +610,16 @@ case "$host_os" in
|
|||||||
*solaris*)
|
*solaris*)
|
||||||
AC_MSG_RESULT(sunos)
|
AC_MSG_RESULT(sunos)
|
||||||
PLATFORM=sunos
|
PLATFORM=sunos
|
||||||
MANFORMAT=man
|
case `/usr/bin/nroff --version 2>&1` in
|
||||||
|
*GNU*)
|
||||||
|
# Solaris 11.4 and later use GNU groff.
|
||||||
|
MANFORMAT=mdoc
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
# Solaris 2.0 to 11.3 use AT&T nroff.
|
||||||
|
MANFORMAT=man
|
||||||
|
;;
|
||||||
|
esac
|
||||||
;;
|
;;
|
||||||
*hpux*)
|
*hpux*)
|
||||||
AC_MSG_RESULT(hpux)
|
AC_MSG_RESULT(hpux)
|
||||||
|
Loading…
Reference in New Issue
Block a user