mirror of
https://git.freebsd.org/ports.git
synced 2025-07-13 07:19:16 -04:00
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>
11 lines
364 B
Text
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')
|