X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=configure;h=a2af672d8d2552ee1050225fd137493de19ab30e;hp=fa8e142bb786e0450992abe823c6a9ee26bffb9e;hb=3ab18d1c22c4b18b9ca8d73094b3bf10b95f35fb;hpb=e50461eb84a10f07278f944aea33ce6aa1a244d8 diff --git a/configure b/configure index fa8e142b..a2af672d 100755 --- a/configure +++ b/configure @@ -6,6 +6,7 @@ CC=${CC:-gcc} CXX=${CXX:-g++} CFLAGS=${CFLAGS:--O2} CXXFLAGS=${CXXFLAGS:-\$(CFLAGS)} +XAPIAN_CONFIG=${XAPIAN_CONFIG:-xapian-config-1.1 xapian-config} # Set the defaults for values the user can specify with command-line # options. @@ -37,6 +38,13 @@ First, some common variables can specified via environment variables: Each of these values can further be controlled by specifying them later on the "make" command line. +Other environment variables can be used to control configure itself, +(and for which there is no equivalent build-time control): + + XAPIAN_CONFIG The program to use to determine flags for + compiling and linking against the Xapian + library. [$XAPIAN_CONFIG] + Additionally, various options can be specified on the configure command line. @@ -97,14 +105,18 @@ else fi printf "Checking for Xapian development files... " -if xapian-config --version > /dev/null 2>&1; then - printf "Yes.\n" - have_xapian=1 - xapian_cxxflags=$(xapian-config --cxxflags) - xapian_ldflags=$(xapian-config --libs) -else +have_xapian=0 +for xapian_config in ${XAPIAN_CONFIG}; do + if ${xapian_config} --version > /dev/null 2>&1; then + printf "Yes.\n" + have_xapian=1 + xapian_cxxflags=$(${xapian_config} --cxxflags) + xapian_ldflags=$(${xapian_config} --libs) + break + fi +done +if [ ${have_xapian} = "0" ]; then printf "No.\n" - have_xapian=0 errors=$((errors + 1)) fi @@ -262,6 +274,9 @@ prefix = ${PREFIX} # The directory to which emacs lisp files should be installed emacs_lispdir=${emacs_lispdir} +# The directory to which desktop files should be installed +desktop_dir = \${prefix}/share/applications + # Whether the getline function is available (if not, then notmuch will # build its own version) HAVE_GETLINE = ${have_getline}