diff options
author | Brad Smith <brad@comstyle.com> | 2009-02-17 02:22:28 +0000 |
---|---|---|
committer | Brad Smith <brad@comstyle.com> | 2009-02-17 02:22:28 +0000 |
commit | 2c0b408072017847e9cce1dd3c80d4866fe8e843 (patch) | |
tree | 16ace223f838c4590dd05df3acc66f4a6700d3c0 /src/input/input_dvd.c | |
parent | 66b1f076dc4b06a26303b6a66bb54e45a0ec8324 (diff) | |
download | xine-lib-2c0b408072017847e9cce1dd3c80d4866fe8e843.tar.gz xine-lib-2c0b408072017847e9cce1dd3c80d4866fe8e843.tar.bz2 |
Add OpenBSD support to the CDDA, DVD & VCD input code.
Diffstat (limited to 'src/input/input_dvd.c')
-rw-r--r-- | src/input/input_dvd.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index ff3000e5d..279f3c64e 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.c @@ -115,6 +115,9 @@ /* There really isn't a default on Windows! */ #define DVD_PATH "d:\\" #define RDVD_PATH "d:\\" +#elif defined(__OpenBSD__) +#define DVD_PATH "/dev/rcd0c" +#define RDVD_PATH "/dev/rcd0c" #else #define DVD_PATH "/dev/dvd" #define RDVD_PATH "/dev/rdvd" |