aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkevlo <kevlo@FreeBSD.org>2001-08-20 23:49:25 +0800
committerkevlo <kevlo@FreeBSD.org>2001-08-20 23:49:25 +0800
commitcc22389c9dd6718d2323d1f800844a6a2bf8733b (patch)
treea2bfb3c24b1b3f666c87b33fffd8fce46d08ab85
parentc4800f8a41accae5560619bb8c70ab8aaf5019e2 (diff)
downloadfreebsd-ports-gnome-cc22389c9dd6718d2323d1f800844a6a2bf8733b.tar.gz
freebsd-ports-gnome-cc22389c9dd6718d2323d1f800844a6a2bf8733b.tar.zst
freebsd-ports-gnome-cc22389c9dd6718d2323d1f800844a6a2bf8733b.zip
Bad me. These files should be removed.
-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. */