File:  [ELWIX - Embedded LightWeight unIX -] / libaitio / configure.in
Revision 1.4: download - view: text, annotated - select for diffs - revision graph
Fri Apr 16 13:25:27 2010 UTC (14 years, 1 month ago) by misho
Branches: MAIN
CVS tags: io1_3, HEAD
1.2 ver

    1: #
    2: # $Author: misho $
    3: # $Id: configure.in,v 1.4 2010/04/16 13:25:27 misho Exp $
    4: #
    5: AC_INIT(libaitio, 1.2, misho@openbsd-bg.org)
    6: AC_CONFIG_SRCDIR([src/aitio.c])
    7: AC_CONFIG_HEADERS([inc/config.h])
    8: 
    9: # Checks for programs.
   10: AC_PROG_CC
   11: AC_PROG_INSTALL
   12: 
   13: AC_CANONICAL_HOST
   14: AC_CANONICAL_TARGET
   15: 
   16: AC_CHECK_TOOL(MKDEP, mkdep, no)
   17: AC_SUBST(MKDEP)
   18: 
   19: CFLAGS="-Wall -O2 -fPIC -I/usr/local/include ${CFLAGS}"
   20: LDFLAGS="-L/usr/local/lib ${LDFLAGS}"
   21: 
   22: AC_CHECK_LIB(readline, [readline])
   23: 
   24: # Checks for header files.
   25: AC_CHECK_HEADERS([stdlib.h string.h sys/ioctl.h termios.h unistd.h])
   26: 
   27: # Checks for typedefs, structures, and compiler characteristics.
   28: AC_C_INLINE
   29: 
   30: # Checks for library functions.
   31: AC_FUNC_MALLOC
   32: AC_FUNC_REALLOC
   33: AC_CHECK_FUNCS([memset regcomp strchr strerror])
   34: AC_CHECK_FUNCS([readline])
   35: 
   36: DEBUG=no
   37: AC_MSG_CHECKING(Debug Build)
   38: AC_ARG_ENABLE(debug,
   39: 	[  --enable-debug          Build library with debug information and additional messages],
   40: 	[ DEBUG=$enableval
   41: 		case "$enableval" in
   42: 			yes)
   43: 				AC_DEFINE(__DEBUG,, [Build libraries with debug information and additional messages])
   44: 				CFLAGS="-g ${CFLAGS}"
   45: 				;;
   46: 			*)
   47: 				AC_DEFINE(NDEBUG,, [Build w/o assert() support])
   48: 				;;
   49: 		esac ],)
   50: AC_MSG_RESULT($DEBUG)
   51: 
   52: AC_CONFIG_FILES([Makefile
   53:                  inc/Makefile
   54:                  lib/Makefile
   55:                  src/Makefile])
   56: AC_OUTPUT

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