summaryrefslogtreecommitdiff
path: root/x11/rxvt/patches
diff options
context:
space:
mode:
authoragc <agc@pkgsrc.org>1997-10-09 11:37:03 +0000
committeragc <agc@pkgsrc.org>1997-10-09 11:37:03 +0000
commit23d39ca1632344c5d7deb9632538e26c51e03a81 (patch)
treef15284c94efc2a98db6ffdc419322e5f7c02e3bc /x11/rxvt/patches
parentb4d904085832d2c09fde4193da5ee521e6e68095 (diff)
downloadpkgsrc-23d39ca1632344c5d7deb9632538e26c51e03a81.tar.gz
Initial import of FreeBSD's x11 ports category into NetBSD packages
system.
Diffstat (limited to 'x11/rxvt/patches')
-rw-r--r--x11/rxvt/patches/patch-aa11
-rw-r--r--x11/rxvt/patches/patch-ab19
-rw-r--r--x11/rxvt/patches/patch-ad11
-rw-r--r--x11/rxvt/patches/patch-ae42
-rw-r--r--x11/rxvt/patches/patch-ah11
5 files changed, 94 insertions, 0 deletions
diff --git a/x11/rxvt/patches/patch-aa b/x11/rxvt/patches/patch-aa
new file mode 100644
index 00000000000..023eb0f45ff
--- /dev/null
+++ b/x11/rxvt/patches/patch-aa
@@ -0,0 +1,11 @@
+--- Makefile.in.orig Fri Sep 27 10:48:20 1996
++++ Makefile.in Mon Feb 24 01:09:28 1997
+@@ -7,7 +7,7 @@
+ first_rule: all
+ dummy:
+
+-subdirs = src doc rclock src/graphics
++subdirs = src doc #rclock src/graphics
+
+ DIST_ETC = etc/XTerm.ad etc/color etc/termcap etc/terminfo etc/xmkdir
+
diff --git a/x11/rxvt/patches/patch-ab b/x11/rxvt/patches/patch-ab
new file mode 100644
index 00000000000..4b6d96b4720
--- /dev/null
+++ b/x11/rxvt/patches/patch-ab
@@ -0,0 +1,19 @@
+--- ./src/utmp.c.org Thu Jan 23 10:46:02 1997
++++ ./src/utmp.c Thu Apr 24 15:20:49 1997
+@@ -80,6 +80,8 @@
+ #include <stdio.h>
+ #include <string.h>
+
++#include <sys/types.h>
++
+ #ifdef HAVE_UTMPX_H
+ # include <utmpx.h>
+ # define USE_SYSV_UTMP
+@@ -90,7 +92,6 @@
+ # endif
+ #endif
+
+-#include <sys/types.h>
+ #include <sys/stat.h>
+
+ #ifdef TIME_WITH_SYS_TIME
diff --git a/x11/rxvt/patches/patch-ad b/x11/rxvt/patches/patch-ad
new file mode 100644
index 00000000000..467184b4b4f
--- /dev/null
+++ b/x11/rxvt/patches/patch-ad
@@ -0,0 +1,11 @@
+--- doc/Makefile.in.orig Fri Sep 27 10:48:24 1996
++++ doc/Makefile.in Mon Feb 24 01:14:02 1997
+@@ -25,7 +25,7 @@
+
+ tags allbin:
+
+-alldoc: rxvt.1 LSM
++alldoc: rxvt.1 # LSM
+
+ clean:
+ $(RMF) LSM rxvt.1 *~
diff --git a/x11/rxvt/patches/patch-ae b/x11/rxvt/patches/patch-ae
new file mode 100644
index 00000000000..719a8370408
--- /dev/null
+++ b/x11/rxvt/patches/patch-ae
@@ -0,0 +1,42 @@
+--- src/feature.h.orig Thu Jan 23 10:46:02 1997
++++ src/feature.h Mon Feb 24 03:56:40 1997
+@@ -136,8 +136,8 @@
+ * default rendition rather than the current rendition
+ * NB: this make break some applications and should used with caution
+ *----------------------------------------------------------------------*/
+-#define XPM_BACKGROUND
+-#define XPM_SCALING
++/* #define XPM_BACKGROUND */
++/* #define XPM_SCALING */
+ #define PATH_ENV "RXVTPATH"
+ /* #define XPM_BUFFERING */
+ /* #define NO_CURSORCOLOR */
+@@ -272,8 +272,9 @@
+ * for XTERM_SCROLLBAR it is *always* 14.
+ *----------------------------------------------------------------------*/
+ /* #define XTERM_SCROLLBAR */
+-#define SCROLLBAR_RIGHT
++/* #define SCROLLBAR_RIGHT */
+ /* #define SB_WIDTH 10 */
++#define SB_WIDTH 8
+ /*}}}*/
+
+ /*{{{ menuBar: */
+@@ -367,14 +368,15 @@
+ * for BSD-type systems, to define where the tty table is located
+ * if it isn't /etc/ttytab
+ *----------------------------------------------------------------------*/
+-/* #define UTMP_SUPPORT */
++#define UTMP_SUPPORT
+ #ifdef UTMP_SUPPORT
+ # ifndef UTMP_FILENAME
+ /* # define UTMP_FILENAME "/var/adm/utmp" */
+ /* # define UTMP_FILENAME "/var/adm/utmp" */
++# define UTMP_FILENAME "/var/run/utmp"
+ # endif
+ # ifndef TTYTAB_FILENAME
+-/* # define TTYTAB_FILENAME "/etc/ttys" */
++# define TTYTAB_FILENAME "/etc/ttys"
+ # endif
+ #endif
+ /*}}}*/
diff --git a/x11/rxvt/patches/patch-ah b/x11/rxvt/patches/patch-ah
new file mode 100644
index 00000000000..c12ed63e56c
--- /dev/null
+++ b/x11/rxvt/patches/patch-ah
@@ -0,0 +1,11 @@
+--- src/command.c.orig Fri Sep 27 10:48:22 1996
++++ src/command.c Mon Feb 24 01:25:51 1997
+@@ -509,7 +509,7 @@
+ ttydev = tty_name;
+
+ # define PTYCHAR1 "pqrstuvwxyz"
+-# define PTYCHAR2 "0123456789abcdef"
++# define PTYCHAR2 "0123456789abcdefghijklmnopqrstuv"
+ for (c1 = PTYCHAR1; *c1; c1++)
+ {
+ ptydev [len-2] = ttydev [len-2] = *c1;