summaryrefslogtreecommitdiff
path: root/lang/open-cobol-devel/files
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2004-11-23 18:58:35 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2004-11-23 18:58:35 +0000
commita974bbd8dd5d248923f9f3c059f3cd85e278e2e7 (patch)
tree405dbb815829ea6f321f2e694a6a02c283dcc944 /lang/open-cobol-devel/files
parentMaintainer no longer uses this software. (diff)
Update to version 0.30
PR: ports/74245 Submitted by: Ports Fury
Notes
Notes: svn path=/head/; revision=122237
Diffstat (limited to 'lang/open-cobol-devel/files')
-rw-r--r--lang/open-cobol-devel/files/patch-config::ltmain.sh15
-rw-r--r--lang/open-cobol-devel/files/patch-lib::Makefile.in20
-rw-r--r--lang/open-cobol-devel/files/patch-libcob::fileio.c20
-rw-r--r--lang/open-cobol-devel/files/patch-libcob::screenio.c10
4 files changed, 5 insertions, 60 deletions
diff --git a/lang/open-cobol-devel/files/patch-config::ltmain.sh b/lang/open-cobol-devel/files/patch-config::ltmain.sh
deleted file mode 100644
index c1404aef33c2..000000000000
--- a/lang/open-cobol-devel/files/patch-config::ltmain.sh
+++ /dev/null
@@ -1,15 +0,0 @@
---- config/ltmain.sh.orig Fri Nov 22 17:03:54 2002
-+++ config/ltmain.sh Thu Dec 12 20:35:02 2002
-@@ -4280,10 +4280,12 @@
- fi
-
- # Install the pseudo-library for information purposes.
-+ if /usr/bin/false; then
- name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
- instname="$dir/$name"i
- $show "$install_prog $instname $destdir/$name"
- $run eval "$install_prog $instname $destdir/$name" || exit $?
-+ fi
-
- # Maybe install the static library, too.
- test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
diff --git a/lang/open-cobol-devel/files/patch-lib::Makefile.in b/lang/open-cobol-devel/files/patch-lib::Makefile.in
deleted file mode 100644
index 56255ffbdb28..000000000000
--- a/lang/open-cobol-devel/files/patch-lib::Makefile.in
+++ /dev/null
@@ -1,20 +0,0 @@
---- lib/Makefile.in.orig Thu Jun 12 05:13:50 2003
-+++ lib/Makefile.in Sun Apr 4 00:28:58 2004
-@@ -175,7 +175,7 @@
- DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
- depcomp = $(SHELL) $(top_srcdir)/config/depcomp
- am__depfiles_maybe = depfiles
--@AMDEP_TRUE@DEP_FILES = $(DEPDIR)/getopt.Po $(DEPDIR)/getopt1.Po \
-+@AMDEP_TRUE@DEP_FILES = \
- @AMDEP_TRUE@ $(DEPDIR)/malloc.Po $(DEPDIR)/memcmp.Po \
- @AMDEP_TRUE@ $(DEPDIR)/realloc.Po
- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
-@@ -215,8 +215,6 @@
- distclean-compile:
- -rm -f *.tab.c
-
--@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/getopt.Po@am__quote@
--@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/getopt1.Po@am__quote@
- @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/malloc.Po@am__quote@
- @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/memcmp.Po@am__quote@
- @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/realloc.Po@am__quote@
diff --git a/lang/open-cobol-devel/files/patch-libcob::fileio.c b/lang/open-cobol-devel/files/patch-libcob::fileio.c
deleted file mode 100644
index d96315e95d73..000000000000
--- a/lang/open-cobol-devel/files/patch-libcob::fileio.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- libcob/fileio.c.orig Wed Jun 11 15:40:20 2003
-+++ libcob/fileio.c Wed Aug 27 09:57:31 2003
-@@ -202,13 +202,10 @@
- else
- {
- /* discard input until the next newline */
-- int c = getc (f->file);
-- while (c != '\r' && c != '\n' && c != EOF)
-- c = getc (f->file);
-- if (c == '\r')
-- c = getc (f->file);
-- if (c != '\n' && c != EOF)
-- ungetc (c, f->file);
-+ char buff[BUFSIZ];
-+ while (fgets (buff, BUFSIZ, f->file) !=NULL)
-+ if (strchr (buff, '\n') != NULL)
-+ break;
- }
-
- memcpy (f->record->data, buff, f->record->size);
diff --git a/lang/open-cobol-devel/files/patch-libcob::screenio.c b/lang/open-cobol-devel/files/patch-libcob::screenio.c
index 31e83902355b..727acf12811c 100644
--- a/lang/open-cobol-devel/files/patch-libcob::screenio.c
+++ b/lang/open-cobol-devel/files/patch-libcob::screenio.c
@@ -1,10 +1,10 @@
---- libcob/screenio.c.orig Thu Apr 3 06:02:51 2003
-+++ libcob/screenio.c Tue Apr 29 04:09:44 2003
+--- libcob/screenio.c.orig Fri Mar 12 13:41:58 2004
++++ libcob/screenio.c Wed Nov 24 02:43:30 2004
@@ -19,6 +19,7 @@
#include "config.h"
-+#include <sys/types.h>
++#include <stdio.h>
#include <string.h>
- #if HAVE_CURSES_H
- #include <curses.h>
+
+ #if HAVE_NCURSES_H