Skip to content

Instantly share code, notes, and snippets.

View taybin's full-sized avatar
🤷‍♂️
¯\_(ツ)_/¯

Taybin Rutkin taybin

🤷‍♂️
¯\_(ツ)_/¯
View GitHub Profile
@taybin
taybin / remove deprecated library initializers
Created July 3, 2010 20:41
remove deprecated library initializers from ladspa_sdk
diff --git a/plugins/amp.so b/plugins/amp.so
index 2d0f2dd..f6e5de3 100755
Binary files a/plugins/amp.so and b/plugins/amp.so differ
diff --git a/plugins/delay.so b/plugins/delay.so
index de567c2..8119c46 100755
Binary files a/plugins/delay.so and b/plugins/delay.so differ
diff --git a/plugins/filter.so b/plugins/filter.so
index 53e36dc..7043920 100755
Binary files a/plugins/filter.so and b/plugins/filter.so differ
diff --git a/plugins/noise.so b/plugins/noise.so
@taybin
taybin / fix-endian.h
Created July 3, 2010 20:33
fix compiling ladspa_sdk
diff --git a/src/applyplugin.c b/src/applyplugin.c
index 335e89b..2fefd91 100644
--- a/src/applyplugin.c
+++ b/src/applyplugin.c
@@ -6,7 +6,7 @@
/*****************************************************************************/
#include <dlfcn.h>
-#include <endian.h>
+#include <machine/endian.h>
@taybin
taybin / fix_library_paths
Created July 3, 2010 19:56
fix building vamp-plugin-sdk on osx
diff --git a/Makefile.in b/Makefile.in
index 5acc5f0..3605557 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -104,8 +104,8 @@ PLUGIN_LDFLAGS = $(DYNAMIC_LDFLAGS) -Wl,--version-script=build/vamp-plugin.map
## For OS/X with g++:
DYNAMIC_LDFLAGS = -dynamiclib
PLUGIN_LDFLAGS = $(DYNAMIC_LDFLAGS)
-SDK_DYNAMIC_LDFLAGS = $(DYNAMIC_LDFLAGS)
-HOSTSDK_DYNAMIC_LDFLAGS = $(DYNAMIC_LDFLAGS)