-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
111 lines (92 loc) · 3.25 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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_INIT([SFCVM],[1.0],[[email protected]])
AM_INIT_AUTOMAKE([foreign no-exeext])
AC_CONFIG_MACRO_DIRS([m4])
# Checks for programs.
AC_PROG_CC
AC_PROG_CXX
AC_PROG_MKDIR_P
AC_PROG_LIBTOOL
AC_PROG_INSTALL
AC_PROG_LIBTOOL
if test "$allow_undefined_flag" = unsupported; then
# See issue119.
AM_LDFLAGS="-no-undefined $AM_LDFLAGS"
fi
AM_CONDITIONAL([NO_UNDEFINED], [test "$allow_undefined_flag" = unsupported])
AC_SUBST(AM_LDFLAGS)
# Checks for libraries.
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
if test x"$UCVM_INSTALL_PATH" = x; then
UCVM_DUMDUM=x"$UCVM_INSTALL_PATH"
UCVM_DUM=x"$UCVM_SRC_PATH"
fi
if test x"$UCVM_INSTALL_PATH" = x; then
AM_CONDITIONAL(UCVM, false)
UCVM_CFLAGS=
UCVM_LDFLAGS=
UCVM_HDF5_INC=
UCVM_HDF5_LIB=
UCVM_PROJ_INC=
UCVM_PROJ_LIB=
else
AM_CONDITIONAL(UCVM, true)
UCVM_CFLAGS="-I$UCVM_INSTALL_PATH/include"
UCVM_LDFLAGS="-L$UCVM_INSTALL_PATH/lib -lucvm -dynamic -L$UCVM_INSTALL_PATH/lib/proj/lib -lproj -lpthread -L$UCVM_INSTALL_PATH/lib/hdf5/lib -lhdf5 -lm -ldl"
UCVM_HDF5_INC=$UCVM_INSTALL_PATH/lib/hdf5/include
UCVM_HDF5_LIB=$UCVM_INSTALL_PATH/lib/hdf5/lib
UCVM_PROJ_INC=$UCVM_INSTALL_PATH/lib/proj/include
UCVM_PROJ_LIB=$UCVM_INSTALL_PATH/lib/proj/lib
AC_SUBST(UCVM_PROJ_INC)
AC_SUBST(UCVM_PROJ_LIB)
AC_SUBST(UCVM_HDF5_INC)
AC_SUBST(UCVM_HDF5_LIB)
fi
## dependencies
##
AC_ARG_ENABLE([geomodelgrids],[install_geomodelgrids=yes])
AM_CONDITIONAL([INSTALL_GEOMODELGRIDS], true)
AC_ARG_WITH([geomodelgrids-incdir],
[AS_HELP_STRING([--with-geomodelgrids-incdir], [directory containing geomodelgrids header files])],
[with_geomodelgrids_incdir="$withval"],
[with_geomodelgrids_incdir="$prefix/include"])
AC_SUBST(with_geomodelgrids_incdir)
AC_ARG_WITH([geomodelgrids-libdir],
[AS_HELP_STRING([--with-geomodelgrids-libdir], [directory containing geomodelgrids library])],
[with_geomodelgrids_libdir="$withval"],
[with_geomodelgrids_libdir="$prefix/lib"])
GEOMODELGRIDS_INCLUDES="-I$with_geomodelgrids_incdir"
GEOMODELGRIDS_LDFLAGS="-L$with_geomodelgrids_libdir -lgeomodelgrids"
AC_SUBST(GEOMODELGRIDS_INCLUDES)
AC_SUBST(GEOMODELGRIDS_LDFLAGS)
# TAR
AC_PATH_PROG(TAR, tar)
if test -z "$TAR" ; then
AC_MSG_FAILURE([cannot find 'tar' program.])
TAR=`echo "Error: tar is not installed." ; false`
fi
# CURL (used to download model files)
AC_PATH_PROG(CURL, curl)
if test -z "$CURL" ; then
AC_MSG_FAILURE([cannot find 'curl' program.])
CURL=`echo "Error: curl is not installed." ; false`
fi
##check optional large data path
##SFCVM_LARGEDATA_DIR=$CVM_LARGEDATA_DIR/model/sfcvm
if test x"$CVM_LARGEDATA_DIR" != x; then
# test directory existence
SFCVM_LARGEDATA_DIR=$CVM_LARGEDATA_DIR/model/sfcvm
# In docker container building.. this is not accessible yet
# AC_CHECK_FILE($CVM_LARGEDATA_DIR/model/sfcvm/USGS_SFCVM_v21-1_detailed.h5, [], [AC_MSG_ERROR(["SFCVM data not found in cvm_largedata_dir"])])
AM_CONDITIONAL([WITH_SFCVM_LARGEDATA_DIR], true)
AC_SUBST(SFCVM_LARGEDATA_DIR)
else
AM_CONDITIONAL(WITH_SFCVM_LARGEDATA_DIR, false)
fi
# Set final CFLAGS and LDFLAGS
CFLAGS="$CFLAGS"
LDFLAGS="$LDFLAGS"
AC_CONFIG_FILES([Makefile data/Makefile src/Makefile dependencies/Makefile test/Makefile test_geomodelgrids/Makefile])
AC_OUTPUT