📄 configure.ac
字号:
# -*- Autoconf -*-# Process this file with autoconf to produce a configure script.AC_PREREQ(2.59)AC_INIT(libdatrie, 0.1.1, thep@linux.thai.net)AC_CONFIG_SRCDIR([datrie/trie.h])AC_CONFIG_HEADER([config.h])AM_INIT_AUTOMAKE# Checks for programs.AC_PROG_CCAC_PROG_LIBTOOL# Checks for libraries.# Checks for header files.AC_HEADER_STDCAC_CHECK_HEADERS([limits.h stdlib.h stdio.h string.h])# Checks for typedefs, structures, and compiler characteristics.AC_C_CONSTAC_TYPE_SIZE_Tdnl Disable doc generation with doxygen optionAC_ARG_ENABLE(doxygen-doc, [AC_HELP_STRING([--disable-doxygen-doc], [disable document generation with doxygen])], , enable_doxygen_doc="yes")if test "x$enable_doxygen_doc" = "xyes"; then AC_CHECK_PROG(DOXYGEN,doxygen,doxygen,no) if test "x$DOXYGEN" = "xno"; then enable_doxygen_doc="no" fifidnl where to install the doxygen-generated HTML docAC_ARG_WITH(html-docdir, [AC_HELP_STRING([--with-html-docdir=DIR], [where to install the doxyten-generated HTML doc [PREFIX/share/doc/datrie/html]])], [htmldocdir="$withval"], [htmldocdir=\$\{prefix\}/share/doc/datrie/html])AC_SUBST(htmldocdir)AM_CONDITIONAL(ENABLE_DOXYGEN_DOC,test "x$enable_doxygen_doc" = "xyes")# Checks for library functions.AC_FUNC_MALLOCAC_CONFIG_FILES([Makefile datrie.pc datrie/Makefile tools/Makefile doc/Makefile doc/Doxyfile])AC_OUTPUT
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -