X-Git-Url: https://git.cworth.org/git?p=fips;a=blobdiff_plain;f=configure;h=baa38a0319e30e4df14d1dab82251f926ea5418f;hp=77fedba4fb0e8f088e9ae05b2c148342067ba84f;hb=0c8d32dabf4cec6957dfb4c071ecdb2fb4e4cd0e;hpb=d6ac766abe401b681282cdcf273e7fb67fff99bd diff --git a/configure b/configure index 77fedba..baa38a0 100755 --- a/configure +++ b/configure @@ -326,7 +326,17 @@ if pkg-config --exists egl; then egl_ldflags=$(pkg-config --libs egl) else printf "No.\n" - have_egl=No +fi + +printf " Checking for GLESv2... " +have_glesv2=No +if pkg-config --exists glesv2; then + printf "Yes.\n" + have_glesv2=Yes + glesv2_cflags=$(pkg-config --cflags glesv2) + glesv2_ldflags=$(pkg-config --libs glesv2) +else + printf "No.\n" fi printf "int main(void){return 0;}\n" > minimal.c @@ -528,10 +538,10 @@ HAVE_GLX = ${have_glx} GL_CFLAGS = ${gl_cflags} GL_LDFLAGS = ${gl_ldflags} -# Wheter X11 headers and library are available +# Whether X11 headers and library are available HAVE_X11 = ${have_x11} -# Flags needs to compile and link against libX11 +# Flags needed to compile and link against libX11 X11_CLFLAGS = ${x11_cflags} X11_LDFLAGS = ${x11_ldflags} @@ -542,6 +552,13 @@ HAVE_EGL = ${have_egl} EGL_CFLAGS = ${egl_cflags} EGL_LDFLAGS = ${egl_ldflags} +# Whether GLESv2 headers and library are available +HAVE_GLESV2 = ${have_glesv2} + +# Flags needed to compile and link against GLESv2 +GLESV2_CFLAGS = ${glesv2_cflags} +GLESV2_LDFLAGS = ${glesv2_ldflags} + # Flags needed to have linker link only to necessary libraries AS_NEEDED_LDFLAGS = ${as_needed_ldflags} EOF