summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorEric Melville <eric@FreeBSD.org>2001-08-20 19:28:51 +0000
committerEric Melville <eric@FreeBSD.org>2001-08-20 19:28:51 +0000
commitfbb994e7b84d95e765daa3835274db3e59bd543d (patch)
treec93979000e97cb95fa12bb818fd178b11e1129dc /www
parentRemove the extra Worm.desktop screensaver entry. Leave only the screensaver (diff)
Remove a patch that has merged into the distfile.
Notes
Notes: svn path=/head/; revision=46559
Diffstat (limited to 'www')
-rw-r--r--www/skipstone/files/patch-ad27
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);
- }
-