Annotation of embedtools/configure.in, revision 1.4.2.3
1.4 misho 1: #
2: # $Author: misho $
1.4.2.3 ! misho 3: # $Id: configure.in,v 1.4.2.2 2013/05/22 11:33:10 misho Exp $
1.4 misho 4: #
1.4.2.1 misho 5: AC_INIT(embedtools, 2.0, misho@elwix.org)
1.2 misho 6: AC_CONFIG_SRCDIR([src/cfexec.c])
7: AC_CONFIG_HEADERS([inc/config.h])
8:
1.4.2.2 misho 9: ac_cv_func_malloc_0_nonnull="yes"
10: ac_cv_func_realloc_0_nonnull="yes"
11:
1.2 misho 12: # Checks for programs.
13: AC_PROG_CC
14: AC_PROG_INSTALL
15:
16: AC_CANONICAL_HOST
17: AC_CANONICAL_TARGET
18:
19: AC_CHECK_TOOL(MKDEP, mkdep, no)
20: AC_SUBST(MKDEP)
21:
1.3 misho 22: OS=$(uname)
23: AC_SUBST(OS)
1.4.2.3 ! misho 24: MACHINE=${MACHINE:-i386}
! 25: AC_SUBST(MACHINE)
1.3 misho 26:
27: CFLAGS="-Wall -O2 -fPIC -g -DINET6 ${CFLAGS}"
28: LDFLAGS="${LDFLAGS}"
1.2 misho 29:
30: # Checks for libraries.
1.4.2.1 misho 31: AC_CHECK_LIB([elwix], [str_Trim])
1.2 misho 32: AC_CHECK_LIB([aitcfg], [LoadConfig])
33: AC_CHECK_LIB([aitsync], [syncDelta])
1.3 misho 34: AC_CHECK_LIB([aitwww], [www_XMLGet])
1.2 misho 35: AC_CHECK_LIB([axl], [axl_init])
36: AC_CHECK_LIB([crypto], [MD5_Init])
37: AC_CHECK_LIB([util], [openpty])
38:
39: # Checks for header files.
40: AC_CHECK_HEADERS([arpa/inet.h fcntl.h limits.h netdb.h netinet/in.h paths.h stdlib.h string.h sys/ioctl.h sys/mount.h sys/param.h sys/socket.h sys/time.h syslog.h unistd.h utmp.h utmpx.h])
41: AC_CHECK_HEADERS([libutil.h])
42:
43: # Checks for typedefs, structures, and compiler characteristics.
44: AC_C_INLINE
45: AC_TYPE_MODE_T
46: AC_TYPE_OFF_T
47: AC_TYPE_PID_T
48: AC_TYPE_SIZE_T
49: AC_TYPE_SSIZE_T
50: AC_TYPE_UID_T
51: AC_TYPE_UINT32_T
52: AC_TYPE_UINT8_T
53:
54: # Checks for library functions.
55: AC_FUNC_FORK
56: AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
57: AC_FUNC_MALLOC
58: AC_FUNC_MMAP
59: AC_FUNC_REALLOC
60: AC_FUNC_WAIT3
1.3 misho 61: AC_CHECK_FUNCS([alarm bzero dup2 endpwent getcwd gethostbyname gethostname inet_ntoa isascii memmove memset munmap select socket strcasecmp strchr strdup strerror strrchr strspn strstr strtol strtoul strtonum])
1.2 misho 62: AC_CHECK_FUNCS([kldnext kldfirstmod modfnext modstat kldload])
63:
64: DEBUG=no
65: AC_MSG_CHECKING(Debug Build)
66: AC_ARG_ENABLE(debug,
67: [ --enable-debug Build library with debug information and additional messages],
68: [ DEBUG=$enableval
69: case "$enableval" in
70: yes)
71: AC_DEFINE(__DEBUG,, [Build libraries with debug information and additional messages])
72: CFLAGS="-g ${CFLAGS}"
73: ;;
74: *)
75: AC_DEFINE(NDEBUG,, [Build w/o assert() support])
76: ;;
77: esac ],)
78: AC_MSG_RESULT($DEBUG)
79:
80: AC_CONFIG_FILES([Makefile
81: bin/Makefile
82: inc/Makefile
83: src/Makefile])
84: AC_OUTPUT
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>