# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) AC_INIT(Plugin_Collada, 0.0, philipp.hartl@bkf.at) AC_CONFIG_SRCDIR([src/OgreColladaDll.cpp]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE # Checks for programs. AC_PROG_CXX AC_PROG_INSTALL AC_PROG_LIBTOOL # Checks for libraries. PKG_CHECK_MODULES([OGRE], [OGRE], AC_SUBST(OGRE_PLUGINDIR,`pkg-config --variable plugindir OGRE`)) PKG_CHECK_MODULES([CEGUI], [CEGUI]) PKG_CHECK_MODULES([CEGUI_OGRE], [CEGUI-OGRE]) PKG_CHECK_MODULES([XML2], [libxml-2.0]) # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. AC_TYPE_SIZE_T # Checks for library functions. AC_CONFIG_FILES([ Makefile src/Makefile include/Makefile demo/Makefile demo/src/Makefile demo/include/Makefile OGRE-Plugin_Collada.pc]) AC_OUTPUT