X-Git-Url: https://git.cworth.org/git?p=fips;a=blobdiff_plain;f=configure;h=f0f1a2188eeed82d9a3468f1374b33771fbf0da7;hp=121aec4d2604add06e3454a46f15f63ab15dfdb6;hb=HEAD;hpb=385fae6dca60b9b41e91c9b8bfe1a05a4eb18240 diff --git a/configure b/configure index 121aec4..f0f1a21 100755 --- a/configure +++ b/configure @@ -192,13 +192,58 @@ EOF errors=0 +printf "Checking for pkg-config... " if pkg-config --version > /dev/null 2>&1; then - have_pkg_config=1 + printf "Yes.\n" else - have_pkg_config=0 + printf "No.\n" + cat < minimal.c +if ${CC} -o minimal minimal.c > /dev/null 2>&1 +then + printf "Yes.\n" +else + printf "No.\n" + cat <\nint main(void){return 0;}\n" > gl-minimal.c - if ${CC} -o gl-minimal gl-minimal.c > /dev/null 2>&1 - then - printf "Yes.\n" - have_gl=1 - else - printf "No.\n" - errors=$((errors + 1)) - fi - rm -f gl-minimal gl-minimal.c + printf"No.\n" + have_gl=0 + errors=$((errors + 1)) fi printf "Checking for GL window-system-binding headers:\n" have_gl_winsys=0 -printf " Checking for GL/glx.h... " -have_glx=0 +printf " Checking for GL/glx.h... " +have_glx=No printf "#include \nint main(void){return 0;}\n" > glx-minimal.c if ${CC} -o glx-minimal glx-minimal.c ${gl_cflags} > /dev/null 2>&1 then printf "Yes.\n" have_gl_winsys=1 - have_glx=1 + have_glx=Yes else printf "No.\n" fi @@ -267,6 +306,90 @@ if [ $have_gl_winsys -eq 0 ]; then errors=$((errors + 1)) fi +printf " Checking for X11... " +have_x11=No +if pkg-config --exists x11; then + printf "Yes.\n" + have_x11=Yes + x11_cflags=$(pkg-config --cflags x11) + x11_ldflags=$(pkg-config --libs x11) +else + printf "No.\n" +fi + +printf " Checking for EGL/egl.h... " +have_egl=No +if pkg-config --exists egl; then + printf "Yes.\n" + have_egl=Yes + egl_cflags=$(pkg-config --cflags egl) + egl_ldflags=$(pkg-config --libs egl) +else + printf "No.\n" +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 + +WARN_CFLAGS="" +printf "Checking for available C compiler warning flags:\n" +for flag in -Wall -Wextra -Wmissing-declarations; do + if ${CC} $flag -o minimal minimal.c > /dev/null 2>&1 + then + WARN_CFLAGS="${WARN_CFLAGS}${WARN_CFLAGS:+ }${flag}" + fi +done +printf "\t${WARN_CFLAGS}\n" + +rm -f minimal minimal.c + +printf "#include \nint main(void){return 0;}\n" > arch-minimal.c + +printf "Checking for machine-dependent compiler support:\n" + +printf " Compiler can create 32-bit binaries... " +have_m32=Yes +if ${CC} -m32 -o arch-minimal arch-minimal.c > /dev/null 2>&1 +then + printf "Yes.\n" +else + printf "No.\n" + have_m32=No +fi + +printf " Compiler can create 64-bit binaries... " +have_m64=Yes +if ${CC} -m64 -o arch-minimal arch-minimal.c > /dev/null 2>&1 +then + printf "Yes.\n" +else + printf "No.\n" + have_m64=No +fi + +if [ "$have_m32" = "No" ] || [ "$have_m64" = "No" ]; then + cat < minimal.c +cat < /dev/null 2>&1 - then - WARN_CFLAGS="${WARN_CFLAGS}${WARN_CFLAGS:+ }${flag}" - fi -done -printf "\n\t${WARN_CFLAGS}\n" +All required packages were found. -rm -f minimal minimal.c +The following OpenGL window-system bindings will be supported: -cat < config.h <