gihanjayatilaka
/
GPU-accelerated-adaptive-banded-event-alignment-for-rapid-comparative-nanopore-signal-analysis
Public
forked from hasindu2008/f5c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
145 lines (113 loc) · 3.87 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([f5c], [1.0], [[email protected]])
#AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_SRCDIR([src/f5c.c])
AC_CONFIG_HEADERS([src/config.h])
dnl Variant of AC_MSG_ERROR that ensures subsequent make(1) invocations fail
dnl until the configuration error is resolved and configure is run again.
AC_DEFUN([MSG_ERROR],
[cat > config.mk <<'EOF'
ifneq ($(MAKECMDGOALS),distclean)
$(error Resolve configure error first)
endif
EOF
AC_MSG_ERROR([$1], [$2])])
AC_ARG_ENABLE([systemhts],
[AS_HELP_STRING([--enable-systemhts=yes|no],
[Use system wide HTS. Default is disabled.])],
[enable_systemhts=$enableval], [enable_systemhts=no])
AC_ARG_ENABLE([localhdf5],
[AS_HELP_STRING([--enable-localhdf5],
[Use local HDF5. Default is disabled.])],
[enable_localhdf5=$enableval], [enable_localhdf5=no])
# Checks for programs.
AC_PROG_CC([gcc])
AC_PROG_CXX([g++])
AC_SYS_LARGEFILE
AC_FUNC_FSEEKO
# Checks for header files.
AC_CHECK_HEADERS([float.h inttypes.h stdint.h stdlib.h string.h sys/time.h unistd.h execinfo.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_CHECK_HEADER_STDBOOL
AC_C_INLINE
AC_TYPE_INT32_T
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
AC_TYPE_UINT8_T
# Checks for library functions.
AC_FUNC_MALLOC
AC_CHECK_FUNCS([gettimeofday memset sqrt strerror])
# Checks for libraries.
zlib_devel=ok
AC_CHECK_HEADER([zlib.h], [], [zlib_devel=missing], [;])
AC_CHECK_LIB(z, inflate, [], [zlib_devel=missing])
if test $zlib_devel != ok; then
MSG_ERROR([zlib development files not found
you may need to ensure a package such as zlib1g-dev (on Debian or
Ubuntu Linux) or zlib-devel (on RPM-based Linux distributions or Cygwin)
is installed.
])
fi
hdf_tar_install=autoconf
hts_tar_install=autoconf
locallibhts=no
if test "$enable_systemhts" = yes; then
libhts=yes
AC_CHECK_HEADERS([htslib/hts.h], [], [libhts=no])
AC_CHECK_LIB([hts], [faidx_fetch_seq], [], [libhts=no])
if test $libhts != yes; then
MSG_ERROR([System wide HTS library development files not found!
On Debian based systems such as Ubuntu you may use sudo apt-get install libhts-dev.
You can also download and install the latest release of htslib from http://www.htslib.org/download/.
])
fi
else
libhts=yes
AC_CHECK_FILE([./htslib/htslib/hts.h], [], [libhts=no])
AC_CHECK_FILE([./htslib/libhts.a], [], [libhts=no])
if test $libhts != yes; then
MSG_ERROR([Could not find a working local hts installation in ./htslib!
Make sure you run ./scripts/install-hts.sh
])
fi
locallibhts=yes
fi
locallibhdf5=no
if test "$enable_localhdf5" = yes; then
libhdf=yes
AC_CHECK_FILES([./hdf5/include/hdf5.h], [], [libhdf=no])
AC_CHECK_FILE([./hdf5/lib/libhdf5.a], [], [libhdf=no])
if test $libhdf != yes; then
MSG_ERROR([local HDF5 library development files not found!
Make sure you run ./scripts/install-hdf5.sh
])
fi
locallibhdf5=yes
else
libhdf=yes
AC_SEARCH_LIBS([H5Fopen], [hdf5 hdf5_serial], [], [libhdf=no])
if test $libhdf != yes; then
MSG_ERROR([HDF5 library development files not found!
On Debian based systems such as Ubuntu you may use sudo apt-get install libhdf5-dev.
On RPM based systems such as Fedora you may use sudo dnf install hdf5-devel.
])
fi
libhdfheader=no
AC_CHECK_HEADERS([hdf5.h hdf5/hdf5.h hdf5/serial/hdf5.h],[libhdfheader=yes;break;],[])
if test $libhdfheader != yes; then
MSG_ERROR([HDF5 header files not found!
On Debian based systems such as Ubuntu you may use sudo apt-get install libhdf5-dev.
On RPM based systems such as Fedora you may use sudo dnf install hdf5-devel.
])
fi
fi
AC_SUBST([locallibhts])
AC_SUBST([locallibhdf5])
AC_SUBST([hdf_tar_install])
AC_SUBST([hts_tar_install])
AC_CONFIG_FILES([config.mk])
AC_OUTPUT