Changes in 21.7
===============
* Upgraded SELinux code to new api, thanks to Chris PeBenito
+ * define rpmatch for libraries that dont have it
Changes in 21.6
===============
AM_GNU_GETTEXT_VERSION([0.14.1])
dnl Checks for library functions.
-AC_CHECK_FUNCS([strdup strerror strtoul])
+AC_CHECK_FUNCS([strdup strerror strtoul rpmatch])
dnl Checks for Large File System
AC_SYS_LARGEFILE
#endif
+#ifndef HAVE_RPMATCH
+#define rpmatch(line) \
+ ( (line == NULL)? -1 : \
+ (*line == 'y' || *line == 'Y')? 1 : \
+ (*line == 'n' || *line == 'N')? 0 : \
+ -1 )
+#endif