📄 configure.in
字号:
## $Id: configure.in,v 1.4 2005/05/26 20:49:05 idgay Exp $## uisp - The Micro In-System Programmer for Atmel AVR microcontrollers.# Copyright (C) 2002, 2003 Theodore A. Roth## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 of the License, or# (at your option) any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USAdnl Make sure we're using the correct version of autoconfAC_PREREQ(2.13)dnl Process this file with autoconf to produce a configure script.AC_INIT(src/Main.C)AC_CONFIG_AUX_DIR(config)AM_CONFIG_HEADER(src/config.h:src/config-h.in)AM_INIT_AUTOMAKE(uisp, 20050519tinyos)dnl Checks for programs.AC_PROG_CCAC_PROG_CXXAC_PROG_INSTALLdnl Checks for libraries.dnl Checks for header files.AC_HEADER_STDCAC_CHECK_HEADERS(fcntl.h sys/ioctl.h sys/time.h unistd.h)dnl Checks for typedefs, structures, and compiler characteristics.AC_C_CONSTAC_TYPE_SIZE_TAC_HEADER_TIMEdnl Checks for library functions.AC_PROG_GCC_TRADITIONALAC_FUNC_MEMCMPAC_FUNC_VPRINTFAC_CHECK_FUNCS(gettimeofday select strstr strtol strtod)AC_SUBST(ac_aux_dir)# Set the DATE variable for the man pageDATE=`date "+%B, %Y"` AC_SUBST(DATE)AC_OUTPUT( \ src/Makefile \ uisp.1 \ uisp.spec \ Makefile)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -