diff options
author | eric <eric@FreeBSD.org> | 2001-08-21 03:28:51 +0800 |
---|---|---|
committer | eric <eric@FreeBSD.org> | 2001-08-21 03:28:51 +0800 |
commit | 8cb146d507844021a5ae84e590281afa9fc081d8 (patch) | |
tree | b23ea5f2d223503cf605b3e7ca3798aa57a5cefd /www | |
parent | 447667032604e1ea70168a80d4acc890116efba9 (diff) | |
download | freebsd-ports-gnome-8cb146d507844021a5ae84e590281afa9fc081d8.tar.gz freebsd-ports-gnome-8cb146d507844021a5ae84e590281afa9fc081d8.tar.zst freebsd-ports-gnome-8cb146d507844021a5ae84e590281afa9fc081d8.zip |
Remove a patch that has merged into the distfile.
Diffstat (limited to 'www')
-rw-r--r-- | www/skipstone/files/patch-ad | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/www/skipstone/files/patch-ad b/www/skipstone/files/patch-ad deleted file mode 100644 index 448e44d67aba..000000000000 --- a/www/skipstone/files/patch-ad +++ /dev/null @@ -1,27 +0,0 @@ ---- src/ipc.c.orig Fri Jul 13 12:25:24 2001 -+++ src/ipc.c Tue Jul 24 05:43:12 2001 -@@ -88,13 +88,13 @@ - fclose(pidfile); - if (kill(pid,0) == 0) { /* its alive */ - if (argc < 2) { /* No args, just a new window */ -- kill(pid,10); -+ kill(pid,SIGUSR1); - } else { /* Url, print it to file so we can read it when we launch the new window */ - arg = g_strconcat(home,"/.skipstone/sig_url",NULL); - url_file = fopen(arg,"w"); - if (url_file == NULL) { - g_print(_("Could not open the url arg file for some reason\n")); -- kill(pid,10); -+ kill(pid,SIGUSR1); - g_free(arg); - } else { - gint i; -@@ -108,7 +108,7 @@ - fprintf(url_file,"url=%s\n",argv[i]); - } - fclose(url_file); -- kill(pid,10); -+ kill(pid,SIGUSR1); - g_free(arg); - } - |