Changeset 503 for trunk/src/gmake/configure.in
- Timestamp:
- Sep 15, 2006, 7:09:38 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/configure.in
r281 r503 1 1 # Process this file with autoconf to produce a configure script. 2 3 AC_INIT([GNU make],[3.81beta3],[bug-make@gnu.org]) 2 # 3 # Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 4 # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. 5 # This file is part of GNU Make. 6 # 7 # GNU Make is free software; you can redistribute it and/or modify it under the 8 # terms of the GNU General Public License as published by the Free Software 9 # Foundation; either version 2, or (at your option) any later version. 10 # 11 # GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY 12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 13 # A PARTICULAR PURPOSE. See the GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License along with 16 # GNU Make; see the file COPYING. If not, write to the Free Software 17 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 19 AC_INIT([GNU make],[3.81],[bug-make@gnu.org]) 4 20 5 21 AC_PREREQ(2.59) 6 AC_REVISION([[$Id: configure.in,v 1.1 35 2005/05/10 01:38:18psmith Exp $]])22 AC_REVISION([[$Id: configure.in,v 1.142 2006/04/01 06:36:40 psmith Exp $]]) 7 23 8 24 # Autoconf setup … … 12 28 13 29 # Automake setup 14 AM_INIT_AUTOMAKE([1. 8.2])30 AM_INIT_AUTOMAKE([1.9]) 15 31 16 32 # Checks for programs. … … 138 154 getgroups seteuid setegid setlinebuf setreuid setregid \ 139 155 getrlimit setrlimit setvbuf pipe strerror strsignal \ 140 lstat readlink )156 lstat readlink atexit) 141 157 142 158 AC_FUNC_SETVBUF_REVERSED … … 168 184 fi 169 185 170 AC_CHECK_DECLS([sys_siglist],,, 171 [#include <signal.h> 186 AC_CHECK_DECLS([sys_siglist, _sys_siglist, __sys_siglist], , , 187 [AC_INCLUDES_DEFAULT 188 #include <signal.h> 172 189 /* NetBSD declares sys_siglist in unistd.h. */ 173 190 #if HAVE_UNISTD_H … … 434 451 # We only generate the build.sh if we have a build.sh.in; we won't have 435 452 # one before we've created a distribution. 436 if test -f build.sh.in; then453 if test -f "$srcdir/build.sh.in"; then 437 454 ./config.status --file build.sh 438 455 chmod +x build.sh
Note:
See TracChangeset
for help on using the changeset viewer.