Diff for /libaitcfg/configure.in between versions 1.1.2.2 and 1.9.2.1

version 1.1.2.2, 2008/09/30 14:45:09 version 1.9.2.1, 2012/07/25 15:26:51
Line 1 Line 1
AC_INIT(libaitcfg, 3.0, misho@openbsd-bg.org)#
 # $Author$
 # $Id$
 #
 AC_INIT(libaitcfg, 5.3, misho@elwix.org)
 AC_CONFIG_SRCDIR([src/aitcfg.c])  AC_CONFIG_SRCDIR([src/aitcfg.c])
 AC_CONFIG_HEADERS([inc/config.h])  AC_CONFIG_HEADERS([inc/config.h])
   
Line 16  CFLAGS="-Wall -O2 -fPIC -I/usr/local/include ${CFLAGS} Line 20  CFLAGS="-Wall -O2 -fPIC -I/usr/local/include ${CFLAGS}
 LDFLAGS="-L/usr/local/lib ${LDFLAGS}"  LDFLAGS="-L/usr/local/lib ${LDFLAGS}"
   
 # Checks for libraries.  # Checks for libraries.
   AC_CHECK_LIB([pthread], [pthread_mutex_lock])
   AC_CHECK_LIB([aitio], [io_TrimStr])
   AC_CHECK_LIB([aitcrc], [crcFletcher16])
   
 # Checks for header files.  # Checks for header files.
   
Line 28  AC_FUNC_MALLOC Line 35  AC_FUNC_MALLOC
 AC_FUNC_REALLOC  AC_FUNC_REALLOC
 AC_CHECK_FUNCS([bzero memmove memset strchr strspn])  AC_CHECK_FUNCS([bzero memmove memset strchr strspn])
   
   DEBUG=no
 AC_MSG_CHECKING(Debug Build)  AC_MSG_CHECKING(Debug Build)
 AC_ARG_ENABLE(debug,  AC_ARG_ENABLE(debug,
         [  --enable-debug          Build library with debug information and additional messages],          [  --enable-debug          Build library with debug information and additional messages],
         [ DEBUG=$enableval          [ DEBUG=$enableval
                 case "$enableval" in                  case "$enableval" in
                         yes)                          yes)
                                AC_DEFINE(_DEBUG,, [Build libraries with debug information and additional messages])                                AC_DEFINE(__DEBUG,, [Build libraries with debug information and additional messages])
                                 CFLAGS="-g ${CFLAGS}"
                                 ;;                                  ;;
                         *)                          *)
                                   AC_DEFINE(NDEBUG,, [No debug, remove asserts])
                                 ;;                                  ;;
                 esac ],)                  esac ],)
 AC_MSG_RESULT($DEBUG)  AC_MSG_RESULT($DEBUG)

Removed from v.1.1.2.2  
changed lines
  Added in v.1.9.2.1


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