diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-06-26 16:06:17 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-06-26 16:06:17 +0000 |
commit | 3f5cc535186eb6711a3cd007c5751e0954d544f9 (patch) | |
tree | 7ec590283d18fc892841af26ac8b181fa2163f35 /graphics/gimp1/files/patch-ab | |
parent | Make sure to have plugin directory. (diff) |
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).
Notes
Notes:
svn path=/head/; revision=29885
Diffstat (limited to 'graphics/gimp1/files/patch-ab')
-rw-r--r-- | graphics/gimp1/files/patch-ab | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/graphics/gimp1/files/patch-ab b/graphics/gimp1/files/patch-ab index 2e37f7c44cff..d0d7c4ef2415 100644 --- a/graphics/gimp1/files/patch-ab +++ b/graphics/gimp1/files/patch-ab @@ -1,13 +1,13 @@ ---- plug-ins/common/url.c.orig Tue Feb 1 16:09:01 2000 -+++ plug-ins/common/url.c Sat Feb 19 13:51:36 2000 -@@ -158,8 +158,8 @@ - } - else if (pid == 0) - { -- execlp ("wget", "wget", filename, "-O", tmpname, NULL); -- g_message ("url: exec failed: wget: %s\n", g_strerror(errno)); -+ execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL); -+ g_message ("url: exec failed: fetch: %s\n", g_strerror(errno)); +--- 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); + _exit (127); } |