File:  [ELWIX - Embedded LightWeight unIX -] / libaitcrc / configure.in
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Sun Jun 13 16:13:51 2010 UTC (13 years, 11 months ago) by misho
Branches: MAIN
CVS tags: crc2_0, HEAD, CRC1_2
new version 1.2

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

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