--- libelwix/configure.in 2023/03/14 22:36:13 1.64 +++ libelwix/configure.in 2024/01/22 15:24:28 1.65 @@ -1,8 +1,8 @@ # # $Author: misho $ -# $Id: configure.in,v 1.64 2023/03/14 22:36:13 misho Exp $ +# $Id: configure.in,v 1.65 2024/01/22 15:24:28 misho Exp $ # -AC_INIT(libelwix, 5.7, misho@elwix.org) +AC_INIT(libelwix, 5.8, misho@elwix.org) AC_CONFIG_SRCDIR([src/elwix.c]) AC_CONFIG_HEADERS([inc/config.h]) @@ -24,11 +24,9 @@ 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 @@ -36,7 +34,7 @@ AC_C_INLINE # Checks for library functions. AC_FUNC_MALLOC AC_FUNC_REALLOC -AC_CHECK_FUNCS([memset regcomp strchr strerror link_addr strlcpy]) +AC_CHECK_FUNCS([memset regcomp strchr strerror link_addr strlcpy strlcat]) DEBUG=no AC_MSG_CHECKING(Debug Build) @@ -48,7 +46,7 @@ AC_ARG_ENABLE(debug, CFLAGS="-g ${CFLAGS}" ;; *) - AC_DEFINE(NDEBUG,, [Build w/o assert() support]) + AC_DEFINE(NDEBUG, 1, [Build w/o assert() support]) ;; esac ],) AC_MSG_RESULT($DEBUG) @@ -68,6 +66,34 @@ AC_ARG_WITH(memmgr, ;; esac ], AC_DEFINE(MEMMGR, ELWIX_MPOOL, [ELWIX memory manager])) AC_MSG_RESULT($MEMMGR) + +PATRICIA=no +AC_MSG_CHECKING(Patricia support) +AC_ARG_ENABLE(patricia, + [ --enable-patricia Patricia support for ELWIX], + [ case "$enableval" in + yes) + AC_DEFINE(PATRICIA_SUPPORT,, [Patricia support]) + PATRICIA=yes + ;; + *) + ;; + esac ],) +AC_MSG_RESULT($PATRICIA) + +PELCO=no +AC_MSG_CHECKING(Pelco support) +AC_ARG_ENABLE(pelco, + [ --enable-pelco Pelco support for ELWIX], + [ case "$enableval" in + yes) + AC_DEFINE(PELCO_SUPPORT,, [Pelco support]) + PELCO=yes + ;; + *) + ;; + esac ],) +AC_MSG_RESULT($PELCO) AC_CONFIG_FILES([Makefile inc/Makefile