configure.in
来自「This library provides a C++ interface to」· IN 代码 · 共 103 行
IN
103 行
AC_INIT(libxml++/libxml++.h)#release versioningGENERIC_MAJOR_VERSION=1GENERIC_MINOR_VERSION=0GENERIC_MICRO_VERSION=5GENERIC_VERSION=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION.$GENERIC_MICRO_VERSIONAC_SUBST(GENERIC_MAJOR_VERSION)AC_SUBST(GENERIC_MINOR_VERSION)AC_SUBST(GENERIC_VERSION)#shared library versioningGENERIC_LIBRARY_VERSION=1:4:0# | | |# +------+ | +---+# | | |# current:revision:age# | | |# | | +- increment if interfaces have been added# | | set to zero if interfaces have been removed# or changed# | +- increment if source code has changed# | set to zero if current is incremented# +- increment if interfaces have been added, removed or changedAC_SUBST(GENERIC_LIBRARY_VERSION)VERSION=$GENERIC_VERSIONAM_INIT_AUTOMAKE(libxml++, $GENERIC_VERSION)AC_PROG_CXXAC_PROG_CXXCPPAC_LANG_CPLUSPLUSAC_PROG_INSTALLAC_CANONICAL_HOSTAC_MSG_CHECKING([for Win32 Platform])case "$host" in *-*-mingw*|*-*-cygwin*) platform_win32=yes WIN32_LDFLAGS=-no-undefined WIN32_LIBADD=-lstdc++ ;; *) platform_win32=no WIN32_LDFLAGS= WIN32_LIBADD= ;;esacAC_SUBST(WIN32_LDFLAGS)AC_SUBST(WIN32_LIBADD)AC_MSG_RESULT([$platform_win32])AC_LIBTOOL_WIN32_DLLAM_PROG_LIBTOOLAC_CHECK_HEADERS(string list map, , exit)PKG_CHECK_MODULES(LIBXML, libxml-2.0 >= 2.5.8)# Dummy conditional just to make automake-1.4 happy.# We need an always-false condition in docs/Makefile.am.AM_CONDITIONAL(LIBXMLCPP_FALSE,[false])AC_OUTPUT( Makefile libxml++/Makefile libxml++/parsers/Makefile libxml++/exceptions/Makefile libxml++/nodes/Makefile libxml++/io/Makefile docs/Makefile docs/reference/Makefile docs/reference/Doxyfile examples/Makefile examples/dom_build/Makefile examples/dom_parser/Makefile examples/dom_parse_entities/Makefile examples/dom_read_write/Makefile examples/dom_xpath/Makefile examples/sax_parser/Makefile examples/sax_parser_entities/Makefile examples/sax_parser_build_dom/Makefile examples/sax_exception/Makefile examples/import_node/Makefile win32_msvc6/Makefile win32_msvc6/examples/Makefile libxml++-1.0.pc libxml++.spec)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?