]> git.notmuchmail.org Git - notmuch/blob - configure
asctime: check for standards compliance (Solaris support)
[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 # For a non-srcdir configure invocation (such as ../configure), create
23 # the directory structure and copy Makefiles.
24 if [ "$srcdir" != "." ]; then
25
26     for dir in . $(grep "^subdirs *=" "$srcdir"/Makefile | sed -e "s/subdirs *= *//"); do
27         mkdir -p "$dir"
28         cp "$srcdir"/"$dir"/Makefile.local "$dir"
29         cp "$srcdir"/"$dir"/Makefile "$dir"
30     done
31
32     # Easiest way to get the test suite to work is to just copy the
33     # whole thing into the build directory.
34     cp -a "$srcdir"/test/* test
35
36     # Emacs only likes to generate compiled files next to the .el files
37     # by default so copy these as well (which is not ideal0.
38     cp -a "$srcdir"/emacs/*.el emacs
39 fi
40
41 # Set several defaults (optionally specified by the user in
42 # environment variables)
43 CC=${CC:-gcc}
44 CXX=${CXX:-g++}
45 CFLAGS=${CFLAGS:--O2}
46 CPPFLAGS=${CPPFLAGS:-}
47 CXXFLAGS=${CXXFLAGS:-\$(CFLAGS)}
48 LDFLAGS=${LDFLAGS:-}
49 XAPIAN_CONFIG=${XAPIAN_CONFIG:-xapian-config}
50
51 # We don't allow the EMACS or GZIP Makefile variables inherit values
52 # from the environment as we do with CC and CXX above. The reason is
53 # that these names as environment variables have existing uses other
54 # than the program name that we want. (EMACS is set to 't' when a
55 # shell is running within emacs and GZIP specifies arguments to pass
56 # on the gzip command line).
57
58 # Set the defaults for values the user can specify with command-line
59 # options.
60 PREFIX=/usr/local
61 LIBDIR=
62 WITH_EMACS=1
63 WITH_BASH=1
64 WITH_ZSH=1
65
66 # Compatible GMime versions (with constraints).
67 # If using GMime 2.6, we need to have a version >= 2.6.5 to avoid a
68 # crypto bug. We need 2.6.7 for permissive "From " header handling.
69 GMIME_24_VERSION_CTR=''
70 GMIME_24_VERSION="gmime-2.4 $GMIME_24_VERSION_CTR"
71 GMIME_26_VERSION_CTR='>= 2.6.7'
72 GMIME_26_VERSION="gmime-2.6 $GMIME_26_VERSION_CTR"
73
74 WITH_GMIME_VERSIONS="$GMIME_26_VERSION;$GMIME_24_VERSION"
75
76 usage ()
77 {
78     cat <<EOF
79 Usage: ./configure [options]...
80
81 This script configures notmuch to build on your system.
82
83 It verifies that dependencies are available, determines flags needed
84 to compile and link against various required libraries, and identifies
85 whether various system functions can be used or if locally-provided
86 replacements will be built instead.
87
88 Finally, it allows you to control various aspects of the build and
89 installation process.
90
91 First, some common variables can specified via environment variables:
92
93         CC              The C compiler to use
94         CFLAGS          Flags to pass to the C compiler
95         CPPFLAGS        Flags to pass to the C preprocessor
96         CXX             The C++ compiler to use
97         CXXFLAGS        Flags to pass to the C compiler
98         LDFLAGS         Flags to pass when linking
99
100 Each of these values can further be controlled by specifying them
101 later on the "make" command line.
102
103 Other environment variables can be used to control configure itself,
104 (and for which there is no equivalent build-time control):
105
106         XAPIAN_CONFIG   The program to use to determine flags for
107                         compiling and linking against the Xapian
108                         library. [$XAPIAN_CONFIG]
109
110 Additionally, various options can be specified on the configure
111 command line.
112
113         --prefix=PREFIX Install files in PREFIX [$PREFIX]
114
115 By default, "make install" will install the resulting program to
116 $PREFIX/bin, documentation to $PREFIX/man, etc. You can
117 specify an installation prefix other than $PREFIX using
118 --prefix, for instance:
119
120         ./configure --prefix=\$HOME
121
122 Fine tuning of some installation directories is available:
123
124         --libdir=DIR            Install libraries to DIR [PREFIX/lib]
125         --includedir=DIR        Install header files to DIR [PREFIX/include]
126         --mandir=DIR            Install man pages to DIR [PREFIX/share/man]
127         --sysconfdir=DIR        Read-only single-machine data [PREFIX/etc]
128         --emacslispdir=DIR      Emacs code [PREFIX/share/emacs/site-lisp]
129         --emacsetcdir=DIR       Emacs miscellaneous files [PREFIX/share/emacs/site-lisp]
130         --bashcompletiondir=DIR Bash completions files [SYSCONFDIR/bash_completion.d]
131         --zshcompletiondir=DIR  Zsh completions files [PREFIX/share/zsh/functions/Completion/Unix]
132
133 Some specific library versions can be specified (auto-detected otherwise):
134
135         --with-gmime-version=VERS       Specify GMIME version (2.4 or 2.6)
136
137 Some features can be disabled (--with-feature=no is equivalent to
138 --without-feature) :
139
140         --without-emacs                 Do not install lisp file
141         --without-bash-completion       Do not install bash completions files
142         --without-zsh-completion        Do not install zsh completions files
143
144 Additional options are accepted for compatibility with other
145 configure-script calling conventions, but don't do anything yet:
146
147         --build=<cpu>-<vendor>-<os>     Currently ignored
148         --host=<cpu>-<vendor>-<os>      Currently ignored
149         --infodir=DIR                   Currently ignored
150         --datadir=DIR                   Currently ignored
151         --localstatedir=DIR             Currently ignored
152         --libexecdir=DIR                Currently ignored
153         --disable-maintainer-mode       Currently ignored
154         --disable-dependency-tracking   Currently ignored
155
156 EOF
157 }
158
159 # Parse command-line options
160 for option; do
161     if [ "${option}" = '--help' ] ; then
162         usage
163         exit 0
164     elif [ "${option%%=*}" = '--prefix' ] ; then
165         PREFIX="${option#*=}"
166     elif [ "${option%%=*}" = '--libdir' ] ; then
167         LIBDIR="${option#*=}"
168     elif [ "${option%%=*}" = '--includedir' ] ; then
169         INCLUDEDIR="${option#*=}"
170     elif [ "${option%%=*}" = '--mandir' ] ; then
171         MANDIR="${option#*=}"
172     elif [ "${option%%=*}" = '--sysconfdir' ] ; then
173         SYSCONFDIR="${option#*=}"
174     elif [ "${option%%=*}" = '--emacslispdir' ] ; then
175         EMACSLISPDIR="${option#*=}"
176     elif [ "${option%%=*}" = '--emacsetcdir' ] ; then
177         EMACSETCDIR="${option#*=}"
178     elif [ "${option%%=*}" = '--bashcompletiondir' ] ; then
179         BASHCOMPLETIONDIR="${option#*=}"
180     elif [ "${option%%=*}" = '--zshcompletiondir' ] ; then
181         ZSHCOMLETIONDIR="${option#*=}"
182     elif [ "${option%%=*}" = '--with-emacs' ]; then
183         if [ "${option#*=}" = 'no' ]; then
184             WITH_EMACS=0
185         else
186             WITH_EMACS=1
187         fi
188     elif [ "${option}" = '--without-emacs' ] ; then
189         WITH_EMACS=0
190     elif [ "${option%%=*}" = '--with-bash-completion' ]; then
191         if [ "${option#*=}" = 'no' ]; then
192             WITH_BASH=0
193         else
194             WITH_BASH=1
195         fi
196     elif [ "${option}" = '--without-bash-completion' ] ; then
197         WITH_BASH=0
198     elif [ "${option%%=*}" = '--with-zsh-completion' ]; then
199         if [ "${option#*=}" = 'no' ]; then
200             WITH_ZSH=0
201         else
202             WITH_ZSH=1
203         fi
204     elif [ "${option}" = '--without-zsh-completion' ] ; then
205         WITH_ZSH=0
206     elif [ "${option%%=*}" = '--with-gmime-version' ] ; then
207         if [ "${option#*=}" = '2.4' ]; then
208              WITH_GMIME_VERSIONS=$GMIME_24_VERSION
209          elif [ "${option#*=}" = '2.6' ]; then
210              WITH_GMIME_VERSIONS=$GMIME_26_VERSION
211         fi
212     elif [ "${option%%=*}" = '--build' ] ; then
213         true
214     elif [ "${option%%=*}" = '--host' ] ; then
215         true
216     elif [ "${option%%=*}" = '--infodir' ] ; then
217         true
218     elif [ "${option%%=*}" = '--datadir' ] ; then
219         true
220     elif [ "${option%%=*}" = '--localstatedir' ] ; then
221         true
222     elif [ "${option%%=*}" = '--libexecdir' ] ; then
223         true
224     elif [ "${option}" = '--disable-maintainer-mode' ] ; then
225         true
226     elif [ "${option}" = '--disable-dependency-tracking' ] ; then
227         true
228     else
229         echo "Unrecognized option: ${option}"
230         echo "See:"
231         echo "  $0 --help"
232         echo ""
233         exit 1
234     fi
235 done
236
237 # We set this value early, (rather than just while printing the
238 # Makefile.config file later like most values), because we need to
239 # actually investigate this value compared to the ldconfig_paths value
240 # below.
241 if [ -z "$LIBDIR" ] ; then
242     libdir_expanded="${PREFIX}/lib"
243 else
244     # very non-general variable expansion
245     libdir_expanded=`echo "$LIBDIR" | sed "s|\\${prefix}|${PREFIX}|g; s|\\$prefix/|${PREFIX}/|; s|//*|/|g"`
246 fi
247
248 cat <<EOF
249 Welcome to Notmuch, a system for indexing, searching and tagging your email.
250
251 We hope that the process of building and installing notmuch is quick
252 and smooth so that you can soon be reading and processing your email
253 more efficiently than ever.
254
255 If anything goes wrong in the configure process, you can override any
256 decisions it makes by manually editing the Makefile.config file that
257 it creates. Also please do as much as you can to figure out what could
258 be different on your machine compared to those of the notmuch
259 developers. Then, please email those details to the Notmuch list
260 (notmuch@notmuchmail.org) so that we can hopefully make future
261 versions of notmuch easier for you to use.
262
263 We'll now investigate your system to verify that all required
264 dependencies are available:
265
266 EOF
267
268 errors=0
269
270 if pkg-config --version > /dev/null 2>&1; then
271     have_pkg_config=1
272 else
273     have_pkg_config=0
274 fi
275
276 printf "Checking for Xapian development files... "
277 have_xapian=0
278 for xapian_config in ${XAPIAN_CONFIG}; do
279     if ${xapian_config} --version > /dev/null 2>&1; then
280         printf "Yes (%s).\n" $(${xapian_config} --version | sed -e 's/.* //')
281         have_xapian=1
282         xapian_cxxflags=$(${xapian_config} --cxxflags)
283         xapian_ldflags=$(${xapian_config} --libs)
284         break
285     fi
286 done
287 if [ ${have_xapian} = "0" ]; then
288     printf "No.\n"
289     errors=$((errors + 1))
290 fi
291
292 printf "Checking for GMime development files... "
293 have_gmime=0
294 IFS=';'
295 for gmimepc in $WITH_GMIME_VERSIONS; do
296     if pkg-config --exists $gmimepc; then
297         printf "Yes ($gmimepc).\n"
298         have_gmime=1
299         gmime_cflags=$(pkg-config --cflags $gmimepc)
300         gmime_ldflags=$(pkg-config --libs $gmimepc)
301         break
302     fi
303 done
304 IFS=$DEFAULT_IFS
305 if [ "$have_gmime" = "0" ]; then
306     printf "No.\n"
307     errors=$((errors + 1))
308 fi
309
310 # GMime already depends on Glib >= 2.12, but we use at least one Glib
311 # function that only exists as of 2.22, (g_array_unref)
312 printf "Checking for Glib development files (>= 2.22)... "
313 have_glib=0
314 if pkg-config --exists 'glib-2.0 >= 2.22'; then
315     printf "Yes.\n"
316     have_glib=1
317     glib_cflags=$(pkg-config --cflags glib-2.0)
318     glib_ldflags=$(pkg-config --libs glib-2.0)
319 else
320     printf "No.\n"
321     errors=$((errors + 1))
322 fi
323
324 printf "Checking for talloc development files... "
325 if pkg-config --exists talloc; then
326     printf "Yes.\n"
327     have_talloc=1
328     talloc_cflags=$(pkg-config --cflags talloc)
329     talloc_ldflags=$(pkg-config --libs talloc)
330 else
331     printf "No.\n"
332     have_talloc=0
333     talloc_cflags=
334     errors=$((errors + 1))
335 fi
336
337 printf "Checking for valgrind development files... "
338 if pkg-config --exists valgrind; then
339     printf "Yes.\n"
340     have_valgrind=1
341     valgrind_cflags=$(pkg-config --cflags valgrind)
342 else
343     printf "No (but that's fine).\n"
344     have_valgrind=0
345 fi
346
347 if [ -z "${EMACSLISPDIR}" ]; then
348     if pkg-config --exists emacs; then
349         EMACSLISPDIR=$(pkg-config emacs --variable sitepkglispdir)
350     else
351         EMACSLISPDIR='$(prefix)/share/emacs/site-lisp'
352     fi
353 fi
354
355 if [ -z "${EMACSETCDIR}" ]; then
356     if pkg-config --exists emacs; then
357         EMACSETCDIR=$(pkg-config emacs --variable sitepkglispdir)
358     else
359         EMACSETCDIR='$(prefix)/share/emacs/site-lisp'
360     fi
361 fi
362
363 printf "Checking if emacs is available... "
364 if emacs --quick --batch > /dev/null 2>&1; then
365     printf "Yes.\n"
366     have_emacs=1
367 else
368     printf "No (so will not byte-compile emacs code)\n"
369     have_emacs=0
370 fi
371
372 libdir_in_ldconfig=0
373
374 printf "Checking which platform we are on... "
375 uname=`uname`
376 if [ $uname = "Darwin" ] ; then
377     printf "Mac OS X.\n"
378     platform=MACOSX
379     linker_resolves_library_dependencies=0
380 elif [ $uname = "SunOS" ] ; then
381     printf "Solaris.\n"
382     platform=SOLARIS
383     linker_resolves_library_dependencies=0
384 elif [ $uname = "FreeBSD" ] ; then
385     printf "FreeBSD.\n"
386     platform=FREEBSD
387     linker_resolves_library_dependencies=0
388 elif [ $uname = "OpenBSD" ] ; then
389     printf "OpenBSD.\n"
390     platform=OPENBSD
391     linker_resolves_library_dependencies=0
392 elif [ $uname = "Linux" ] || [ $uname = "GNU" ] ; then
393     printf "$uname\n"
394     platform="$uname"
395     linker_resolves_library_dependencies=1
396
397     printf "Checking for $libdir_expanded in ldconfig... "
398     ldconfig_paths=$(/sbin/ldconfig -N -X -v 2>/dev/null | sed -n -e 's,^\(/.*\):\( (.*)\)\?$,\1,p')
399     # Separate ldconfig_paths only on newline (not on any potential
400     # embedded space characters in any filenames). Note, we use a
401     # literal newline in the source here rather than something like:
402     #
403     #   IFS=$(printf '\n')
404     #
405     # because the shell's command substitution deletes any trailing newlines.
406     IFS="
407 "
408     for path in $ldconfig_paths; do
409         if [ "$path" = "$libdir_expanded" ]; then
410             libdir_in_ldconfig=1
411         fi
412     done
413     IFS=$DEFAULT_IFS
414     if [ "$libdir_in_ldconfig" = '0' ]; then
415         printf "No (will set RPATH)\n"
416     else
417         printf "Yes\n"
418     fi
419 else
420     printf "Unknown.\n"
421     cat <<EOF
422
423 *** Warning: Unknown platform. Notmuch might or might not build correctly.
424
425 EOF
426 fi
427
428 if [ $errors -gt 0 ]; then
429     cat <<EOF
430
431 *** Error: The dependencies of notmuch could not be satisfied. You will
432 need to install the following packages before being able to compile
433 notmuch:
434
435 EOF
436     if [ $have_xapian -eq 0 ]; then
437         echo "  Xapian library (including development files such as headers)"
438         echo "  http://xapian.org/"
439     fi
440     if [ $have_gmime -eq 0 ]; then
441         echo "  Either GMime 2.4 library" $GMIME_24_VERSION_CTR "or GMime 2.6 library" $GMIME_26_VERSION_CTR
442         echo "  (including development files such as headers)"
443         echo "  http://spruce.sourceforge.net/gmime/"
444         echo
445     fi
446     if [ $have_glib -eq 0 ]; then
447         echo "  Glib library >= 2.22 (including development files such as headers)"
448         echo "  http://ftp.gnome.org/pub/gnome/sources/glib/"
449         echo
450     fi
451     if [ $have_talloc -eq 0 ]; then
452         echo "  The talloc library (including development files such as headers)"
453         echo "  http://talloc.samba.org/"
454         echo
455     fi
456     cat <<EOF
457 With any luck, you're using a modern, package-based operating system
458 that has all of these packages available in the distribution. In that
459 case a simple command will install everything you need. For example:
460
461 On Debian and similar systems:
462
463         sudo apt-get install libxapian-dev libgmime-2.6-dev libtalloc-dev
464
465 Or on Fedora and similar systems:
466
467         sudo yum install xapian-core-devel gmime-devel libtalloc-devel
468
469 On other systems, similar commands can be used, but the details of the
470 package names may be different.
471
472 EOF
473     if [ $have_pkg_config -eq 0 ]; then
474 cat <<EOF
475 Note: the pkg-config program is not available. This configure script
476 uses pkg-config to find the compilation flags required to link against
477 the various libraries needed by notmuch. It's possible you simply need
478 to install pkg-config with a command such as:
479
480         sudo apt-get install pkg-config
481 Or:
482         sudo yum install pkgconfig
483
484 But if pkg-config is not available for your system, then you will need
485 to modify the configure script to manually set the cflags and ldflags
486 variables to the correct values to link against each library in each
487 case that pkg-config could not be used to determine those values.
488
489 EOF
490     fi
491 cat <<EOF
492 When you have installed the necessary dependencies, you can run
493 configure again to ensure the packages can be found, or simply run
494 "make" to compile notmuch.
495
496 EOF
497     exit 1
498 fi
499
500 printf "Checking for getline... "
501 if ${CC} -o compat/have_getline "$srcdir"/compat/have_getline.c > /dev/null 2>&1
502 then
503     printf "Yes.\n"
504     have_getline=1
505 else
506     printf "No (will use our own instead).\n"
507     have_getline=0
508 fi
509 rm -f compat/have_getline
510
511 printf "Checking for strcasestr... "
512 if ${CC} -o compat/have_strcasestr "$srcdir"/compat/have_strcasestr.c > /dev/null 2>&1
513 then
514     printf "Yes.\n"
515     have_strcasestr=1
516 else
517     printf "No (will use our own instead).\n"
518     have_strcasestr=0
519 fi
520 rm -f compat/have_strcasestr
521
522 printf "Checking for standard version of getpwuid_r... "
523 if ${CC} -o compat/check_getpwuid "$srcdir"/compat/check_getpwuid.c > /dev/null 2>&1
524 then
525     printf "Yes.\n"
526     std_getpwuid=1
527 else
528     printf "No (will define _POSIX_PTHREAD_SEMANTICS to get it).\n"
529     std_getpwuid=0
530 fi
531 rm -f compat/check_getpwuid
532
533 printf "Checking for standard version of asctime_r... "
534 if ${CC} -o compat/check_asctime "$srcdir"/compat/check_asctime.c > /dev/null 2>&1
535 then
536     printf "Yes.\n"
537     std_asctime=1
538 else
539     printf "No (will define _POSIX_PTHREAD_SEMANTICS to get it).\n"
540     std_asctime=0
541 fi
542 rm -f compat/check_asctime
543
544 printf "int main(void){return 0;}\n" > minimal.c
545
546 printf "Checking for rpath support... "
547 if ${CC} -Wl,--enable-new-dtags -Wl,-rpath,/tmp/ -o minimal minimal.c >/dev/null 2>&1
548 then
549     printf "Yes.\n"
550     rpath_ldflags="-Wl,--enable-new-dtags -Wl,-rpath,\$(libdir)"
551 else
552     printf "No (nothing to worry about).\n"
553     rpath_ldflags=""
554 fi
555
556 printf "Checking for -Wl,--as-needed... "
557 if ${CC} -Wl,--as-needed -o minimal minimal.c >/dev/null 2>&1
558 then
559     printf "Yes.\n"
560     as_needed_ldflags="-Wl,--as-needed"
561 else
562     printf "No (nothing to worry about).\n"
563     as_needed_ldflags=""
564 fi
565
566 WARN_CXXFLAGS=""
567 printf "Checking for available C++ compiler warning flags... "
568 for flag in -Wall -Wextra -Wwrite-strings; do
569     if ${CC} $flag -o minimal minimal.c > /dev/null 2>&1
570     then
571         WARN_CXXFLAGS="${WARN_CXXFLAGS}${WARN_CXXFLAGS:+ }${flag}"
572     fi
573 done
574 printf "\n\t${WARN_CXXFLAGS}\n"
575
576 WARN_CFLAGS="${WARN_CXXFLAGS}"
577 printf "Checking for available C compiler warning flags... "
578 for flag in -Wmissing-declarations; do
579     if ${CC} $flag -o minimal minimal.c > /dev/null 2>&1
580     then
581         WARN_CFLAGS="${WARN_CFLAGS}${WARN_CFLAGS:+ }${flag}"
582     fi
583 done
584 printf "\n\t${WARN_CFLAGS}\n"
585
586 rm -f minimal minimal.c
587
588 cat <<EOF
589
590 All required packages were found. You may now run the following
591 commands to compile and install notmuch:
592
593         make
594         sudo make install
595
596 EOF
597
598 # construct the Makefile.config
599 cat > Makefile.config <<EOF
600 # This Makefile.config was automatically generated by the ./configure
601 # script of notmuch. If the configure script identified anything
602 # incorrectly, then you can edit this file to try to correct things,
603 # but be warned that if configure is run again it will destroy your
604 # changes, (and this could happen by simply calling "make" if the
605 # configure script is updated).
606
607 # The top-level directory for the source, (the directory containing
608 # the configure script). This may be different than the build
609 # directory (the current directory at the time configure was run).
610 srcdir = ${srcdir}
611
612 configure_options = $@
613
614 # We use vpath directives (rather than the VPATH variable) since the
615 # VPATH variable matches targets as well as prerequisites, (which is
616 # not useful since then a target left-over from a srcdir build would
617 # cause a target to not be built in the non-srcdir build).
618 #
619 # Also, we don't use a single "vpath % \$(srcdir)" here because we
620 # don't want the vpath to trigger for our emacs lisp compilation,
621 # (unless we first find a way to convince emacs to build the .elc
622 # target in a directory other than the directory of the .el
623 # prerequisite). In the meantime, we're actually copying in the .el
624 # files, (which is quite ugly).
625 vpath %.c \$(srcdir)
626 vpath %.cc \$(srcdir)
627 vpath %.1 \$(srcdir)
628 vpath Makefile.% \$(srcdir)
629
630 # The C compiler to use
631 CC = ${CC}
632
633 # The C++ compiler to use
634 CXX = ${CXX}
635
636 # Command to execute emacs from Makefiles
637 EMACS = emacs --quick
638
639 # Default FLAGS for C compiler (can be overridden by user such as "make CFLAGS=-g")
640 CFLAGS = ${CFLAGS}
641
642 # Default FLAGS for C preprocessor (can be overridden by user such as "make CPPFLAGS=-I/usr/local/include")
643 CPPFLAGS = ${CPPFLAGS}
644
645 # Default FLAGS for C++ compiler (can be overridden by user such as "make CXXFLAGS=-g")
646 CXXFLAGS = ${CXXFLAGS}
647
648 # Default FLAGS for the linker (can be overridden by user such as "make LDFLAGS=-znow")
649 LDFLAGS = ${LDFLAGS}
650
651 # Flags to enable warnings when using the C++ compiler
652 WARN_CXXFLAGS=${WARN_CXXFLAGS}
653
654 # Flags to enable warnings when using the C compiler
655 WARN_CFLAGS=${WARN_CFLAGS}
656
657 # The prefix to which notmuch should be installed
658 # Note: If you change this value here, be sure to ensure that the
659 # LIBDIR_IN_LDCONFIG value below is still set correctly.
660 prefix = ${PREFIX}
661
662 # The directory to which libraries should be installed
663 # Note: If you change this value here, be sure to ensure that the
664 # LIBDIR_IN_LDCONFIG value below is still set correctly.
665 libdir = ${LIBDIR:=\$(prefix)/lib}
666
667 # Whether libdir is in a path configured into ldconfig
668 LIBDIR_IN_LDCONFIG = ${libdir_in_ldconfig}
669
670 # The directory to which header files should be installed
671 includedir = ${INCLUDEDIR:=\$(prefix)/include}
672
673 # The directory to which man pages should be installed
674 mandir = ${MANDIR:=\$(prefix)/share/man}
675
676 # The directory to which read-only (configuration) files should be installed
677 sysconfdir = ${SYSCONFDIR:=\$(prefix)/etc}
678
679 # The directory to which emacs lisp files should be installed
680 emacslispdir=${EMACSLISPDIR}
681
682 # The directory to which emacs miscellaneous (machine-independent) files should
683 # be installed
684 emacsetcdir=${EMACSETCDIR}
685
686 # Whether there's an emacs binary available for byte-compiling
687 HAVE_EMACS = ${have_emacs}
688
689 # The directory to which desktop files should be installed
690 desktop_dir = \$(prefix)/share/applications
691
692 # The directory to which bash completions files should be installed
693 bash_completion_dir = ${BASHCOMPLETIONDIR:=\$(sysconfdir)/bash_completion.d}
694
695 # The directory to which zsh completions files should be installed
696 zsh_completion_dir = ${ZSHCOMLETIONDIR:=\$(prefix)/share/zsh/functions/Completion/Unix}
697
698 # Whether the getline function is available (if not, then notmuch will
699 # build its own version)
700 HAVE_GETLINE = ${have_getline}
701
702 # Whether the strcasestr function is available (if not, then notmuch will
703 # build its own version)
704 HAVE_STRCASESTR = ${have_strcasestr}
705
706 # Whether the getpwuid_r function is standards-compliant
707 # (if not, then notmuch will #define _POSIX_PTHREAD_SEMANTICS
708 # to enable the standards-compliant version -- needed for Solaris)
709 STD_GETPWUID = ${std_getpwuid}
710
711 # Whether the asctime_r function is standards-compliant
712 # (if not, then notmuch will #define _POSIX_PTHREAD_SEMANTICS
713 # to enable the standards-compliant version -- needed for Solaris)
714 STD_ASCTIME = ${std_asctime}
715
716 # Supported platforms (so far) are: LINUX, MACOSX, SOLARIS, FREEBSD, OPENBSD
717 PLATFORM = ${platform}
718
719 # Whether the linker will automatically resolve the dependency of one
720 # library on another (if not, then linking a binary requires linking
721 # directly against both)
722 LINKER_RESOLVES_LIBRARY_DEPENDENCIES = ${linker_resolves_library_dependencies}
723
724 # Flags needed to compile and link against Xapian
725 XAPIAN_CXXFLAGS = ${xapian_cxxflags}
726 XAPIAN_LDFLAGS = ${xapian_ldflags}
727
728 # Flags needed to compile and link against GMime-2.4
729 GMIME_CFLAGS = ${gmime_cflags}
730 GMIME_LDFLAGS = ${gmime_ldflags}
731
732 # Flags needed to compile and link against talloc
733 TALLOC_CFLAGS = ${talloc_cflags}
734 TALLOC_LDFLAGS = ${talloc_ldflags}
735
736 # Flags needed to have linker set rpath attribute
737 RPATH_LDFLAGS = ${rpath_ldflags}
738
739 # Flags needed to have linker link only to necessary libraries
740 AS_NEEDED_LDFLAGS = ${as_needed_ldflags}
741
742 # Whether valgrind header files are available
743 HAVE_VALGRIND = ${have_valgrind}
744
745 # And if so, flags needed at compile time for valgrind macros
746 VALGRIND_CFLAGS = ${valgrind_cflags}
747
748 # Support for emacs
749 WITH_EMACS = ${WITH_EMACS}
750
751 # Support for bash completion
752 WITH_BASH = ${WITH_BASH}
753
754 # Support for zsh completion
755 WITH_ZSH = ${WITH_ZSH}
756
757 # Combined flags for compiling and linking against all of the above
758 CONFIGURE_CFLAGS = -DHAVE_GETLINE=\$(HAVE_GETLINE) \$(GMIME_CFLAGS)      \\
759                    \$(TALLOC_CFLAGS) -DHAVE_VALGRIND=\$(HAVE_VALGRIND)   \\
760                    \$(VALGRIND_CFLAGS)                                   \\
761                    -DHAVE_STRCASESTR=\$(HAVE_STRCASESTR)                 \\
762                    -DSTD_GETPWUID=\$(STD_GETPWUID)                       \\
763                    -DSTD_ASCTIME=\$(STD_ASCTIME)
764 CONFIGURE_CXXFLAGS = -DHAVE_GETLINE=\$(HAVE_GETLINE) \$(GMIME_CFLAGS)    \\
765                      \$(TALLOC_CFLAGS) -DHAVE_VALGRIND=\$(HAVE_VALGRIND) \\
766                      \$(VALGRIND_CFLAGS) \$(XAPIAN_CXXFLAGS)             \\
767                      -DHAVE_STRCASESTR=\$(HAVE_STRCASESTR)               \\
768                      -DSTD_GETPWUID=\$(STD_GETPWUID)                     \\
769                      -DSTD_ASCTIME=\$(STD_ASCTIME)
770 CONFIGURE_LDFLAGS =  \$(GMIME_LDFLAGS) \$(TALLOC_LDFLAGS) \$(XAPIAN_LDFLAGS)
771 EOF