📄 configure.ac
字号:
# -*- Autoconf -*-# Process this file with autoconf to produce a configure script.AC_PREREQ(2.59)AC_INIT(ga-nn-ag, 5.5-6, BUG-REPORT-ADDRESS)AM_INIT_AUTOMAKEAC_CONFIG_SRCDIR([load_input.c])AC_CONFIG_HEADER([config.h])# Checks for programs.AC_PROG_CC# Checks for libraries.# FIXME: Replace `main' with a function in `-lm':AC_CHECK_LIB([m], [pow],,AC_MSG_ERROR(ga-nn requires math lib))# Checks for header files.AC_HEADER_SYS_WAITAC_CHECK_HEADERS([arpa/inet.h fcntl.h netdb.h netinet/in.h sys/socket.h sys/time.h syslog.h unistd.h])# Checks for typedefs, structures, and compiler characteristics.AC_C_CONSTAC_TYPE_PID_TAC_TYPE_SIZE_T# Checks for library functions.AC_HEADER_STDCAC_FUNC_FORKAC_FUNC_MALLOCAC_FUNC_REALLOCAC_CHECK_FUNCS([alarm bzero mkfifo socket strerror])AC_CONFIG_FILES([Makefile])AC_OUTPUT
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -