summaryrefslogtreecommitdiff
path: root/graphics/gimpshop/files/patch-ab
blob: 6a11e5bcd9fa5ee7d95d75b7ae2813cd54f38e86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
*****
***** patches for plug-ins
*****

--- /a/gimp-0.99.6/plug-ins/url.c	Mon Mar 10 04:57:12 1997
+++ plug-ins/url.c	Wed Mar 12 21:56:39 1997
@@ -146,8 +146,8 @@
     }
   else if (pid == 0)
     {
-      execlp ("wget", "wget", filename, "-O", tmpname, NULL);
-      g_warning ("url: exec failed: wget: %s\n", g_strerror(errno));
+      execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL);
+      g_warning ("url: exec failed: fetch: %s\n", g_strerror(errno));
       _exit(127);
     }
   else

The patches for displace
------------------------
*** plug-ins/displace.c.ots	Tue Apr  8 09:07:34 1997
--- plug-ins/displace.c	Tue Apr  8 09:53:32 1997
***************
*** 222,231 ****
  	  dvals.amount_x = param[3].data.d_float;
  	  dvals.amount_y = param[4].data.d_float;
  	  dvals.do_x = param[5].data.d_int32;
! 	  dvals.do_x = param[6].data.d_int32;
  	  dvals.displace_map_x = param[7].data.d_int32;
  	  dvals.displace_map_y = param[8].data.d_int32;
  	  dvals.displace_type = param[9].data.d_int32;
  	}
        break;
  
--- 222,238 ----
  	  dvals.amount_x = param[3].data.d_float;
  	  dvals.amount_y = param[4].data.d_float;
  	  dvals.do_x = param[5].data.d_int32;
! 	  dvals.do_y = param[6].data.d_int32;
  	  dvals.displace_map_x = param[7].data.d_int32;
  	  dvals.displace_map_y = param[8].data.d_int32;
  	  dvals.displace_type = param[9].data.d_int32;
+ 
+ 	  if (dvals.do_x && 
+ 	      gimp_drawable_type(dvals.displace_map_x) != GRAY_IMAGE)
+ 	    status = STATUS_CALLING_ERROR;
+ 	  if (dvals.do_y && 
+ 	      gimp_drawable_type(dvals.displace_map_y) != GRAY_IMAGE)
+ 	    status = STATUS_CALLING_ERROR;
  	}
        break;
  
***************
*** 566,592 ****
  	      if (dvals.displace_type == WRAP)
  		{
  		  if (xi < 0)
! 		    xi = width - (-xi % width);
  		  else
! 		    xi %= width;
  
  		  if (yi < 0)
! 		    yi = height - (-yi % height);
  		  else
! 		    yi %= height;
  		}
  	      /* Smear out the edges of the image by repeating pixels. */
  	      else if (dvals.displace_type == SMEAR)
  		{
  		  if (xi < 0)
  		    xi = 0;
! 		  else if (xi > width - 1)
! 		    xi = width - 1;
  
  		  if (yi < 0)
  		    yi = 0;
! 		  else if (yi > height - 1)
! 		    yi = height - 1;
  		}
  
  	      tile = displace_pixel (drawable, tile, x1, y1, x2, y2, xi, yi, &row, &col, pixel[0]);
--- 573,599 ----
  	      if (dvals.displace_type == WRAP)
  		{
  		  if (xi < 0)
! 		    xi = (width-1) - (-xi % (width-1));
  		  else
! 		    xi %= (width-1);
  
  		  if (yi < 0)
! 		    yi = (height-1) - (-yi % (height-1));
  		  else
! 		    yi %= (height-1);
  		}
  	      /* Smear out the edges of the image by repeating pixels. */
  	      else if (dvals.displace_type == SMEAR)
  		{
  		  if (xi < 0)
  		    xi = 0;
! 		  else if (xi > width - 2)
! 		    xi = width - 2;
  
  		  if (yi < 0)
  		    yi = 0;
! 		  else if (yi > height - 2)
! 		    yi = height - 2;
  		}
  
  	      tile = displace_pixel (drawable, tile, x1, y1, x2, y2, xi, yi, &row, &col, pixel[0]);

--- plug-ins/script-fu/interp_regex.c~	Fri Apr 18 14:00:00 1997
+++ plug-ins/script-fu/interp_regex.c	Fri Apr 18 14:00:45 1997
@@ -1,3 +1,4 @@
+#include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>

--- plug-ins/dgimp/dgimp.c.orig	Wed Apr 30 11:39:18 1997
+++ plug-ins/dgimp/dgimp.c	Wed Apr 30 11:38:42 1997
@@ -15,6 +15,7 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
+#include <sys/types.h>
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
--- plug-ins/dgimp/lgp.c.orig	Wed Apr 30 11:39:18 1997
+++ plug-ins/dgimp/lgp.c	Wed Apr 30 11:39:00 1997
@@ -15,6 +15,7 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
+#include <sys/types.h>
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>