dnl Copyright 2009 Virginia Polytechnic Institute and State University dnl dnl Licensed under the Apache License, Version 2.0 (the "License"); dnl you may not use this file except in compliance with the License. dnl You may obtain a copy of the License at dnl dnl http://www.apache.org/licenses/LICENSE-2.0 dnl dnl Unless required by applicable law or agreed to in writing, software dnl distributed under the License is distributed on an "AS IS" BASIS, dnl WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. dnl See the License for the specific language governing permissions and dnl limitations under the License. AC_INIT([cross], [0.1.1]) AM_INIT_AUTOMAKE([cross], [0.1.1]) AM_CONFIG_HEADER([src/include/vtcross/config.h]) AC_CONFIG_MACRO_DIR([m4]) AC_PROG_CC AC_PROG_CXX AC_PROG_SWIG AC_PROG_LIBTOOL AC_PROG_INSTALL AC_DISABLE_STATIC AM_PATH_PYTHON(2.6) SWIG_ENABLE_CXX SWIG_PYTHON AC_LANG_PUSH([C]) AC_CHECK_LIB([sqlite3], [sqlite3_open], [], [AC_MSG_ERROR([Cannot find sqlite3 library!])]) AC_LANG_POP AC_CONFIG_FILES(Makefile doc/Makefile src/Makefile src/shell/Makefile src/libvtcross/Makefile src/cognitive_engines/Makefile src/cognitive_engines/CBR_CE/Makefile src/cognitive_engines/OSSIE_DEMO_CE/Makefile src/cognitive_engines/DSA_CE/Makefile src/policy_engines/Makefile src/service_management_layer/Makefile src/lib/tinyxml/Makefile src/lib/socketcomm/Makefile src/include/Makefile src/include/vtcross/Makefile src/include/tinyxml/Makefile src/lib/Makefile src/libvtcross/swig/Makefile) AC_OUTPUT