Ignore:
Timestamp:
Oct 29, 2008, 1:37:51 AM (17 years ago)
Author:
bird
Message:

Merged in current GNU Make code (CVS from 2008-10-28). Ref #55.

Location:
trunk/src/kmk/w32/subproc
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/w32/subproc/NMakefile

    r503 r1993  
    33#
    44# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
    5 # 2006 Free Software Foundation, Inc.
     5# 2006, 2007 Free Software Foundation, Inc.
    66# This file is part of GNU Make.
    77#
    8 # GNU Make is free software; you can redistribute it and/or modify it under the
    9 # terms of the GNU General Public License as published by the Free Software
    10 # Foundation; either version 2, or (at your option) any later version.
     8# GNU Make is free software; you can redistribute it and/or modify it under
     9# the terms of the GNU General Public License as published by the Free Software
     10# Foundation; either version 3 of the License, or (at your option) any later
     11# version.
    1112#
    1213# GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
    13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
    14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
     14# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
     15# FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
     16# details.
    1517#
    1618# You should have received a copy of the GNU General Public License along with
    17 # GNU Make; see the file COPYING.  If not, write to the Free Software
    18 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
     19# this program.  If not, see <http://www.gnu.org/licenses/>.
    1920
    2021#
  • trunk/src/kmk/w32/subproc/build.bat

    • Property svn:eol-style changed from native to CRLF
    r503 r1993  
    1212GoTo BuildEnd
    1313:GCCBuild
    14 gcc -mthreads -Wall -gstabs+ -ggdb3 -O2 -I.. -I. -I../include -I../.. -DWINDOWS32 -c misc.c -o ../../w32_misc.o
    15 gcc -mthreads -Wall -gstabs+ -ggdb3 -O2 -I.. -I. -I../include -I../.. -DWINDOWS32 -c sub_proc.c -o ../../sub_proc.o
    16 gcc -mthreads -Wall -gstabs+ -ggdb3 -O2 -I.. -I. -I../include -I../.. -DWINDOWS32 -c w32err.c -o ../../w32err.o
     14gcc -mthreads -Wall -gdwarf-2 -g3 -O2 -I.. -I. -I../include -I../.. -DWINDOWS32 -c misc.c -o ../../w32_misc.o
     15gcc -mthreads -Wall -gdwarf-2 -g3 -O2 -I.. -I. -I../include -I../.. -DWINDOWS32 -c sub_proc.c -o ../../sub_proc.o
     16gcc -mthreads -Wall -gdwarf-2 -g3 -O2 -I.. -I. -I../include -I../.. -DWINDOWS32 -c w32err.c -o ../../w32err.o
    1717:BuildEnd
    1818
    1919@echo off
    2020rem Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
    21 rem 2005, 2006 Free Software Foundation, Inc.
     21rem 2005, 2006, 2007 Free Software Foundation, Inc.
    2222rem This file is part of GNU Make.
    23 
    24 rem GNU Make is free software; you can redistribute it and/or modify it under the
    25 rem terms of the GNU General Public License as published by the Free Software
    26 rem Foundation; either version 2, or (at your option) any later version.
    27 
    28 rem GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
    29 rem WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
    30 rem A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
    31 
    32 rem You should have received a copy of the GNU General Public License along with
    33 rem GNU Make; see the file COPYING.  If not, write to the Free Software
    34 rem Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
     23rem
     24rem GNU Make is free software; you can redistribute it and/or modify it under
     25rem the terms of the GNU General Public License as published by the Free
     26rem Software Foundation; either version 3 of the License, or (at your option)
     27rem any later version.
     28rem
     29rem GNU Make is distributed in the hope that it will be useful, but WITHOUT
     30rem ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
     31rem FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for.
     32rem more details.
     33rem
     34rem You should have received a copy of the GNU General Public License along
     35rem with this program.  If not, see <http://www.gnu.org/licenses/>.
  • trunk/src/kmk/w32/subproc/misc.c

    r503 r1993  
    11/* Process handling for Windows
    22Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
    3 2006 Free Software Foundation, Inc.
     32006, 2007 Free Software Foundation, Inc.
    44This file is part of GNU Make.
    55
    66GNU Make is free software; you can redistribute it and/or modify it under the
    77terms of the GNU General Public License as published by the Free Software
    8 Foundation; either version 2, or (at your option) any later version.
     8Foundation; either version 3 of the License, or (at your option) any later
     9version.
    910
    1011GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
     
    1314
    1415You should have received a copy of the GNU General Public License along with
    15 GNU Make; see the file COPYING.  If not, write to the Free Software
    16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.  */
     16this program.  If not, see <http://www.gnu.org/licenses/>.  */
    1717
    1818#include <stddef.h>
  • trunk/src/kmk/w32/subproc/proc.h

    r503 r1993  
    11/* Definitions for Windows
    22Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
    3 2006 Free Software Foundation, Inc.
     32006, 2007 Free Software Foundation, Inc.
    44This file is part of GNU Make.
    55
    66GNU Make is free software; you can redistribute it and/or modify it under the
    77terms of the GNU General Public License as published by the Free Software
    8 Foundation; either version 2, or (at your option) any later version.
     8Foundation; either version 3 of the License, or (at your option) any later
     9version.
    910
    1011GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
     
    1314
    1415You should have received a copy of the GNU General Public License along with
    15 GNU Make; see the file COPYING.  If not, write to the Free Software
    16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.  */
     16this program.  If not, see <http://www.gnu.org/licenses/>.  */
    1717
    1818#ifndef  _PROC_H
  • trunk/src/kmk/w32/subproc/sub_proc.c

    r1423 r1993  
    11/* Process handling for Windows.
    22Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
    3 2006 Free Software Foundation, Inc.
     32006, 2007 Free Software Foundation, Inc.
    44This file is part of GNU Make.
    55
    66GNU Make is free software; you can redistribute it and/or modify it under the
    77terms of the GNU General Public License as published by the Free Software
    8 Foundation; either version 2, or (at your option) any later version.
     8Foundation; either version 3 of the License, or (at your option) any later
     9version.
    910
    1011GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
     
    1314
    1415You should have received a copy of the GNU General Public License along with
    15 GNU Make; see the file COPYING.  If not, write to the Free Software
    16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.  */
     16this program.  If not, see <http://www.gnu.org/licenses/>.  */
    1717
    1818#include <stdlib.h>
  • trunk/src/kmk/w32/subproc/w32err.c

    r503 r1993  
    11/* Error handling for Windows
    22Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
    3 2006 Free Software Foundation, Inc.
     32006, 2007 Free Software Foundation, Inc.
    44This file is part of GNU Make.
    55
    66GNU Make is free software; you can redistribute it and/or modify it under the
    77terms of the GNU General Public License as published by the Free Software
    8 Foundation; either version 2, or (at your option) any later version.
     8Foundation; either version 3 of the License, or (at your option) any later
     9version.
    910
    1011GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
     
    1314
    1415You should have received a copy of the GNU General Public License along with
    15 GNU Make; see the file COPYING.  If not, write to the Free Software
    16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.  */
     16this program.  If not, see <http://www.gnu.org/licenses/>.  */
    1717
    1818#include <windows.h>
     
    6969    return szMessageBuffer;
    7070}
    71 
Note: See TracChangeset for help on using the changeset viewer.