1AC_OUTPUT
2
3if test -n "$MONGOC_PRERELEASE_VERSION"; then
4cat << EOF
5 *** IMPORTANT ***
6
7 This is an unstable version of libmongoc.
8 It is for test purposes only.
9
10 Please, DO NOT use it in a production environment.
11 It will probably crash and you will lose your data.
12
13 Additionally, the API/ABI may change during the course
14 of development.
15
16 Thanks,
17
18   The libmongoc team.
19
20 *** END OF WARNING ***
21
22EOF
23fi
24
25if test x"${enable_automatic_init_and_cleanup}" != x"no"; then
26  automatic_init_deprecated="
27      DEPRECATED: use --disable-automatic-init-and-cleanup"
28fi
29if test "x$MONGOC_36_EXPERIMENT" = "xyes"; then
30  experimental_features="
31  Feature #1                                       : ${enable_feature_1}"
32fi
33
34echo "
35libmongoc $MONGOC_VERSION was configured with the following options:
36
37Build configuration:
38  Enable debugging (slow)                          : ${enable_debug}
39  Compile with debug symbols (slow)                : ${enable_debug_symbols}
40  Enable GCC build optimization                    : ${enable_optimizations}
41  Enable automatic init and cleanup                : ${enable_automatic_init_and_cleanup}${automatic_init_deprecated}
42  Enable maintainer flags                          : ${enable_maintainer_flags}
43  Code coverage support                            : ${enable_coverage}
44  Cross Compiling                                  : ${enable_crosscompile}
45  Fast counters                                    : ${enable_rdtscp}
46  Shared memory performance counters               : ${enable_shm_counters}
47  SASL                                             : ${sasl_mode}
48  SSL                                              : ${enable_ssl}
49  Snappy Compression                               : ${with_snappy}
50  Zlib Compression                                 : ${with_zlib}
51  Libbson                                          : ${with_libbson}
52${experimental_features}
53Documentation:
54  man                                              : ${enable_man_pages}
55  HTML                                             : ${enable_html_docs}
56"
57