Changeset 3140 for trunk/src/kmk/version.c
- Timestamp:
- Mar 14, 2018, 10:28:10 PM (7 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk
-
Property svn:mergeinfo
set to
/vendor/gnumake/current merged eligible
-
Property svn:mergeinfo
set to
-
trunk/src/kmk/version.c
r2591 r3140 1 1 /* Record version and build host architecture for GNU make. 2 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 4 2010 Free Software Foundation, Inc. 2 Copyright (C) 1988-2016 Free Software Foundation, Inc. 5 3 This file is part of GNU Make. 6 4 … … 19 17 /* We use <config.h> instead of "config.h" so that a compilation 20 18 using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h 21 (which it would do because make .h was found in $srcdir). */19 (which it would do because makeint.h was found in $srcdir). */ 22 20 #include <config.h> 23 21 … … 26 24 #endif 27 25 28 c har *version_string = VERSION;29 c har *make_host = MAKE_HOST;26 const char *version_string = VERSION; 27 const char *make_host = MAKE_HOST; 30 28 31 29
Note:
See TracChangeset
for help on using the changeset viewer.