config~2.in

来自「一百个病毒的源代码 包括熊猫烧香等 极其具有研究价值」· IN 代码 · 共 57 行

IN
57
字号
dnl Process this file with autoconf to produce a configure script.AC_INIT(bk2site.C)AM_INIT_AUTOMAKE(bk2site, 1.1.6)AC_PROG_MAKE_SETdnl support libtool configure flagsAM_CONFIG_HEADER(config.h)AC_LANG_CPLUSPLUSdnl Checks for programs.AC_PROG_CXXAC_PROG_INSTALLdnl Checks for libraries.dnl Checks for header files.AC_CHECK_HEADERS(sys/time.h)dnl Checks for typedefs, structures, and compiler characteristics.dnl This check failed with the new g++ compiler (rehat 6.1), Im assumingdnl everyone has const.dnl AC_C_CONSTAC_HEADER_TIMEdnl Checks for library functions. I got these from the configure.in for wget.AC_HEADER_STDCAC_CHECK_FUNCS(gettimeofday mkdir)AC_CHECK_FUNCS(gethostbyname, [], [  AC_CHECK_LIB(nsl, gethostbyname)])dnldnl Checks for libraries.dnlAC_CHECK_LIB(socket, socket)dnl #### This appears to be deficient with later versions of SOCKS.if test "x${with_socks}" = xyesthen  AC_CHECK_LIB(resolv, main)  AC_CHECK_LIB(socks, Rconnect)fiAC_ARG_ENABLE(standard-datadir,[  --enable-standard-datadir    use PREFIX/share/bk2site/ for dot.bk2siterc],[case "${enableval}" in       yes) standard_datadir=true ;;       no)  standard_datadir=false ;;       *) AC_MSG_ERROR(bad value ${enableval} for --enable-standard-datadir) ;;     esac],[standard_datadir=false])AM_CONDITIONAL(STD_DATADIR, test x$standard_datadir = xtrue)AC_OUTPUT(Makefile)

⌨️ 快捷键说明

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