summaryrefslogtreecommitdiffstats
path: root/ext/ladspa/load.c
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-06-04 19:32:16 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-06-04 19:32:16 +0000
commitf4598130ca531bbb5a9e3eb8a2b9dc7d351d4d2b (patch)
tree8a277aed9013deb7665638c0dd8a0218222efef2 /ext/ladspa/load.c
parentdeef2f51cd2dff58342d8c146e17e3b5739d7028 (diff)
hacked around LADSPA_PATH as suggested to wingo
Original commit message from CVS: hacked around LADSPA_PATH as suggested to wingo
Diffstat (limited to 'ext/ladspa/load.c')
-rw-r--r--ext/ladspa/load.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/ext/ladspa/load.c b/ext/ladspa/load.c
index 148f98fb..c912106f 100644
--- a/ext/ladspa/load.c
+++ b/ext/ladspa/load.c
@@ -9,6 +9,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <glib.h>
/*****************************************************************************/
@@ -53,7 +54,12 @@ dlopenLADSPA(const char * pcFilename, int iFlag) {
LD_LIBRARY_PATH, whereas the LADSPA_PATH is the correct place
to search. */
- pcLADSPAPath = getenv("LADSPA_PATH");
+ /* thomasvs: I'm sorry, but I'm going to add glib stuff here.
+ * I'm appending logical values for LADSPA_PATH here
+ */
+
+ pcLADSPAPath = g_strdup_printf ("%s:/usr/lib/ladspa:/usr/local/lib/ladspa",
+ getenv("LADSPA_PATH"));
if (pcLADSPAPath) {