configure.in

来自「remote installation server.」· IN 代码 · 共 64 行

IN
64
字号
dnl Process this file with autoconf to produce a configure script.AC_INIT(pxe.cc)AC_CONFIG_HEADER(autoconf.h)AC_PROG_CCAC_PROG_CPPAC_PROG_CXXdnl Checks for programs.dnl Checks for user options.dnl setuid?AC_MSG_CHECKING(if the daemon should setuid to a non-privilaged user)AC_ARG_ENABLE(setuid,	[  --disable-setuid        disable the setuid facility],	[		AC_MSG_RESULT(no.)		AC_DEFINE(NO_SUID)	],	[		AC_MSG_RESULT(yes.)		SETUID="\"nobody\""		AC_ARG_WITH(setuid, [  --with-setuid=user      name of the user to setuid to], [ SETUID="\"${withval}\"" ])		AC_DEFINE_UNQUOTED(SETUID, $SETUID)	])dnl location of the config fileAC_MSG_CHECKING(the location of the config file)PXECONFIGFILE="\"/etc/pxe.conf"\"AC_ARG_WITH(config, [  --with-config=file      location of the pxe config file], [ PXECONFIGFILE="\"${withval}\"" ])AC_MSG_RESULT($PXECONFIGFILE)AC_DEFINE_UNQUOTED(PXECONFIGFILE, $PXECONFIGFILE)dnl location of the config fileAC_MSG_CHECKING(the location of the log file)PXELOGFILE="\"/tmp/pxe.log"\"AC_ARG_WITH(log, [  --with-log=file         location of the pxe log file], [ PXELOGFILE="\"${withval}\"" ])AC_MSG_RESULT($PXELOGFILE)AC_DEFINE_UNQUOTED(PXELOGFILE, $PXELOGFILE)dnl Checks for libraries.AC_HAVE_LIBRARY(socket)AC_HAVE_LIBRARY(nsl)AC_HAVE_LIBRARY(resolv)dnl Checks for header files.AC_HEADER_STDCAC_HEADER_SYS_WAITAC_CHECK_HEADERS(fcntl.h strings.h sys/ioctl.h sys/time.h unistd.h)AC_CHECK_HEADERS(sys/sockio.h stdint.h stropts.h ifaddrs.h)dnl Checks for typedefs, structures, and compiler characteristics.AC_C_CONSTdnl Checks for library functions.AC_PROG_GCC_TRADITIONALAC_TYPE_SIGNALAC_CHECK_FUNCS(select socket strerror setsockopt getifaddrs hstrerror inet_aton)AC_OUTPUT(Makefile)

⌨️ 快捷键说明

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