--- libelwix/configure.in 2022/04/13 21:24:48 1.61 +++ libelwix/configure.in 2022/09/26 19:39:23 1.62 @@ -1,8 +1,8 @@ # # $Author: misho $ -# $Id: configure.in,v 1.61 2022/04/13 21:24:48 misho Exp $ +# $Id: configure.in,v 1.62 2022/09/26 19:39:23 misho Exp $ # -AC_INIT(libelwix, 5.4, misho@elwix.org) +AC_INIT(libelwix, 5.5, misho@elwix.org) AC_CONFIG_SRCDIR([src/elwix.c]) AC_CONFIG_HEADERS([inc/config.h]) @@ -24,9 +24,11 @@ CFLAGS="-Wall -O2 -fPIC ${CFLAGS}" LDFLAGS="${LDFLAGS}" AC_CHECK_LIB([pthread], [pthread_mutex_init]) +AC_CHECK_LIB([bsd], [strlcpy]) # Checks for header files. AC_CHECK_HEADERS([stdlib.h string.h sys/ioctl.h termios.h unistd.h]) +AC_CHECK_HEADERS([bsd/string.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_INLINE @@ -34,7 +36,7 @@ AC_C_INLINE # Checks for library functions. AC_FUNC_MALLOC AC_FUNC_REALLOC -AC_CHECK_FUNCS([memset regcomp strchr strerror link_addr]) +AC_CHECK_FUNCS([memset regcomp strchr strerror link_addr strlcpy]) DEBUG=no AC_MSG_CHECKING(Debug Build)