Changeset 3140 for trunk/src/kmk/config


Ignore:
Timestamp:
Mar 14, 2018, 10:28:10 PM (7 years ago)
Author:
bird
Message:

kmk: Merged in changes from GNU make 4.2.1 (2e55f5e4abdc0e38c1d64be703b446695e70b3b6 / https://git.savannah.gnu.org/git/make.git).

Location:
trunk/src/kmk
Files:
1 deleted
3 edited
2 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk

  • trunk/src/kmk/config/Makefile.am

    r2591 r3140  
    11# -*-Makefile-*-, or close enough
    2 # Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free
    3 # Software Foundation, Inc.
     2# Copyright (C) 2002-2016 Free Software Foundation, Inc.
    43# This file is part of GNU Make.
    54#
     
    1716# this program.  If not, see <http://www.gnu.org/licenses/>.
    1817
    19 EXTRA_DIST =    codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 nls.m4 \
    20                 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 \
    21                 isc-posix.m4 lcmessage.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 \
    22                 progtest.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4 longlong.m4 \
    23                 dospaths.m4 po.m4 signed.m4 longdouble.m4 wchar_t.m4 \
    24                 wint_t.m4 intmax.m4 printf-posix.m4 xsize.m4 size_max.m4
     18# Autoconf / automake know how to handle this directory.
  • trunk/src/kmk/config/dospaths.m4

    r2591 r3140  
    22# By Paul Smith <psmith@gnu.org>.  Based on dos.m4 by Jim Meyering.
    33#
    4 # Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
    5 # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
     4# Copyright (C) 1993-2016 Free Software Foundation, Inc.
    65# This file is part of GNU Make.
    76#
     
    1918# this program.  If not, see <http://www.gnu.org/licenses/>.
    2019
    21 AC_DEFUN([pds_AC_DOS_PATHS],
    22   [
    23     AC_CACHE_CHECK([whether system uses MSDOS-style paths], [ac_cv_dos_paths],
    24       [
    25         AC_COMPILE_IFELSE([
     20AC_DEFUN([pds_AC_DOS_PATHS], [
     21  AC_CACHE_CHECK([whether system uses MSDOS-style paths], [ac_cv_dos_paths], [
     22    AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
    2623#if !defined _WIN32 && !defined __WIN32__ && !defined __MSDOS__ && !defined __EMX__ && !defined __MSYS__ && !defined __CYGWIN__
    2724neither MSDOS nor Windows nor OS2
    2825#endif
    29 ],
     26]])],
    3027        [ac_cv_dos_paths=yes],
    31         [ac_cv_dos_paths=no])
    32       ])
     28        [ac_cv_dos_paths=no])])
    3329
    34     if test x"$ac_cv_dos_paths" = xyes; then
    35       AC_DEFINE_UNQUOTED([HAVE_DOS_PATHS], 1,
    36                          [Define if the system uses DOS-style pathnames.])
    37     fi
    38   ])
     30  AS_IF([test x"$ac_cv_dos_paths" = xyes],
     31  [ AC_DEFINE_UNQUOTED([HAVE_DOS_PATHS], 1,
     32                       [Define if the system uses DOS-style pathnames.])])
     33])
Note: See TracChangeset for help on using the changeset viewer.