From: Apaczer <94932128+Apaczer@users.noreply.github.com> Date: Tue, 1 Apr 2025 18:21:00 +0000 (+0200) Subject: configure: disable `tslib` for static X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28bfade96f83a8c35ba6d5b013022cb0de08fc9a;p=pcsx_rearmed.git configure: disable `tslib` for static --- diff --git a/configure b/configure index 689b6c01..806f7dff 100755 --- a/configure +++ b/configure @@ -622,7 +622,11 @@ if [ "$ARCH" = "arm" ]; then echo "ARMv7 optimizations $have_armv7" echo "TI C64x DSP support $have_c64x_dsp" fi -echo "tslib support $have_tslib" +if [ "$have_dynamic" = "yes" ]; then + echo "tslib support $have_tslib" +else + echo "tslib does NOT support staticly linked build" +fi if [ "$platform" = "generic" ]; then echo "OpenGL ES output $have_gles" fi @@ -658,7 +662,7 @@ fi if [ "$have_arm_neon_asm" = "yes" ]; then echo "HAVE_NEON_ASM = 1" >> $config_mak fi -if [ "$have_tslib" = "yes" ]; then +if [ "$have_tslib" = "yes" -a "$have_dynamic" = "yes" ]; then echo "HAVE_TSLIB = 1" >> $config_mak fi if [ "$have_evdev" = "yes" ]; then