diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-08-03 08:57:48 +0000 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2010-11-02 04:15:01 +0200 |
commit | bb336639a4d3f32f620513fd899a62a21815dcc6 (patch) | |
tree | 4f329fa851653568d35faee654d99e6dde6d453d | |
parent | 848610a002d529a3131c270db5d47afaea088a47 (diff) |
configure: fix OpenBSD default for CD-ROM device
The default CD-ROM device on OpenBSD is /dev/rcd0c, not /dev/rcd0a.
patch by Edd Barrett, vext01 gmail com
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31908 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5765,7 +5765,7 @@ elif dragonfly ; then elif freebsd ; then default_cdrom_device="/dev/acd0" elif openbsd ; then - default_cdrom_device="/dev/rcd0a" + default_cdrom_device="/dev/rcd0c" elif sunos ; then default_cdrom_device="/vol/dev/aliases/cdrom0" # Modern Solaris versions use HAL instead of the vold daemon, the volfs |