Ignore:
Timestamp:
Sep 15, 2006, 7:09:38 AM (19 years ago)
Author:
bird
Message:

Untested merge with GNU Make v3.81 (vendor/gnumake/2005-05-16 -> vendor/gnumake/current).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gmake/configure.in

    r281 r503  
    11# 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
     19AC_INIT([GNU make],[3.81],[bug-make@gnu.org])
    420
    521AC_PREREQ(2.59)
    6 AC_REVISION([[$Id: configure.in,v 1.135 2005/05/10 01:38:18 psmith Exp $]])
     22AC_REVISION([[$Id: configure.in,v 1.142 2006/04/01 06:36:40 psmith Exp $]])
    723
    824# Autoconf setup
     
    1228
    1329# Automake setup
    14 AM_INIT_AUTOMAKE([1.8.2])
     30AM_INIT_AUTOMAKE([1.9])
    1531
    1632# Checks for programs.
     
    138154                getgroups seteuid setegid setlinebuf setreuid setregid \
    139155                getrlimit setrlimit setvbuf pipe strerror strsignal \
    140                 lstat readlink)
     156                lstat readlink atexit)
    141157
    142158AC_FUNC_SETVBUF_REVERSED
     
    168184fi
    169185
    170 AC_CHECK_DECLS([sys_siglist],,,
    171 [#include <signal.h>
     186AC_CHECK_DECLS([sys_siglist, _sys_siglist, __sys_siglist], , ,
     187  [AC_INCLUDES_DEFAULT
     188#include <signal.h>
    172189/* NetBSD declares sys_siglist in unistd.h.  */
    173190#if HAVE_UNISTD_H
     
    434451# We only generate the build.sh if we have a build.sh.in; we won't have
    435452# one before we've created a distribution.
    436 if test -f build.sh.in; then
     453if test -f "$srcdir/build.sh.in"; then
    437454  ./config.status --file build.sh
    438455  chmod +x build.sh
Note: See TracChangeset for help on using the changeset viewer.