Ignore:
Timestamp:
Jun 17, 2012, 10:45:31 PM (13 years ago)
Author:
bird
Message:

kmk: Merged in changes from GNU make 3.82. Previous GNU make base version was gnumake-2008-10-28-CVS.

Location:
trunk/src/kmk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk

    • Property svn:ignore
      •  

        old new  
        1313stamp-*
        1414makebook*
         15
        1516.*gdbinit
         17.gdb_history
         18
        1619*.dep
        1720*.dvi
         
        3134*.pg
        3235*.pgs
         36
        3337README
        3438README.DOS
        3539README.W32
         40README.OS2
        3641aclocal.m4
        3742autom4te.cache
         
        5257config.h.W32
        5358config.h-vms
         59
        5460loadavg
        5561loadavg.c
        5662make
         63
        5764.deps
        5865.dep_segment
         66ID
         67TAGS
         68
        5969_*
        6070sun4
         
        7282sol2
        7383i486-linux
         84
        7485customs
         86
        7587install-sh
        7688mkinstalldirs
         89
         90.directive.asc
  • trunk/src/kmk/configure.in

    r2134 r2591  
    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
     
    149149fi
    150150
    151 AC_CHECK_FUNCS( strdup mkstemp mktemp fdopen \
    152                 bsd_signal dup2 getcwd realpath sigsetmask sigaction \
     151AC_CHECK_FUNCS( strdup strndup mkstemp mktemp fdopen fileno \
     152                dup2 getcwd realpath sigsetmask sigaction \
    153153                getgroups seteuid setegid setlinebuf setreuid setregid \
    154154                getrlimit setrlimit setvbuf pipe strerror strsignal \
    155155                lstat readlink atexit)
    156156
     157# We need to check declarations, not just existence, because on Tru64 this
     158# function is not declared without special flags, which themselves cause
     159# other problems.  We'll just use our own.
     160AC_CHECK_DECLS([bsd_signal], [], [], [[#include <signal.h>]])
     161
    157162AC_FUNC_SETVBUF_REVERSED
    158163
     
    160165# It doesn't hurt much to use our own if we can't find it so I don't
    161166# make the effort here.
    162 AC_CHECK_FUNCS(strcasecmp strcmpi stricmp)
     167AC_CHECK_FUNCS(strcasecmp strncasecmp strcmpi strncmpi stricmp strnicmp)
    163168
    164169# strcoll() is used by the GNU glob library
     
    349354# Check the system to see if it provides GNU glob.  If not, use our
    350355# local version.
    351 
    352356AC_MSG_CHECKING(if system libc has GNU glob)
    353357AC_CACHE_VAL(make_cv_sys_gnu_glob, [
     
    366370 ], [AC_MSG_RESULT(yes)
    367371make_cv_sys_gnu_glob=yes], [AC_MSG_RESULT([no; using local copy])
    368 AC_SUBST(GLOBINC) GLOBINC='-I$(srcdir)/glob'
    369 AC_SUBST(GLOBLIB) GLOBLIB=glob/libglob.a
    370372make_cv_sys_gnu_glob=no])])
     373if test "$make_cv_sys_gnu_glob" = no; then
     374  GLOBINC='-I$(srcdir)/glob'
     375  GLOBLIB=glob/libglob.a
     376fi
     377AC_SUBST(GLOBINC)
     378AC_SUBST(GLOBLIB)
     379
    371380# Tell automake about this, so it can build the right .c files.
    372381AM_CONDITIONAL(USE_LOCAL_GLOB, test "$make_cv_sys_gnu_glob" = no)
Note: See TracChangeset for help on using the changeset viewer.