summaryrefslogtreecommitdiff
path: root/emulators/qemu/patches/patch-av
diff options
context:
space:
mode:
authorxtraeme <xtraeme>2006-05-06 18:09:53 +0000
committerxtraeme <xtraeme>2006-05-06 18:09:53 +0000
commit402941acc9e3a857c5abdd5ce83d0a1a6a11a490 (patch)
tree208bb8a58e0d7a10d07895cc301a9b32f469afb9 /emulators/qemu/patches/patch-av
parente7af766e713301dd000587ebed3e408d84e4b70d (diff)
downloadpkgsrc-402941acc9e3a857c5abdd5ce83d0a1a6a11a490.tar.gz
Update to 0.8.1:
Changes: - USB tablet support (Brad Campbell, Anthony Liguori) - win32 host serial support (Kazu) - PC speaker support (Joachim Henke) - IDE LBA48 support (Jens Axboe) - SSE3 support - Solaris port (Ben Taylor) - Preliminary SH4 target (Samuel Tardieu) - VNC server (Anthony Liguori) - slirp fixes (Ed Swierk et al.) - USB fixes - ARM Versatile Platform Baseboard emulation (Paul Brook)
Diffstat (limited to 'emulators/qemu/patches/patch-av')
-rw-r--r--emulators/qemu/patches/patch-av55
1 files changed, 0 insertions, 55 deletions
diff --git a/emulators/qemu/patches/patch-av b/emulators/qemu/patches/patch-av
deleted file mode 100644
index df0770e4720..00000000000
--- a/emulators/qemu/patches/patch-av
+++ /dev/null
@@ -1,55 +0,0 @@
-$NetBSD: patch-av,v 1.1 2005/05/03 11:18:47 xtraeme Exp $
-
---- fpu/softfloat-native.c.orig 2005-04-27 22:52:05.000000000 +0200
-+++ fpu/softfloat-native.c 2005-05-03 13:08:02.000000000 +0200
-@@ -25,6 +25,8 @@
- #if defined(_BSD)
- #define lrint(d) ((int32_t)rint(d))
- #define llrint(d) ((int64_t)rint(d))
-+#define lrintf(d) ((int32_t)rint(d))
-+#define llrintf(d) ((int64_t)rint(d))
- #endif
-
- #if defined(__powerpc__)
-@@ -143,11 +145,11 @@
- }
- char float32_compare_quiet( float32 a, float32 b STATUS_PARAM )
- {
-- if (isless(a, b)) {
-+ if (__builtin_isless(a, b)) {
- return -1;
- } else if (a == b) {
- return 0;
-- } else if (isgreater(a, b)) {
-+ } else if (__builtin_isgreater(a, b)) {
- return 1;
- } else {
- return 2;
-@@ -247,11 +249,11 @@
- }
- char float64_compare_quiet( float64 a, float64 b STATUS_PARAM )
- {
-- if (isless(a, b)) {
-+ if (__builtin_isless(a, b)) {
- return -1;
- } else if (a == b) {
- return 0;
-- } else if (isgreater(a, b)) {
-+ } else if (__builtin_isgreater(a, b)) {
- return 1;
- } else {
- return 2;
-@@ -328,11 +330,11 @@
- }
- char floatx80_compare_quiet( floatx80 a, floatx80 b STATUS_PARAM )
- {
-- if (isless(a, b)) {
-+ if (__builtin_isless(a, b)) {
- return -1;
- } else if (a == b) {
- return 0;
-- } else if (isgreater(a, b)) {
-+ } else if (__builtin_isgreater(a, b)) {
- return 1;
- } else {
- return 2;