1
mirror of https://github.com/mpv-player/mpv synced 2025-01-16 22:37:28 +01:00

check that definition of prototype of sysi86(int, void*) doesn't conflict; fixed compilation in opensolaris

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22733 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nicodvb 2007-03-18 22:18:11 +00:00
parent e72f48c19f
commit a09d3e1bc7
2 changed files with 8 additions and 2 deletions

6
configure vendored
View File

@ -3590,6 +3590,11 @@ _sysi86=no
cc_check && _sysi86=yes
if test "$_sysi86" = yes ; then
_def_sysi86='#define HAVE_SYSI86 1'
cat > $TMPC << EOF
#include <sys/sysi86.h>
int main (void) { int sysi86(int, void*); sysi86(0); return 0; }
EOF
cc_check && _def_sysi86_iv='#define HAVE_SYSI86_iv 1'
else
_def_sysi86='#undef HAVE_SYSI86'
fi
@ -7932,6 +7937,7 @@ int setenv(const char *name, const char *val, int overwrite);
/* Define this if your system has sysi86 */
$_def_sysi86
$_def_sysi86_iv
/* Define this if your system has pthreads */
$_def_pthreads

View File

@ -62,8 +62,8 @@ int modify_ldt(int func, void *ptr, unsigned long bytecount);
#include <sys/segment.h>
#include <sys/sysi86.h>
/* solaris x86: add missing prototype for sysi86() */
#ifdef HAVE_SYSI86
/* solaris x86: add missing prototype for sysi86(), but only when sysi86(int, void*) is known to be valid */
#ifdef HAVE_SYSI86_iv
#ifdef __cplusplus
extern "C" {
#endif