diff options
author | Max Kellermann <max@duempel.org> | 2013-01-27 20:26:07 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-27 21:43:27 +0100 |
commit | 81557849909e4833a075f7be104031d751a31357 (patch) | |
tree | 1dc9f3924eea32e7edca2fa599b179274fa28a3d /configure.ac | |
parent | 44725e485db84c834782ade925dd31ae4341fecd (diff) | |
download | mpd-81557849909e4833a075f7be104031d751a31357.tar.gz mpd-81557849909e4833a075f7be104031d751a31357.tar.xz mpd-81557849909e4833a075f7be104031d751a31357.zip |
string_util: add fallback for strnlen()
Usually, when strndup() is not available, strndup() isn't either,
because both are POSIX 2008.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a15733f19..073141d7a 100644 --- a/configure.ac +++ b/configure.ac @@ -136,7 +136,7 @@ AC_SEARCH_LIBS([gethostbyname], [nsl]) AC_CHECK_FUNCS(pipe2 accept4 eventfd) -AC_CHECK_FUNCS(strndup) +AC_CHECK_FUNCS(strnlen strndup) AC_SEARCH_LIBS([exp], [m],, [AC_MSG_ERROR([exp() not found])]) |