/[groff]/groff/configure
ViewVC logotype

Diff of /groff/configure

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.67 by wl, Wed May 18 07:03:06 2005 UTC revision 1.68 by wl, Thu Oct 27 21:30:30 2005 UTC
# Line 540  ac_includes_default="\ Line 540  ac_includes_default="\
540  # include <unistd.h>  # include <unistd.h>
541  #endif"  #endif"
542    
543  ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CXX CXXFLAGS ac_ct_CXX TTYDEVDIRS OTHERDEVDIRS CPP X_CFLAGS X_PRE_LIBS X_LIBS X_EXTRA_LIBS XDEVDIRS XPROGDIRS XLIBDIRS appresdir LPR LP LPQ PSPRINT DVIPRINT PERLPATH YACC RANLIB ac_ct_RANLIB INSTALL_INFO INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA LN_S SH_SCRIPT_SED_CMD GREP EGREP LIBC LIBM LIBOBJS BROKEN_SPOOLER_FLAGS PAGE g sys_tmac_prefix tmac_wrap GROFF_PATH_SEPARATOR ALT_GHOSTSCRIPT_PROGS GHOSTSCRIPT ac_ct_GHOSTSCRIPT pnmcut pnmcrop pnmtopng psselect pnmtops make_html make_install_html ALT_AWK_PROGS AWK ac_ct_AWK make_pdfdoc make_install_pdfdoc pnmtops_nosetpage LTLIBOBJS'  ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CXX CXXFLAGS ac_ct_CXX TTYDEVDIRS OTHERDEVDIRS CPP X_CFLAGS X_PRE_LIBS X_LIBS X_EXTRA_LIBS XDEVDIRS XPROGDIRS XLIBDIRS appresdir LPR LP LPQ PSPRINT DVIPRINT PERLPATH YACC MAKEINFO RANLIB ac_ct_RANLIB INSTALL_INFO INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA LN_S SH_SCRIPT_SED_CMD GREP EGREP LIBC LIBM LIBOBJS BROKEN_SPOOLER_FLAGS PAGE g sys_tmac_prefix tmac_wrap GROFF_PATH_SEPARATOR ALT_GHOSTSCRIPT_PROGS GHOSTSCRIPT ac_ct_GHOSTSCRIPT pnmcut pnmcrop pnmtopng psselect pnmtops make_html make_install_html ALT_AWK_PROGS AWK ac_ct_AWK make_pdfdoc make_install_pdfdoc pnmtops_nosetpage LTLIBOBJS'
544  ac_subst_files=''  ac_subst_files=''
545    
546  # Initialize some variables set by options.  # Initialize some variables set by options.
# Line 5464  fi Line 5464  fi
5464  done  done
5465  test -n "$YACC" || YACC="yacc"  test -n "$YACC" || YACC="yacc"
5466    
5467    missing=
5468       # Extract the first word of "makeinfo", so it can be a program name with args.
5469    set dummy makeinfo; ac_word=$2
5470    echo "$as_me:$LINENO: checking for $ac_word" >&5
5471    echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
5472    if test "${ac_cv_prog_MAKEINFO+set}" = set; then
5473      echo $ECHO_N "(cached) $ECHO_C" >&6
5474    else
5475      if test -n "$MAKEINFO"; then
5476      ac_cv_prog_MAKEINFO="$MAKEINFO" # Let the user override the test.
5477    else
5478    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5479    for as_dir in $PATH
5480    do
5481      IFS=$as_save_IFS
5482      test -z "$as_dir" && as_dir=.
5483      for ac_exec_ext in '' $ac_executable_extensions; do
5484      if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5485        ac_cv_prog_MAKEINFO="makeinfo"
5486        echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5487        break 2
5488      fi
5489    done
5490    done
5491    
5492    fi
5493    fi
5494    MAKEINFO=$ac_cv_prog_MAKEINFO
5495    if test -n "$MAKEINFO"; then
5496      echo "$as_me:$LINENO: result: $MAKEINFO" >&5
5497    echo "${ECHO_T}$MAKEINFO" >&6
5498    else
5499      echo "$as_me:$LINENO: result: no" >&5
5500    echo "${ECHO_T}no" >&6
5501    fi
5502    
5503       if test -z "$MAKEINFO"; then
5504         missing="\`makeinfo' is missing."
5505       else
5506         # We need an additional level of quoting to make sed's regexps work.
5507         makeinfo_version=`$MAKEINFO --version 2>&1 \
5508           | sed '1 {s/^.* \([^ ]\+\)$/\1/;q}'`
5509         # Consider only the first two numbers in version number string.
5510         makeinfo_version_major=`echo $makeinfo_version \
5511           | sed 's/^\([0-9]*\).*$/\1/'`
5512         if test -z "$makeinfo_version_major"; then
5513           makeinfo_version_major=0
5514           makeinfo_version_minor=0
5515         else
5516           makeinfo_version_minor=`echo $makeinfo_version \
5517             | sed 's/^[^.]\+\(.*\)$/\1/'`
5518           # No minor version number at all?
5519           if test -z "$makeinfo_version_minor"; then
5520             makeinfo_version_minor=0
5521           else
5522             makeinfo_version_minor=`echo $makeinfo_version_minor \
5523               | sed 's/\.\([0-9]*\).*$/\1/'`
5524             if test -z "$makeinfo_version_minor"; then
5525               makeinfo_version_minor=0
5526             fi
5527           fi
5528         fi
5529       fi
5530       makeinfo_version_numeric=`expr $makeinfo_version_major '*' 1000 \
5531                                      '+' $makeinfo_version_minor`
5532       if test $makeinfo_version_numeric -lt 4008; then
5533         missing="\`makeinfo' is too old."
5534       fi
5535    
5536       if test -n "$missing"; then
5537         if test ! -f doc/groff \
5538            || test ${srcdir}/doc/groff.texinfo -nt doc/groff; then
5539           { { echo "$as_me:$LINENO: error: $missing
5540    Get the \`texinfo' package version 4.8 or newer." >&5
5541    echo "$as_me: error: $missing
5542    Get the \`texinfo' package version 4.8 or newer." >&2;}
5543       { (exit 1); exit 1; }; }
5544         else
5545           { echo "$as_me:$LINENO: WARNING: $missing
5546    Get the \`texinfo' package version 4.8 or newer if you want to convert
5547    \`groff.texinfo' into a PDF or HTML document." >&5
5548    echo "$as_me: WARNING: $missing
5549    Get the \`texinfo' package version 4.8 or newer if you want to convert
5550    \`groff.texinfo' into a PDF or HTML document." >&2;}
5551         fi
5552       fi
5553    
5554  if test -n "$ac_tool_prefix"; then  if test -n "$ac_tool_prefix"; then
5555    # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.    # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
5556  set dummy ${ac_tool_prefix}ranlib; ac_word=$2  set dummy ${ac_tool_prefix}ranlib; ac_word=$2
# Line 11093  s,@PSPRINT@,$PSPRINT,;t t Line 11180  s,@PSPRINT@,$PSPRINT,;t t
11180  s,@DVIPRINT@,$DVIPRINT,;t t  s,@DVIPRINT@,$DVIPRINT,;t t
11181  s,@PERLPATH@,$PERLPATH,;t t  s,@PERLPATH@,$PERLPATH,;t t
11182  s,@YACC@,$YACC,;t t  s,@YACC@,$YACC,;t t
11183    s,@MAKEINFO@,$MAKEINFO,;t t
11184  s,@RANLIB@,$RANLIB,;t t  s,@RANLIB@,$RANLIB,;t t
11185  s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t  s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
11186  s,@INSTALL_INFO@,$INSTALL_INFO,;t t  s,@INSTALL_INFO@,$INSTALL_INFO,;t t

Legend:
Removed from v.1.67  
changed lines
  Added in v.1.68

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26