mirror of https://github.com/mpv-player/mpv
IRIX support by Timo Kanera <timo@kanera.de>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10839 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
c01ef34722
commit
39bdf999e9
|
@ -95,8 +95,8 @@ static int read_buffer(unsigned char* data,int len){
|
|||
|
||||
// end ring buffer stuff
|
||||
|
||||
#if defined(HPUX) || defined(sun) && defined(__svr4__)
|
||||
/* setenv is missing on solaris and HPUX */
|
||||
#if defined(HPUX) || defined(sgi) || (defined(sun) && defined(__svr4__))
|
||||
/* setenv is missing on solaris, IRIX and HPUX */
|
||||
static void setenv(const char *name, const char *val, int _xx)
|
||||
{
|
||||
int len = strlen(name) + strlen(val) + 2;
|
||||
|
|
|
@ -141,8 +141,8 @@ LIBVO_EXTERN(sdl)
|
|||
#include <SDL.h>
|
||||
//#include <SDL/SDL_syswm.h>
|
||||
|
||||
#if defined(HPUX) || defined(sun) && defined(__svr4__)
|
||||
/* setenv is missing on solaris and HPUX */
|
||||
#if defined(HPUX) || defined(sgi) || (defined(sun) && defined(__svr4__))
|
||||
/* setenv is missing on solaris, IRIX and HPUX */
|
||||
static void setenv(const char *name, const char *val, int _xx)
|
||||
{
|
||||
int len = strlen(name) + strlen(val) + 2;
|
||||
|
|
Loading…
Reference in New Issue