1 # Process this file with autoconf to produce a configure script.
5 AC_INIT([remote-mci],[0.9.git],[sensornet@diku.dk])
6 AC_CONFIG_AUX_DIR([config])
7 AC_CONFIG_HEADER([config/config.h])
8 AC_CONFIG_SRCDIR([mcs/MoteControlInfrastructure.h])
10 AM_INIT_AUTOMAKE([remote-mci],[0.9.git],[sensornet@diku.dk])
12 #######################################################################
14 #######################################################################
16 AC_DEFUN([REMOTE_PARSE_WITHVAL],
17 [m4_toupper(CONFIG_$1)=no;
18 m4_toupper(CONFIG_$1)DIR=;
19 if test "$withval" = "yes"; then
20 m4_toupper(CONFIG_$1)=yes;
22 m4_toupper(CONFIG_$1)=yes;
23 m4_toupper(CONFIG_$1)DIR="$withval";
25 AC_SUBST(m4_toupper(CONFIG_$1))
28 AC_DEFUN([REMOTE_PARSE_ENABLEVAL],
29 [m4_toupper(CONFIG_$1)=yes;
30 if test "$enableval" = "no"; then
31 m4_toupper(CONFIG_$1)=no;
33 AC_SUBST(m4_toupper(CONFIG_$1))
37 #######################################################################
39 #######################################################################
41 AC_ARG_ENABLE(diku-mch,
42 AS_HELP_STRING([--disable-diku-mch],[disable building of the DIKU mote control host module]))
43 REMOTE_PARSE_ENABLEVAL(diku_mch)
45 AC_ARG_ENABLE(diku-mcs,
46 AS_HELP_STRING([--disable-diku-mcs],[disable building of the DIKU mote control server module]))
47 REMOTE_PARSE_ENABLEVAL(diku_mcs)
49 #######################################################################
50 ## Checks for programs.
51 #######################################################################
58 AC_CHECK_TOOL(AR, ar, :)
59 AC_CHECK_TOOL(DOXYGEN, doxygen, :)
60 AC_CHECK_TOOL(ASCIIDOC, asciidoc, :)
62 #######################################################################
63 ## Checks for libraries.
64 #######################################################################
66 AX_BOOST_PROGRAM_OPTIONS
70 #######################################################################
71 ## Checks for header files.
72 #######################################################################
77 AC_CHECK_HEADERS([arpa/inet.h])
78 AC_CHECK_HEADERS([fcntl.h])
79 AC_CHECK_HEADERS([netdb.h])
80 AC_CHECK_HEADERS([netinet/in.h])
81 AC_CHECK_HEADERS([stdlib.h])
82 AC_CHECK_HEADERS([sys/ioctl.h])
83 AC_CHECK_HEADERS([sys/socket.h])
84 AC_CHECK_HEADERS([sys/time.h])
85 AC_CHECK_HEADERS([syslog.h])
86 AC_CHECK_HEADERS([termios.h])
87 AC_CHECK_HEADERS([unistd.h])
89 #######################################################################
90 ## Checks for typedefs, structures, and compiler characteristics.
91 #######################################################################
108 AC_PROG_GCC_TRADITIONAL
113 #######################################################################
114 ## Checks for library functions.
115 #######################################################################
120 AC_CHECK_FUNCS([gethostbyaddr])
121 AC_CHECK_FUNCS([gethostbyname])
122 AC_CHECK_FUNCS([inet_ntoa])
123 AC_CHECK_FUNCS([memset])
124 AC_CHECK_FUNCS([mkfifo])
125 AC_CHECK_FUNCS([select])
126 AC_CHECK_FUNCS([socket])
130 #######################################################################
131 ## Check dependencies.
132 #######################################################################
134 if test "x$CONFIG_DIKU_MCH" = "xyes"; then
135 if test "x$CONFIG_BOOST_PROGRAM_OPTIONS" != "xyes"; then
136 if test "x$enable_mch" = "xyes"; then
137 AC_MSG_ERROR([MCH dependencies not found on the system])
143 AM_CONDITIONAL(CONFIG_DIKU_MCH, test "x$CONFIG_DIKU_MCH" = "xyes")
145 if test "x$CONFIG_DIKU_MCS" = "xyes"; then
146 if test "x$CONFIG_BOOST_PROGRAM_OPTIONS" != "xyes" ||
147 test "x$CONFIG_MYSQL" != "xyes" ||
148 test "x$CONFIG_MYSQLPP" != "xyes"; then
149 if test "x$enable_mcs" = "xyes"; then
150 AC_MSG_ERROR([MCS dependencies not found on the system])
156 AM_CONDITIONAL(CONFIG_DIKU_MCS, test "x$CONFIG_DIKU_MCS" = "xyes")
158 #######################################################################
160 #######################################################################
165 diku_mch/plugpiper/Makefile
174 #######################################################################
175 ## Output build summary.
176 #######################################################################
178 AC_MSG_RESULT([Found dependencies:])
179 AC_MSG_RESULT([ Boost program option library .... $CONFIG_BOOST_PROGRAM_OPTIONS])
180 AC_MSG_RESULT([ MySQL library ................... $CONFIG_MYSQL])
181 AC_MSG_RESULT([ MySQL++ library ................. $CONFIG_MYSQLPP])
182 AC_MSG_RESULT([Will build:])
183 AC_MSG_RESULT([ DIKU mote control host .......... $CONFIG_DIKU_MCH])
184 AC_MSG_RESULT([ DIKU mote control server ........ $CONFIG_DIKU_MCS])