Changeset 1354 for portaudio/branches/v19-devel/build/scons/SConscript_opts
- Timestamp:
- 02/21/08 15:42:43 (10 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
portaudio/branches/v19-devel/build/scons/SConscript_opts
r1061 r1354 64 64 apis.append(_PackageOption("OSS")) 65 65 apis.append(_PackageOption("JACK")) 66 if Platform == "linux":67 apis.append(_PackageOption("ALSA"))68 apis.append(_PackageOption("ASIHPI"))66 apis.append(_PackageOption("ALSA", Platform == "linux")) 67 apis.append(_PackageOption("ASIHPI", Platform == "linux")) 68 apis.append(_PackageOption("COREAUDIO", Platform == "darwin")) 69 69 elif Platform in Windows: 70 70 if Platform == "cygwin": 71 71 apis.append(_EnumOption("winAPI", "Windows API to use", ("wmme", "directx", "asio"), "wmme")) 72 elif Platform == "darwin": 73 apis.append(_EnumOption("macAPI", "Mac API to use", ("asio", "core", "sm"), "core")) 72 74 73 opts["Host APIs"] = apis 75 74
