configure.in

来自「RS 码的编译码程序」· IN 代码 · 共 40 行

IN
40
字号
# 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=3SO_VERSION=3.1.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 + =
减小字号Ctrl + -
显示快捷键?