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/config.h.W32.template

    r2134 r2591  
    22
    33Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
    4 2006, 2007 Free Software Foundation, Inc.
     42006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
    55This file is part of GNU Make.
    66
     
    2525# pragma warning(disable:4131) /* uses old-style declarator */
    2626# pragma warning(disable:4702) /* unreachable code */
     27# define _CRT_SECURE_NO_WARNINGS  /* function or variable may be unsafe */
     28# define _CRT_NONSTDC_NO_WARNINGS /* functions w/o a leading underscore */
    2729#endif
    2830
     
    228230
    229231/* Define to 1 if you have the `strcmpi' function. */
    230 #define HAVE_STRCMPI 1
     232/* #undef HAVE_STRCMPI */
    231233
    232234/* Define to 1 if you have the `stricmp' function. */
    233 /* #undef HAVE_STRICMP */
     235#define HAVE_STRICMP 1
     236
     237/* Define to 1 if you have the `strncasecmp' function. */
     238/* #undef HAVE_STRNCASECMP */
     239
     240/* Define to 1 if you have the `strncmpi' function. */
     241/* #undef HAVE_STRNCMPI */
     242
     243/* Define to 1 if you have the `strnicmp' function. */
     244#define HAVE_STRNICMP 1
    234245
    235246/* Define to 1 if you have the `strchr' function. */
     
    427438/* GCC 4.x reportedly defines pid_t.  */
    428439#ifndef _PID_T_
     440#ifdef _WIN64
     441#define pid_t __int64
     442#else
    429443#define pid_t int
     444#endif
    430445#endif
    431446
Note: See TracChangeset for help on using the changeset viewer.