Skip to content

Commit

Permalink
Android doesn't have stdin any more; use a different test program
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed May 7, 2017
1 parent cf12b0a commit 3dfcf40
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions m4/ax_check_compile_flag.m4
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ AS_VAR_PUSHDEF([CACHEVAR],[ax_cv_check_[]_AC_LANG_ABBREV[]flags_$4_$1])dnl
AC_CACHE_CHECK([whether _AC_LANG compiler accepts $1], CACHEVAR, [
ax_check_save_flags=$[]_AC_LANG_PREFIX[]FLAGS
_AC_LANG_PREFIX[]FLAGS="$[]_AC_LANG_PREFIX[]FLAGS $4 $1"
AC_TRY_LINK([#include <stdio.h>],
[char x[42U], fodder = 0;if (fodder > -1000 && fgets(x,1000,stdin)) puts(x)],
AC_TRY_LINK([#include <time.h>],
[time_t x; int fodder = 0; if (fodder > -1000 && time(&x)) return (int) x],
[AS_VAR_SET(CACHEVAR,[yes])],
[AS_VAR_SET(CACHEVAR,[no])])
_AC_LANG_PREFIX[]FLAGS=$ax_check_save_flags])
Expand Down
4 changes: 2 additions & 2 deletions m4/ax_check_link_flag.m4
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ AS_VAR_PUSHDEF([CACHEVAR],[ax_cv_check_ldflags_$4_$1])dnl
AC_CACHE_CHECK([whether the linker accepts $1], CACHEVAR, [
ax_check_save_flags=$LDFLAGS
LDFLAGS="$LDFLAGS $4 $1"
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>]],
[[char x[42U];if (fgets(x,1000,stdin)) puts(x)]])],
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]],
[[time_t x; int fodder = 0; if (fodder > -1000 && time(&x)) return (int) x]])],
[AS_VAR_SET(CACHEVAR,[yes])],
[AS_VAR_SET(CACHEVAR,[no])])
LDFLAGS=$ax_check_save_flags])
Expand Down

0 comments on commit 3dfcf40

Please sign in to comment.