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