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