From e9c805ffdec34c66fdc751ea222fa40678c71351 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Fri, 24 Feb 2017 22:10:56 +0100 Subject: common: Add strsep() implementation for platforms lacking it --- configure.ac | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index d36cc67..2b31499 100644 --- a/configure.ac +++ b/configure.ac @@ -59,6 +59,13 @@ case "$host_os" in ;; esac +AC_CHECK_FUNCS([strsep strcspn]) +if test x$ac_cv_func_strsep != xyes; then + if test x$ac_cv_func_strcspn != xyes; then + AC_MSG_ERROR([You need either strsep or strcspn to build $PACKAGE]) + fi +fi + AC_SUBST(GLOBAL_CFLAGS) AC_SUBST(AC_LDFLAGS) AC_SUBST(AC_LDADD) -- cgit v1.1-32-gdbae