Changeset 36521 in vbox for trunk/src/VBox/Main
- Timestamp:
- Apr 4, 2011 12:24:23 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70942
- Location:
- trunk/src/VBox/Main/xml
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Makefile.kup
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
-
Property svn:eol-style
set to
-
trunk/src/VBox/Main/xml/Settings.cpp
r36405 r36521 694 694 med.strFormat = "RAW"; 695 695 } 696 696 697 697 if (t == DVDImage) 698 698 med.hdType = MediumType_Readonly; … … 4459 4459 #elif defined(RT_OS_LINUX) 4460 4460 // on Linux, we need to check at runtime what's actually supported... 4461 static RT LockMtx s_mtx;4461 static RTCLockMtx s_mtx; 4462 4462 static AudioDriverType_T s_linuxDriver = -1; 4463 RT Lock lock(s_mtx);4463 RTCLock lock(s_mtx); 4464 4464 if (s_linuxDriver == (AudioDriverType_T)-1) 4465 4465 { … … 4473 4473 # if defined(VBOX_WITH_ALSA) 4474 4474 /* Check if we can load the ALSA library */ 4475 if (RTLdrIsLoadable("libasound.so.2"))4475 if (RTLdrIsLoadable("libasound.so.2")) 4476 4476 s_linuxDriver = AudioDriverType_ALSA; 4477 else4477 else 4478 4478 # endif /* VBOX_WITH_ALSA */ 4479 4479 s_linuxDriver = AudioDriverType_OSS;
Note:
See TracChangeset
for help on using the changeset viewer.