configure (3591ddd39987cbdaa0cfa344a262f315abd97582) | configure (e865b97ff4d924a81c28b9d9f3d6fe3e198bcdb9) |
---|---|
1#!/bin/sh 2# 3# qemu configure script (c) 2003 Fabrice Bellard 4# 5 6# Unset some variables known to interfere with behavior of common tools, 7# just as autoconf does. 8CLICOLOR_FORCE= GREP_OPTIONS= --- 3180 unchanged lines hidden (view full) --- 3189########################################## 3190# getifaddrs (for tests/test-io-channel-socket ) 3191 3192have_ifaddrs_h=yes 3193if ! check_include "ifaddrs.h" ; then 3194 have_ifaddrs_h=no 3195fi 3196 | 1#!/bin/sh 2# 3# qemu configure script (c) 2003 Fabrice Bellard 4# 5 6# Unset some variables known to interfere with behavior of common tools, 7# just as autoconf does. 8CLICOLOR_FORCE= GREP_OPTIONS= --- 3180 unchanged lines hidden (view full) --- 3189########################################## 3190# getifaddrs (for tests/test-io-channel-socket ) 3191 3192have_ifaddrs_h=yes 3193if ! check_include "ifaddrs.h" ; then 3194 have_ifaddrs_h=no 3195fi 3196 |
3197######################################### 3198# libdrm check 3199have_drm_h=no 3200if check_include "libdrm/drm.h" ; then 3201 have_drm_h=yes 3202fi 3203 |
|
3197########################################## 3198# VTE probe 3199 3200if test "$vte" != "no"; then 3201 vteminversion="0.32.0" 3202 if $pkg_config --exists "vte-2.91"; then 3203 vtepackage="vte-2.91" 3204 else --- 4167 unchanged lines hidden (view full) --- 7372 echo "CONFIG_TASN1=y" >> $config_host_mak 7373fi 7374if test "$auth_pam" = "yes" ; then 7375 echo "CONFIG_AUTH_PAM=y" >> $config_host_mak 7376fi 7377if test "$have_ifaddrs_h" = "yes" ; then 7378 echo "HAVE_IFADDRS_H=y" >> $config_host_mak 7379fi | 3204########################################## 3205# VTE probe 3206 3207if test "$vte" != "no"; then 3208 vteminversion="0.32.0" 3209 if $pkg_config --exists "vte-2.91"; then 3210 vtepackage="vte-2.91" 3211 else --- 4167 unchanged lines hidden (view full) --- 7379 echo "CONFIG_TASN1=y" >> $config_host_mak 7380fi 7381if test "$auth_pam" = "yes" ; then 7382 echo "CONFIG_AUTH_PAM=y" >> $config_host_mak 7383fi 7384if test "$have_ifaddrs_h" = "yes" ; then 7385 echo "HAVE_IFADDRS_H=y" >> $config_host_mak 7386fi |
7387if test "$have_drm_h" = "yes" ; then 7388 echo "HAVE_DRM_H=y" >> $config_host_mak 7389fi |
|
7380if test "$have_broken_size_max" = "yes" ; then 7381 echo "HAVE_BROKEN_SIZE_MAX=y" >> $config_host_mak 7382fi 7383 7384# Work around a system header bug with some kernel/XFS header 7385# versions where they both try to define 'struct fsxattr': 7386# xfs headers will not try to redefine structs from linux headers 7387# if this macro is set. --- 1216 unchanged lines hidden --- | 7390if test "$have_broken_size_max" = "yes" ; then 7391 echo "HAVE_BROKEN_SIZE_MAX=y" >> $config_host_mak 7392fi 7393 7394# Work around a system header bug with some kernel/XFS header 7395# versions where they both try to define 'struct fsxattr': 7396# xfs headers will not try to redefine structs from linux headers 7397# if this macro is set. --- 1216 unchanged lines hidden --- |