diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-04-16 11:33:53 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-04-16 11:33:53 +0100 |
commit | c24b58e2ee8691870736959deb252c225b205b4d (patch) | |
tree | 46fd37e63de346a2e221fa42a45010a040028ec7 /configure.ac | |
parent | 9e537c808b95e01165f1c2831b3737b93c0110c3 (diff) | |
download | rtmux-c24b58e2ee8691870736959deb252c225b205b4d.tar.gz rtmux-c24b58e2ee8691870736959deb252c225b205b4d.tar.bz2 rtmux-c24b58e2ee8691870736959deb252c225b205b4d.zip |
Generate tmux.1 using mdoc2man.awk on Solaris, issue brought up and changes
tested by Dagobert Michelsen.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index f00937f0..b4f76f5f 100644 --- a/configure.ac +++ b/configure.ac @@ -416,6 +416,10 @@ else AC_MSG_RESULT(no) fi +# Man page defaults to mdoc. +MANFORMAT=mdoc +AC_SUBST(MANFORMAT) + # Figure out the platform for osdep-*.c and forkpty-*.c. AC_MSG_CHECKING(platform) case "$host_os" in @@ -455,6 +459,7 @@ case "$host_os" in *solaris*) AC_MSG_RESULT(sunos) PLATFORM=sunos + MANFORMAT=man ;; *hpux*) AC_MSG_RESULT(hpux) |