From 6ae9a32cd656e4398c11e851e959a0dd85f3c072 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Thu, 11 Apr 2019 01:29:12 +0200 Subject: Android: Disable include patterns if glob is unsupported Because of missing glob() in NDK platforms before 28 --- configure.ac | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 3ec309bf..4b6c31cb 100644 --- a/configure.ac +++ b/configure.ac @@ -361,10 +361,11 @@ AC_C_BIGENDIAN( ) BIRD_CHECK_ANDROID_GLOB -if test "$bird_cv_lib_glob" = no ; then - AC_MSG_ERROR([glob.h not found.]) -elif test "$bird_cv_lib_glob" != yes ; then - LIBS="$LIBS $bird_cv_lib_glob" +if test "$bird_cv_lib_glob" != no ; then + AC_DEFINE([HAVE_GLOB], [1], [Define to 1 if you have glob()]) + if test "$bird_cv_lib_glob" != yes ; then + LIBS="$LIBS $bird_cv_lib_glob" + fi fi BIRD_CHECK_ANDROID_LOG -- cgit v1.2.3