summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-09 21:30:21 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-09 21:30:21 +0000
commitc30e50123afeb407b5e774495b0ae26e3f53f8a6 (patch)
tree6589ea0816764a3adf73a08b11b56e9cd14a0d99 /libvo
parentaea5020900122092a1e2252f5c8d3cf2e48e3105 (diff)
downloadmpv-c30e50123afeb407b5e774495b0ae26e3f53f8a6.tar.bz2
mpv-c30e50123afeb407b5e774495b0ae26e3f53f8a6.tar.xz
HPUX porting fixes - patch by Gansser, Martin <MGansser@rand.de>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6957 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_sdl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_sdl.c b/libvo/vo_sdl.c
index ccb910e00b..80948b107d 100644
--- a/libvo/vo_sdl.c
+++ b/libvo/vo_sdl.c
@@ -143,8 +143,8 @@ static vo_info_t vo_info =
#include <SDL.h>
//#include <SDL/SDL_syswm.h>
-#if defined(sun) && defined(__svr4__)
-/* setenv is missing on solaris */
+#if defined(HPUX) || defined(sun) && defined(__svr4__)
+/* setenv is missing on solaris and HPUX */
static void setenv(const char *name, const char *val, int _xx)
{
int len = strlen(name) + strlen(val) + 2;