]> git.cworth.org Git - notmuch/blob - configure
configure: absolute path of bash
[notmuch] / configure
1 #! /bin/sh
2
3 set -u
4
5 # Test whether this shell is capable of parameter substring processing.
6 ( option='a/b'; : ${option#*/} ) 2>/dev/null || {
7     echo "
8 The shell interpreting '$0' is lacking some required features.
9
10 To work around this problem you may try to execute:
11
12     ksh $0 $*
13  or
14     bash $0 $*
15 "
16     exit 1
17 }
18
19 # Store original IFS value so it can be changed (and restored) in many places.
20 readonly DEFAULT_IFS="$IFS"
21
22 # The top-level directory for the source. This ./configure and all Makefiles
23 # are good with ${srcdir} usually being relative. Some components (e.g. tests)
24 # are executed in subdirectories and for those it is simpler to use
25 # ${NOTMUCH_SRCDIR} which holds absolute path to the source.
26 srcdir=$(dirname "$0")
27 NOTMUCH_SRCDIR=$(cd "$srcdir" && pwd)
28
29 subdirs="util compat lib parse-time-string completion doc emacs"
30 subdirs="${subdirs} performance-test test test/test-databases"
31 subdirs="${subdirs} bindings"
32
33 # For a non-srcdir configure invocation (such as ../configure), create
34 # the directory structure and copy Makefiles.
35 if [ "$srcdir" != "." ]; then
36
37     for dir in . ${subdirs}; do
38         mkdir -p "$dir"
39         cp "$srcdir"/"$dir"/Makefile.local "$dir"
40         cp "$srcdir"/"$dir"/Makefile "$dir"
41     done
42
43     # Emacs only likes to generate compiled files next to the .el files
44     # by default so copy these as well (which is not ideal).
45     cp -a "$srcdir"/emacs/*.el emacs
46
47     # We were not able to create fully working Makefile using ruby mkmf.rb
48     # so ruby bindings source files are copied as well (ditto -- not ideal).
49     mkdir bindings/ruby
50     cp -a "$srcdir"/bindings/ruby/*.[ch] bindings/ruby
51     cp -a "$srcdir"/bindings/ruby/extconf.rb bindings/ruby
52 fi
53
54 # Set several defaults (optionally specified by the user in
55 # environment variables)
56 BASH=${BASH:-bash}
57 CC=${CC:-cc}
58 CXX=${CXX:-c++}
59 CFLAGS=${CFLAGS:--g -O2}
60 CPPFLAGS=${CPPFLAGS:-}
61 CXXFLAGS_for_sh=${CXXFLAGS:-${CFLAGS}}
62 CXXFLAGS=${CXXFLAGS:-\$(CFLAGS)}
63 LDFLAGS=${LDFLAGS:-}
64 XAPIAN_CONFIG=${XAPIAN_CONFIG:-}
65 PYTHON=${PYTHON:-}
66 RUBY=${RUBY:-ruby}
67
68 # We don't allow the EMACS or GZIP Makefile variables inherit values
69 # from the environment as we do with CC and CXX above. The reason is
70 # that these names as environment variables have existing uses other
71 # than the program name that we want. (EMACS is set to 't' when a
72 # shell is running within emacs and GZIP specifies arguments to pass
73 # on the gzip command line).
74
75 # Set the defaults for values the user can specify with command-line
76 # options.
77 PREFIX=/usr/local
78 LIBDIR=
79 WITH_DOCS=1
80 WITH_API_DOCS=1
81 WITH_EMACS=1
82 WITH_DESKTOP=1
83 WITH_BASH=1
84 WITH_RUBY=1
85 WITH_ZSH=1
86 WITH_RETRY_LOCK=1
87
88 usage ()
89 {
90     cat <<EOF
91 Usage: ./configure [options]...
92
93 This script configures notmuch to build on your system.
94
95 It verifies that dependencies are available, determines flags needed
96 to compile and link against various required libraries, and identifies
97 whether various system functions can be used or if locally-provided
98 replacements will be built instead.
99
100 Finally, it allows you to control various aspects of the build and
101 installation process.
102
103 First, some common variables can specified via environment variables:
104
105         CC              The C compiler to use
106         CFLAGS          Flags to pass to the C compiler
107         CPPFLAGS        Flags to pass to the C preprocessor
108         CXX             The C++ compiler to use
109         CXXFLAGS        Flags to pass to the C compiler
110         LDFLAGS         Flags to pass when linking
111
112 Each of these values can further be controlled by specifying them
113 later on the "make" command line.
114
115 Other environment variables can be used to control configure itself,
116 (and for which there is no equivalent build-time control):
117
118         XAPIAN_CONFIG   The program to use to determine flags for
119                         compiling and linking against the Xapian
120                         library. [$XAPIAN_CONFIG]
121         PYTHON          Name of python command to use in
122                         configure and the test suite.
123         RUBY            Name of ruby command to use in
124                         configure and the test suite.
125
126 Additionally, various options can be specified on the configure
127 command line.
128
129         --prefix=PREFIX Install files in PREFIX [$PREFIX]
130
131 By default, "make install" will install the resulting program to
132 $PREFIX/bin, documentation to $PREFIX/man, etc. You can
133 specify an installation prefix other than $PREFIX using
134 --prefix, for instance:
135
136         ./configure --prefix=\$HOME
137
138 Fine tuning of some installation directories is available:
139
140         --libdir=DIR            Install libraries to DIR [PREFIX/lib]
141         --includedir=DIR        Install header files to DIR [PREFIX/include]
142         --mandir=DIR            Install man pages to DIR [PREFIX/share/man]
143         --infodir=DIR           Install man pages to DIR [PREFIX/share/man]
144         --sysconfdir=DIR        Read-only single-machine data [PREFIX/etc]
145         --emacslispdir=DIR      Emacs code [PREFIX/share/emacs/site-lisp]
146         --emacsetcdir=DIR       Emacs miscellaneous files [PREFIX/share/emacs/site-lisp]
147         --bashcompletiondir=DIR Bash completions files [PREFIX/share/bash-completion/completions]
148         --zshcompletiondir=DIR  Zsh completions files [PREFIX/share/zsh/functions/Completion/Unix]
149
150 Some features can be disabled (--with-feature=no is equivalent to
151 --without-feature) :
152
153         --without-bash-completion       Do not install bash completions files
154         --without-docs                  Do not install documentation
155         --without-api-docs              Do not install API man page
156         --without-emacs                 Do not install lisp file
157         --without-desktop               Do not install desktop file
158         --without-ruby                  Do not install ruby bindings
159         --without-zsh-completion        Do not install zsh completions files
160         --without-retry-lock            Do not use blocking xapian opens, even if available
161
162 Additional options are accepted for compatibility with other
163 configure-script calling conventions, but don't do anything yet:
164
165         --build=<cpu>-<vendor>-<os>     Currently ignored
166         --host=<cpu>-<vendor>-<os>      Currently ignored
167         --datadir=DIR                   Currently ignored
168         --localstatedir=DIR             Currently ignored
169         --libexecdir=DIR                Currently ignored
170         --disable-maintainer-mode       Currently ignored
171         --disable-dependency-tracking   Currently ignored
172
173 EOF
174 }
175
176 # Parse command-line options
177 for option; do
178     if [ "${option}" = '--help' ] ; then
179         usage
180         exit 0
181     elif [ "${option%%=*}" = '--prefix' ] ; then
182         PREFIX="${option#*=}"
183     elif [ "${option%%=*}" = '--libdir' ] ; then
184         LIBDIR="${option#*=}"
185     elif [ "${option%%=*}" = '--includedir' ] ; then
186         INCLUDEDIR="${option#*=}"
187     elif [ "${option%%=*}" = '--mandir' ] ; then
188         MANDIR="${option#*=}"
189     elif [ "${option%%=*}" = '--infodir' ] ; then
190         INFODIR="${option#*=}"
191     elif [ "${option%%=*}" = '--sysconfdir' ] ; then
192         SYSCONFDIR="${option#*=}"
193     elif [ "${option%%=*}" = '--emacslispdir' ] ; then
194         EMACSLISPDIR="${option#*=}"
195     elif [ "${option%%=*}" = '--emacsetcdir' ] ; then
196         EMACSETCDIR="${option#*=}"
197     elif [ "${option%%=*}" = '--bashcompletiondir' ] ; then
198         BASHCOMPLETIONDIR="${option#*=}"
199     elif [ "${option%%=*}" = '--zshcompletiondir' ] ; then
200         ZSHCOMLETIONDIR="${option#*=}"
201     elif [ "${option%%=*}" = '--with-docs' ]; then
202         if [ "${option#*=}" = 'no' ]; then
203             WITH_DOCS=0
204             WITH_API_DOCS=0
205         else
206             WITH_DOCS=1
207         fi
208     elif [ "${option}" = '--without-docs' ] ; then
209         WITH_DOCS=0
210         WITH_API_DOCS=0
211     elif [ "${option%%=*}" = '--with-api-docs' ]; then
212         if [ "${option#*=}" = 'no' ]; then
213             WITH_API_DOCS=0
214         else
215             WITH_API_DOCS=1
216         fi
217     elif [ "${option}" = '--without-api-docs' ] ; then
218         WITH_API_DOCS=0
219     elif [ "${option%%=*}" = '--with-emacs' ]; then
220         if [ "${option#*=}" = 'no' ]; then
221             WITH_EMACS=0
222         else
223             WITH_EMACS=1
224         fi
225     elif [ "${option}" = '--without-emacs' ] ; then
226         WITH_EMACS=0
227     elif [ "${option%%=*}" = '--with-desktop' ]; then
228         if [ "${option#*=}" = 'no' ]; then
229             WITH_DESKTOP=0
230         else
231             WITH_DESKTOP=1
232         fi
233     elif [ "${option}" = '--without-desktop' ] ; then
234         WITH_DESKTOP=0
235     elif [ "${option%%=*}" = '--with-bash-completion' ]; then
236         if [ "${option#*=}" = 'no' ]; then
237             WITH_BASH=0
238         else
239             WITH_BASH=1
240         fi
241     elif [ "${option}" = '--without-bash-completion' ] ; then
242         WITH_BASH=0
243     elif [ "${option%%=*}" = '--with-ruby' ]; then
244         if [ "${option#*=}" = 'no' ]; then
245             WITH_RUBY=0
246         else
247             WITH_RUBY=1
248         fi
249     elif [ "${option}" = '--without-ruby' ] ; then
250         WITH_RUBY=0
251     elif [ "${option%%=*}" = '--with-retry-lock' ]; then
252         if [ "${option#*=}" = 'no' ]; then
253             WITH_RETRY_LOCK=0
254         else
255             WITH_RETRY_LOCK=1
256         fi
257     elif [ "${option}" = '--without-retry-lock' ] ; then
258         WITH_RETRY_LOCK=0
259     elif [ "${option%%=*}" = '--with-zsh-completion' ]; then
260         if [ "${option#*=}" = 'no' ]; then
261             WITH_ZSH=0
262         else
263             WITH_ZSH=1
264         fi
265     elif [ "${option}" = '--without-zsh-completion' ] ; then
266         WITH_ZSH=0
267     elif [ "${option%%=*}" = '--build' ] ; then
268         true
269     elif [ "${option%%=*}" = '--host' ] ; then
270         true
271     elif [ "${option%%=*}" = '--datadir' ] ; then
272         true
273     elif [ "${option%%=*}" = '--localstatedir' ] ; then
274         true
275     elif [ "${option%%=*}" = '--libexecdir' ] ; then
276         true
277     elif [ "${option}" = '--disable-maintainer-mode' ] ; then
278         true
279     elif [ "${option}" = '--disable-dependency-tracking' ] ; then
280         true
281     else
282         echo "Unrecognized option: ${option}"
283         echo "See:"
284         echo "  $0 --help"
285         echo ""
286         exit 1
287     fi
288 done
289
290 # We set this value early, (rather than just while printing the
291 # Makefile.config file later like most values), because we need to
292 # actually investigate this value compared to the ldconfig_paths value
293 # below.
294 if [ -z "$LIBDIR" ] ; then
295     libdir_expanded="${PREFIX}/lib"
296 else
297     # very non-general variable expansion
298     libdir_expanded=$(printf %s "$LIBDIR" | sed "s|\${prefix}|${PREFIX}|; s|\$prefix\>|${PREFIX}|; s|//*|/|g")
299 fi
300
301 cat <<EOF
302 Welcome to Notmuch, a system for indexing, searching and tagging your email.
303
304 We hope that the process of building and installing notmuch is quick
305 and smooth so that you can soon be reading and processing your email
306 more efficiently than ever.
307
308 If anything goes wrong in the configure process, you can override any
309 decisions it makes by manually editing the Makefile.config file that
310 it creates. Also please do as much as you can to figure out what could
311 be different on your machine compared to those of the notmuch
312 developers. Then, please email those details to the Notmuch list
313 (notmuch@notmuchmail.org) so that we can hopefully make future
314 versions of notmuch easier for you to use.
315
316 We'll now investigate your system to verify that all required
317 dependencies are available:
318
319 EOF
320
321 errors=0
322 printf "int main(void){return 0;}\n" > minimal.c
323
324 printf "Sanity checking C compilation environment... "
325 test_cmdline="${CC} ${CFLAGS} ${CPPFLAGS} minimal.c ${LDFLAGS} -o minimal"
326 if  ${test_cmdline} > /dev/null 2>&1
327 then
328     printf "OK.\n"
329 else
330     printf "Fail.\n"
331     errors=$((errors + 1))
332     printf Executed:; printf ' %s' ${test_cmdline}; echo
333     ${test_cmdline}
334 fi
335
336 printf "Sanity checking C++ compilation environment... "
337 test_cmdline="${CXX} ${CXXFLAGS_for_sh} ${CPPFLAGS} minimal.c ${LDFLAGS} -o minimal"
338 if ${test_cmdline} > /dev/null 2>&1
339 then
340     printf "OK.\n"
341 else
342     printf "Fail.\n"
343     errors=$((errors + 1))
344     printf Executed:; printf ' %s' ${test_cmdline}; echo
345     ${test_cmdline}
346 fi
347 unset test_cmdline
348
349 if [ $errors -gt 0 ]; then
350     cat <<EOF
351 *** Error: Initial sanity checking of environment failed.  Please try
352 running configure in a clean environment, and if the problem persists,
353 report a bug.
354 EOF
355     rm -f minimal minimal.c
356     exit 1
357 fi
358
359 printf "Reading libnotmuch version from source... "
360 cat > _libversion.c <<EOF
361 #include <stdio.h>
362 #include "lib/notmuch.h"
363 int main(void) {
364     printf("libnotmuch_version_major=%d\n",
365                 LIBNOTMUCH_MAJOR_VERSION);
366     printf("libnotmuch_version_minor=%d\n",
367                 LIBNOTMUCH_MINOR_VERSION);
368     printf("libnotmuch_version_release=%d\n",
369                 LIBNOTMUCH_MICRO_VERSION);
370     return 0;
371 }
372 EOF
373 if ${CC} ${CFLAGS} -I"$srcdir" _libversion.c -o _libversion > /dev/null 2>&1 \
374        && ./_libversion > _libversion.sh && . ./_libversion.sh
375 then
376     printf "OK.\n"
377 else
378     cat <<EOF
379
380 *** Error: Reading lib/notmuch.h failed.
381 Please try running configure again in a clean environment, and if the
382 problem persists, report a bug.
383 EOF
384     rm -f _libversion _libversion.c _libversion.sh
385     exit 1
386 fi
387
388 if pkg-config --version > /dev/null 2>&1; then
389     have_pkg_config=1
390 else
391     have_pkg_config=0
392 fi
393
394 printf "Checking for Xapian development files... "
395 have_xapian=0
396 for xapian_config in ${XAPIAN_CONFIG} xapian-config xapian-config-1.3; do
397     if ${xapian_config} --version > /dev/null 2>&1; then
398         xapian_version=$(${xapian_config} --version | sed -e 's/.* //')
399         printf "Yes (%s).\n" ${xapian_version}
400         have_xapian=1
401         xapian_cxxflags=$(${xapian_config} --cxxflags)
402         xapian_ldflags=$(${xapian_config} --libs)
403         break
404     fi
405 done
406 if [ ${have_xapian} = "0" ]; then
407     printf "No.\n"
408     errors=$((errors + 1))
409 fi
410
411 have_xapian_compact=0
412 have_xapian_field_processor=0
413 if [ ${have_xapian} = "1" ]; then
414     printf "Checking for Xapian compaction support... "
415     cat>_compact.cc<<EOF
416 #include <xapian.h>
417 class TestCompactor : public Xapian::Compactor { };
418 EOF
419     if ${CXX} ${CXXFLAGS_for_sh} ${xapian_cxxflags} -c _compact.cc -o _compact.o > /dev/null 2>&1
420     then
421         have_xapian_compact=1
422         printf "Yes.\n"
423     else
424         printf "No.\n"
425         errors=$((errors + 1))
426     fi
427
428     rm -f _compact.o _compact.cc
429
430     printf "Checking for Xapian FieldProcessor API... "
431     cat>_field_processor.cc<<EOF
432 #include <xapian.h>
433 class TitleFieldProcessor : public Xapian::FieldProcessor { };
434 EOF
435     if ${CXX} ${CXXFLAGS_for_sh} ${xapian_cxxflags} -c _field_processor.cc -o _field_processor.o > /dev/null 2>&1
436     then
437         have_xapian_field_processor=1
438         printf "Yes.\n"
439     else
440         printf "No. (optional)\n"
441     fi
442
443     rm -f _field_processor.o _field_processor.cc
444
445     default_xapian_backend=""
446     # DB_RETRY_LOCK is only supported on Xapian > 1.3.2
447     have_xapian_db_retry_lock=0
448     if [ $WITH_RETRY_LOCK = "1" ]; then
449         printf "Checking for Xapian lock retry support... "
450         cat>_retry.cc<<EOF
451 #include <xapian.h>
452 int flag = Xapian::DB_RETRY_LOCK;
453 EOF
454         if ${CXX} ${CXXFLAGS_for_sh} ${xapian_cxxflags} -c _retry.cc -o _retry.o > /dev/null 2>&1
455         then
456             have_xapian_db_retry_lock=1
457             printf "Yes.\n"
458         else
459             printf "No. (optional)\n"
460         fi
461         rm -f _retry.o _retry.cc
462     fi
463
464     printf "Testing default Xapian backend... "
465     cat >_default_backend.cc <<EOF
466 #include <xapian.h>
467 int main(int argc, char** argv) {
468    Xapian::WritableDatabase db("test.db",Xapian::DB_CREATE_OR_OPEN);
469 }
470 EOF
471     ${CXX} ${CXXFLAGS_for_sh} ${xapian_cxxflags} _default_backend.cc -o _default_backend ${xapian_ldflags}
472     ./_default_backend
473     if [ -f test.db/iamglass ]; then
474         default_xapian_backend=glass
475     else
476         default_xapian_backend=chert
477     fi
478     printf "%s\n" "${default_xapian_backend}";
479     rm -rf test.db _default_backend _default_backend.cc
480 fi
481
482 # we need to have a version >= 2.6.5 to avoid a crypto bug. We need
483 # 2.6.7 for permissive "From " header handling.
484 GMIME_MINVER=2.6.7
485 GMIME3_MINVER=3.0.3
486
487 printf "Checking for GMime development files... "
488 if pkg-config --exists "gmime-3.0 > $GMIME3_MINVER"; then
489     printf "Yes (3.0).\n"
490     have_gmime=1
491     gmime_cflags=$(pkg-config --cflags gmime-3.0)
492     gmime_ldflags=$(pkg-config --libs gmime-3.0)
493     gmime_major=3
494     have_gmime_session_keys=1
495 elif pkg-config --exists "gmime-2.6 >= $GMIME_MINVER"; then
496     printf "Yes (2.6).\n"
497     have_gmime=1
498     gmime_cflags=$(pkg-config --cflags gmime-2.6)
499     gmime_ldflags=$(pkg-config --libs gmime-2.6)
500     gmime_major=2
501     if pkg-config --exists "gmime-2.6 >= 2.6.21"; then
502         have_gmime_session_keys=1
503     else
504         have_gmime_session_keys=0
505     fi
506 else
507     have_gmime=0
508     have_gmime_session_keys=0
509     printf "No.\n"
510     errors=$((errors + 1))
511 fi
512
513 # GMime already depends on Glib >= 2.12, but we use at least one Glib
514 # function that only exists as of 2.22, (g_array_unref)
515 printf "Checking for Glib development files (>= 2.22)... "
516 have_glib=0
517 if pkg-config --exists 'glib-2.0 >= 2.22'; then
518     printf "Yes.\n"
519     have_glib=1
520     # these are included in gmime cflags and ldflags
521     # glib_cflags=$(pkg-config --cflags glib-2.0)
522     # glib_ldflags=$(pkg-config --libs glib-2.0)
523 else
524     printf "No.\n"
525     errors=$((errors + 1))
526 fi
527
528 if ! pkg-config --exists zlib; then
529   ${CC} -o compat/gen_zlib_pc "$srcdir"/compat/gen_zlib_pc.c >/dev/null 2>&1 &&
530   compat/gen_zlib_pc > compat/zlib.pc &&
531   PKG_CONFIG_PATH="$PKG_CONFIG_PATH":compat &&
532   export PKG_CONFIG_PATH
533   rm -f compat/gen_zlib_pc
534 fi
535
536 printf "Checking for zlib (>= 1.2.5.2)... "
537 have_zlib=0
538 if pkg-config --atleast-version=1.2.5.2 zlib; then
539     printf "Yes.\n"
540     have_zlib=1
541     zlib_cflags=$(pkg-config --cflags zlib)
542     zlib_ldflags=$(pkg-config --libs zlib)
543 else
544     printf "No.\n"
545     errors=$((errors + 1))
546 fi
547
548 printf "Checking for talloc development files... "
549 if pkg-config --exists talloc; then
550     printf "Yes.\n"
551     have_talloc=1
552     talloc_cflags=$(pkg-config --cflags talloc)
553     talloc_ldflags=$(pkg-config --libs talloc)
554 else
555     printf "No.\n"
556     have_talloc=0
557     talloc_cflags=
558     errors=$((errors + 1))
559 fi
560
561 printf "Checking for bash... "
562 if command -v ${BASH} > /dev/null; then
563     have_bash=1
564     bash_absolute=$(command -v ${BASH})
565     printf "Yes (%s).\n" "$bash_absolute"
566 else
567     have_bash=0
568     printf "No. (%s not found)\n" "${BASH}"
569 fi
570
571 printf "Checking for python... "
572 have_python=0
573
574 for name in ${PYTHON} python3 python python2; do
575     if command -v $name > /dev/null; then
576         have_python=1
577         python=$name
578         printf "Yes (%s).\n" "$name"
579         break
580     fi
581 done
582
583 if [ $have_python -eq 0 ]; then
584     printf "No.\n"
585     errors=$((errors + 1))
586 fi
587
588 printf "Checking for valgrind development files... "
589 if pkg-config --exists valgrind; then
590     printf "Yes.\n"
591     have_valgrind=1
592     valgrind_cflags=$(pkg-config --cflags valgrind)
593 else
594     printf "No (but that's fine).\n"
595     have_valgrind=0
596     valgrind_cflags=
597 fi
598
599 printf "Checking for bash-completion (>= 1.90)... "
600 if pkg-config --atleast-version=1.90 bash-completion; then
601     printf "Yes.\n"
602 else
603     printf "No (will not install bash completion).\n"
604     WITH_BASH=0
605 fi
606
607 if [ -z "${EMACSLISPDIR-}" ]; then
608     EMACSLISPDIR="\$(prefix)/share/emacs/site-lisp"
609 fi
610
611 if [ -z "${EMACSETCDIR-}" ]; then
612     EMACSETCDIR="\$(prefix)/share/emacs/site-lisp"
613 fi
614
615 printf "Checking if emacs is available... "
616 if emacs --quick --batch > /dev/null 2>&1; then
617     printf "Yes.\n"
618     have_emacs=1
619 else
620     printf "No (so will not byte-compile emacs code)\n"
621     have_emacs=0
622 fi
623
624 have_doxygen=0
625 if [ $WITH_API_DOCS = "1" ] ; then
626     printf "Checking if doxygen is available... "
627     if command -v doxygen > /dev/null; then
628         printf "Yes.\n"
629         have_doxygen=1
630     else
631         printf "No (so will not install api docs)\n"
632     fi
633 fi
634
635 have_ruby_dev=0
636 if [ $WITH_RUBY = "1" ] ; then
637     printf "Checking for ruby development files... "
638     if ${RUBY} -e "require 'mkmf'"> /dev/null 2>&1; then
639         printf "Yes.\n"
640         have_ruby_dev=1
641     else
642         printf "No (skipping ruby bindings)\n"
643     fi
644 fi
645
646 have_sphinx=0
647 have_makeinfo=0
648 have_install_info=0
649 if [ $WITH_DOCS = "1" ] ; then
650     printf "Checking if sphinx is available and supports nroff output... "
651     if command -v sphinx-build > /dev/null && ${python} -m sphinx.writers.manpage > /dev/null 2>&1 ; then
652         printf "Yes.\n"
653         have_sphinx=1
654     else
655         printf "No (so will not install man pages).\n"
656     fi
657     printf "Checking if makeinfo is available... "
658     if command -v makeinfo > /dev/null; then
659         printf "Yes.\n"
660         have_makeinfo=1
661     else
662         printf "No (so will not build info pages).\n"
663     fi
664     printf "Checking if install-info is available... "
665     if command -v install-info > /dev/null; then
666         printf "Yes.\n"
667         have_install_info=1
668     else
669         printf "No (so will not install info pages).\n"
670     fi
671 fi
672
673 if [ $WITH_DESKTOP = "1" ]; then
674     printf "Checking if desktop-file-install is available... "
675     if command -v desktop-file-install > /dev/null; then
676         printf "Yes.\n"
677     else
678         printf "No (so will not install .desktop file).\n"
679         WITH_DESKTOP=0
680     fi
681 fi
682
683 printf "Checking for cppcheck... "
684 if command -v cppcheck > /dev/null; then
685     have_cppcheck=1
686     printf "Yes.\n"
687 else
688     have_cppcheck=0
689     printf "No.\n"
690 fi
691
692 libdir_in_ldconfig=0
693
694 printf "Checking which platform we are on... "
695 uname=$(uname)
696 if [ $uname = "Darwin" ] ; then
697     printf "Mac OS X.\n"
698     platform=MACOSX
699     linker_resolves_library_dependencies=0
700 elif [ $uname = "SunOS" ] ; then
701     printf "Solaris.\n"
702     platform=SOLARIS
703     linker_resolves_library_dependencies=0
704 elif [ $uname = "FreeBSD" ] ; then
705     printf "FreeBSD.\n"
706     platform=FREEBSD
707     linker_resolves_library_dependencies=0
708 elif [ $uname = "OpenBSD" ] ; then
709     printf "OpenBSD.\n"
710     platform=OPENBSD
711     linker_resolves_library_dependencies=0
712 elif [ $uname = "Linux" ] || [ $uname = "GNU" ] ; then
713     printf "%s\n" "$uname"
714     platform="$uname"
715     linker_resolves_library_dependencies=1
716
717     printf "Checking for %s in ldconfig... " "$libdir_expanded"
718     ldconfig_paths=$(/sbin/ldconfig -N -X -v 2>/dev/null | sed -n -e 's,^\(/.*\):\( (.*)\)\?$,\1,p')
719     # Separate ldconfig_paths only on newline (not on any potential
720     # embedded space characters in any filenames). Note, we use a
721     # literal newline in the source here rather than something like:
722     #
723     #   IFS=$(printf '\n')
724     #
725     # because the shell's command substitution deletes any trailing newlines.
726     IFS="
727 "
728     for path in $ldconfig_paths; do
729         if [ "$path" -ef "$libdir_expanded" ]; then
730             libdir_in_ldconfig=1
731         fi
732     done
733     IFS=$DEFAULT_IFS
734     if [ "$libdir_in_ldconfig" = '0' ]; then
735         printf "No (will set RPATH)\n"
736     else
737         printf "Yes\n"
738     fi
739 else
740     printf "Unknown.\n"
741     platform="$uname"
742     linker_resolves_library_dependencies=0
743     cat <<EOF
744
745 *** Warning: Unknown platform. Notmuch might or might not build correctly.
746
747 EOF
748 fi
749
750 if [ $errors -gt 0 ]; then
751     cat <<EOF
752
753 *** Error: The dependencies of notmuch could not be satisfied. You will
754 need to install the following packages before being able to compile
755 notmuch:
756
757 EOF
758     if [ $have_python -eq 0 ]; then
759         echo "  python interpreter"
760     fi
761     if [ $have_xapian -eq 0 -o $have_xapian_compact -eq 0 ]; then
762         echo "  Xapian library (>= version 1.2.6, including development files such as headers)"
763         echo "  https://xapian.org/"
764     fi
765     if [ $have_zlib -eq 0 ]; then
766         echo "  zlib library (>= version 1.2.5.2, including development files such as headers)"
767         echo "  https://zlib.net/"
768         echo
769     fi
770     if [ $have_gmime -eq 0 ]; then
771         echo "  GMime 2.6 library >= $GMIME_MINVER"
772         echo "  (including development files such as headers)"
773         echo "  https://github.com/jstedfast/gmime/"
774         echo
775     fi
776     if [ $have_glib -eq 0 ]; then
777         echo "  Glib library >= 2.22 (including development files such as headers)"
778         echo "  https://ftp.gnome.org/pub/gnome/sources/glib/"
779         echo
780     fi
781     if [ $have_talloc -eq 0 ]; then
782         echo "  The talloc library (including development files such as headers)"
783         echo "  https://talloc.samba.org/"
784         echo
785     fi
786     cat <<EOF
787 With any luck, you're using a modern, package-based operating system
788 that has all of these packages available in the distribution. In that
789 case a simple command will install everything you need. For example:
790
791 On Debian and similar systems:
792
793         sudo apt-get install libxapian-dev libgmime-2.6-dev libtalloc-dev zlib1g-dev
794
795 Or on Fedora and similar systems:
796
797         sudo yum install xapian-core-devel gmime-devel libtalloc-devel zlib-devel
798
799 On other systems, similar commands can be used, but the details of the
800 package names may be different.
801
802 EOF
803     if [ $have_pkg_config -eq 0 ]; then
804 cat <<EOF
805 Note: the pkg-config program is not available. This configure script
806 uses pkg-config to find the compilation flags required to link against
807 the various libraries needed by notmuch. It's possible you simply need
808 to install pkg-config with a command such as:
809
810         sudo apt-get install pkg-config
811 Or:
812         sudo yum install pkgconfig
813
814 But if pkg-config is not available for your system, then you will need
815 to modify the configure script to manually set the cflags and ldflags
816 variables to the correct values to link against each library in each
817 case that pkg-config could not be used to determine those values.
818
819 EOF
820     fi
821 cat <<EOF
822 When you have installed the necessary dependencies, you can run
823 configure again to ensure the packages can be found, or simply run
824 "make" to compile notmuch.
825
826 EOF
827     exit 1
828 fi
829
830 printf "Checking for canonicalize_file_name... "
831 if ${CC} -o compat/have_canonicalize_file_name "$srcdir"/compat/have_canonicalize_file_name.c > /dev/null 2>&1
832 then
833     printf "Yes.\n"
834     have_canonicalize_file_name=1
835 else
836     printf "No (will use our own instead).\n"
837     have_canonicalize_file_name=0
838 fi
839 rm -f compat/have_canonicalize_file_name
840
841
842 printf "Checking for getline... "
843 if ${CC} -o compat/have_getline "$srcdir"/compat/have_getline.c > /dev/null 2>&1
844 then
845     printf "Yes.\n"
846     have_getline=1
847 else
848     printf "No (will use our own instead).\n"
849     have_getline=0
850 fi
851 rm -f compat/have_getline
852
853 printf "Checking for strcasestr... "
854 if ${CC} -o compat/have_strcasestr "$srcdir"/compat/have_strcasestr.c > /dev/null 2>&1
855 then
856     printf "Yes.\n"
857     have_strcasestr=1
858 else
859     printf "No (will use our own instead).\n"
860     have_strcasestr=0
861 fi
862 rm -f compat/have_strcasestr
863
864 printf "Checking for strsep... "
865 if ${CC} -o compat/have_strsep "$srcdir"/compat/have_strsep.c > /dev/null 2>&1
866 then
867     printf "Yes.\n"
868     have_strsep="1"
869 else
870     printf "No (will use our own instead).\n"
871     have_strsep="0"
872 fi
873 rm -f compat/have_strsep
874
875 printf "Checking for timegm... "
876 if ${CC} -o compat/have_timegm "$srcdir"/compat/have_timegm.c > /dev/null 2>&1
877 then
878     printf "Yes.\n"
879     have_timegm="1"
880 else
881     printf "No (will use our own instead).\n"
882     have_timegm="0"
883 fi
884 rm -f compat/have_timegm
885
886 printf "Checking for dirent.d_type... "
887 if ${CC} -o compat/have_d_type "$srcdir"/compat/have_d_type.c > /dev/null 2>&1
888 then
889     printf "Yes.\n"
890     have_d_type="1"
891 else
892     printf "No (will use stat instead).\n"
893     have_d_type="0"
894 fi
895 rm -f compat/have_d_type
896
897 printf "Checking for standard version of getpwuid_r... "
898 if ${CC} -o compat/check_getpwuid "$srcdir"/compat/check_getpwuid.c > /dev/null 2>&1
899 then
900     printf "Yes.\n"
901     std_getpwuid=1
902 else
903     printf "No (will define _POSIX_PTHREAD_SEMANTICS to get it).\n"
904     std_getpwuid=0
905 fi
906 rm -f compat/check_getpwuid
907
908 printf "Checking for standard version of asctime_r... "
909 if ${CC} -o compat/check_asctime "$srcdir"/compat/check_asctime.c > /dev/null 2>&1
910 then
911     printf "Yes.\n"
912     std_asctime=1
913 else
914     printf "No (will define _POSIX_PTHREAD_SEMANTICS to get it).\n"
915     std_asctime=0
916 fi
917 rm -f compat/check_asctime
918
919 printf "Checking for rpath support... "
920 if ${CC} -Wl,--enable-new-dtags -Wl,-rpath,/tmp/ -o minimal minimal.c >/dev/null 2>&1
921 then
922     printf "Yes.\n"
923     rpath_ldflags="-Wl,--enable-new-dtags -Wl,-rpath,\$(libdir)"
924 else
925     printf "No (nothing to worry about).\n"
926     rpath_ldflags=""
927 fi
928
929 printf "Checking for -Wl,--as-needed... "
930 if ${CC} -Wl,--as-needed -o minimal minimal.c >/dev/null 2>&1
931 then
932     printf "Yes.\n"
933     as_needed_ldflags="-Wl,--as-needed"
934 else
935     printf "No (nothing to worry about).\n"
936     as_needed_ldflags=""
937 fi
938
939 printf "Checking for -Wl,--no-undefined... "
940 if ${CC} -Wl,--no-undefined -o minimal minimal.c >/dev/null 2>&1
941 then
942     printf "Yes.\n"
943     no_undefined_ldflags="-Wl,--no-undefined"
944 else
945     printf "No (nothing to worry about).\n"
946     no_undefined_ldflags=""
947 fi
948
949 WARN_CXXFLAGS=""
950 printf "Checking for available C++ compiler warning flags... "
951 for flag in -Wall -Wextra -Wwrite-strings; do
952     if ${CC} $flag -o minimal minimal.c > /dev/null 2>&1
953     then
954         WARN_CXXFLAGS="${WARN_CXXFLAGS}${WARN_CXXFLAGS:+ }${flag}"
955     fi
956 done
957 printf "\n\t%s\n" "${WARN_CXXFLAGS}"
958
959 WARN_CFLAGS="${WARN_CXXFLAGS}"
960 printf "Checking for available C compiler warning flags... "
961 for flag in -Wmissing-declarations; do
962     if ${CC} $flag -o minimal minimal.c > /dev/null 2>&1
963     then
964         WARN_CFLAGS="${WARN_CFLAGS}${WARN_CFLAGS:+ }${flag}"
965     fi
966 done
967 printf "\n\t%s\n" "${WARN_CFLAGS}"
968
969 rm -f minimal minimal.c _libversion.c _libversion _libversion.sh
970
971 # construct the Makefile.config
972 cat > Makefile.config <<EOF
973 # This Makefile.config was automatically generated by the ./configure
974 # script of notmuch. If the configure script identified anything
975 # incorrectly, then you can edit this file to try to correct things,
976 # but be warned that if configure is run again it will destroy your
977 # changes, (and this could happen by simply calling "make" if the
978 # configure script is updated).
979
980 # The top-level directory for the source, (the directory containing
981 # the configure script). This may be different than the build
982 # directory (the current directory at the time configure was run).
983 srcdir = ${srcdir}
984 NOTMUCH_SRCDIR = ${NOTMUCH_SRCDIR}
985
986 # subdirectories to build
987 subdirs = ${subdirs}
988
989 configure_options = $@
990
991 # We use vpath directives (rather than the VPATH variable) since the
992 # VPATH variable matches targets as well as prerequisites, (which is
993 # not useful since then a target left-over from a srcdir build would
994 # cause a target to not be built in the non-srcdir build).
995 #
996 # Also, we don't use a single "vpath % \$(srcdir)" here because we
997 # don't want the vpath to trigger for our emacs lisp compilation,
998 # (unless we first find a way to convince emacs to build the .elc
999 # target in a directory other than the directory of the .el
1000 # prerequisite). In the meantime, we're actually copying in the .el
1001 # files, (which is quite ugly).
1002 vpath %.c \$(srcdir)
1003 vpath %.cc \$(srcdir)
1004 vpath Makefile.% \$(srcdir)
1005 vpath %.py \$(srcdir)
1006 vpath %.rst \$(srcdir)
1007
1008 # Library versions (used to make SONAME)
1009 # The major version of the library interface. This will control the soname.
1010 # As such, this number must be incremented for any incompatible change to
1011 # the library interface, (such as the deletion of an API or a major
1012 # semantic change that breaks formerly functioning code).
1013 #
1014 LIBNOTMUCH_VERSION_MAJOR = ${libnotmuch_version_major}
1015
1016 # The minor version of the library interface. This should be incremented at
1017 # the time of release for any additions to the library interface,
1018 # (and when it is incremented, the release version of the library should
1019 #  be reset to 0).
1020 LIBNOTMUCH_VERSION_MINOR = ${libnotmuch_version_minor}
1021
1022 # The release version the library interface. This should be incremented at
1023 # the time of release if there have been no changes to the interface, (but
1024 # simply compatible changes to the implementation).
1025 LIBNOTMUCH_VERSION_RELEASE = ${libnotmuch_version_release}
1026
1027 # These are derived from the VERSION macros in lib/notmuch.h so
1028 # if you have to change them, something is wrong.
1029
1030 # The C compiler to use
1031 CC = ${CC}
1032
1033 # The C++ compiler to use
1034 CXX = ${CXX}
1035
1036 # Command to execute emacs from Makefiles
1037 EMACS = emacs --quick
1038
1039 # Default FLAGS for C compiler (can be overridden by user such as "make CFLAGS=-g")
1040 CFLAGS = ${CFLAGS}
1041
1042 # Default FLAGS for C preprocessor (can be overridden by user such as "make CPPFLAGS=-I/usr/local/include")
1043 CPPFLAGS = ${CPPFLAGS}
1044
1045 # Default FLAGS for C++ compiler (can be overridden by user such as "make CXXFLAGS=-g")
1046 CXXFLAGS = ${CXXFLAGS}
1047
1048 # Default FLAGS for the linker (can be overridden by user such as "make LDFLAGS=-znow")
1049 LDFLAGS = ${LDFLAGS}
1050
1051 # Flags to enable warnings when using the C++ compiler
1052 WARN_CXXFLAGS=${WARN_CXXFLAGS}
1053
1054 # Flags to enable warnings when using the C compiler
1055 WARN_CFLAGS=${WARN_CFLAGS}
1056
1057 # Name of python interpreter
1058 PYTHON = ${python}
1059
1060 # Name of ruby interpreter
1061 RUBY = ${RUBY}
1062
1063 # The prefix to which notmuch should be installed
1064 # Note: If you change this value here, be sure to ensure that the
1065 # LIBDIR_IN_LDCONFIG value below is still set correctly.
1066 prefix = ${PREFIX}
1067
1068 # The directory to which libraries should be installed
1069 # Note: If you change this value here, be sure to ensure that the
1070 # LIBDIR_IN_LDCONFIG value below is still set correctly.
1071 libdir = ${LIBDIR:=\$(prefix)/lib}
1072
1073 # Whether libdir is in a path configured into ldconfig
1074 LIBDIR_IN_LDCONFIG = ${libdir_in_ldconfig}
1075
1076 # The directory to which header files should be installed
1077 includedir = ${INCLUDEDIR:=\$(prefix)/include}
1078
1079 # The directory to which man pages should be installed
1080 mandir = ${MANDIR:=\$(prefix)/share/man}
1081
1082 # The directory to which man pages should be installed
1083 infodir = ${INFODIR:=\$(prefix)/share/info}
1084
1085 # The directory to which read-only (configuration) files should be installed
1086 sysconfdir = ${SYSCONFDIR:=\$(prefix)/etc}
1087
1088 # The directory to which emacs lisp files should be installed
1089 emacslispdir=${EMACSLISPDIR}
1090
1091 # The directory to which emacs miscellaneous (machine-independent) files should
1092 # be installed
1093 emacsetcdir=${EMACSETCDIR}
1094
1095 # Whether bash exists, and if so where
1096 HAVE_BASH = ${have_bash}
1097 BASH_ABSOLUTE = ${bash_absolute}
1098
1099 # Whether there's an emacs binary available for byte-compiling
1100 HAVE_EMACS = ${have_emacs}
1101
1102 # Whether there's a sphinx-build binary available for building documentation
1103 HAVE_SPHINX=${have_sphinx}
1104
1105 # Whether there's a makeinfo binary available for building info format documentation
1106 HAVE_MAKEINFO=${have_makeinfo}
1107
1108 # Whether there's an install-info binary available for installing info format documentation
1109 HAVE_INSTALL_INFO=${have_install_info}
1110
1111 # Whether there's a doxygen binary available for building api documentation
1112 HAVE_DOXYGEN=${have_doxygen}
1113
1114 # The directory to which desktop files should be installed
1115 desktop_dir = \$(prefix)/share/applications
1116
1117 # The directory to which bash completions files should be installed
1118 bash_completion_dir = ${BASHCOMPLETIONDIR:=\$(prefix)/share/bash-completion/completions}
1119
1120 # The directory to which zsh completions files should be installed
1121 zsh_completion_dir = ${ZSHCOMLETIONDIR:=\$(prefix)/share/zsh/functions/Completion/Unix}
1122
1123 # Whether the canonicalize_file_name function is available (if not, then notmuch will
1124 # build its own version)
1125 HAVE_CANONICALIZE_FILE_NAME = ${have_canonicalize_file_name}
1126
1127 # Whether the cppcheck static checker is available
1128 HAVE_CPPCHECK = ${have_cppcheck}
1129
1130 # Whether the getline function is available (if not, then notmuch will
1131 # build its own version)
1132 HAVE_GETLINE = ${have_getline}
1133
1134 # Are the ruby development files (and ruby) available? If not skip
1135 # building/testing ruby bindings.
1136 HAVE_RUBY_DEV = ${have_ruby_dev}
1137
1138 # Whether the strcasestr function is available (if not, then notmuch will
1139 # build its own version)
1140 HAVE_STRCASESTR = ${have_strcasestr}
1141
1142 # Whether the strsep function is available (if not, then notmuch will
1143 # build its own version)
1144 HAVE_STRSEP = ${have_strsep}
1145
1146 # Whether the timegm function is available (if not, then notmuch will
1147 # build its own version)
1148 HAVE_TIMEGM = ${have_timegm}
1149
1150 # Whether struct dirent has d_type (if not, then notmuch will use stat)
1151 HAVE_D_TYPE = ${have_d_type}
1152
1153 # Whether the GMime version can handle extraction and reuse of session keys
1154 HAVE_GMIME_SESSION_KEYS = ${have_gmime_session_keys}
1155
1156 # Whether the Xapian version in use supports compaction
1157 HAVE_XAPIAN_COMPACT = ${have_xapian_compact}
1158
1159 # Whether the Xapian version in use supports field processors
1160 HAVE_XAPIAN_FIELD_PROCESSOR = ${have_xapian_field_processor}
1161
1162 # Whether the Xapian version in use supports DB_RETRY_LOCK
1163 HAVE_XAPIAN_DB_RETRY_LOCK = ${have_xapian_db_retry_lock}
1164
1165 # Whether the getpwuid_r function is standards-compliant
1166 # (if not, then notmuch will #define _POSIX_PTHREAD_SEMANTICS
1167 # to enable the standards-compliant version -- needed for Solaris)
1168 STD_GETPWUID = ${std_getpwuid}
1169
1170 # Whether the asctime_r function is standards-compliant
1171 # (if not, then notmuch will #define _POSIX_PTHREAD_SEMANTICS
1172 # to enable the standards-compliant version -- needed for Solaris)
1173 STD_ASCTIME = ${std_asctime}
1174
1175 # Supported platforms (so far) are: LINUX, MACOSX, SOLARIS, FREEBSD, OPENBSD
1176 PLATFORM = ${platform}
1177
1178 # Whether the linker will automatically resolve the dependency of one
1179 # library on another (if not, then linking a binary requires linking
1180 # directly against both)
1181 LINKER_RESOLVES_LIBRARY_DEPENDENCIES = ${linker_resolves_library_dependencies}
1182
1183 # Flags needed to compile and link against Xapian
1184 XAPIAN_CXXFLAGS = ${xapian_cxxflags}
1185 XAPIAN_LDFLAGS = ${xapian_ldflags}
1186
1187 # Which backend will Xapian use by default?
1188 DEFAULT_XAPIAN_BACKEND = ${default_xapian_backend}
1189
1190 # Flags needed to compile and link against GMime
1191 GMIME_CFLAGS = ${gmime_cflags}
1192 GMIME_LDFLAGS = ${gmime_ldflags}
1193
1194 # Flags needed to compile and link against zlib
1195 ZLIB_CFLAGS = ${zlib_cflags}
1196 ZLIB_LDFLAGS = ${zlib_ldflags}
1197
1198 # Flags needed to compile and link against talloc
1199 TALLOC_CFLAGS = ${talloc_cflags}
1200 TALLOC_LDFLAGS = ${talloc_ldflags}
1201
1202 # Flags needed to have linker set rpath attribute
1203 RPATH_LDFLAGS = ${rpath_ldflags}
1204
1205 # Flags needed to have linker link only to necessary libraries
1206 AS_NEEDED_LDFLAGS = ${as_needed_ldflags}
1207
1208 # Flags to have the linker flag undefined symbols in object files
1209 NO_UNDEFINED_LDFLAGS = ${no_undefined_ldflags}
1210
1211 # Whether valgrind header files are available
1212 HAVE_VALGRIND = ${have_valgrind}
1213
1214 # And if so, flags needed at compile time for valgrind macros
1215 VALGRIND_CFLAGS = ${valgrind_cflags}
1216
1217 # Support for emacs
1218 WITH_EMACS = ${WITH_EMACS}
1219
1220 # Support for desktop file
1221 WITH_DESKTOP = ${WITH_DESKTOP}
1222
1223 # Support for bash completion
1224 WITH_BASH = ${WITH_BASH}
1225
1226 # Support for zsh completion
1227 WITH_ZSH = ${WITH_ZSH}
1228
1229 # Combined flags for compiling and linking against all of the above
1230 COMMON_CONFIGURE_CFLAGS = \\
1231         \$(GMIME_CFLAGS) \$(TALLOC_CFLAGS) \$(ZLIB_CFLAGS)      \\
1232         -DHAVE_VALGRIND=\$(HAVE_VALGRIND) \$(VALGRIND_CFLAGS)   \\
1233         -DHAVE_GETLINE=\$(HAVE_GETLINE)                         \\
1234         -DWITH_EMACS=\$(WITH_EMACS)                             \\
1235         -DHAVE_CANONICALIZE_FILE_NAME=\$(HAVE_CANONICALIZE_FILE_NAME) \\
1236         -DHAVE_STRCASESTR=\$(HAVE_STRCASESTR)                   \\
1237         -DHAVE_STRSEP=\$(HAVE_STRSEP)                           \\
1238         -DHAVE_TIMEGM=\$(HAVE_TIMEGM)                           \\
1239         -DHAVE_D_TYPE=\$(HAVE_D_TYPE)                           \\
1240         -DSTD_GETPWUID=\$(STD_GETPWUID)                         \\
1241         -DSTD_ASCTIME=\$(STD_ASCTIME)                           \\
1242         -DHAVE_GMIME_SESSION_KEYS=\$(HAVE_GMIME_SESSION_KEYS)   \\
1243         -DHAVE_XAPIAN_COMPACT=\$(HAVE_XAPIAN_COMPACT)           \\
1244         -DSILENCE_XAPIAN_DEPRECATION_WARNINGS                   \\
1245         -DHAVE_XAPIAN_FIELD_PROCESSOR=\$(HAVE_XAPIAN_FIELD_PROCESSOR) \\
1246         -DHAVE_XAPIAN_DB_RETRY_LOCK=\$(HAVE_XAPIAN_DB_RETRY_LOCK)
1247
1248 CONFIGURE_CFLAGS = \$(COMMON_CONFIGURE_CFLAGS)
1249
1250 CONFIGURE_CXXFLAGS = \$(COMMON_CONFIGURE_CFLAGS) \$(XAPIAN_CXXFLAGS)
1251
1252 CONFIGURE_LDFLAGS =  \$(GMIME_LDFLAGS) \$(TALLOC_LDFLAGS) \$(ZLIB_LDFLAGS) \$(XAPIAN_LDFLAGS)
1253 EOF
1254
1255 # construct the sh.config
1256 cat > sh.config <<EOF
1257 # This sh.config was automatically generated by the ./configure
1258 # script of notmuch.
1259
1260 NOTMUCH_SRCDIR='${NOTMUCH_SRCDIR}'
1261
1262 # Whether the Xapian version in use supports compaction
1263 NOTMUCH_HAVE_XAPIAN_COMPACT=${have_xapian_compact}
1264
1265 # Whether the Xapian version in use supports field processors
1266 NOTMUCH_HAVE_XAPIAN_FIELD_PROCESSOR=${have_xapian_field_processor}
1267
1268 # Whether the Xapian version in use supports lock retry
1269 NOTMUCH_HAVE_XAPIAN_DB_RETRY_LOCK=${have_xapian_db_retry_lock}
1270
1271 # Whether the GMime version can handle extraction and reuse of session keys
1272 NOTMUCH_HAVE_GMIME_SESSION_KEYS=${have_gmime_session_keys}
1273
1274 # Which backend will Xapian use by default?
1275 NOTMUCH_DEFAULT_XAPIAN_BACKEND=${default_xapian_backend}
1276
1277 # do we have man pages?
1278 NOTMUCH_HAVE_MAN=$((have_sphinx))
1279
1280 # Whether bash exists, and if so where
1281 NOTMUCH_HAVE_BASH=${have_bash}
1282 NOTMUCH_BASH_ABSOLUTE=${bash_absolute}
1283
1284 # Name of python interpreter
1285 NOTMUCH_PYTHON=${python}
1286
1287 # Name of ruby interpreter
1288 NOTMUCH_RUBY=${RUBY}
1289
1290 # Are the ruby development files (and ruby) available? If not skip
1291 # building/testing ruby bindings.
1292 NOTMUCH_HAVE_RUBY_DEV=${have_ruby_dev}
1293
1294 # Major version of gmime
1295 NOTMUCH_GMIME_MAJOR=${gmime_major}
1296
1297 # Platform we are run on
1298 PLATFORM=${platform}
1299 EOF
1300
1301 # Finally, after everything configured, inform the user how to continue.
1302 cat <<EOF
1303
1304 All required packages were found. You may now run the following
1305 commands to compile and install notmuch:
1306
1307         make
1308         sudo make install
1309
1310 EOF