📄 configure.ac.svn-base
字号:
AC_PREREQ(2.53)AC_INIT(Agobot3, 0.2.1)AM_INIT_AUTOMAKEAM_CONFIG_HEADER(autoconf.h)AC_ARG_ENABLE(debug,[ --enable-debug Turn on debugging],[case "${enableval}" in yes) debug=true ;; no) debug=false ;; *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;esac],[debug=false])AM_CONDITIONAL(DEBUG, test x$debug = xtrue)# Checks for programs.AC_PROG_CXXAC_PROG_CCAC_PROG_RANLIB# Checks for header files.AC_HEADER_STDCAC_CHECK_HEADERS([arpa/inet.h fcntl.h malloc.h netdb.h netinet/in.h stddef.h stdlib.h string.h sys/ioctl.h sys/socket.h sys/time.h unistd.h])# Checks for typedefs, structures, and compiler characteristics.AC_C_CONSTAC_C_INLINEAC_TYPE_PID_TAC_TYPE_SIZE_TAC_HEADER_TIMEAC_STRUCT_TMAC_C_VOLATILE# Checks for library functions.AC_FUNC_FORKAC_PROG_GCC_TRADITIONALAC_FUNC_MALLOCAC_FUNC_MEMCMPAC_FUNC_SELECT_ARGTYPESAC_TYPE_SIGNALAC_FUNC_STRFTIMEAC_FUNC_VPRINTFAC_CHECK_FUNCS([gethostbyaddr gethostbyname gethostname gettimeofday inet_ntoa memset select socket strchr strdup strerror strstr])#AC_CONFIG_FILES([Makefile ftplib/Makefile md5/Makefile])AC_OUTPUT([Makefile ftplib/Makefile md5/Makefile])
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -