# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) AC_INIT([mpidspacemediafilter], [1.0], [jmt12@students.waikato.ac.nz]) AM_INIT_AUTOMAKE AC_CANONICAL_HOST # Checks for programs. AC_PROG_CXX([mpic++]) # Checks for libraries. AC_CHECK_LIB([mpi],[MPI_Init]) # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. # Checks for library functions. # Completion AC_CONFIG_FILES([Makefile]) AC_OUTPUT