mirror of https://github.com/mpv-player/mpv
OpenBSD portability fixes from the OpenBSD ports tree
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12802 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
1f43198917
commit
7b4630e101
|
@ -445,7 +445,7 @@ if test -z "$_target" ; then
|
||||||
i[3-9]86*|x86|x86pc|k5|k6|k6_2|k6_3|k6-2|k6-3|pentium*|athlon*|i586_i686|i586-i686) host_arch=i386 ;;
|
i[3-9]86*|x86|x86pc|k5|k6|k6_2|k6_3|k6-2|k6-3|pentium*|athlon*|i586_i686|i586-i686) host_arch=i386 ;;
|
||||||
ia64) host_arch=ia64 ;;
|
ia64) host_arch=ia64 ;;
|
||||||
x86_64|amd64) host_arch=x86_64 ;;
|
x86_64|amd64) host_arch=x86_64 ;;
|
||||||
ppc) host_arch=ppc ;;
|
macppc|ppc) host_arch=ppc ;;
|
||||||
alpha) host_arch=alpha ;;
|
alpha) host_arch=alpha ;;
|
||||||
sparc*) host_arch=sparc ;;
|
sparc*) host_arch=sparc ;;
|
||||||
parisc*|hppa*|9000*) host_arch=hppa ;;
|
parisc*|hppa*|9000*) host_arch=hppa ;;
|
||||||
|
@ -4329,7 +4329,7 @@ echores "$_sgiaudio"
|
||||||
|
|
||||||
|
|
||||||
echocheck "VCD support"
|
echocheck "VCD support"
|
||||||
if linux || bsdos || freebsd || netbsd || sunos ; then
|
if linux || bsdos || freebsd || netbsd || openbsd || sunos ; then
|
||||||
_inputmodules="vcd $_inputmodules"
|
_inputmodules="vcd $_inputmodules"
|
||||||
_def_vcd='#define HAVE_VCD 1'
|
_def_vcd='#define HAVE_VCD 1'
|
||||||
echores "ok"
|
echores "ok"
|
||||||
|
@ -6654,6 +6654,9 @@ $_def_vcd
|
||||||
#elif defined(SYS_DARWIN)
|
#elif defined(SYS_DARWIN)
|
||||||
#define DEFAULT_CDROM_DEVICE "/dev/rdiskN"
|
#define DEFAULT_CDROM_DEVICE "/dev/rdiskN"
|
||||||
#define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
|
#define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
|
||||||
|
#elif defined(__OpenBSD__)
|
||||||
|
#define DEFAULT_CDROM_DEVICE "/dev/rcd0a"
|
||||||
|
#define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
|
||||||
#else
|
#else
|
||||||
#define DEFAULT_CDROM_DEVICE "/dev/cdrom"
|
#define DEFAULT_CDROM_DEVICE "/dev/cdrom"
|
||||||
#define DEFAULT_DVD_DEVICE "/dev/dvd"
|
#define DEFAULT_DVD_DEVICE "/dev/dvd"
|
||||||
|
|
Loading…
Reference in New Issue