📄 configure.in
字号:
# Process this file with autoconf to produce a configure script.# Copyright 2002 Phil Karn, KA9Q# May be used under the terms of the GNU Public License (GPL)AC_INIT(encode_rs.c)SO_NAME=4SO_VERSION=4.0.0AC_SUBST(SO_NAME)AC_SUBST(SO_VERSION)dnl Checks for programs.AC_PROG_CCif test $GCC != "yes"then AC_MSG_ERROR([Need GNU C compiler])fidnl Checks for libraries.AC_CHECK_LIB(c, malloc)dnl Checks for header files.AC_CHECK_HEADERS(string.h)if test -z "$HAVE_string.h"then AC_MSG_ERROR([Need string.h])fiAC_CANONICAL_SYSTEMcase $target_cpu ini386|i486|i586|i686) ARCH_OPTION=-march=$target_cpu ;;esacAC_SUBST(ARCH_OPTION)dnl Checks for library functions.AC_CHECK_FUNCS(memset memmove)AC_OUTPUT(makefile)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -