summaryrefslogtreecommitdiff
path: root/ftp/llnlxftp/files
diff options
context:
space:
mode:
Diffstat (limited to 'ftp/llnlxftp/files')
-rw-r--r--ftp/llnlxftp/files/patch-Imakefile20
-rw-r--r--ftp/llnlxftp/files/patch-local.c18
-rw-r--r--ftp/llnlxftp/files/patch-log.c12
3 files changed, 0 insertions, 50 deletions
diff --git a/ftp/llnlxftp/files/patch-Imakefile b/ftp/llnlxftp/files/patch-Imakefile
deleted file mode 100644
index 767d963f562b..000000000000
--- a/ftp/llnlxftp/files/patch-Imakefile
+++ /dev/null
@@ -1,20 +0,0 @@
---- Imakefile.orig Thu Oct 19 10:20:26 1995
-+++ Imakefile Sat Aug 28 11:36:12 1999
-@@ -79,7 +79,7 @@
- OS_LIBRARIES = -lgen
- #endif
-
--#if defined(BSDIArchitecture) || defined(i386BsdArchitecture) || defined(TENONArchitecture)
-+#if defined(BSDIArchitecture) || defined(i386BsdArchitecture) || defined(TENONArchitecture) || defined(FreeBSDArchitecture)
- EXTRA_LIBRARIES = -lcompat
- #endif
-
-@@ -98,7 +98,7 @@
- #ifdef XmClientLibs
- LOCAL_LIBRARIES = XmClientLibs $(SOCKS_LIBS)
- #else
--LOCAL_LIBRARIES = $(XMLIB) $(XTOOLLIB) $(XLIB) $(SOCKS_LIBS)
-+LOCAL_LIBRARIES = $(XMLIB) $(XTOOLLIB) $(XLIB) $(SOCKS_LIBS) ${MOTIFLIB}
- #endif
- #endif
-
diff --git a/ftp/llnlxftp/files/patch-local.c b/ftp/llnlxftp/files/patch-local.c
deleted file mode 100644
index 896db7ca85c3..000000000000
--- a/ftp/llnlxftp/files/patch-local.c
+++ /dev/null
@@ -1,18 +0,0 @@
---- local.c.orig 1995-10-19 08:20:22.000000000 -0700
-+++ local.c 2012-03-10 11:24:10.000000000 -0800
-@@ -201,11 +201,15 @@
- #ifdef _SC_OPEN_MAX /* POSIX */
- if ((max_files = sysconf(_SC_OPEN_MAX)) == -1)
- fatal_error("Trouble in max_fds() - sysconf() failed");
-+ if (max_files > 1024)
-+ max_files=1024;
- #else
- #ifdef _NFILE /* Might be overkill */
- max_files = _NFILE;
- #else /* Assume BSD */
- max_files = getdtablesize();
-+ if ((max_files = getdtablesize()) > 1024)
-+ max_files=1024;
- #endif
- #endif
-
diff --git a/ftp/llnlxftp/files/patch-log.c b/ftp/llnlxftp/files/patch-log.c
deleted file mode 100644
index 2ff172e4e681..000000000000
--- a/ftp/llnlxftp/files/patch-log.c
+++ /dev/null
@@ -1,12 +0,0 @@
---- log.c.orig Mon Nov 18 01:25:37 2002
-+++ log.c Mon Nov 18 01:25:43 2002
-@@ -81,8 +81,8 @@
- extern char *initial_logfile_name;
- extern Display *display;
- extern int print_password_in_debug;
--extern int sys_nerr;
- #if !defined(__FreeBSD__) && !defined(__MACHTEN_PPC__)
-+extern int sys_nerr;
- extern char *sys_errlist[];
- #endif
-