Diff for /libaitcli/configure.in between versions 1.1 and 1.5

version 1.1, 2010/04/16 13:20:29 version 1.5, 2012/07/22 22:37:08
Line 2 Line 2
 # $Author$  # $Author$
 # $Id$  # $Id$
 #  #
AC_INIT(libaitcli, 1.1, misho@openbsd-bg.org)AC_INIT(libaitcli, 2.2, misho@openbsd-bg.org)
 AC_CONFIG_SRCDIR([src/aitcli.c])  AC_CONFIG_SRCDIR([src/aitcli.c])
 AC_CONFIG_HEADERS([inc/config.h])  AC_CONFIG_HEADERS([inc/config.h])
   
Line 20  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(readline, [readline])AC_CHECK_LIB(util, [forkpty])
 AC_CHECK_LIB(aitio, [io_TrimStr])
   
 # 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 libutil.h])
   
 # Checks for typedefs, structures, and compiler characteristics.  # Checks for typedefs, structures, and compiler characteristics.
 AC_C_INLINE  AC_C_INLINE
   
 # Checks for library functions.  # Checks for library functions.
 AC_CHECK_FUNCS([memset strdup strerror])  AC_CHECK_FUNCS([memset strdup strerror])
   AC_CHECK_FUNCS([io_TrimStr])
   AC_CHECK_FUNCS([forkpty])
   
 DEBUG=no  DEBUG=no
 AC_MSG_CHECKING(Debug Build)  AC_MSG_CHECKING(Debug Build)

Removed from v.1.1  
changed lines
  Added in v.1.5


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