diff options
author | root <root@rshg054.dnsready.net> | 2013-02-10 01:12:52 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-02-10 01:12:52 -0800 |
commit | 1bb2648cde916ac27d3dd75d7b64a4ddc89787b7 (patch) | |
tree | 016bfa1969323404c37dbef29cfc7242a5a8e9f3 /extra/ladspa | |
parent | e9c244cac8e5dc1c59c7e8b7bc885fef04224b70 (diff) |
Sun Feb 10 01:12:35 PST 2013
Diffstat (limited to 'extra/ladspa')
-rw-r--r-- | extra/ladspa/hardcode-path.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/extra/ladspa/hardcode-path.patch b/extra/ladspa/hardcode-path.patch deleted file mode 100644 index 821c2001c..000000000 --- a/extra/ladspa/hardcode-path.patch +++ /dev/null @@ -1,28 +0,0 @@ ---- src/search.c.orig 2008-11-07 00:38:18.000000000 +0100 -+++ src/search.c 2008-11-07 00:50:51.000000000 +0100 -@@ -83,6 +83,8 @@ - dlclose(pcFilename); - free(pcFilename); - } -+ } else { -+ free(pcFilename); - } - } - } -@@ -99,13 +101,10 @@ - - pcLADSPAPath = getenv("LADSPA_PATH"); - if (!pcLADSPAPath) { -- fprintf(stderr, -- "Warning: You do not have a LADSPA_PATH " -- "environment variable set.\n"); -- return; -+ pcStart = "/usr/lib/ladspa/"; -+ } else { -+ pcStart = pcLADSPAPath; - } -- -- pcStart = pcLADSPAPath; - while (*pcStart != '\0') { - pcEnd = pcStart; - while (*pcEnd != ':' && *pcEnd != '\0') |