We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ead6d65 commit ffebf00Copy full SHA for ffebf00
configure.ac
@@ -610,7 +610,16 @@ case "$host_os" in
610
*solaris*)
611
AC_MSG_RESULT(sunos)
612
PLATFORM=sunos
613
- MANFORMAT=man
+ case `/usr/bin/nroff --version 2>&1` in
614
+ *GNU*)
615
+ # Solaris 11.4 and later use GNU groff.
616
+ MANFORMAT=mdoc
617
+ ;;
618
+ *)
619
+ # Solaris 2.0 to 11.3 use AT&T nroff.
620
+ MANFORMAT=man
621
622
+ esac
623
;;
624
*hpux*)
625
AC_MSG_RESULT(hpux)
0 commit comments