summaryrefslogtreecommitdiff
blob: fa4ec8aec05ad9888f0d52d0e0b7391185999323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
The build system tries to link to installed system libraries first, which 
fails because the ABI has changed...

Index: mlt-0.8.6/src/swig/ruby/build
===================================================================
--- mlt-0.8.6.orig/src/swig/ruby/build
+++ mlt-0.8.6/src/swig/ruby/build
@@ -5,8 +5,10 @@ if ARGV.shift == 'clean'
   exit 0
 end
 system( "ln -sf ../mlt.i" )
+system( "ln -sf ../../framework/libmlt.so" )
+system( "ln -sf ../../mlt++/libmlt++.so" )
 system( "swig -c++ -ruby -I../../mlt++ -I../.. mlt.i" )
 $CFLAGS += " -I../.. " + ENV['CXXFLAGS']
-$LDFLAGS += " -L../../mlt++ -lmlt++"
+$LIBS += " -lmlt++ -lmlt -lstdc++"
 create_makefile('mlt')
 system( "make" )