# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS]) AC_CONFIG_SRCDIR([Makefile.am]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([1.10 foreign dist-bzip2]) # Checks for programs. AC_PROG_CXX AC_PROG_CC # Checks for libraries. # Checks for header files. PKG_CHECK_MODULES(DLOG, dlog, [ AC_SUBST(DLOG_CFLAGS) AC_SUBST(DLOG_LIBS) ], [ AC_MSG_ERROR([ There is no dlog. ]) ]) # Initialize libtool LT_PREREQ([2.2]) LT_INIT([disable-static]) # Checks for typedefs, structures, and compiler characteristics. # Checks for library functions. AC_CONFIG_FILES([Makefile src/Makefile]) AC_OUTPUT