freebsd-ports/audio/ardour/files/patch-libs-pbd-stacktrace.cc
Edward Tomasz Napierala cdf120dd5b Update to 2.0.r1, add VST support (disabled by default due to legal reasons)
and clean things a bit.

PR:		ports/111506
Submitted by:	trasz
Approved by:	miwi (mentor)
2007-04-14 17:28:52 +00:00

13 lines
417 B
C++

--- libs/pbd/stacktrace.cc.orig Thu Mar 29 18:26:37 2007
+++ libs/pbd/stacktrace.cc Thu Mar 29 18:27:27 2007
@@ -3,7 +3,9 @@
/* Obtain a backtrace and print it to stdout. */
-#ifdef HAVE_EXECINFO
+/* Without this change, ardourvst dies during startup with
+ 'wine: could not load L"Z:\\usr\\local\\lib\\ardour2\\ardour_vst.exe.so": Bad EXE format for''. */
+#if 0
#include <execinfo.h>
#include <stdlib.h>