svn commit: r448543 - head/devel/android-tools-adb-devel/files

Jan Beich jbeich at FreeBSD.org
Tue Aug 22 16:09:30 UTC 2017


Author: jbeich
Date: Tue Aug 22 16:09:28 2017
New Revision: 448543
URL: https://svnweb.freebsd.org/changeset/ports/448543

Log:
  devel/android-tools-adb-devel: unbreak on 10.* after r448542
  
  In file included from adb_auth_host.cpp:33:
  adb/../base/include/android-base/file.h:60:63: error: unknown type name 'off64_t'; did you mean 'off_t'?
  bool ReadFullyAtOffset(int fd, void* data, size_t byte_count, off64_t offset);
                                                                ^~~~~~~
                                                                off_t
  /usr/include/stdio.h:53:18: note: 'off_t' declared here
  typedef __off_t         off_t;
                          ^

Modified:
  head/devel/android-tools-adb-devel/files/Makefile   (contents, props changed)

Modified: head/devel/android-tools-adb-devel/files/Makefile
==============================================================================
--- head/devel/android-tools-adb-devel/files/Makefile	Tue Aug 22 15:56:36 2017	(r448542)
+++ head/devel/android-tools-adb-devel/files/Makefile	Tue Aug 22 16:09:28 2017	(r448543)
@@ -109,6 +109,7 @@ CPPFLAGS+= -DHAVE_TERMIO_H
 CPPFLAGS+= -DHAVE_SYS_SOCKET_H
 CPPFLAGS+= -D_FILE_OFFSET_BITS=64
 CPPFLAGS+= -DFAKE_LOG_DEVICE=1
+CPPFLAGS+= -Doff64_t=off_t
 CPPFLAGS+= -I${.CURDIR}
 CPPFLAGS+= -I${.CURDIR}/../include
 CPPFLAGS+= -I${.CURDIR}/../base/include


More information about the svn-ports-head mailing list