aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Lo <kevlo@FreeBSD.org>2001-08-20 15:49:25 +0000
committerKevin Lo <kevlo@FreeBSD.org>2001-08-20 15:49:25 +0000
commitf657330e67f409c4e77506447b9d63447bef24df (patch)
treeb20151441b76eac1cc73d41d986603fb7a4d96f3
parentf8ea58f62b817fdb669ce9cdbf95f12365deac08 (diff)
downloadports-f657330e67f409c4e77506447b9d63447bef24df.tar.gz
ports-f657330e67f409c4e77506447b9d63447bef24df.zip
Notes
-rw-r--r--audio/xhippo/files/patch-aa18
-rw-r--r--audio/xhippo/files/patch-ab22
2 files changed, 0 insertions, 40 deletions
diff --git a/audio/xhippo/files/patch-aa b/audio/xhippo/files/patch-aa
deleted file mode 100644
index a3017fa71d24..000000000000
--- a/audio/xhippo/files/patch-aa
+++ /dev/null
@@ -1,18 +0,0 @@
---- callbacks.c.orig Wed Jun 6 09:05:30 2001
-+++ callbacks.c Wed Jun 6 09:07:03 2001
-@@ -428,11 +428,12 @@
- if (!(*++q == '\n')) break;
- *q = '\0';
- if (strlen(p) > 5 && !strncmp(p, "file:", 5)) {
-- if (filetype(p + 5) == 2) {
-+#ifdef HAVE_NFTW
-+ if (filetype(p + 5) == 2)
- add_directory(p + 5);
-- } else {
-+#endif
-+ if (filetype(p + 5) != 2)
- add_file(p + 5);
-- }
- }
- p = q + 1;
- }
diff --git a/audio/xhippo/files/patch-ab b/audio/xhippo/files/patch-ab
deleted file mode 100644
index 95529b92f0bd..000000000000
--- a/audio/xhippo/files/patch-ab
+++ /dev/null
@@ -1,22 +0,0 @@
---- xhippo.c.orig Wed Jun 6 09:03:19 2001
-+++ xhippo.c Wed Jun 6 09:05:04 2001
-@@ -611,13 +611,14 @@
-
- /* Deal with non-options */
- while (optind < argc) {
-- if (mode_commandline_songs) {
-+ if (mode_commandline_songs)
- add_file(argv[optind++]);
-- } else if (mode_commandline_dirs) {
-- add_directory(argv[optind++]);
-- } else {
-+ else
- read_playlist(argv[optind++]);
-- }
-+#ifdef HAVE_NFTW
-+ if (mode_commandline_dirs)
-+ add_directory(argv[optind++]);
-+#endif
- }
-
- /* Show the list and scrollbar. */