aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/gimpshop/files/patch-ab
blob: 4eca93b6171ec0ff9941d3940110dec16a473e12 (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
--- /a/gimp-0.99.6/gtk+/configure   Mon Mar 10 04:44:20 1997
+++ gtk+/configure  Wed Mar 12 21:29:11 1997
@@ -570,6 +570,7 @@
 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
 # ./install, which can be erroneously created by make from ./install.sh.
 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
+INSTALL="/usr/bin/install -c"
 echo "configure:574: checking for a BSD compatible install" >&5
 if test -z "$INSTALL"; then
 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
--- /a/gimp-0.99.6/gtk+/glib/configure  Mon Mar 10 04:44:57 1997
+++ gtk+/glib/configure Wed Mar 12 21:29:39 1997
@@ -560,6 +560,7 @@
 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
 # ./install, which can be erroneously created by make from ./install.sh.
 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
+INSTALL="/usr/bin/install -c"
 echo "configure:564: checking for a BSD compatible install" >&5
 if test -z "$INSTALL"; then
 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
--- /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