Add missing #includes and bump PORTREVISION.

This commit is contained in:
Kris Kennaway 2003-06-18 11:53:49 +00:00
parent b598f222dd
commit 56ed6984ce
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=83255
8 changed files with 71 additions and 3 deletions

View file

@ -8,6 +8,7 @@
PORTNAME= splitvt
PORTVERSION= 1.6.5
PORTREVISION= 1
CATEGORIES= misc
MASTER_SITES= http://www.devolution.com/~slouken/projects/splitvt/

View file

@ -0,0 +1,10 @@
--- misc.c.orig Sat Jan 13 13:48:13 2001
+++ misc.c Wed Jun 18 04:44:02 2003
@@ -5,6 +5,7 @@
#include <fcntl.h>
#include <stdio.h>
#include <signal.h>
+#include <stdlib.h>
#ifdef HAVE_TERMIO_H

View file

@ -0,0 +1,10 @@
--- parserc.c.orig Sat Jan 13 13:48:13 2001
+++ parserc.c Wed Jun 18 04:46:14 2003
@@ -9,6 +9,7 @@
#include <fcntl.h>
#include <stdio.h>
#include <ctype.h>
+#include <stdlib.h>
#include "splitvt.h"
#define SPLITVTRC "/.splitvtrc"

View file

@ -0,0 +1,10 @@
--- splitvt.c.orig Sat Jan 13 14:00:22 2001
+++ splitvt.c Wed Jun 18 04:44:39 2003
@@ -21,6 +21,7 @@
#include <stdio.h>
#include <errno.h>
#include <pwd.h>
+#include <stdlib.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif

View file

@ -1,6 +1,13 @@
--- utmp.c.orig Sun Jan 14 11:36:17 2001
+++ utmp.c Sun Jan 14 11:38:25 2001
@@ -12,7 +12,7 @@
--- utmp.c.orig Sat Jan 13 13:48:13 2001
+++ utmp.c Wed Jun 18 04:45:38 2003
@@ -6,13 +6,14 @@
#include <fcntl.h>
#include <utmp.h>
#include <stdio.h>
+#include <unistd.h>
#ifdef DEBUG_UTMP
#undef UTMP_FILE
#define UTMP_FILE "/tmp/utmp"
#else
#ifndef UTMP_FILE

View file

@ -0,0 +1,10 @@
--- videomem.c.orig Sat Feb 18 14:24:04 1995
+++ videomem.c Wed Jun 18 04:45:50 2003
@@ -2,6 +2,7 @@
/* This file holds the functions for manipulating video memory */
#include <stdio.h>
+#include <stdlib.h>
#include "video.h"
#include "terminal.h"

View file

@ -0,0 +1,10 @@
--- vt100.c.orig Sat Jun 3 14:31:05 2000
+++ vt100.c Wed Jun 18 04:44:21 2003
@@ -17,6 +17,7 @@
#include <errno.h>
#include <stdio.h>
#include <ctype.h>
+#include <stdlib.h>
#include "vt100.h"
#include "video.h"
#include "terminal.h"

View file

@ -0,0 +1,10 @@
--- vtmouse.c.orig Sat Jun 3 14:05:57 2000
+++ vtmouse.c Wed Jun 18 04:46:02 2003
@@ -8,6 +8,7 @@
#define SPLITVT_SOURCE
#include <stdio.h>
+#include <stdlib.h>
#include "vtmouse.h"
extern FILE *safe_popen(); /* From misc.c */