ports/multimedia/flvtool++/files/patch-SConstruct
Dmitry Marakasov 3273e46b7c flvtool++ is a tool for hinting and manipulating the metadata of FLV
files. It was originally created for Facebook's Video project
(http://facebook.com/video/) for fast video hinting. It is loosely
based on the Ruby FLVTool2, but is written in C++ for performance
reasons.

WWW:	http://mirror.facebook.com/facebook/flvtool++/

PR:		ports/126336
Submitted by:	Gea-Suan Lin <gslin at gslin dot org>
2008-08-21 19:25:33 +00:00

11 lines
364 B
Text

--- SConstruct.orig 2007-09-08 03:24:22.000000000 +0400
+++ SConstruct 2008-08-21 20:38:10.000000000 +0400
@@ -1,5 +1,7 @@
+import os
+
libd = '#lib/'
-env = Environment(CPPFLAGS='-ggdb -O3 -Wall', LINKFLAGS='-ggdb')
+env = Environment(CXX=os.environ['CXX'], CXXFLAGS=os.environ['CXXFLAGS'], ENV=os.environ)
env.TargetSignatures('content')
Export('env libd')