Changeset 2596 for vendor/gnumake/current/configure.in
- Timestamp:
- Jun 20, 2012, 12:44:52 AM (13 years ago)
- 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 2 2 # 3 3 # 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. 5 5 # This file is part of GNU Make. 6 6 # … … 18 18 # this program. If not, see <http://www.gnu.org/licenses/>. 19 19 20 AC_INIT([GNU make],[3.8 1.90],[bug-make@gnu.org])20 AC_INIT([GNU make],[3.82],[bug-make@gnu.org]) 21 21 22 22 AC_PREREQ(2.59) 23 AC_REVISION([[$Id: configure.in,v 1.1 48 2007/07/04 19:35:17psmith Exp $]])23 AC_REVISION([[$Id: configure.in,v 1.156 2010/07/28 05:39:50 psmith Exp $]]) 24 24 25 25 # Autoconf setup … … 148 148 fi 149 149 150 AC_CHECK_FUNCS( strdup mkstemp mktemp fdopen\151 bsd_signaldup2 getcwd realpath sigsetmask sigaction \150 AC_CHECK_FUNCS( strdup strndup mkstemp mktemp fdopen fileno \ 151 dup2 getcwd realpath sigsetmask sigaction \ 152 152 getgroups seteuid setegid setlinebuf setreuid setregid \ 153 153 getrlimit setrlimit setvbuf pipe strerror strsignal \ 154 154 lstat readlink atexit) 155 155 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. 159 AC_CHECK_DECLS([bsd_signal], [], [], [[#include <signal.h>]]) 160 156 161 AC_FUNC_SETVBUF_REVERSED 157 162 … … 159 164 # It doesn't hurt much to use our own if we can't find it so I don't 160 165 # make the effort here. 161 AC_CHECK_FUNCS(strcasecmp str cmpi stricmp)166 AC_CHECK_FUNCS(strcasecmp strncasecmp strcmpi strncmpi stricmp strnicmp) 162 167 163 168 # strcoll() is used by the GNU glob library … … 348 353 # Check the system to see if it provides GNU glob. If not, use our 349 354 # local version. 350 351 355 AC_MSG_CHECKING(if system libc has GNU glob) 352 356 AC_CACHE_VAL(make_cv_sys_gnu_glob, [ … … 365 369 ], [AC_MSG_RESULT(yes) 366 370 make_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.a369 371 make_cv_sys_gnu_glob=no])]) 372 if test "$make_cv_sys_gnu_glob" = no; then 373 GLOBINC='-I$(srcdir)/glob' 374 GLOBLIB=glob/libglob.a 375 fi 376 AC_SUBST(GLOBINC) 377 AC_SUBST(GLOBLIB) 378 370 379 # Tell automake about this, so it can build the right .c files. 371 380 AM_CONDITIONAL(USE_LOCAL_GLOB, test "$make_cv_sys_gnu_glob" = no)
Note:
See TracChangeset
for help on using the changeset viewer.