gnu: qtbase: Remove unneeded configure flags.

These flags were preventing building on i686-linux and seem to not be
necessary anymore.

* gnu/packages/qt.scm (qtbase)[arguments]: Remove configure-flags
disabling certain hardware features.

Change-Id: I76e41acb29cf39ce0541b27432b5d8d7fd545b16
This commit is contained in:
Efraim Flashner 2023-12-05 21:30:24 +02:00
parent 1cd2f03225
commit 28e98cc0c7
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351

View File

@ -680,20 +680,7 @@ developers using C++ or QML, a CSS & JavaScript like language.")
"-DFEATURE_system_sqlite=ON"
"-DFEATURE_system_xcb_xinput=ON"
;; Don't use the precompiled headers.
"-DBUILD_WITH_PCH=OFF"
;; Drop special machine instructions that do not have runtime
;; detection.
,@(if (string-prefix? "x86_64"
(or (%current-target-system)
(%current-system)))
'() ;implicitly enabled
'("-DFEATURE_sse2=OFF"
"-DFEATURE_sse3=OFF"
"-DFEATURE_ssse3=OFF"
"-DFEATURE_sse4_1=OFF"
"-DFEATURE_sse4_2=OFF"))
"-DFEATURE_mips_dsp=OFF"
"-DFEATURE_mips_dspr2=OFF")))
"-DBUILD_WITH_PCH=OFF")))
((#:phases phases)
#~(modify-phases #$phases
(add-after 'unpack 'honor-CMAKE_PREFIX_PATH