Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 134913 Details for
Bug 197678
usbutils-0.73 does not compile on FreeBSD
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
files/usbutils-0.73-byteorder.patch
usbutils-0.73-byteorder.patch (text/plain), 1.14 KB, created by
Joe Peterson (RETIRED)
on 2007-11-01 16:12:23 UTC
(
hide
)
Description:
files/usbutils-0.73-byteorder.patch
Filename:
MIME Type:
Creator:
Joe Peterson (RETIRED)
Created:
2007-11-01 16:12:23 UTC
Size:
1.14 KB
patch
obsolete
>diff -Nur usbutils-0.73.old/configure.in usbutils-0.73/configure.in >--- usbutils-0.73.old/configure.in 2007-10-23 15:19:32 -0600 >+++ usbutils-0.73/configure.in 2007-11-01 09:17:48 -0600 >@@ -20,7 +20,7 @@ > AC_FUNC_ALLOCA > AC_HEADER_DIRENT > AC_HEADER_STDC >-AC_CHECK_HEADERS([fcntl.h stdlib.h string.h sys/ioctl.h sys/param.h unistd.h getopt.h errno.h ]) >+AC_CHECK_HEADERS([fcntl.h stdlib.h string.h sys/ioctl.h sys/param.h unistd.h getopt.h errno.h asm/byteorder.h machine/endian.h]) > > # Checks for typedefs, structures, and compiler characteristics. > AC_C_CONST >diff -Nur usbutils-0.73.old/lsusb.c usbutils-0.73/lsusb.c >--- usbutils-0.73.old/lsusb.c 2007-10-23 15:04:32 -0600 >+++ usbutils-0.73/lsusb.c 2007-11-01 09:19:04 -0600 >@@ -35,8 +35,17 @@ > #include <errno.h> > #include <stdio.h> > #include <stdarg.h> >+#if defined(HAVE_ASM_BYTEORDER_H) > #include <asm/byteorder.h> > #define le16_to_cpu __le16_to_cpu >+#elif defined(HAVE_MACHINE_ENDIAN_H) >+#include <machine/endian.h> >+#if _BYTE_ORDER == _LITTLE_ENDIAN >+#define le16_to_cpu(x) (x) >+#else >+#define le16_to_cpu __bswap16 >+#endif >+#endif > #include <usb.h> > > /* NOTE: that should be <libusb.h> and it should include
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 197678
:
134833
|
134834
|
134912
|
134913
|
135897
|
135899
|
135900