https://github.com/sanger-pathogens/gubbins
Revision 05ba0b398c9a09dc13f7346bdf90cff92fc3d7a9 authored by andrewjpage on 14 November 2014, 13:10:46 UTC, committed by andrewjpage on 14 November 2014, 13:10:46 UTC
1 parent 3221a02
Raw File
Tip revision: 05ba0b398c9a09dc13f7346bdf90cff92fc3d7a9 authored by andrewjpage on 14 November 2014, 13:10:46 UTC
warning message when changing number of threads
Tip revision: 05ba0b3
configure.ac
AC_INIT([gubbins], m4_esyscmd([tr -d '\n' < VERSION]), [aidan@ontologyengineering.org], [$(PACKAGE_NAME)$(AC_PACKAGE_VERSION)], [https://github.com/sanger-pathogens/gubbins])

AM_INIT_AUTOMAKE([foreign tar-pax])
AC_CONFIG_SRCDIR([configure.ac])
AC_CONFIG_HEADERS([config.h])

# Add our own macro dir, so we can check for PTHREAD
AC_CONFIG_MACRO_DIR([m4])

AC_PROG_LIBTOOL
AC_PROG_CC
AC_PROG_CXX

# Checks for pthread
AX_PTHREAD

# Ensure zlib is available
PKG_CHECK_MODULES([zlib], [zlib])

# Check for Python
AM_PATH_PYTHON([2.0],
               [],
               [AC_MSG_WARN([Python not found. Python is required to build presage python binding. Python can be obtained from http://www.python.org])])

# Define a new recursive target. In our case it produces a .deb installable.
#AM_EXTRA_RECURSIVE_TARGETS([release])

AC_CONFIG_FILES([Makefile src/Makefile release/Makefile python/Makefile])
AC_OUTPUT

AC_CHECK_HEADERS([zlib.h math.h])
back to top