diff --git a/src/mapi/es1api/ABI-check b/src/mapi/es1api/gles1-symbols.txt old mode 100755 new mode 100644 similarity index 81% rename from src/mapi/es1api/ABI-check rename to src/mapi/es1api/gles1-symbols.txt index e9a2cb2bde2..935b9d583da --- a/src/mapi/es1api/ABI-check +++ b/src/mapi/es1api/gles1-symbols.txt @@ -1,29 +1,7 @@ -#!/bin/sh -set -eu - -# Print defined gl.* functions not in GL ES 1.1 +# gl.* functions in GL ES 1.1 # 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) -case "$(uname)" in -Darwin) - LIB=${1-es1api/.libs/libGLESv1_CM.dylib} - ;; -CYGWIN*) - LIB=${1-es1api/.libs/cygGLESv1_CM-1.dll} - ;; -*) - LIB=${1-es1api/.libs/libGLESv1_CM.so.1} - ;; -esac - -if ! [ -f "$LIB" ] -then - exit 1 -fi - -FUNCS=$($NM -D --defined-only $LIB | grep -o 'T gl.*' | cut -c 3- | while read func; do -( grep -q "^$func$" || echo $func ) <