Mercurial > audlegacy-plugins
changeset 1262:0618841906ca
The problem of not loading curl on Mach-based systems has been solved. MacOS's dyld gets confused when plugins refer to other code of the same name. Rename plugin binaries accordingly.
author | William Pitcock <nenolod@atheme-project.org> |
---|---|
date | Fri, 13 Jul 2007 12:21:37 -0500 |
parents | df8673a3e2f3 |
children | 458d46e65a86 |
files | src/curl/Makefile src/vorbis/Makefile src/wavpack/Makefile |
diffstat | 3 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/curl/Makefile Fri Jul 13 10:32:32 2007 -0500 +++ b/src/curl/Makefile Fri Jul 13 12:21:37 2007 -0500 @@ -3,7 +3,7 @@ SUBDIRS = -OBJECTIVE_LIBS = libcurl$(SHARED_SUFFIX) +OBJECTIVE_LIBS = libcurlsrc$(SHARED_SUFFIX) LIBDIR = $(plugindir)/$(TRANSPORT_PLUGIN_DIR)
--- a/src/vorbis/Makefile Fri Jul 13 10:32:32 2007 -0500 +++ b/src/vorbis/Makefile Fri Jul 13 12:21:37 2007 -0500 @@ -1,7 +1,7 @@ include ../../mk/rules.mk include ../../mk/init.mk -OBJECTIVE_LIBS = libvorbis$(SHARED_SUFFIX) +OBJECTIVE_LIBS = libvorbisplugin$(SHARED_SUFFIX) LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR)
--- a/src/wavpack/Makefile Fri Jul 13 10:32:32 2007 -0500 +++ b/src/wavpack/Makefile Fri Jul 13 12:21:37 2007 -0500 @@ -1,7 +1,7 @@ include ../../mk/rules.mk include ../../mk/init.mk -OBJECTIVE_LIBS = libwavpack$(SHARED_SUFFIX) +OBJECTIVE_LIBS = libwavpackplugin$(SHARED_SUFFIX) LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR)