diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2023-08-30 11:39:45 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-09-07 13:32:37 +0200 |
commit | 1f2146f7ca0f04afc62c4a170ec78bd030f3e72f (patch) | |
tree | d0b5a25c4f39e9ea2cdf38d230907fe3acbbdf90 /configure | |
parent | 73258b386489c410e4d449159a6c8420e3b7733f (diff) |
configure, meson: remove target OS symbols from config-host.mak
Stop applying config-host.mak to the sourcesets, since it does not
have any more CONFIG_* symbols coming from the command line.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 18 |
1 files changed, 0 insertions, 18 deletions
@@ -1683,32 +1683,14 @@ echo >> $config_host_mak echo all: >> $config_host_mak if test "$targetos" = "windows"; then - echo "CONFIG_WIN32=y" >> $config_host_mak echo "QEMU_GA_MANUFACTURER=${QEMU_GA_MANUFACTURER-QEMU}" >> $config_host_mak echo "QEMU_GA_DISTRO=${QEMU_GA_DISTRO-Linux}" >> $config_host_mak echo "QEMU_GA_VERSION=${QEMU_GA_VERSION-$(cat "$source_path"/VERSION)}" >> $config_host_mak -else - echo "CONFIG_POSIX=y" >> $config_host_mak -fi - -if test "$targetos" = "linux" ; then - echo "CONFIG_LINUX=y" >> $config_host_mak -fi - -if test "$targetos" = "darwin" ; then - echo "CONFIG_DARWIN=y" >> $config_host_mak fi echo "SRC_PATH=$source_path" >> $config_host_mak echo "TARGET_DIRS=$target_list" >> $config_host_mak -# XXX: suppress that -case $targetos in - gnu/kfreebsd | freebsd | dragonfly | netbsd | openbsd | darwin) - echo "CONFIG_BSD=y" >> $config_host_mak - ;; -esac - if test -n "$gdb_bin"; then gdb_version=$($gdb_bin --version | head -n 1) if version_ge ${gdb_version##* } 9.1; then |