svn commit: r477245 - head/devel/android-tools-adb/files
Jan Beich
jbeich at FreeBSD.org
Wed Aug 15 17:49:50 UTC 2018
Author: jbeich
Date: Wed Aug 15 17:49:49 2018
New Revision: 477245
URL: https://svnweb.freebsd.org/changeset/ports/477245
Log:
devel/android-tools-adb: unbreak on DragonFly after r477244
adb/client/usb_libusb.cpp: In function 'void libusb::poll_for_devices()':
adb/client/usb_libusb.cpp:493:43: error: unable to find numeric literal operator 'operator""ms'
if (device_poll_cv.wait_for(lock, 500ms, []() { return terminate_device_poll_thread; })) {
^~~~~
Modified:
head/devel/android-tools-adb/files/patch-adb_client_usb__libusb.cpp (contents, props changed)
Modified: head/devel/android-tools-adb/files/patch-adb_client_usb__libusb.cpp
==============================================================================
--- head/devel/android-tools-adb/files/patch-adb_client_usb__libusb.cpp Wed Aug 15 17:32:28 2018 (r477244)
+++ head/devel/android-tools-adb/files/patch-adb_client_usb__libusb.cpp Wed Aug 15 17:49:49 2018 (r477245)
@@ -9,6 +9,14 @@
#include <android-base/file.h>
#include <android-base/logging.h>
+@@ -39,6 +39,7 @@
+
+ #include "adb.h"
+ #include "adb_utils.h"
++#include "sysdeps/chrono.h"
+ #include "transport.h"
+ #include "usb.h"
+
@@ -89,7 +89,11 @@ struct transfer_info {
};
More information about the svn-ports-all
mailing list