1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-30 21:49:25 +00:00
freebsd-ports/graphics/gimp/files/patch-ab
Maxim Sobolev 3f5cc53518 Update 1.1.24.
Also provide following enhancements:
- Remove PLIST.perl and merge its contents into main PLIST using Satoshi's
  %%PORTDOCS:%% hack;
- the same as previous for Gnome bits;
- automatically generate and substitute shared libraries version;
- slightly reorder Makefile to be more organised;
- remove mailformed pieces from configure patch (it is appears that somebody
  did diff after USE_LIBTOOL hack has been applied).
2000-06-26 16:06:17 +00:00

14 lines
589 B
Plaintext

--- plug-ins/common/url.c.orig Wed Jun 7 21:46:43 2000
+++ plug-ins/common/url.c Mon Jun 26 12:20:54 2000
@@ -187,8 +187,8 @@
dup (p[1]);
close (p[1]);
putenv ("LC_ALL=C"); /* produce deterministic output */
- execlp ("wget", "wget", "-T", TIMEOUT, filename, "-O", tmpname, NULL);
- g_message ("url: exec() failed: wget: %s", g_strerror (errno));
+ execlp ("fetch", "fetch", "-T", TIMEOUT, filename, "-p", "-o", tmpname, NULL);
+ g_message ("url: exec() failed: fetch: %s", g_strerror(errno));
g_free (tmpname);
_exit (127);
}