From: Daniel Stenberg Date: Mon, 2 Feb 2004 22:39:04 +0000 (+0000) Subject: try to figure out if -man or -mandoc works to get text with the NROFF X-Git-Tag: upstream/7.37.1~13587 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=37685848d1b0ef78043f6f725dc69e662ee4c691;p=platform%2Fupstream%2Fcurl.git try to figure out if -man or -mandoc works to get text with the NROFF utility --- diff --git a/configure.ac b/configure.ac index 6b4059e..83e3070 100644 --- a/configure.ac +++ b/configure.ac @@ -991,6 +991,24 @@ AC_PATH_PROGS( NROFF, gnroff nroff, , $PATH:/usr/bin/:/usr/local/bin ) AC_SUBST(NROFF) +AC_MSG_CHECKING([how to use *nroff to get plain text from man pages]) +MANOPT="-man" +mancheck=`echo foo | $NROFF $MANOPT 2>/dev/null` +if test -z "$mancheck"; then + MANOPT="-mandoc" + mancheck=`echo foo | $NROFF $MANOPT 2>/dev/null` + if test -z "$mancheck"; then + MANOPT="" + AC_MSG_RESULT([failed]) + AC_MSG_WARN([found no *nroff option to get plaintext from man pages]) + else + AC_MSG_RESULT([$MANOPT]) + fi +else + AC_MSG_RESULT([$MANOPT]) +fi +AC_SUBST(MANOPT) + AC_PROG_YACC dnl AC_PATH_PROG( RANLIB, ranlib, /usr/bin/ranlib,