diff options
| author | Alexey Abramov <levenson@mmer.org> | 2025-11-24 14:12:07 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-11-29 18:46:51 +0100 |
| commit | 94f881388da9399875beba083bfb0d07f6a3debe (patch) | |
| tree | af710b45027bf2aa9e74a602bf0dec4aeb3ff8c4 | |
| parent | 6618803875d2b104e2c23d5eab3eda0a32355428 (diff) | |
gnu: pixman: auto-detect arm-simd optimizations for arm32 targets.
* gnu/packages/xdisorg.scm (pixman)[arguments]<#:configure-flags>: Remove
arm-simd flag. Meson requires feature options to use "enabled",
"disabled", or "auto" and not boolean strings. Let it auto-detect
ARM SIMD optimizations.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| -rw-r--r-- | gnu/packages/xdisorg.scm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index c5f57601148..435bb818c18 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -1023,10 +1023,7 @@ typing tool (@code{wtype}, @code{xdotool}, etc.), or via standard output.") (list #:configure-flags #~(list "-Dtimers=true" - "-Dgnuplot=true" - #$@(if (target-arm32?) - '("-Darm-simd=disabled") - '())))) + "-Dgnuplot=true"))) (synopsis "Low-level pixel manipulation library") (description "Pixman is a low-level software library for pixel manipulation, providing features such as image compositing and trapezoid |
