diff options
author | Moritz Angermann <moritz.angermann@gmail.com> | 2017-05-11 09:44:20 +0800 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2017-05-11 18:26:19 +0200 |
commit | eb5fc942f8f570e754bba0f57a8fdaec3400194f (patch) | |
tree | 67847616694df02690859e7072bc40b40634fe0d | |
parent | b5b62536e80344db4468d12fc6ded9fb4bc52be0 (diff) |
Update configure.ac
Add Comment
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index b23caef..c23c9e1 100644 --- a/configure.ac +++ b/configure.ac @@ -74,6 +74,8 @@ AC_CHECK_FUNCS([lutimes futimes]) # Additional temp functions dnl androids bionic doesn't have mkstemps +# We explicilty check for android, as the check AC_CHECK_FUNCS performs returns "yes" for mkstemps +# when targetting android. See similar conditionals for seekdir and telldir. AS_CASE([$target_os],[*-android*],[AC_CHECK_FUNCS([mkdtemp])],[AC_CHECK_FUNCS([mkstemps mkdtemp])]) # Functions for file synchronization and allocation control |