summaryrefslogtreecommitdiff
path: root/libs/soundtouch
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2006-04-25 20:23:50 +0000
committerTaybin Rutkin <taybin@taybin.com>2006-04-25 20:23:50 +0000
commit49ab3aa0b3e78b635c22512b30f44b951c1401f7 (patch)
treea1380f163eb95d1e62698a919a451cc0892c1a80 /libs/soundtouch
parentbc46c6e5d44de56a8ef290484766a0f3bcfbed65 (diff)
All included libraries now link dynamically instead of statically.
Moved items from gtk2_ardour/utils to pbd3/convert. Various cleanups. git-svn-id: svn://localhost/trunk/ardour2@475 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/soundtouch')
-rw-r--r--libs/soundtouch/.cvsignore2
-rw-r--r--libs/soundtouch/SConscript5
2 files changed, 3 insertions, 4 deletions
diff --git a/libs/soundtouch/.cvsignore b/libs/soundtouch/.cvsignore
new file mode 100644
index 0000000000..50700f873e
--- /dev/null
+++ b/libs/soundtouch/.cvsignore
@@ -0,0 +1,2 @@
+*.os
+*.dylib
diff --git a/libs/soundtouch/SConscript b/libs/soundtouch/SConscript
index 0d8d9043b7..40ee2fe6ce 100644
--- a/libs/soundtouch/SConscript
+++ b/libs/soundtouch/SConscript
@@ -17,10 +17,7 @@ Import('env')
st = env.Copy()
st.Append(CCFLAGS="-DHAVE_CONFIG_H -D_REENTRANT -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE")
-if env['DEVBUILD']:
- libst = st.SharedLibrary('soundtouch', soundtouch_files)
-else:
- libst = st.StaticLibrary('soundtouch', soundtouch_files)
+libst = st.SharedLibrary('soundtouch', soundtouch_files)
Default(libst)