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