summaryrefslogtreecommitdiff
path: root/x11/xbanner/files/patch-ad
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1999-06-06 18:11:04 +0000
committerSteve Price <steve@FreeBSD.org>1999-06-06 18:11:04 +0000
commitac8274b67c03a00b61eb003c4b3e8d617a1d092a (patch)
tree4abe3f4417dc3aa0c003f1ebfd975ec6a4daef31 /x11/xbanner/files/patch-ad
parentAdd the gedit port and re-order the gnotepad+ port. (diff)
Fix the following problems with version 1.31 of the xbanner port.
- installing in libexec directory isn't useful - app-defaults file could only be found when XAPPLRESDIR enviroment variable is set -> patch in sourcefile is needed - some compiler warnings and gets usage is fixed - wrong usage of isnumber macro fixed PR: 11768 Submitted by: Lars Koeller <lkoeller@cc.fh-lippe.de>
Diffstat (limited to 'x11/xbanner/files/patch-ad')
-rw-r--r--x11/xbanner/files/patch-ad154
1 files changed, 154 insertions, 0 deletions
diff --git a/x11/xbanner/files/patch-ad b/x11/xbanner/files/patch-ad
new file mode 100644
index 000000000000..65867854f820
--- /dev/null
+++ b/x11/xbanner/files/patch-ad
@@ -0,0 +1,154 @@
+*** backg.c.org Tue May 18 20:52:54 1999
+--- backg.c Tue May 18 20:54:22 1999
+***************
+*** 5,11 ****
+ #include <stdlib.h>
+ #include <string.h>
+ #ifndef vms
+! #include <malloc.h>
+ #endif
+ #include <math.h>
+
+--- 5,14 ----
+ #include <stdlib.h>
+ #include <string.h>
+ #ifndef vms
+! #include <sys/param.h>
+! # if !(defined(BSD) && (BSD >= 199306))
+! # include <malloc.h>
+! # endif
+ #endif
+ #include <math.h>
+
+*** colors.c.org Tue May 18 20:54:37 1999
+--- colors.c Tue May 18 20:55:39 1999
+***************
+*** 7,13 ****
+ #include <stdio.h>
+ #include <ctype.h>
+ #ifndef vms
+! #include <malloc.h>
+ #endif
+
+ /* X11 include(s) */
+--- 7,16 ----
+ #include <stdio.h>
+ #include <ctype.h>
+ #ifndef vms
+! #include <sys/param.h>
+! # if !(defined(BSD) && (BSD >= 199306))
+! # include <malloc.h>
+! # endif
+ #endif
+
+ /* X11 include(s) */
+*** effect.c.org Tue May 18 20:55:49 1999
+--- effect.c Tue May 18 20:56:39 1999
+***************
+*** 7,13 ****
+ #include <stdio.h>
+ #include <ctype.h>
+ #ifndef vms
+! #include <malloc.h>
+ #endif
+
+ /* X11 include(s) */
+--- 7,16 ----
+ #include <stdio.h>
+ #include <ctype.h>
+ #ifndef vms
+! #include <sys/param.h>
+! # if !(defined(BSD) && (BSD >= 199306))
+! # include <malloc.h>
+! # endif
+ #endif
+
+ /* X11 include(s) */
+*** plasma.c.org Tue May 18 20:55:56 1999
+--- plasma.c Tue May 18 20:56:58 1999
+***************
+*** 2,8 ****
+ #include <math.h>
+ #include <stdlib.h>
+ #ifndef vms
+! #include <malloc.h>
+ #endif
+
+ #include <X11/Xlib.h>
+--- 2,11 ----
+ #include <math.h>
+ #include <stdlib.h>
+ #ifndef vms
+! #include <sys/param.h>
+! # if !(defined(BSD) && (BSD >= 199306))
+! # include <malloc.h>
+! # endif
+ #endif
+
+ #include <X11/Xlib.h>
+*** random_effect.c.org Tue May 18 20:56:06 1999
+--- random_effect.c Tue May 18 20:57:12 1999
+***************
+*** 1,7 ****
+ #include <stdio.h>
+ #include <stdlib.h>
+ #ifndef vms
+! #include <malloc.h>
+ #endif
+ #include <time.h>
+ #include <string.h>
+--- 1,10 ----
+ #include <stdio.h>
+ #include <stdlib.h>
+ #ifndef vms
+! #include <sys/param.h>
+! # if !(defined(BSD) && (BSD >= 199306))
+! # include <malloc.h>
+! # endif
+ #endif
+ #include <time.h>
+ #include <string.h>
+*** ripples.c.org Tue May 18 20:56:11 1999
+--- ripples.c Tue May 18 20:57:22 1999
+***************
+*** 2,8 ****
+ #include <math.h>
+ #include <stdlib.h>
+ #ifndef vms
+! #include <malloc.h>
+ #endif
+
+ /* use this to change if you want ripples with more than 256 colors */
+--- 2,11 ----
+ #include <math.h>
+ #include <stdlib.h>
+ #ifndef vms
+! #include <sys/param.h>
+! # if !(defined(BSD) && (BSD >= 199306))
+! # include <malloc.h>
+! # endif
+ #endif
+
+ /* use this to change if you want ripples with more than 256 colors */
+*** util.c.org Tue May 18 20:56:18 1999
+--- util.c Tue May 18 20:57:34 1999
+***************
+*** 7,13 ****
+ #include <stdlib.h>
+
+ #ifndef vms
+! #include <malloc.h>
+ #endif
+
+ #include <X11/Xlib.h>
+--- 7,16 ----
+ #include <stdlib.h>
+
+ #ifndef vms
+! #include <sys/param.h>
+! # if !(defined(BSD) && (BSD >= 199306))
+! # include <malloc.h>
+! # endif
+ #endif
+
+ #include <X11/Xlib.h>