summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/cvs/os2
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1997-06-28 03:29:59 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1997-06-28 03:29:59 +0000
commitbbd5298745f694439d723479c69ca75f457f6b1a (patch)
treef6870f534b5bec03264c7cb177f6e3020c1fb76a /gnu/usr.bin/cvs/os2
parentff523cf97f6cd3ad61764d4fbc0f5f5f2a73a7f0 (diff)
Latest version from Cyclic Software
Diffstat (limited to 'gnu/usr.bin/cvs/os2')
-rw-r--r--gnu/usr.bin/cvs/os2/ChangeLog13
-rw-r--r--gnu/usr.bin/cvs/os2/config.h13
-rw-r--r--gnu/usr.bin/cvs/os2/pwd.c2
-rw-r--r--gnu/usr.bin/cvs/os2/pwd.h2
-rw-r--r--gnu/usr.bin/cvs/os2/rcmd.c10
-rw-r--r--gnu/usr.bin/cvs/os2/rcmd.h10
6 files changed, 45 insertions, 5 deletions
diff --git a/gnu/usr.bin/cvs/os2/ChangeLog b/gnu/usr.bin/cvs/os2/ChangeLog
index da351ca2160..9541a7f0fd7 100644
--- a/gnu/usr.bin/cvs/os2/ChangeLog
+++ b/gnu/usr.bin/cvs/os2/ChangeLog
@@ -1,3 +1,16 @@
+Mon Jun 16 13:49:39 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
+
+ * config.h, rcmd.h, rcmd.c: Add "copyright" notice.
+
+Sun Jun 8 23:41:56 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
+
+ * config.h (HAVE_MKFIFO): Remove; not used anywhere.
+
+Wed Apr 30 12:45:50 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
+
+ * icc.compilation-errors: Removed; it was the error messages from
+ trying to compile CVS on OS/2, way out of date.
+
Wed Mar 12 16:10:01 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* config.h (HAVE_SETVBUF): Removed; no longer used.
diff --git a/gnu/usr.bin/cvs/os2/config.h b/gnu/usr.bin/cvs/os2/config.h
index a14074b248f..781711e19c8 100644
--- a/gnu/usr.bin/cvs/os2/config.h
+++ b/gnu/usr.bin/cvs/os2/config.h
@@ -1,6 +1,16 @@
/* config.h --- configuration file for OS/2
Karl Fogel <kfogel@cyclic.com> --- Oct 1995 */
+/* 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. */
+
/* This file lives in the os2/ subdirectory, which is only included
* in your header search path if you're working under IBM C++,
* and use os2/makefile (with GNU make for OS/2). Thus, this is the
@@ -166,9 +176,6 @@
/* Define if you have the krb_get_err_text function. */
#undef HAVE_KRB_GET_ERR_TEXT
-/* Define if you have the mkfifo function. */
-#undef HAVE_MKFIFO
-
/* Define if you have the putenv function. */
#define HAVE_PUTENV 1
diff --git a/gnu/usr.bin/cvs/os2/pwd.c b/gnu/usr.bin/cvs/os2/pwd.c
index 21597b9ddb0..ab5acd9e52b 100644
--- a/gnu/usr.bin/cvs/os2/pwd.c
+++ b/gnu/usr.bin/cvs/os2/pwd.c
@@ -11,7 +11,7 @@
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
- $Header: /cvs/OpenBSD/src/gnu/usr.bin/cvs/os2/pwd.c,v 1.1.1.2 1997/02/21 06:38:44 tholo Exp $
+ $Header: /cvs/OpenBSD/src/gnu/usr.bin/cvs/os2/pwd.c,v 1.1.1.3 1997/06/28 03:29:46 tholo Exp $
*/
/* This 'implementation' is conjectured from the use of this functions in
diff --git a/gnu/usr.bin/cvs/os2/pwd.h b/gnu/usr.bin/cvs/os2/pwd.h
index 7d8b226752a..9ac94c74d93 100644
--- a/gnu/usr.bin/cvs/os2/pwd.h
+++ b/gnu/usr.bin/cvs/os2/pwd.h
@@ -11,7 +11,7 @@
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
- $Header: /cvs/OpenBSD/src/gnu/usr.bin/cvs/os2/pwd.h,v 1.1.1.2 1997/02/21 06:38:42 tholo Exp $
+ $Header: /cvs/OpenBSD/src/gnu/usr.bin/cvs/os2/pwd.h,v 1.1.1.3 1997/06/28 03:29:44 tholo Exp $
*/
/* This 'implementation' is conjectured from the use of this functions in
diff --git a/gnu/usr.bin/cvs/os2/rcmd.c b/gnu/usr.bin/cvs/os2/rcmd.c
index 36b17516dd5..2996e499cba 100644
--- a/gnu/usr.bin/cvs/os2/rcmd.c
+++ b/gnu/usr.bin/cvs/os2/rcmd.c
@@ -1,6 +1,16 @@
/* rcmd.c --- execute a command on a remote host from OS/2
Karl Fogel <kfogel@cyclic.com> --- November 1995 */
+/* 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. */
+
#include <io.h>
#include <stdio.h>
#include <fcntl.h>
diff --git a/gnu/usr.bin/cvs/os2/rcmd.h b/gnu/usr.bin/cvs/os2/rcmd.h
index 2bc915a36bd..2c84d5b3918 100644
--- a/gnu/usr.bin/cvs/os2/rcmd.h
+++ b/gnu/usr.bin/cvs/os2/rcmd.h
@@ -1,6 +1,16 @@
/* rcmd.h --- interface to executing commands on remote hosts
Karl Fogel <kfogel@cyclic.com> --- November 1995 */
+/* 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. */
+
/* Run the command CMD on the host *AHOST, and return a file descriptor for
a bidirectional stream socket connected to the command's standard input
and output.