root/vtcross/branches/bhilburn/configure.ac @ 156

Revision 156, 0.7 KB (checked in by bhilburn, 15 years ago)

Reorganized the socket functions to form a static library to link against since
we will be using that code everwhere. All autofoo stuff has been updated to
reflect this. Also, implemented the old policy engine demo with our new
component classes and fixed some bugs in that design.

Line 
1AC_INIT([vtcross], [0.0.0])
2AM_INIT_AUTOMAKE([vtcross], [0.0.0])
3AM_CONFIG_HEADER([src/include/vtcross/config.h])
4
5AC_CONFIG_MACRO_DIR([m4])
6
7AC_PROG_CC
8AC_PROG_CXX
9AC_PROG_LIBTOOL
10AC_PROG_INSTALL
11
12AC_LANG_PUSH([C])
13AC_CHECK_LIB([sqlite3], [sqlite3_open], [], [AC_MSG_ERROR([Cannot find sqlite3 library!])])
14AC_LANG_POP
15
16AC_CONFIG_FILES(Makefile doc/Makefile src/Makefile src/shell/Makefile
17          src/libvtcross/Makefile src/cognitive_engines/Makefile
18          src/policy_engines/Makefile src/service_management_layer/Makefile
19          src/lib/tinyxml/Makefile  src/lib/sockets/Makefile src/include/Makefile
20          src/include/vtcross/Makefile src/include/tinyxml/Makefile
21          src/lib/Makefile)
22AC_OUTPUT
Note: See TracBrowser for help on using the browser.