-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfigure.in
48 lines (40 loc) · 1.1 KB
/
configure.in
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
# Process this file with autoconf to produce a configure script.
AC_INIT([toppred], [1.10])
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER([src/config.h])
# Checks for programs.
AC_PROG_CC
AC_CHECK_PROG(POD2MAN, pod2man, pod2man, :)
AC_CHECK_PROG(GNUPLOT, gnuplot, gnuplot)
if test "$GNUPLOT" = "gnuplot"; then
AC_DEFINE(HAVE_GNUPLOT, 1, is gnuplot present)
else
AC_MSG_WARN([gnuplot not found, Hydrophobic profile will be unavailable])
fi
# Checks for libraries.
AC_CHECK_LIB(m, pow)
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([errno.h stdlib.h string.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_SIZE_T
AC_STRUCT_TM
# Checks for library functions.
# AC_FUNC_MALLOC # tru64 problem
AC_FUNC_STAT
AC_CHECK_FUNCS([pow sqrt strchr strerror strrchr])
# Checks for png driver
GD_CHECK
# Host specific stuff
OS_CPPFLAGS=""
AC_CANONICAL_HOST
case $host in
*-*osf*)
OS_CPPFLAGS="-D_XOPEN_SOURCE_EXTENDED"
break
esac
AC_SUBST([OS_CPPFLAGS])
AC_CONFIG_FILES([Makefile m4/Makefile src/Makefile data/Makefile doc/Makefile
test/Makefile])
AC_OUTPUT