1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
AC_PREREQ(2.5)
AC_INIT([radlib],[2.12.0],[mteel2005@gmail.com])
AC_CONFIG_SRCDIR([h/radmsgLog.h])
AM_INIT_AUTOMAKE([radlib],[2.12.0])
AM_CONFIG_HEADER([config.h])
AC_ARG_ENABLE(mysql,
[ --enable-mysql include radlib MySQL database support],
[case "${enableval}" in
yes) mysql=true ;;
no) mysql=false ;;
*) mysql=false ;;
esac],[mysql=false])
AM_CONDITIONAL(MYSQL, test x$mysql = xtrue)
AC_ARG_ENABLE(pgresql,
[ --enable-pgresql include radlib postgreSQL database support],
[case "${enableval}" in
yes) pgresql=true ;;
no) pgresql=false ;;
*) pgresql=false ;;
esac],[pgresql=false])
AM_CONDITIONAL(PGRESQL, test x$pgresql = xtrue)
AC_ARG_ENABLE(sqlite,
[ --enable-sqlite include radlib sqlite database support],
[case "${enableval}" in
yes) sqlite=true ;;
no) sqlite=false ;;
*) sqlite=false ;;
esac],[sqlite=false])
AM_CONDITIONAL(SQLITE, test x$sqlite = xtrue)
AC_C_BIGENDIAN()
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LIBTOOL
AM_CONDITIONAL(CROSSCOMPILE, test x$cross_compiling = xyes)
AC_CHECK_LIB([c], [strncpy])
AC_CHECK_LIB([m], [exp])
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS([fcntl.h \
stdlib.h \
string.h \
sys/time.h \
syslog.h \
termios.h \
unistd.h])
AC_C_CONST
AC_TYPE_PID_T
AC_HEADER_TIME
AC_STRUCT_TM
AC_FUNC_FORK
AC_FUNC_MALLOC
AC_FUNC_SELECT_ARGTYPES
AC_TYPE_SIGNAL
AC_FUNC_STAT
AC_FUNC_VPRINTF
AC_CHECK_FUNCS([getcwd \
gethostname \
gettimeofday \
memset \
mkdir \
mkfifo \
select \
strchr \
strerror \
strrchr])
AC_CONFIG_FILES([Makefile \
src/Makefile \
msgRouter/Makefile \
debug/Makefile])
AC_OUTPUT
|