Android build fixes

This commit is contained in:
Tor Lillqvist 2011-07-15 02:03:58 +03:00
parent a4d1e61d0c
commit 6572e15d7e
2 changed files with 5 additions and 3 deletions

View file

@ -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()));

View file

@ -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 "/"