1
mirror of https://github.com/mpv-player/mpv synced 2024-08-04 14:59:58 +02:00

Extend EBX_AVAILABLE check in a way that works for both OpenBSD/Haiku

and 64 bit OSX.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29743 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2009-09-30 18:45:02 +00:00
parent 4b3525f79f
commit a04087cd67

2
configure vendored
View File

@ -2571,6 +2571,8 @@ int main(void) {
// just adding ebx to clobber list seems unreliable with some
// compilers, e.g. Haiku's gcc 2.95
);
// and the above check does not work for OSX 64 bit...
__asm__ volatile("":::"%ebx");
return 0;
}
EOF