Ignore:
Timestamp:
Jun 20, 2012, 12:44:52 AM (13 years ago)
Author:
bird
Message:

gnumake/current -> 3.82-cvs.

Location:
vendor/gnumake/current
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • vendor/gnumake/current

    • Property svn:ignore deleted
  • vendor/gnumake/current/configure.in

    r1989 r2596  
    22#
    33# Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
    4 # 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
     4# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
    55# This file is part of GNU Make.
    66#
     
    1818# this program.  If not, see <http://www.gnu.org/licenses/>.
    1919
    20 AC_INIT([GNU make],[3.81.90],[bug-make@gnu.org])
     20AC_INIT([GNU make],[3.82],[bug-make@gnu.org])
    2121
    2222AC_PREREQ(2.59)
    23 AC_REVISION([[$Id: configure.in,v 1.148 2007/07/04 19:35:17 psmith Exp $]])
     23AC_REVISION([[$Id: configure.in,v 1.156 2010/07/28 05:39:50 psmith Exp $]])
    2424
    2525# Autoconf setup
     
    148148fi
    149149
    150 AC_CHECK_FUNCS( strdup mkstemp mktemp fdopen \
    151                 bsd_signal dup2 getcwd realpath sigsetmask sigaction \
     150AC_CHECK_FUNCS( strdup strndup mkstemp mktemp fdopen fileno \
     151                dup2 getcwd realpath sigsetmask sigaction \
    152152                getgroups seteuid setegid setlinebuf setreuid setregid \
    153153                getrlimit setrlimit setvbuf pipe strerror strsignal \
    154154                lstat readlink atexit)
    155155
     156# We need to check declarations, not just existence, because on Tru64 this
     157# function is not declared without special flags, which themselves cause
     158# other problems.  We'll just use our own.
     159AC_CHECK_DECLS([bsd_signal], [], [], [[#include <signal.h>]])
     160
    156161AC_FUNC_SETVBUF_REVERSED
    157162
     
    159164# It doesn't hurt much to use our own if we can't find it so I don't
    160165# make the effort here.
    161 AC_CHECK_FUNCS(strcasecmp strcmpi stricmp)
     166AC_CHECK_FUNCS(strcasecmp strncasecmp strcmpi strncmpi stricmp strnicmp)
    162167
    163168# strcoll() is used by the GNU glob library
     
    348353# Check the system to see if it provides GNU glob.  If not, use our
    349354# local version.
    350 
    351355AC_MSG_CHECKING(if system libc has GNU glob)
    352356AC_CACHE_VAL(make_cv_sys_gnu_glob, [
     
    365369 ], [AC_MSG_RESULT(yes)
    366370make_cv_sys_gnu_glob=yes], [AC_MSG_RESULT([no; using local copy])
    367 AC_SUBST(GLOBINC) GLOBINC='-I$(srcdir)/glob'
    368 AC_SUBST(GLOBLIB) GLOBLIB=glob/libglob.a
    369371make_cv_sys_gnu_glob=no])])
     372if test "$make_cv_sys_gnu_glob" = no; then
     373  GLOBINC='-I$(srcdir)/glob'
     374  GLOBLIB=glob/libglob.a
     375fi
     376AC_SUBST(GLOBINC)
     377AC_SUBST(GLOBLIB)
     378
    370379# Tell automake about this, so it can build the right .c files.
    371380AM_CONDITIONAL(USE_LOCAL_GLOB, test "$make_cv_sys_gnu_glob" = no)
Note: See TracChangeset for help on using the changeset viewer.