configure (8953caf3cd38534f8f63f4250f4ba4b4da4ff543) configure (b76806d4ec5c55d36bf5508f1405d132a4b862de)
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=

--- 3191 unchanged lines hidden (view full) ---

3200 else
3201 if test "$xkbcommon" = "yes" ; then
3202 feature_not_found "xkbcommon" "Install libxkbcommon-devel"
3203 fi
3204 xkbcommon=no
3205 fi
3206fi
3207
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=

--- 3191 unchanged lines hidden (view full) ---

3200 else
3201 if test "$xkbcommon" = "yes" ; then
3202 feature_not_found "xkbcommon" "Install libxkbcommon-devel"
3203 fi
3204 xkbcommon=no
3205 fi
3206fi
3207
3208##########################################
3209# fnmatch() probe, used for ACL routines
3210fnmatch="no"
3211cat > $TMPC << EOF
3212#include <fnmatch.h>
3213int main(void)
3214{
3215 fnmatch("foo", "foo", 0);
3216 return 0;
3217}
3218EOF
3219if compile_prog "" "" ; then
3220 fnmatch="yes"
3221fi
3222
3223##########################################
3224# xfsctl() probe, used for file-posix.c
3225if test "$xfs" != "no" ; then
3226 cat > $TMPC << EOF
3227#include <stddef.h> /* NULL */
3228#include <xfs/xfs.h>
3229int main(void)

--- 3181 unchanged lines hidden (view full) ---

6411fi
6412if test "$vnc_png" = "yes" ; then
6413 echo "CONFIG_VNC_PNG=y" >> $config_host_mak
6414fi
6415if test "$xkbcommon" = "yes" ; then
6416 echo "XKBCOMMON_CFLAGS=$xkbcommon_cflags" >> $config_host_mak
6417 echo "XKBCOMMON_LIBS=$xkbcommon_libs" >> $config_host_mak
6418fi
3208
3209##########################################
3210# xfsctl() probe, used for file-posix.c
3211if test "$xfs" != "no" ; then
3212 cat > $TMPC << EOF
3213#include <stddef.h> /* NULL */
3214#include <xfs/xfs.h>
3215int main(void)

--- 3181 unchanged lines hidden (view full) ---

6397fi
6398if test "$vnc_png" = "yes" ; then
6399 echo "CONFIG_VNC_PNG=y" >> $config_host_mak
6400fi
6401if test "$xkbcommon" = "yes" ; then
6402 echo "XKBCOMMON_CFLAGS=$xkbcommon_cflags" >> $config_host_mak
6403 echo "XKBCOMMON_LIBS=$xkbcommon_libs" >> $config_host_mak
6404fi
6419if test "$fnmatch" = "yes" ; then
6420 echo "CONFIG_FNMATCH=y" >> $config_host_mak
6421fi
6422if test "$xfs" = "yes" ; then
6423 echo "CONFIG_XFS=y" >> $config_host_mak
6424fi
6425qemu_version=$(head $source_path/VERSION)
6426echo "VERSION=$qemu_version" >>$config_host_mak
6427echo "PKGVERSION=$pkgversion" >>$config_host_mak
6428echo "SRC_PATH=$source_path" >> $config_host_mak
6429echo "TARGET_DIRS=$target_list" >> $config_host_mak

--- 1324 unchanged lines hidden ---
6405if test "$xfs" = "yes" ; then
6406 echo "CONFIG_XFS=y" >> $config_host_mak
6407fi
6408qemu_version=$(head $source_path/VERSION)
6409echo "VERSION=$qemu_version" >>$config_host_mak
6410echo "PKGVERSION=$pkgversion" >>$config_host_mak
6411echo "SRC_PATH=$source_path" >> $config_host_mak
6412echo "TARGET_DIRS=$target_list" >> $config_host_mak

--- 1324 unchanged lines hidden ---