mirror of
https://git.freebsd.org/ports.git
synced 2025-05-15 00:31:51 -04:00
- fix I2C slave addressing (Juha Riihimaki) - Revert "vga: do not resize the screen on hw_invalidate" (Aurelien Jarno) - slirp: fix use-after-free (Mark McLoughlin) - Fix sparc.ld (Blue Swirl) - ELF codedump build failures (Laurent Desnogues) - kvm: Move KVM mp_state accessors to i386-specific code (Hollis Blanchard) - fix configure script with armv4l cpu (Laurent Desnogues) - net: disable draining tap queue in one go (Mark McLoughlin) - pcnet: Restart poll timer on pcnet_start (Jan Kiszka) - Sparc32: Fix lance (Blue Swirl) - mac99: fix segmentation fault on startup (Aurelien Jarno) - usb-linux.c: fix buffer overflow (Jim Paris) - ARM host: fix generated blocks linking (Laurent Desnogues) - qemu serial: lost tx irqs (affecting FreeBSD's new uart(4) driver) (Juergen Lock) - exec-all.h: increase MAX_OP_PER_INSTR to 96 from 64 (Aurelien Jarno) - Added a cherry picked commit from stable branch that fixes qcow2.
14 lines
262 B
Text
14 lines
262 B
Text
Index: qemu/usb-bsd.c
|
|
@@ -35,7 +35,12 @@
|
|
|
|
#include <sys/ioctl.h>
|
|
#ifndef __DragonFly__
|
|
+#include <sys/param.h>
|
|
+#if __FreeBSD_version >= 800064
|
|
+#include <legacy/dev/usb/usb.h>
|
|
+#else
|
|
#include <dev/usb/usb.h>
|
|
+#endif
|
|
#else
|
|
#include <bus/usb/usb.h>
|
|
#endif
|