📄 configure.in
字号:
dnl Process this file with autoconf to produce a configure script.
AC_INIT(Email_database.h)
AM_INIT_AUTOMAKE(Email,1.0)
dnl Checks for programs.
AC_CANONICAL_SYSTEM
ac_cv_host_system_type="$host"
host=$host_alias
AC_CHECK_TOOL(CC, gcc, :)
AC_CHECK_TOOL(CXX, g++, :)
AC_CHECK_TOOL(LD, ld, :)
AC_CHECK_TOOL(AR, ar, :)
AC_CHECK_TOOL(RANLIB, ranlib, :)
AC_CHECK_TOOL(STRIP, strip, :)
AC_PROG_CXX
AC_PROG_CC
AC_PROG_MAKE_SET
AC_PROG_RANLIB
dnl Checks for libraries.
dnl Replace `main' with a function in -lX11:
#AC_CHECK_LIB(X11, main)
dnl Replace `main' with a function in -lfltk:
AC_CHECK_LIB(fltk, main)
dnl Replace `main' with a function in -llldbs:
AC_CHECK_LIB(lldbs, main)
dnl Replace `main' with a function in -lmail:
AC_CHECK_LIB(mail, main)
dnl Replace `main' with a function in -lmwdrivers:
#AC_CHECK_LIB(mwdrivers, main)
AC_CHECK_LIB(pthread,main)
dnl Replace `main' with a function in -lmwengine:
#AC_CHECK_LIB(mwengine, main)
dnl Replace `main' with a function in -lmwfonts:
#AC_CHECK_LIB(mwfonts, main)
dnl Replace `main' with a function in -lnano:
AC_CHECK_LIB(nano-X, main)
dnl Checks for header files.
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_SIZE_T
AC_HEADER_TIME
dnl Checks for library functions.
AC_TYPE_SIGNAL
AC_FUNC_STRFTIME
AC_CHECK_FUNCS(gethostname select socket strdup strstr)
AC_OUTPUT(Makefile HUCmail/Makefile)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -