forked from idaholab/moose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
104 lines (81 loc) · 3.84 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
AC_INIT([moose], [0.9.0], [moose-users@googlegroups.com], [moose], [https://mooseframework.org])
AC_PREREQ([2.69])
# Infer the source directory as the path to the ./configure script
srcdir=`dirname $0`
top_srcdir=`dirname $0`
test -n "$top_srcdir" &&
ac_top_srcdir_ls_di=`cd "$top_srcdir" && ls -di .` ||
as_fn_error $? "top source directory cannot be determined"
ac_pwd=`pwd` && test -n "$ac_pwd" &&
ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
as_fn_error $? "working directory cannot be determined"
test "X$ac_top_srcdir_ls_di" = "X$ac_pwd_ls_di" ||
as_fn_error $? "MOOSE configure must be run from the root directory"
AC_MSG_RESULT(---------------------------------------------)
AC_MSG_RESULT(----------- Configuring MOOSE ---------------)
AC_MSG_RESULT(---------------------------------------------)
AC_CONFIG_MACRO_DIR([m4])
# Create a temporary file with e.g. SPARSE_AD
AC_CONFIG_HEADER(framework/include/base/MooseConfig.h.tmp:framework/include/base/MooseConfig.h.in)
# Prefixes everything in the temporary file with MOOSE_, e.g. MOOSE_SPARSE_AD
AX_PREFIX_CONFIG_H(framework/include/base/MooseConfig.h,MOOSE,framework/include/base/MooseConfig.h.tmp)
AC_ARG_WITH(derivative-type,
AS_HELP_STRING([--with-derivative-type=sparse,nonsparse],[Specify the derivative type to use]),
[
derivative_type="$withval"
user_set_derivative_type=yes
],
[
derivative_type=sparse
user_det_derivative_type=no
])
AC_ARG_WITH(derivative-size,
AS_HELP_STRING([--with-derivative-size=<n>], [Specify the size of the derivative backing array]),
[derivative_size="$withval"],
[derivative_size=50])
AC_DEFINE_UNQUOTED(AD_MAX_DOFS_PER_ELEM, [$derivative_size], [The size of the derivative backing array])
AC_MSG_RESULT([configuring with derivative backing array size of $derivative_size])
AC_ARG_WITH(ad-indexing-type,
AS_HELP_STRING([--with-ad-indexing-type=local,global],[Specify the indexing scheme for AD derivatives]),
[ad_indexing_type="$withval"],
[ad_indexing_type=global])
AS_CASE("$ad_indexing_type",
[global],
[
AS_IF([test "$derivative_type" = nonsparse],
[
dnl The user explicitly requested a non-sparse container which is incompatible with global indexing
AC_MSG_ERROR(cannot use global AD indexing with a nonsparse derivative container)
])
AC_DEFINE(GLOBAL_AD_INDEXING, 1, [Whether to use a global indexing scheme for AD])
],
[local], [],
[AC_MSG_ERROR(bad value "$ad_indexing_type" for --with-ad-indexing-type)])
AC_MSG_RESULT([configuring with AD indexing type $ad_indexing_type])
AS_CASE("$derivative_type",
[sparse], [AC_DEFINE(SPARSE_AD, 1, [Whether to use a sparse derivative type])],
[nonsparse], [],
[AC_MSG_ERROR(bad value "$derivative_type" for --with-derivative-type)])
AC_MSG_RESULT([configuring with derivative type $derivative_type])
AC_PATH_TOOL(PKG_CONFIG,pkg-config)
if test x$PKG_CONFIG != x; then
AC_SUBST(LIBPNG)
if $PKG_CONFIG --exists libpng; then
AS_MESSAGE(checking system for libpng)
LIBPNG_LIBS=`$PKG_CONFIG --libs libpng`
LIBPNG_INCLUDES=`$PKG_CONFIG --cflags-only-I libpng`
AC_DEFINE(HAVE_LIBPNG, 1, [Whether or not libpng was detected on the system])
AC_MSG_RESULT(configuring with libpng support)
else
AC_MSG_RESULT(configuring without libpng support)
fi
fi
AC_SUBST([LIBPNG_LIBS])
AC_SUBST([LIBPNG_INCLUDES])
AC_SUBST([prefix])
AC_CONFIG_FILES(conf_vars.mk)
#AC_CHECK_LIB([png], [png_create_write_struct_2])
AC_OUTPUT
AC_MSG_RESULT(---------------------------------------------)
AC_MSG_RESULT(--------- Done Configuring MOOSE ------------)
AC_MSG_RESULT(---------------------------------------------)