Changeset 1354 for portaudio/branches/v19-devel/bindings/cpp/SConscript
- Timestamp:
- 02/21/08 15:42:43 (10 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
portaudio/branches/v19-devel/bindings/cpp/SConscript
r1047 r1354 13 13 env["SHLIBSUFFIX"] = ".so.%d.%d.%d" % (Major, Minor, Micro) 14 14 soFile = "libportaudiocpp.so" 15 env.AppendUnique(SHLINKFLAGS="-Wl,-soname=%s.%d" % (soFile, Major)) 15 if Platform != 'darwin': 16 env.AppendUnique(SHLINKFLAGS="-Wl,-soname=%s.%d" % (soFile, Major)) 16 17 17 18 # Create symlinks
