summaryrefslogtreecommitdiff
path: root/net/napshare/files
diff options
context:
space:
mode:
Diffstat (limited to 'net/napshare/files')
-rw-r--r--net/napshare/files/patch-aa14
-rw-r--r--net/napshare/files/patch-ab11
2 files changed, 0 insertions, 25 deletions
diff --git a/net/napshare/files/patch-aa b/net/napshare/files/patch-aa
deleted file mode 100644
index 9eb943e6f166..000000000000
--- a/net/napshare/files/patch-aa
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/hosts.c.orig Sat Jan 4 13:25:05 2003
-+++ src/hosts.c Sat Jan 4 13:27:43 2003
-@@ -265,6 +265,11 @@
- g_snprintf(h_tmp, sizeof(h_tmp), "%s/NAPS-urlcache.txt", path);
- cachef = fopen(h_tmp, "r"); // open the normal file
- }
-+ // Try opening from data directory
-+ if (cachef == NULL) {
-+ g_snprintf(h_tmp, sizeof(h_tmp), "%s/NAPS-urlcache.txt", PACKAGE_DATA_DIR);
-+ cachef = fopen(h_tmp, "r");
-+ }
- }
-
- if (!cachef) {
diff --git a/net/napshare/files/patch-ab b/net/napshare/files/patch-ab
deleted file mode 100644
index a11691a4ff67..000000000000
--- a/net/napshare/files/patch-ab
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.in.orig Sat Jan 4 13:47:04 2003
-+++ Makefile.in Sat Jan 4 13:47:33 2003
-@@ -362,6 +362,8 @@
- fi \
- done \
- fi
-+ $(mkinstalldirs) $(DESTDIR)$(pkgdatadir); \
-+ $(INSTALL_DATA) $(srcdir)/NAPS-urlcache.txt $(DESTDIR)$(pkgdatadir);
-
- dist-hook:
- if test -d pixmaps; then \