aboutsummaryrefslogtreecommitdiffstats
path: root/comms/yaps/files
diff options
context:
space:
mode:
Diffstat (limited to 'comms/yaps/files')
-rw-r--r--comms/yaps/files/patch-aa45
-rw-r--r--comms/yaps/files/patch-ab102
-rw-r--r--comms/yaps/files/patch-ac10
-rw-r--r--comms/yaps/files/patch-ad13
4 files changed, 170 insertions, 0 deletions
diff --git a/comms/yaps/files/patch-aa b/comms/yaps/files/patch-aa
new file mode 100644
index 000000000000..1adde0c5b893
--- /dev/null
+++ b/comms/yaps/files/patch-aa
@@ -0,0 +1,45 @@
+*** Config~ Tue Sep 29 15:15:18 1998
+--- Config Tue Sep 29 15:16:10 1998
+***************
+*** 2,8 ****
+ # SECTION A.) Global configuration
+ # Select compiler command
+! CC = gcc
+ #
+! CFLAGS = -Wall -Wno-parentheses -Wshadow -Wstrict-prototypes -Wmissing-prototypes
+ LDFLAGS =
+ EXLIBS =
+--- 2,8 ----
+ # SECTION A.) Global configuration
+ # Select compiler command
+! #CC = gcc
+ #
+! #CFLAGS = -Wall -Wno-parentheses -Wshadow -Wstrict-prototypes -Wmissing-prototypes
+ LDFLAGS =
+ EXLIBS =
+***************
+*** 21,25 ****
+ # SECTION B.) yaps configuration
+ # Name and location of global configuration file
+! YAPS_CFGFILE = /etc/yaps.rc
+ # Name of local configuration file (location is $HOME.)
+ YAPS_LCFGFILE = .yapsrc
+--- 21,25 ----
+ # SECTION B.) yaps configuration
+ # Name and location of global configuration file
+! YAPS_CFGFILE = /usr/local/etc/yaps.rc
+ # Name of local configuration file (location is $HOME.)
+ YAPS_LCFGFILE = .yapsrc
+***************
+*** 30,34 ****
+ # User/Group/Mode for yaps
+ YAPS_USER = bin
+! YAPS_GROUP = uucp
+ YAPS_MODE = 2711
+ # User/Group/Mode for global configuration file
+--- 30,34 ----
+ # User/Group/Mode for yaps
+ YAPS_USER = bin
+! YAPS_GROUP = dialer
+ YAPS_MODE = 2711
+ # User/Group/Mode for global configuration file
diff --git a/comms/yaps/files/patch-ab b/comms/yaps/files/patch-ab
new file mode 100644
index 000000000000..99b334376fb5
--- /dev/null
+++ b/comms/yaps/files/patch-ab
@@ -0,0 +1,102 @@
+*** config.h.orig Tue Sep 29 15:15:25 1998
+--- config.h Tue Sep 29 15:24:15 1998
+***************
+*** 27,31 ****
+ * in sys/time.h
+ */
+! # define HAVE_SYS_SELECT_H 0
+
+ /*
+--- 27,31 ----
+ * in sys/time.h
+ */
+! # define HAVE_SYS_SELECT_H 1
+
+ /*
+***************
+*** 33,37 ****
+ * conversion/classification
+ */
+! # define HAVE_LOCALE_H 0
+
+ /*
+--- 33,37 ----
+ * conversion/classification
+ */
+! # define HAVE_LOCALE_H 1
+
+ /*
+***************
+*** 39,48 ****
+ * very weak replacement is used to find matching services
+ */
+! # define HAVE_REGEX_H 0
+
+ /*
+ * one of these is required for SysV like lockfiles
+ */
+! # define HAVE_SYS_SYSMACROS_H 1
+ # define HAVE_SYS_MKDEV_H 0
+
+--- 39,48 ----
+ * very weak replacement is used to find matching services
+ */
+! # define HAVE_REGEX_H 1
+
+ /*
+ * one of these is required for SysV like lockfiles
+ */
+! # define HAVE_SYS_SYSMACROS_H 0
+ # define HAVE_SYS_MKDEV_H 0
+
+***************
+*** 62,72 ****
+ * to get valid return values from localtime
+ */
+! # define HAVE_TZSET 0
+
+ /*
+ * If these are not set, chmod()/chown() are used
+ */
+! # define HAVE_FCHMOD 0
+! # define HAVE_FCHOWN 0
+
+ /*
+--- 62,72 ----
+ * to get valid return values from localtime
+ */
+! # define HAVE_TZSET 1
+
+ /*
+ * If these are not set, chmod()/chown() are used
+ */
+! # define HAVE_FCHMOD 1
+! # define HAVE_FCHOWN 1
+
+ /*
+***************
+*** 74,78 ****
+ * longjmp() from the signal handler leads into chaos
+ */
+! # define HAVE_SIGSETJMP 0
+
+ /*
+--- 74,78 ----
+ * longjmp() from the signal handler leads into chaos
+ */
+! # define HAVE_SIGSETJMP 1
+
+ /*
+***************
+*** 106,110 ****
+ * set this to 1, otherwise to 0
+ */
+! # define BROKEN_REALLOC 1
+
+ /* -------------- END OF CHANGEABLE PART ------------------ */
+--- 106,110 ----
+ * set this to 1, otherwise to 0
+ */
+! # define BROKEN_REALLOC 0
+
+ /* -------------- END OF CHANGEABLE PART ------------------ */
diff --git a/comms/yaps/files/patch-ac b/comms/yaps/files/patch-ac
new file mode 100644
index 000000000000..8981d1b16890
--- /dev/null
+++ b/comms/yaps/files/patch-ac
@@ -0,0 +1,10 @@
+*** valid.c~ Tue Jun 3 12:09:49 1997
+--- valid.c Tue Sep 29 15:26:39 1998
+***************
+*** 4,7 ****
+--- 4,8 ----
+ # include <stdlib.h>
+ # include <string.h>
++ # include <sys/types.h>
+ # include "pager.h"
+ # include "valid.h"
diff --git a/comms/yaps/files/patch-ad b/comms/yaps/files/patch-ad
new file mode 100644
index 000000000000..c967ef0d77f0
--- /dev/null
+++ b/comms/yaps/files/patch-ad
@@ -0,0 +1,13 @@
+*** tty.c~ Sat Jun 7 16:32:21 1997
+--- tty.c Tue Sep 29 15:32:05 1998
+***************
+*** 23,28 ****
+--- 23,30 ----
+ # include <sys/mkdev.h>
+ # else /* ! HAVE_SYS_SYSMACROS_H && ! HAVE_SYS_MKDEV_H */
++ # ifndef major
+ # define major(xx) (((xx) >> 8) & 0xff)
+ # define minor(xx) ((xx) & 0xff)
++ # endif /* major */
+ # endif /* HAVE_SYS_SYSMACROS_H || HAVE_SYS_MKDEV_H */
+ # include "pager.h"