⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configure.ac

📁 数字电视广播系统mpeg-2的ts流的解复用和分析软件
💻 AC
字号:
AC_INIT(src/dvbpsi.c)AC_PREREQ(2.50)AC_CONFIG_AUX_DIR(autotools)AC_CANONICAL_SYSTEMAM_INIT_AUTOMAKE(libdvbpsi3, 0.1.4)AM_CONFIG_HEADER(config.h)#AC_CANONICAL_HOSTAC_PROG_CCAC_STDC_HEADERSAM_PROG_LIBTOOLdnl default CFLAGSCFLAGS="-Wall -DDVBPSI_DIST"dnl check the operating systemcase x"${target_os}" in  xdarwin*)    CFLAGS="${CFLAGS} -no-cpp-precomp"    ;;esacdnl --enable-debugAC_ARG_ENABLE(debug,[  --enable-debug          Enable debug mode (default disabled)],[case "${enableval}" in  yes) debug=true ;;  no)  debug=false ;;  *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;esac],[debug=false])if test x$debug = xtruethen  CFLAGS="${CFLAGS} -DDEBUG -g"fidnl --enable-releaseAC_ARG_ENABLE(release,[  --enable-release        Enable release mode (default disabled)],[case "${enableval}" in  yes) release=true ;;  no)  release=false ;;  *) AC_MSG_ERROR(bad value ${enableval} for --enable-release) ;;esac],[release=false])if test x$release = xtruethen  CFLAGS="${CFLAGS} -O6"else  CFLAGS="${CFLAGS} -O2"fidnl Check for headersAC_CHECK_HEADERS(stdint.h inttypes.h)AC_OUTPUT([Makefile src/Makefile examples/Makefile misc/Makefile doc/Makefile debian/Makefile])echo "libdvbpsi configuration-----------------------libdvbpsi version     : ${VERSION}debug                 : ${debug}release               : ${release}"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -