Diff for /libelwix/configure.in between versions 1.61 and 1.62

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

Removed from v.1.61  
changed lines
  Added in v.1.62


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>