Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Aug 2017 16:09:28 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r448543 - head/devel/android-tools-adb-devel/files
Message-ID:  <201708221609.v7MG9SAl077277@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708221609.v7MG9SAl077277>