From: Fredrik Fornwall Date: Mon, 3 Feb 2014 14:28:40 +0000 (-0500) Subject: * arscan.c [ANDROID]: Android has no ar.h but supports archives. X-Git-Tag: 4.1~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b01e6bebff11b242549a0b48456a17772099d71;p=thirdparty%2Fmake.git * arscan.c [ANDROID]: Android has no ar.h but supports archives. Copyright-paperwork-exempt: yes --- diff --git a/arscan.c b/arscan.c index e49137b7..50d84952 100644 --- a/arscan.c +++ b/arscan.c @@ -253,10 +253,10 @@ ar_scan (const char *archive, ar_member_func_t function, const void *varg) #endif #ifndef WINDOWS32 -# ifndef __BEOS__ +# if !defined (__ANDROID__) && !defined (__BEOS__) # include # else - /* BeOS 5 doesn't have but has archives in the same format + /* These platforms don't have but have archives in the same format * as many other Unices. This was taken from GNU binutils for BeOS. */ # define ARMAG "!\n" /* String that begins an archive file. */