1
0
mirror of https://github.com/TREX-CoE/trexio.git synced 2024-07-22 18:57:39 +02:00
trexio/configure.ac

181 lines
4.2 KiB
Plaintext
Raw Normal View History

# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
2021-05-28 13:36:39 +02:00
AC_INIT([trexio], [0.3.0], [https://github.com/TREX-CoE/trexio/issues])
2021-05-28 12:23:19 +02:00
AM_INIT_AUTOMAKE([subdir-objects color-tests parallel-tests silent-rules 1.11])
AM_MAINTAINER_MODE()
LT_INIT
AC_CONFIG_SRCDIR([Makefile.in])
2021-05-28 12:19:15 +02:00
AC_CONFIG_HEADERS([include/config.h])
2021-05-28 12:34:58 +02:00
AC_CONFIG_MACRO_DIR([m4])
VERSION_MAJOR=`echo ${PACKAGE_VERSION} | cut -d. -f1`
VERSION_MINOR=`echo ${PACKAGE_VERSION} | cut -d. -f2`
VERSION_PATCH=`echo ${PACKAGE_VERSION} | cut -d. -f3 | cut -d- -f1`
AC_DEFINE_UNQUOTED(TREXIO_VERSION_MAJOR, [$VERSION_MAJOR], [major version])
AC_DEFINE_UNQUOTED(TREXIO_VERSION_MINOR, [$VERSION_MINOR], [minor version])
AC_DEFINE_UNQUOTED(TREXIO_VERSION_PATCH, [$VERSION_PATCH], [patch version])
AC_SUBST([VERSION_MAJOR])
AC_SUBST([VERSION_MINOR])
AC_SUBST([VERSION_PATCH])
2021-06-03 01:25:20 +02:00
## -------------------
## Checks for programs
## -------------------
2021-05-28 12:34:58 +02:00
AC_LANG(C)
AC_PROG_CC
2021-06-03 01:25:20 +02:00
# C99 support
2021-05-28 12:16:32 +02:00
m4_version_prereq([2.70],[], [AC_PROG_CC_C99])
2021-06-03 01:25:20 +02:00
AS_IF([test "$ac_cv_prog_cc_c99" = "no"],
[AC_MSG_ERROR([The compiler does not support C99])])
2021-05-08 00:35:53 +02:00
AC_PROG_CC_C_O
2021-06-03 01:25:20 +02:00
# Fortran
AC_PROG_FC
2021-05-08 00:35:53 +02:00
AC_FC_FREEFORM
AC_FC_SRCEXT([f90])
AC_PROG_FC_C_O
2021-06-03 01:25:20 +02:00
AC_FC_LIBRARY_LDFLAGS
# pkg-config
PKG_PROG_PKG_CONFIG()
PKG_CFLAGS=""
AC_PROG_INSTALL
2021-05-28 13:36:39 +02:00
AC_PROG_LIBTOOL
AC_PROG_LN_S
2021-05-28 13:36:39 +02:00
2021-06-03 01:25:20 +02:00
## ---------
## Libraries
## ---------
# Checks for basic header files.
2021-06-04 14:43:27 +02:00
AC_CHECK_HEADERS([fcntl.h inttypes.h stdint.h stdbool.h stdlib.h string.h unistd.h])
2021-05-28 12:16:32 +02:00
2021-06-03 01:25:20 +02:00
### HDF5
### ----
# Configure with HDF5 (default: --with-hdf5 using pkg-config) [optional]:
# ./configure [--with-hdf5 or --with-hdf5=yes]
2021-06-03 01:25:20 +02:00
# Configure with user-provided path to HDF5:
# ./configure --with-hdf5=/usr/lib/x86_64-linux-gnu/hdf5/serial
2021-06-03 01:25:20 +02:00
# Configure without HDF5:
# ./configure --without-hdf5 [or --with-hdf5=no]
2021-05-05 13:55:00 +02:00
PKG_HDF5=""
2021-06-03 01:25:20 +02:00
AX_LIB_HDF5([serial])
if test "x${with_hdf5}" = xno; then
2021-05-05 12:17:15 +02:00
AC_MSG_WARN([
------------------------------------------
Configuring with the HDF5 library is
recommended to build efficient TREXIO.
------------------------------------------])
2021-06-03 01:25:20 +02:00
fi
2021-05-05 12:17:15 +02:00
2021-06-03 01:25:20 +02:00
CFLAGS="${HDF5_CFLAGS} ${CFLAGS}"
CPPFLAGS="${HDF5_CPPFLAGS} ${CPPFLAGS}"
LDFLAGS="${HDF5_LDFLAGS} ${LDFLAGS}"
LIBS="${HDF5_LIBS} ${LIBS}"
2021-06-03 01:25:20 +02:00
# Check if hdf5 if available with pkg-config
2021-06-03 01:25:20 +02:00
PKG_CHECK_MODULES([HDF5], [hdf5 >= 1.8], [
2021-05-05 12:17:15 +02:00
PKG_HDF5="hdf5"
2021-06-03 01:25:20 +02:00
],[
2021-05-05 12:17:15 +02:00
PKG_HDF5=""
2021-06-03 01:25:20 +02:00
])
PKG_CFLAGS="${PKG_CFLAGS}"
2021-05-05 12:17:15 +02:00
AC_SUBST([PKG_HDF5])
2021-05-05 13:55:00 +02:00
AC_SUBST([PKG_CFLAGS])
2021-05-05 12:17:15 +02:00
# Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_INT32_T
AC_TYPE_INT64_T
AC_TYPE_SIZE_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
# Checks for library functions.
AC_FUNC_MALLOC
AC_CHECK_FUNCS([memset mkdir strerror])
2021-05-28 13:36:39 +02:00
AM_CONDITIONAL([TREXIO_DEVEL],[test "x$TREXIO_DEVEL" != x])
2021-05-28 12:34:58 +02:00
if test "x${TREXIO_DEVEL}" != "x"; then
TREXIO_DEVEL=" -- Developer mode"
AC_PROG_AWK
AM_PATH_PYTHON([3.0])
AC_CHECK_PROGS([EMACS],[emacs26 emacs],[no])
if test x${EMACS} == xno ; then
AC_MSG_ERROR([
--------------------------------------
Error: Emacs is required for org-mode.
--------------------------------------
])
fi
AC_CHECK_PROGS([HAS_CPPCHECK],[cppcheck],[no])
if test x${HAS_CPPCHECK} != xno ; then
HAS_CPPCHECK=1
fi
fi
2021-06-03 01:25:20 +02:00
## Libm
## ----
AC_SEARCH_LIBS([sqrt], [m], [], AC_MSG_ERROR([The libm library is required]))
AC_CHECK_HEADERS([math.h])
### pthread
### -------
AC_SEARCH_LIBS([pthread_create], [pthread], [], AC_MSG_ERROR([The pthread library is required]))
AC_CHECK_HEADERS([pthread.h])
AC_CONFIG_FILES([Makefile
2021-05-28 12:34:58 +02:00
pkgconfig/trexio.pc])
AC_OUTPUT
echo \
"-------------------------------------------------
2021-05-28 12:34:58 +02:00
${PACKAGE_NAME} Version ${PACKAGE_VERSION} ${TREXIO_DEVEL}
2021-06-03 01:25:20 +02:00
Prefix ........: ${prefix}
CC ............: ${CC}
CPPFLAGS ......: ${CPPFLAGS}
CFLAGS ........: ${CFLAGS}
FC ............: ${FC}
FCLAGS ........: ${FCFLAGS}
LDFLAGS .......: ${LDFLAGS}
LIBS ..........: ${LIBS}
Package features:
2021-06-03 01:25:20 +02:00
Compilation with HDF5: ${with_hdf5}
Now type 'make @<:@<target>@:>@'
where the optional <target> is:
2021-06-03 01:25:20 +02:00
all - build C library and Fortran binding
check - run unit tests
install - install the library
--------------------------------------------------"