Diff for /libaitmqtt/configure.in between versions 1.8.2.2 and 1.8.2.4

version 1.8.2.2, 2016/09/14 15:23:51 version 1.8.2.4, 2022/09/14 14:32:48
Line 35  AC_C_INLINE Line 35  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 strdup strerror strtol])AC_CHECK_FUNCS([memset strdup strerror strtol strlcpy strlcat])
   
 DEBUG=no  DEBUG=no
 AC_MSG_CHECKING(Debug Build)  AC_MSG_CHECKING(Debug Build)
Line 53  AC_ARG_ENABLE(debug, Line 53  AC_ARG_ENABLE(debug,
                 esac ], AC_DEFINE(NDEBUG,, [Turn off debug asserts]))                  esac ], AC_DEFINE(NDEBUG,, [Turn off debug asserts]))
 AC_MSG_RESULT($DEBUG)  AC_MSG_RESULT($DEBUG)
   
   ELWIX=no
   AC_MSG_CHECKING(With libelwix Build)
   AC_ARG_WITH(elwix,
           [  --with-elwix          Build library with libelwix memory managemant],
           [ ELWIX=$withval
                   case "$withval" in
                           yes)
                                   AC_DEFINE(__ELWIX,, [Build libraries with libelwix memory managemant])
                                   CFLAGS="-g ${CFLAGS}"
                                   LIBS="-lelwix"
                                   ;;
                           *)
                                   ;;
                   esac ],)
   AC_MSG_RESULT($ELWIX)
   
 AC_CONFIG_FILES([Makefile  AC_CONFIG_FILES([Makefile
                  inc/Makefile                   inc/Makefile
                  lib/Makefile                   lib/Makefile
                  src/Makefile])                   src/Makefile])
AC_OUTPUTAC_OUTPUT()

Removed from v.1.8.2.2  
changed lines
  Added in v.1.8.2.4


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