File:  [ELWIX - Embedded LightWeight unIX -] / libaitsched / configure.in
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Thu Dec 8 08:02:23 2011 UTC (12 years, 6 months ago) by misho
Branches: MAIN
CVS tags: sched1_2, SCHED1_1, HEAD
ver 1.1

    1: #
    2: # $Author: misho $
    3: # $Id: configure.in,v 1.2 2011/12/08 08:02:23 misho Exp $
    4: #
    5: AC_INIT(libaitsched, 1.1, misho@openbsd-bg.org)
    6: AC_CONFIG_SRCDIR([src/aitsched.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: AC_CHECK_HEADERS([stdint.h stdlib.h string.h sys/time.h unistd.h])
   27: 
   28: # Checks for typedefs, structures, and compiler characteristics.
   29: AC_C_INLINE
   30: AC_TYPE_SIZE_T
   31: 
   32: # Checks for library functions.
   33: AC_FUNC_MALLOC
   34: AC_CHECK_FUNCS([clock_gettime memset strerror])
   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,, [Turn off debug asserts])
   48: 				;;
   49: 		esac ], AC_DEFINE(NDEBUG,, [Turn off debug asserts]))
   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>