aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Zak <richard.j.zak@gmail.com>2021-07-20 21:40:04 -0400
committerThomas Huth <thuth@redhat.com>2021-07-29 08:09:32 +0200
commitb8ee198d21c4bab41b8cb8d1729a956d9f648997 (patch)
treec47c323eae5882a7da767b15df5bb89fc3eaed10
parent61c32485b7920ecb25875561528778fbd3a7ad16 (diff)
configure script fix for Haiku
Haiku does not support compiling with -fpie. See the discussion here for details: https://discuss.haiku-os.org/t/qemu-on-haiku-sdl-issue/10961/6?u=rjzak Signed-off-by: Richard Zak <richard.j.zak@gmail.com> Message-Id: <CAOakUfM8zMpYiAEn-_f9s1DHdVB-Bq9fGMM=Hfr8hJW9ra6aWw@mail.gmail.com> [thuth: Tweaked title and patch description] Signed-off-by: Thomas Huth <thuth@redhat.com>
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 79e2ddc74e..cd5e6892f4 100755
--- a/configure
+++ b/configure
@@ -770,7 +770,8 @@ SunOS)
;;
Haiku)
haiku="yes"
- QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS -D_BSD_SOURCE $QEMU_CFLAGS"
+ pie="no"
+ QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS -D_BSD_SOURCE -fPIC $QEMU_CFLAGS"
;;
Linux)
audio_drv_list="try-pa oss"