From 5f66d6a751c56c449daf6d3cc0e270afcb1d39bf Mon Sep 17 00:00:00 2001
From: Sam Hocevar <sam@hocevar.net>
Date: Sun, 18 Nov 2012 11:32:09 +0000
Subject: [PATCH] build: fix PS3 and Linux compilation issues.

---
 configure.ac  | 4 ++--
 src/video.cpp | 2 ++
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index fd1216f2..8b67b2f0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -339,8 +339,8 @@ ac_cv_my_have_pipi="no"
 PKG_CHECK_MODULES(PIPI, pipi, [ac_cv_my_have_pipi="yes"], [:])
 if test "${ac_cv_my_have_pipi}" != "no"; then
   AC_DEFINE(USE_PIPI, 1, Define to 1 to use libpipi)
-  LOL_CFLAGS="${LOL_CFLAGS} ${PIPI_CFLAGS}"],
-  LOL_LIBS="${LOL_LIBS} ${PIPI_LIBS}"],
+  LOL_CFLAGS="${LOL_CFLAGS} ${PIPI_CFLAGS}"
+  LOL_LIBS="${LOL_LIBS} ${PIPI_LIBS}"
 fi
 AM_CONDITIONAL(USE_PIPI, test "${ac_cv_my_have_pipi}" != "no")
 
diff --git a/src/video.cpp b/src/video.cpp
index 25c6419d..8e365b4a 100644
--- a/src/video.cpp
+++ b/src/video.cpp
@@ -225,6 +225,8 @@ void Video::SetClearDepth(float f)
 {
 #if defined USE_D3D9 || defined _XBOX
     VideoData::clear_depth = f;
+#elif defined HAVE_GLES_2X
+    glClearDepthf(f);
 #else
     glClearDepth(f);
 #endif