Add <fnmatch.h> check to android-configure.h
diff --git a/android-configure.sh b/android-configure.sh
index 8b65c22..30d6f3c 100755
--- a/android-configure.sh
+++ b/android-configure.sh
@@ -357,6 +357,8 @@
 #
 feature_check_header HAVE_BYTESWAP_H "<byteswap.h>"
 
+feature_check_header HAVE_FNMATCH_H "<fnmatch.h>"
+
 # Build the config.make file
 #
 
@@ -404,6 +406,9 @@
 if [ "$HAVE_BYTESWAP_H" = "yes" ] ; then
   echo "#define HAVE_BYTESWAP_H 1" >> $config_h
 fi
+if [ "$HAVE_FNMATCH_H" = "yes" ] ; then
+  echo "#define CONFIG_FNMATCH  1" >> $config_h
+fi
 echo "#define CONFIG_GDBSTUB  1" >> $config_h
 echo "#define CONFIG_SLIRP    1" >> $config_h
 echo "#define CONFIG_SKINS    1" >> $config_h