|
version 1.1.2.1, 2008/09/30 14:33:36
|
version 1.4, 2010/03/22 14:53:49
|
|
Line 1
|
Line 1
|
| AC_INIT(libaitcfg, 3.0, misho@openbsd-bg.org) | # |
| | # $Author$ |
| | # $Id$ |
| | # |
| | AC_INIT(libaitcfg, 3.2, misho@openbsd-bg.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 28 AC_FUNC_MALLOC
|
Line 32 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], |
|
Line 35 AC_ARG_ENABLE(debug,
|
Line 40 AC_ARG_ENABLE(debug,
|
| 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}" |
| ;; |
;; |
| *) |
*) |
| ;; |
;; |