代码拉取完成,页面将自动刷新
dnl Indicate the package name and the version to automake
AC_INIT([libserial], [1.0.0])
dnl Indicate the configuration revision number
AC_REVISION($Revision: 1.15 $)
dnl Input and Output configuration information
AC_CONFIG_SRCDIR([src/SerialStream.cpp])
AM_CONFIG_HEADER(config.h)
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE
AM_MAINTAINER_MODE
dnl Checks for programs.
AC_PROG_AWK
AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_LIBTOOL
AC_PROG_LN_S
AC_PROG_MAKE_SET
dnl LibSerial now requires at least C++14 features in the compiler.
AX_CXX_COMPILE_STDCXX(14, noext, mandatory)
AC_CHECK_PROG(DOCBOOK2PDF, docbook2pdf, docbook2pdf, no)
if test "x$DOCBOOK2PDF" == "xno"; then
AC_MSG_WARN([Could not find docbook2pdf. Disabling creation of user manual.])
HAVE_DOCBOOK2PDF="no"
else
HAVE_DOCBOOK2PDF="yes"
fi
AC_SUBST(DOCBOOK2PDF)
AM_CONDITIONAL(HAVE_DOCBOOK2PDF, test x$HAVE_DOCBOOK2PDF = xyes)
dnl Checks for header files.
AC_CHECK_HEADERS(fcntl.h unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_INLINE
AC_ARG_WITH([python3],
AS_HELP_STRING([--without-python3], [Disable Python bindings]),
[], [with_python3=yes])
AM_CONDITIONAL([PYTHON], [test "${with_python3}" != "no"])
AC_ARG_ENABLE([tests],
AS_HELP_STRING([--disable-tests], [Disable tests]),
[], [enable_tests=yes])
AM_CONDITIONAL([TESTS], [test "${enable_tests}" != "no"])
AC_OUTPUT([Makefile
doxygen.conf
libserial.spec
docs/UML/Makefile
docs/Makefile
examples/Makefile
sip/configure.py
sip/Makefile
src/Makefile
src/libserial/Makefile
test/Makefile
libserial.pc])
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。