Changeset 2591 for trunk/src/kmk/configure.in
- Timestamp:
- Jun 17, 2012, 10:45:31 PM (13 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk
- Property svn:ignore
-
old new 13 13 stamp-* 14 14 makebook* 15 15 16 .*gdbinit 17 .gdb_history 18 16 19 *.dep 17 20 *.dvi … … 31 34 *.pg 32 35 *.pgs 36 33 37 README 34 38 README.DOS 35 39 README.W32 40 README.OS2 36 41 aclocal.m4 37 42 autom4te.cache … … 52 57 config.h.W32 53 58 config.h-vms 59 54 60 loadavg 55 61 loadavg.c 56 62 make 63 57 64 .deps 58 65 .dep_segment 66 ID 67 TAGS 68 59 69 _* 60 70 sun4 … … 72 82 sol2 73 83 i486-linux 84 74 85 customs 86 75 87 install-sh 76 88 mkinstalldirs 89 90 .directive.asc
-
- Property svn:ignore
-
trunk/src/kmk/configure.in
r2134 r2591 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 … … 149 149 fi 150 150 151 AC_CHECK_FUNCS( strdup mkstemp mktemp fdopen\152 bsd_signaldup2 getcwd realpath sigsetmask sigaction \151 AC_CHECK_FUNCS( strdup strndup mkstemp mktemp fdopen fileno \ 152 dup2 getcwd realpath sigsetmask sigaction \ 153 153 getgroups seteuid setegid setlinebuf setreuid setregid \ 154 154 getrlimit setrlimit setvbuf pipe strerror strsignal \ 155 155 lstat readlink atexit) 156 156 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. 160 AC_CHECK_DECLS([bsd_signal], [], [], [[#include <signal.h>]]) 161 157 162 AC_FUNC_SETVBUF_REVERSED 158 163 … … 160 165 # It doesn't hurt much to use our own if we can't find it so I don't 161 166 # make the effort here. 162 AC_CHECK_FUNCS(strcasecmp str cmpi stricmp)167 AC_CHECK_FUNCS(strcasecmp strncasecmp strcmpi strncmpi stricmp strnicmp) 163 168 164 169 # strcoll() is used by the GNU glob library … … 349 354 # Check the system to see if it provides GNU glob. If not, use our 350 355 # local version. 351 352 356 AC_MSG_CHECKING(if system libc has GNU glob) 353 357 AC_CACHE_VAL(make_cv_sys_gnu_glob, [ … … 366 370 ], [AC_MSG_RESULT(yes) 367 371 make_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.a370 372 make_cv_sys_gnu_glob=no])]) 373 if test "$make_cv_sys_gnu_glob" = no; then 374 GLOBINC='-I$(srcdir)/glob' 375 GLOBLIB=glob/libglob.a 376 fi 377 AC_SUBST(GLOBINC) 378 AC_SUBST(GLOBLIB) 379 371 380 # Tell automake about this, so it can build the right .c files. 372 381 AM_CONDITIONAL(USE_LOCAL_GLOB, test "$make_cv_sys_gnu_glob" = no)
Note:
See TracChangeset
for help on using the changeset viewer.