diff options
Diffstat (limited to 'deskutils/xrolo/files')
-rw-r--r-- | deskutils/xrolo/files/patch-Imakefile | 65 | ||||
-rw-r--r-- | deskutils/xrolo/files/patch-cards.c | 89 | ||||
-rw-r--r-- | deskutils/xrolo/files/patch-main.c | 45 | ||||
-rw-r--r-- | deskutils/xrolo/files/patch-panel.c | 43 | ||||
-rw-r--r-- | deskutils/xrolo/files/patch-phone.c | 20 | ||||
-rw-r--r-- | deskutils/xrolo/files/patch-popup.c | 38 |
6 files changed, 0 insertions, 300 deletions
diff --git a/deskutils/xrolo/files/patch-Imakefile b/deskutils/xrolo/files/patch-Imakefile deleted file mode 100644 index 8a6067b6b768..000000000000 --- a/deskutils/xrolo/files/patch-Imakefile +++ /dev/null @@ -1,65 +0,0 @@ -*** Imakefile.orig Tue Dec 3 23:29:46 1991 ---- Imakefile Sat Jan 9 23:01:51 1999 -*************** -*** 9,15 **** - # patching ol_button.c. see README for details. - # LOCAL_LIBRARIES = -lxview -lolgx - -! CDEBUGFLAGS = -g - SRCS = main.c panel.c cards.c popup.c send_mail.c soundex.c phone.c - OBJS = main.o panel.o cards.o popup.o send_mail.o soundex.o phone.o - INCLUDES = -I$$OPENWINHOME/include ---- 9,15 ---- - # patching ol_button.c. see README for details. - # LOCAL_LIBRARIES = -lxview -lolgx - -! # CDEBUGFLAGS = -g - SRCS = main.c panel.c cards.c popup.c send_mail.c soundex.c phone.c - OBJS = main.o panel.o cards.o popup.o send_mail.o soundex.o phone.o - INCLUDES = -I$$OPENWINHOME/include -*************** -*** 24,35 **** - # in DEFINES if your system is not a sparcstation w/ installed - # sound libraries. - -! MAILER = /bin/mail - VERSION = 2.0 -! SOUNDS = /usr/local/lib/sounds # or /usr/demo/SOUNDS/sounds - DEFINES = -DSTANDALONE -DMAILER=\"$(MAILER)\" -DVERSION=\"$(VERSION)\" \ - # -Wf,-XNl4096 # -DSOUNDS=\"$(SOUNDS)\" # -DOL - - # - # comment this out if you do not have SOUNDS defined above - #AUDIOLIB = -laudio -lm ---- 24,37 ---- - # in DEFINES if your system is not a sparcstation w/ installed - # sound libraries. - -! MAILER = /usr/bin/mail - VERSION = 2.0 -! SOUNDS = /usr/local/share/sounds # or /usr/demo/SOUNDS/sounds - DEFINES = -DSTANDALONE -DMAILER=\"$(MAILER)\" -DVERSION=\"$(VERSION)\" \ -+ -DDONT_USE_MALLOC_LIST - # -Wf,-XNl4096 # -DSOUNDS=\"$(SOUNDS)\" # -DOL - -+ - # - # comment this out if you do not have SOUNDS defined above - #AUDIOLIB = -laudio -lm -*************** -*** 38,44 **** - # linking against openlook libraries on suns after patching ol_button.c. - # see README for details. - #LOCAL_LIBRARIES = -L$$OPENWINHOME/lib -lxview -Bstatic -lolgx -Bdynamic $(AUDIOLIB) -! LOCAL_LIBRARIES = -L$$OPENWINHOME/lib -lxview -lolgx $(AUDIOLIB) - AllTarget(xrolo) - NormalProgramTarget(xrolo,$(OBJS),$(DEPLIBS), $(LOCAL_LIBRARIES), $(XLIB)) - InstallProgram(xrolo, $(BINDIR)) ---- 40,46 ---- - # linking against openlook libraries on suns after patching ol_button.c. - # see README for details. - #LOCAL_LIBRARIES = -L$$OPENWINHOME/lib -lxview -Bstatic -lolgx -Bdynamic $(AUDIOLIB) -! LOCAL_LIBRARIES = -L$$OPENWINHOME/lib -lxview -lolgx $(AUDIOLIB) -lgnuregex - AllTarget(xrolo) - NormalProgramTarget(xrolo,$(OBJS),$(DEPLIBS), $(LOCAL_LIBRARIES), $(XLIB)) - InstallProgram(xrolo, $(BINDIR)) diff --git a/deskutils/xrolo/files/patch-cards.c b/deskutils/xrolo/files/patch-cards.c deleted file mode 100644 index 7350022f2928..000000000000 --- a/deskutils/xrolo/files/patch-cards.c +++ /dev/null @@ -1,89 +0,0 @@ -*** cards.c.orig Tue Dec 3 23:33:56 1991 ---- cards.c Sat Oct 1 20:07:14 2005 -*************** -*** 36,47 **** - */ - - - - #include <stdio.h> - #include <xview/xview.h> - #include <sys/file.h> - #include <ctype.h> -! #if !defined(sgi) - #include <alloca.h> - #endif - #include <pwd.h> ---- 36,56 ---- - */ - - -+ #if (defined(__unix__) || defined(unix)) && !defined(USG) -+ #include <sys/param.h> -+ #endif -+ -+ #if (defined(BSD) && (BSD >= 199306)) -+ #include <stdlib.h> -+ #include <strings.h> -+ #include <errno.h> -+ #endif - - #include <stdio.h> - #include <xview/xview.h> - #include <sys/file.h> - #include <ctype.h> -! #if !defined(sgi) && !(defined(BSD) && (BSD >= 199306)) - #include <alloca.h> - #endif - #include <pwd.h> -*************** -*** 71,85 **** - - extern void show_card (), set_slider_max (); - - extern char *malloc(), *realloc (), *calloc (), *getenv(); - #if !defined(sgi) - extern char *strcpy(), *strcat(), *strncpy (), *index (); - #endif - extern char *sys_errlist []; - - extern int errno; - -- - /* --------------------------- Locals -------------------------------------- */ - - static struct card *dead; ---- 80,95 ---- - - extern void show_card (), set_slider_max (); - -+ #if !(defined (BSD) && (BSD >= 199306)) - extern char *malloc(), *realloc (), *calloc (), *getenv(); - #if !defined(sgi) - extern char *strcpy(), *strcat(), *strncpy (), *index (); - #endif - extern char *sys_errlist []; -+ #endif - - extern int errno; - - /* --------------------------- Locals -------------------------------------- */ - - static struct card *dead; -*************** -*** 757,763 **** - char *s1, *s2; - { - int retval; -! char *p1, *alloca(); - char *p2; - - if ( *s2 == '\0' && *s1 == '\0') ---- 767,773 ---- - char *s1, *s2; - { - int retval; -! char *p1; - char *p2; - - if ( *s2 == '\0' && *s1 == '\0') diff --git a/deskutils/xrolo/files/patch-main.c b/deskutils/xrolo/files/patch-main.c deleted file mode 100644 index ae3a9df6999e..000000000000 --- a/deskutils/xrolo/files/patch-main.c +++ /dev/null @@ -1,45 +0,0 @@ -*** main.c.org Sat Jan 9 22:25:04 1999 ---- main.c Sat Jan 9 22:26:03 1999 -*************** -*** 39,45 **** - #include <sys/param.h> - #include <stdio.h> - #include <sys/types.h> -! #include <sys/dir.h> - #include <xview/xview.h> - #include <xview/panel.h> - #include <xview/textsw.h> ---- 39,45 ---- - #include <sys/param.h> - #include <stdio.h> - #include <sys/types.h> -! #include <sys/dirent.h> - #include <xview/xview.h> - #include <xview/panel.h> - #include <xview/textsw.h> -*************** -*** 65,72 **** - - extern void init_rolo (); - -! extern char *check_args (), *getenv (), *strcpy (), -! *calloc (), *malloc (); - - extern char *exp_fname(); - ---- 65,72 ---- - - extern void init_rolo (); - -! extern char *check_args (), *getenv (), *strcpy ();/*, -! *calloc (), *malloc ();*/ - - extern char *exp_fname(); - -*************** -*** 320,323 **** - - return (strcpy (q, p)); - } -- ---- 320,322 ---- diff --git a/deskutils/xrolo/files/patch-panel.c b/deskutils/xrolo/files/patch-panel.c deleted file mode 100644 index 9306bd8febb7..000000000000 --- a/deskutils/xrolo/files/patch-panel.c +++ /dev/null @@ -1,43 +0,0 @@ -*** panel.c.orig Wed Dec 4 01:38:09 1991 ---- panel.c Sat Oct 1 20:05:54 2005 -*************** -*** 35,40 **** ---- 35,48 ---- - */ - - -+ #if (defined(__unix__) || defined(unix)) && !defined(USG) -+ #include <sys/param.h> -+ #endif -+ -+ #if (defined(BSD) && (BSD >= 199306)) -+ #include <stdlib.h> -+ #endif -+ - #include <stdio.h> - #include <strings.h> - #include <xview/xview.h> -*************** -*** 46,52 **** - #include <xview/svrimage.h> - #include <sys/param.h> - #include <ctype.h> -! #if !defined (sgi) - #include <alloca.h> - #endif - #include <string.h> ---- 54,60 ---- - #include <xview/svrimage.h> - #include <sys/param.h> - #include <ctype.h> -! #if !defined (sgi) && !(defined(BSD) && (BSD >= 199306)) - #include <alloca.h> - #endif - #include <string.h> -*************** -*** 2462,2465 **** - return(--s1); - return( NULL ); - } -- ---- 2470,2472 ---- diff --git a/deskutils/xrolo/files/patch-phone.c b/deskutils/xrolo/files/patch-phone.c deleted file mode 100644 index 2f63945f2ee4..000000000000 --- a/deskutils/xrolo/files/patch-phone.c +++ /dev/null @@ -1,20 +0,0 @@ -*** phone.c.org Sat Jan 9 22:25:15 1999 ---- phone.c Sat Jan 9 22:25:52 1999 -*************** -*** 7,13 **** - - #include <xview/xview.h> - #include <xview/panel.h> -! #include <sys/dir.h> - #include "defs.h" - - static Frame volume_frame; ---- 7,14 ---- - - #include <xview/xview.h> - #include <xview/panel.h> -! #include <sys/types.h> -! #include <sys/dirent.h> - #include "defs.h" - - static Frame volume_frame; diff --git a/deskutils/xrolo/files/patch-popup.c b/deskutils/xrolo/files/patch-popup.c deleted file mode 100644 index 499521c5cef2..000000000000 --- a/deskutils/xrolo/files/patch-popup.c +++ /dev/null @@ -1,38 +0,0 @@ -*** popup.c.orig Tue Dec 3 23:28:39 1991 ---- popup.c Sat Oct 1 20:06:23 2005 -*************** -*** 6,11 **** ---- 6,14 ---- - * popup - pop up error dialog windows - */ - -+ #if (defined(__unix__) || defined(unix)) && !defined(USG) -+ #include <sys/param.h> -+ #endif - - #include <xview/xview.h> - #include <xview/panel.h> -*************** -*** 26,32 **** - - /* ---------------------------- Imports -------------------------------- */ - -! #if !defined(sgi) - extern char *sprintf (); - #endif - ---- 29,35 ---- - - /* ---------------------------- Imports -------------------------------- */ - -! #if !defined(sgi) && !(defined(BSD) && (BSD >= 199306)) - extern char *sprintf (); - #endif - -*************** -*** 92,95 **** - (void) sprintf (temp, s, a0, a1, a2, a3, a4, a5, a6, a7, a8, a9); - return (do_pop (frame, temp, FALSE)); - } -- ---- 95,97 ---- |