- Timestamp:
- 02/21/08 15:51:22 (10 months ago)
- Files:
-
- 1 modified
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)
