-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfigure.ac
35 lines (29 loc) · 920 Bytes
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
#AC_PREREQ([2.59])
AC_INIT([fineRADstructure], [0.3.1], [milan.malinsky@unibas.ch])
AC_CONFIG_AUX_DIR(config)
#AC_CONFIG_SRCDIR([fines.h])
#AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE
#AC_CONFIG_MACRO_DIR([m4])
AC_PROG_CXX
# Checks for libraries.
# find gsl, wherever it's hiding on the system
#AC_CHECK_LIB([m],[cos])
#AC_CHECK_LIB([gslcblas],[cblas_dgemm])
#AC_CHECK_LIB([gsl],[gsl_blas_dgemm])
AC_CHECK_LIB([z], [gzread])
#AX_CHECK_ZLIB([],[])
AX_PATH_GSL(,
,
AC_MSG_ERROR(could not find required version of GSL))
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_INLINE
# Checks for library functions.
AC_HEADER_MAJOR
AC_CHECK_FUNCS([pow select sqrt strchr strtoul])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT