Skip to content

Commit 9b52b17

Browse files
huthkraxel
authored andcommitted
configure: Allow to build tools without pixman
If pixman is not installed, it is currently not possible to run: .../configure --disable-system --enable-tools Seems like there was a dependency from one of the required source files to pixman in the past, but since commit 1ac0206 ("qemu-timer.c: Trim list of included headers"), this dependency should be gone. Thus allow to compile the tools without pixman now. Signed-off-by: Thomas Huth <[email protected]> Message-id: [email protected] Signed-off-by: Gerd Hoffmann <[email protected]>
1 parent 2c9728c commit 9b52b17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4065,7 +4065,7 @@ fi
40654065
##########################################
40664066
# pixman support probe
40674067

4068-
if test "$want_tools" = "no" && test "$softmmu" = "no"; then
4068+
if test "$softmmu" = "no"; then
40694069
pixman_cflags=
40704070
pixman_libs=
40714071
elif $pkg_config --atleast-version=0.21.8 pixman-1 > /dev/null 2>&1; then

0 commit comments

Comments
 (0)