gnome-doc-utils.m4
上传用户:ledjyj
上传日期:2014-08-27
资源大小:2639k
文件大小:1k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. dnl GNOME_DOC_INIT([MINIMUM-VERSION])
  2. AC_DEFUN([GNOME_DOC_INIT],
  3. [
  4. dnl Only apply the version check if we're not configuring ourselves!
  5. if test "x$PACKAGE" != "xgnome-doc-utils"; then
  6.   GDU_REQUIRED_VERSION=0.3.2
  7.   if test -n "$1"; then
  8.     GDU_REQUIRED_VERSION=$1
  9.   fi
  10.   PKG_CHECK_MODULES([GDU_MODULE_VERSION_CHECK],[gnome-doc-utils >= $GDU_REQUIRED_VERSION])
  11. fi
  12. AC_ARG_WITH([help-dir],
  13.   AC_HELP_STRING([--with-help-dir=DIR], [path to help docs]),,
  14.   [with_help_dir='${datadir}/gnome/help'])
  15. HELP_DIR="$with_help_dir"
  16. AC_SUBST(HELP_DIR)
  17. AC_ARG_WITH([omf-dir],
  18.   AC_HELP_STRING([--with-omf-dir=DIR], [path to OMF files]),,
  19.   [with_omf_dir='${datadir}/omf'])
  20. OMF_DIR="$with_omf_dir"
  21. AC_SUBST(OMF_DIR)
  22. AC_ARG_WITH([help-formats],
  23.   AC_HELP_STRING([--with-help-formats=FORMATS], [list of formats]),,
  24.   [with_help_formats=''])
  25. DOC_USER_FORMATS="$with_help_formats"
  26. AC_SUBST(DOC_USER_FORMATS)
  27. AC_ARG_ENABLE([scrollkeeper],
  28. [AC_HELP_STRING([--disable-scrollkeeper],
  29. [do not make updates to the scrollkeeper database])],,
  30. enable_scrollkeeper=yes)
  31. AM_CONDITIONAL(ENABLE_SK, test "x$enable_scrollkeeper" = "xyes")
  32. ])