Changeset 1355
- Timestamp:
- 02/21/08 15:51:22 (6 months ago)
- Location:
- portaudio/branches/v19-devel
- Files:
-
- 2 modified
-
build/scons/SConscript_common (modified) (2 diffs)
-
src/SConscript (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
portaudio/branches/v19-devel/build/scons/SConscript_common
r1037 r1355 8 8 9 9 # sunos, aix, hpux, irix, sunos appear to be platforms known by SCons, assuming they're POSIX compliant 10 Posix = ("linux", "darwin", "sunos", "aix", "hpux", "irix", "sunos" )10 Posix = ("linux", "darwin", "sunos", "aix", "hpux", "irix", "sunos", "netbsd") 11 11 Windows = ("win32", "cygwin") 12 12 … … 14 14 if sys.platform[:5] == "linux": 15 15 Platform = "linux" 16 elif sys.platform[:6] == "netbsd": 17 Platform = "netbsd" 16 18 else: 17 19 raise ConfigurationError("Unknown platform %s" % sys.platform) -
portaudio/branches/v19-devel/src/SConscript
r1354 r1355 75 75 # TODO: It looks like the prefix for soundcard.h depends on the platform 76 76 optionalImpls["OSS"] = ("oss", "sys/soundcard.h", None) 77 if Platform == 'netbsd': 78 optionalImpls["OSS"] = ("ossaudio", "sys/soundcard.h", "_oss_ioctl") 77 79 if env["useASIHPI"]: 78 80 optionalImpls["ASIHPI"] = ("hpi", "asihpi/hpi.h", "HPI_SubSysCreate")
