-
Notifications
You must be signed in to change notification settings - Fork 9
/
configure2
69 lines (66 loc) · 2.17 KB
/
configure2
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
AC_CONFIG_FILES([bin/Makefile])
AC_CONFIG_FILES([test/Makefile])
AC_CONFIG_FILES([doc/Makefile])
AC_CONFIG_FILES([FINDSYM/Makefile])
AC_CONFIG_FILES([Makefile])
ac_configure_args_old="$ac_configure_args"
ac_configure_args="$ac_configure_args --enable-shared"
AC_OUTPUT
ac_configure_args=$ac_configure_args_old
echo
echo "================================================================================"
echo "=== Summury "
echo "================================================================================"
echo
echo " - Architectures -"
echo " ~~~~~~~~~~~~~~~~~~~~"
echo " * Host....: $host"
echo " * Build...: $build"
echo " * Git.....: $HASH"
echo
echo " - Compiler options -"
echo " ~~~~~~~~~~~~~~~~~~~~"
echo " * CPPFLAGS.: $CPPFLAGS"
echo " * CXXFLAGS.: $CXXFLAGS"
echo " * LIBS.....: $LIBS"
echo " * LDFLAGS..: $LDFLAGS"
echo " * pthread..: $have_pthread"
echo " * OpenMP...: $have_omp"
echo
echo " - Libraries (Tools) -"
echo " ~~~~~~~~~~~~~~~~~~~~~"
echo " * readline.: $have_readline_usable"
echo " * cURL.....: $have_curl_usable"
echo " * NetCDF...: $have_netcdf_usable"
if test x"$have_netcdfcxx4_usable" == x"yes"; then
echo " (C++4)"
else
if test x"$have_netcdfcpp_usable" == x"yes"; then
echo " (C++)"
fi
fi
echo " * XML2.....: $have_libxml2_usable"
echo " * FreeType.: $have_freetype_usable"
if test x"$have_freetype_usable" == x"yes"; then
echo " (Font to use: $default_font)"
fi
echo " * Eigen....: $have_eigen_usable"
echo " * Spglib...: $have_spglib_usable"
echo " * Yaml-cpp.: $have_yamlcpp_usable"
echo " * FFTW3....: $have_fftw3_usable"
echo " * SSH(SFTP): $have_ssh_usable"
echo
echo " - Libraries (Graphics) -"
echo " ~~~~~~~~~~~~~~~~~~~~~~~~"
echo " * OpenGL...: $have_gl_usable"
echo " * GLEXT....: $have_glext_usable"
echo " * GLFW.....: $have_glfw_usable"
if test x"$have_glfw_usable" == x"yes"; then
echo " (version $glfw_version)"
fi
#echo " * Qt.......: $have_qt_usable"
#if test x"$have_qt_usable" == x"yes"; then
# echo " ($QT_VERSION_MAJOR)"
#fi
echo " * LibJPEG..: $have_libjpeg_usable"
echo " * LibPNG...: $have_libpng_usable"