summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2006-01-11 21:27:59 +0000
committerTaybin Rutkin <taybin@taybin.com>2006-01-11 21:27:59 +0000
commit9a951bcd20a7cd814da3ad34e4c931231d824947 (patch)
treee2e18197652da93b3390e0d2a1f328ac0337f605 /SConstruct
parentb5dd613a0c9667708306f37e590efea2bb6d21b0 (diff)
Use compiler provided __BIG_ENDIAN__ instead of WORD_BIGENDIAN
Auditioning in sfdb_ui works. CoreAudioSource updates. git-svn-id: svn://localhost/trunk/ardour2@263 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct11
1 files changed, 1 insertions, 10 deletions
diff --git a/SConstruct b/SConstruct
index 2dfdd79476..7d07513e46 100644
--- a/SConstruct
+++ b/SConstruct
@@ -349,7 +349,7 @@ env.Append (BUILDERS = {'Tarball' : tarball_bld})
libraries = { }
-libraries['core'] = LibraryInfo (CPPPATH = [ '#libs'])
+libraries['core'] = LibraryInfo (CCFLAGS = '-Ilibs')
libraries['sndfile'] = LibraryInfo()
libraries['sndfile'].ParseConfig('pkg-config --cflags --libs sndfile')
@@ -663,15 +663,6 @@ env.Append(CCFLAGS="-Wall")
if env['VST']:
env.Append(CCFLAGS="-DVST_SUPPORT")
-
-# check endianness
-if sys.byteorder == "big":
- print "Host is big endian"
- env.Append(CCFLAGS="-DWORDS_BIGENDIAN")
-else:
- print "Host is little endian"
-
-
#
# everybody needs this
#