Mesa (master): mapi: Use correct shared libraries suffix on macOS.

Vinson Lee vlee at kemper.freedesktop.org
Wed Nov 15 23:43:49 UTC 2017


Module: Mesa
Branch: master
Commit: cd58b98b03f1c7c044b7a39172d6b258c880ff3c
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=cd58b98b03f1c7c044b7a39172d6b258c880ff3c

Author: Vinson Lee <vlee at freedesktop.org>
Date:   Tue Nov 14 17:16:32 2017 -0800

mapi: Use correct shared libraries suffix on macOS.

Signed-off-by: Vinson Lee <vlee at freedesktop.org>
Reviewed-by: Dylan Baker <dylan at pnwbakers.com>
Reviewed-by: Eric Engestrom <eric.engestrom at imgtec.com>

---

 src/mapi/es1api/ABI-check | 7 ++++++-
 src/mapi/es2api/ABI-check | 7 ++++++-
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/src/mapi/es1api/ABI-check b/src/mapi/es1api/ABI-check
index bd9d0288d6..0a867343c7 100755
--- a/src/mapi/es1api/ABI-check
+++ b/src/mapi/es1api/ABI-check
@@ -9,7 +9,12 @@ set -eu
 # or in extensions that are part of the ES 1.1 extension pack.
 # (see http://www.khronos.org/registry/gles/specs/1.1/opengles_spec_1_1_extension_pack.pdf)
 
-LIB=${1-es1api/.libs/libGLESv1_CM.so.1}
+if [ $(uname) == "Darwin" ]
+then
+  LIB=${1-es1api/.libs/libGLESv1_CM.dylib}
+else
+  LIB=${1-es1api/.libs/libGLESv1_CM.so.1}
+fi
 
 if ! [ -f "$LIB" ]
 then
diff --git a/src/mapi/es2api/ABI-check b/src/mapi/es2api/ABI-check
index 179bea132e..716e6679a4 100755
--- a/src/mapi/es2api/ABI-check
+++ b/src/mapi/es2api/ABI-check
@@ -6,7 +6,12 @@ set -eu
 # GL_EXT_multi_draw_arrays
 # GL_OES_EGL_image
 
-LIB=${1-es2api/.libs/libGLESv2.so.2}
+if [ $(uname) == "Darwin" ]
+then
+  LIB=${1-es2api/.libs/libGLESv2.dylib}
+else
+  LIB=${1-es2api/.libs/libGLESv2.so.2}
+fi
 
 if ! [ -f "$LIB" ]
 then




More information about the mesa-commit mailing list