cvs-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Cvs-cvs] ccvs/windows-NT ChangeLog dirent.c dirent.h


From: Derek Robert Price
Subject: [Cvs-cvs] ccvs/windows-NT ChangeLog dirent.c dirent.h
Date: Wed, 12 Jul 2006 13:46:01 +0000

CVSROOT:        /cvsroot/cvs
Module name:    ccvs
Changes by:     Derek Robert Price <dprice>     06/07/12 13:46:01

Modified files:
        windows-NT     : ChangeLog dirent.c dirent.h 

Log message:
        * dirent.h, dirent.c: Restore GPL license.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/ccvs/windows-NT/ChangeLog?cvsroot=cvs&r1=1.381&r2=1.382
http://cvs.savannah.gnu.org/viewcvs/ccvs/windows-NT/dirent.c?cvsroot=cvs&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/ccvs/windows-NT/dirent.h?cvsroot=cvs&r1=1.4&r2=1.5

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cvs/ccvs/windows-NT/ChangeLog,v
retrieving revision 1.381
retrieving revision 1.382
diff -u -b -r1.381 -r1.382
--- ChangeLog   11 Jul 2006 16:44:09 -0000      1.381
+++ ChangeLog   12 Jul 2006 13:46:00 -0000      1.382
@@ -1,3 +1,7 @@
+2006-07-12  Derek Price  <address@hidden>
+
+       * dirent.h, dirent.c: Restore GPL license.
+
 2006-07-11  Derek Price  <address@hidden>
 
        * config.h.in.in [HAVE_DIRECT_H, HAVE_DIRENT_H]: Remove obsolescent

Index: dirent.c
===================================================================
RCS file: /cvsroot/cvs/ccvs/windows-NT/dirent.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- dirent.c    11 Jul 2006 16:24:21 -0000      1.3
+++ dirent.c    12 Jul 2006 13:46:00 -0000      1.4
@@ -1,20 +1,32 @@
 /*  dirent.c - portable directory routines
- *
- * This file is in the public domain.
- *
- * Everything non trivial in this code came originally from: @(#)msd_dir.c 1.4
- * 87/11/06, a public domain implementation of BSD directory routines for
- * MS-DOS, written by Michael Rendell ({uunet,address@hidden),
- * August 1987.
- *
- * Converted to CVS's "windows-NT/ndir.c" in 1990 by Thorsten Ohl
- * <address@hidden>.
- *
- * Minor adaptations made in 2006 by Derek R. Price <address@hidden>, with
- * Windows API oversight by Jim Hyslop <address@hidden>, to meet the
- * POSIX.1 <dirent.h> API with some GNU extensions (as opposed to its
- * intermediate incarnation as CVS's "windows-NT/ndir.c").
- */
+   Copyright (C) 2006 Free Software Foundation, Inc.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2, or (at your option)
+   any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software Foundation,
+   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+
+/* Everything non trivial in this code came originally from: @(#)msd_dir.c 1.4
+   87/11/06, a public domain implementation of BSD directory routines for
+   MS-DOS, written by Michael Rendell ({uunet,address@hidden),
+   August 1987.
+
+   Converted to CVS's "windows-NT/ndir.c" in 1990 by Thorsten Ohl
+   <address@hidden>.
+
+   Minor adaptations made in 2006 by Derek R. Price <address@hidden>, with
+   Windows API oversight by Jim Hyslop <address@hidden>, to meet the
+   POSIX.1 <dirent.h> API with some GNU extensions (as opposed to its
+   intermediate incarnation as CVS's "windows-NT/ndir.c").  */
 
 #ifdef HAVE_CONFIG_H
 # include <config.h>

Index: dirent.h
===================================================================
RCS file: /cvsroot/cvs/ccvs/windows-NT/dirent.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- dirent.h    11 Jul 2006 16:24:21 -0000      1.4
+++ dirent.h    12 Jul 2006 13:46:00 -0000      1.5
@@ -1,20 +1,32 @@
 /*  dirent.h - portable directory routines
- *
- * This file is in the public domain.
- *
- * Everything non trivial in this code came originally from: @(#)msd_dir.c 1.4
- * 87/11/06, a public domain implementation of BSD directory routines for
- * MS-DOS, written by Michael Rendell ({uunet,address@hidden),
- * August 1987.
- *
- * Converted to CVS's "windows-NT/ndir.c" in 1990 by Thorsten Ohl
- * <address@hidden>.
- *
- * Minor adaptations made in 2006 by Derek R. Price <address@hidden>, with
- * Windows API oversight by Jim Hyslop <address@hidden>, to meet the
- * POSIX.1 <dirent.h> API with some GNU extensions (as opposed to its
- * intermediate incarnation as CVS's "windows-NT/ndir.h").
- */
+   Copyright (C) 2006 Free Software Foundation, Inc.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2, or (at your option)
+   any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software Foundation,
+   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+
+/* Everything non trivial in this code came originally from: @(#)msd_dir.c 1.4
+   87/11/06, a public domain implementation of BSD directory routines for
+   MS-DOS, written by Michael Rendell ({uunet,address@hidden),
+   August 1987.
+
+   Converted to CVS's "windows-NT/ndir.c" in 1990 by Thorsten Ohl
+   <address@hidden>.
+
+   Minor adaptations made in 2006 by Derek R. Price <address@hidden>, with
+   Windows API oversight by Jim Hyslop <address@hidden>, to meet the
+   POSIX.1 <dirent.h> API with some GNU extensions (as opposed to its
+   intermediate incarnation as CVS's "windows-NT/ndir.c").  */
 
 #ifndef WINDOWSNT_DIRENT_H_INCLUDED
 #define WINDOWSNT_DIRENT_H_INCLUDED




reply via email to

[Prev in Thread] Current Thread [Next in Thread]