Android build fixes
This commit is contained in:
parent
a4d1e61d0c
commit
6572e15d7e
2 changed files with 5 additions and 3 deletions
|
@ -2180,7 +2180,7 @@ namespace osl_VolumeInfo
|
|||
}
|
||||
|
||||
|
||||
#if ( defined UNX )
|
||||
#if defined(UNX) && !defined(ANDROID)
|
||||
void getMaxNameLength_002( )
|
||||
{
|
||||
struct statvfs aStatFS;
|
||||
|
@ -6055,7 +6055,7 @@ namespace osl_Directory
|
|||
if (tmp_x.lastIndexOf('/') != (tmp_x.getLength() - 1))
|
||||
tmp_x += rtl::OString('/');
|
||||
|
||||
#ifndef WNT
|
||||
#if !defined(WNT) && !defined(ANDROID)
|
||||
// FIXME would be nice to create unique dir even on Windows
|
||||
tmp_x += rtl::OString("XXXXXX");
|
||||
char *out = mkdtemp(const_cast<char*>(tmp_x.getStr()));
|
||||
|
|
|
@ -95,7 +95,9 @@ const sal_Char pBuffer_Blank[] = "";
|
|||
# include <sys/param.h>
|
||||
# include <sys/mount.h>
|
||||
# endif
|
||||
# include <sys/statvfs.h>
|
||||
# if !defined(ANDROID)
|
||||
# include <sys/statvfs.h>
|
||||
# endif
|
||||
# include <sys/types.h>
|
||||
# define TEST_PLATFORM ""
|
||||
# define TEST_PLATFORM_ROOT "/"
|
||||
|
|
Loading…
Reference in a new issue