configure: disable `tslib` for static
authorApaczer <94932128+Apaczer@users.noreply.github.com>
Tue, 1 Apr 2025 18:21:00 +0000 (20:21 +0200)
committernotaz <notasas@gmail.com>
Tue, 1 Apr 2025 23:00:29 +0000 (02:00 +0300)
configure

index 689b6c0..806f7df 100755 (executable)
--- 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