summaryrefslogtreecommitdiff
path: root/misc/fooseti/patches
diff options
context:
space:
mode:
Diffstat (limited to 'misc/fooseti/patches')
-rw-r--r--misc/fooseti/patches/patch-aa13
-rw-r--r--misc/fooseti/patches/patch-ab17
2 files changed, 0 insertions, 30 deletions
diff --git a/misc/fooseti/patches/patch-aa b/misc/fooseti/patches/patch-aa
deleted file mode 100644
index c1eff8dcd0f..00000000000
--- a/misc/fooseti/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2002/12/28 15:37:37 jmmv Exp $
-
---- src/prefs.c.orig Sun Dec 23 17:34:14 2001
-+++ src/prefs.c
-@@ -183,7 +183,7 @@ show_prefs()
- if (seti.client != NULL)
- gtk_entry_set_text(GTK_ENTRY(client), seti.client);
- else
-- gtk_entry_set_text(GTK_ENTRY(client), "setiathome");
-+ gtk_entry_set_text(GTK_ENTRY(client), PKG_BINDIR "/setiathome");
-
- if (options.name)
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(name_check), TRUE);
diff --git a/misc/fooseti/patches/patch-ab b/misc/fooseti/patches/patch-ab
deleted file mode 100644
index 257566e596f..00000000000
--- a/misc/fooseti/patches/patch-ab
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 2002/12/28 15:37:37 jmmv Exp $
-
---- src/fileIO.c.orig Mon Dec 24 02:15:53 2001
-+++ src/fileIO.c
-@@ -344,10 +344,10 @@ runClient()
- show_error(NULLPATH);
- } // if the path is null
- else {
-- client = g_strdup_printf("%s/%s", seti.path, seti.client);
-+ client = g_strdup_printf("%s", seti.client);
-
- if(!stat(client, &statBuf)) {
-- command = g_strdup_printf("cd %s ; ./%s %s &", seti.path, seti.client, data.args);
-+ command = g_strdup_printf("cd %s ; %s %s &", seti.path, seti.client, data.args);
- system(command);
- g_free(command);
- update();