summaryrefslogtreecommitdiff
path: root/audio/cmp3/files/patch-ae
diff options
context:
space:
mode:
authorFelippe de Meirelles Motta <lippe@FreeBSD.org>2009-09-20 17:17:09 +0000
committerFelippe de Meirelles Motta <lippe@FreeBSD.org>2009-09-20 17:17:09 +0000
commit03222431d093a975f711824adb2d91285c157e2d (patch)
treed6ca8a32df1e4ba681e46278b7fccc2b7516da8e /audio/cmp3/files/patch-ae
parentUpdate to 0.25. (diff)
- Pass maintainership to submitter.
- Make portlint happy. PR: ports/138993 Submitted by: Sylvio Cesar <scjamorim@bsd.com.br> Feature safe: yes
Diffstat (limited to 'audio/cmp3/files/patch-ae')
-rw-r--r--audio/cmp3/files/patch-ae22
1 files changed, 0 insertions, 22 deletions
diff --git a/audio/cmp3/files/patch-ae b/audio/cmp3/files/patch-ae
deleted file mode 100644
index a97c5c17af3f..000000000000
--- a/audio/cmp3/files/patch-ae
+++ /dev/null
@@ -1,22 +0,0 @@
---- cmp3main.c.orig Fri Mar 17 08:40:00 2000
-+++ cmp3main.c Fri Jan 12 02:16:41 2001
-@@ -33,13 +33,18 @@
- int lastleftline = 0;
- int lastrightline = 0;
- char *init_dir = NULL;
-+ char *home_dir = NULL;
-+ char cmp3_config[4096];
-
- if (argc > 1)
- docmdline(argc, argv);
- shm_init();
-
- cmp3rc = ini_create();
-- if (ini_load(cmp3rc, CMP3_CONFIG) == INI_FAIL)
-+ home_dir = getenv("HOME");
-+ strcpy (cmp3_config, home_dir);
-+ strcat (cmp3_config, "/.cmp3rc");
-+ if (ini_load(cmp3rc, cmp3_config) == INI_FAIL)
- {
- ini_destroy(cmp3rc);
- cmp3rc = NULL;