psl.c: Include strings.h only if it is available
This commit is contained in:
parent
a2411a7207
commit
b9a190264f
|
@ -373,6 +373,9 @@ AC_CHECK_FUNCS([strndup clock_gettime fmemopen nl_langinfo])
|
|||
# check for dirent.h
|
||||
AC_HEADER_DIRENT
|
||||
|
||||
# strings.h may not exist on WIN32
|
||||
AC_CHECK_HEADERS([strings.h])
|
||||
|
||||
# Override the template file name of the generated .pc file, so that there
|
||||
# is no need to rename the template file when the API version changes.
|
||||
AC_CONFIG_FILES([Makefile
|
||||
|
|
Loading…
Reference in New Issue