summaryrefslogtreecommitdiff
path: root/mail/notmuch/files
diff options
context:
space:
mode:
authorPawel Pekala <pawel@FreeBSD.org>2016-11-14 11:23:36 +0000
committerPawel Pekala <pawel@FreeBSD.org>2016-11-14 11:23:36 +0000
commita6f7bd08e1a4da1e789569ef4bc2af2dd3bd963b (patch)
tree4e8303c47d70c81a600cf7df4ac2681356615c7f /mail/notmuch/files
parentAttempt to fix build on aarch64 using fix from armv6. (diff)
- Update to version 0.23.1 [1]
- Allow build on FreeBSD 9 - Move options block to correct place PR: 213240 [1] Submitted by: maintainer [1]
Diffstat (limited to 'mail/notmuch/files')
-rw-r--r--mail/notmuch/files/patch-configure44
1 files changed, 0 insertions, 44 deletions
diff --git a/mail/notmuch/files/patch-configure b/mail/notmuch/files/patch-configure
deleted file mode 100644
index 5b382b9bbffb..000000000000
--- a/mail/notmuch/files/patch-configure
+++ /dev/null
@@ -1,44 +0,0 @@
---- configure.orig 2016-07-19 09:43:20 UTC
-+++ configure
-@@ -66,6 +66,7 @@ PYTHON=${PYTHON:-}
- PREFIX=/usr/local
- LIBDIR=
- WITH_DOCS=1
-+WITH_API_DOCS=1
- WITH_EMACS=1
- WITH_BASH=1
- WITH_RUBY=1
-@@ -134,7 +135,8 @@ Some features can be disabled (--with-fe
- --without-feature) :
-
- --without-bash-completion Do not install bash completions files
-- --without-docs Do not install documentation and man pages
-+ --without-docs Do not install man pages
-+ --without-api-docs Do not install API documentation
- --without-emacs Do not install lisp file
- --without-ruby Do not install ruby bindings
- --without-zsh-completion Do not install zsh completions files
-@@ -185,6 +187,14 @@ for option; do
- fi
- elif [ "${option}" = '--without-docs' ] ; then
- WITH_DOCS=0
-+ elif [ "${option%%=*}" = '--with-api-docs' ]; then
-+ if [ "${option#*=}" = 'no' ]; then
-+ WITH_API_DOCS=0
-+ else
-+ WITH_API_DOCS=1
-+ fi
-+ elif [ "${option}" = '--without-api-docs' ] ; then
-+ WITH_API_DOCS=0
- elif [ "${option%%=*}" = '--with-emacs' ]; then
- if [ "${option#*=}" = 'no' ]; then
- WITH_EMACS=0
-@@ -507,7 +517,7 @@ else
- fi
-
- have_doxygen=0
--if [ $WITH_DOCS = "1" ] ; then
-+if [ $WITH_API_DOCS = "1" ] ; then
- printf "Checking if doxygen is available... "
- if command -v doxygen > /dev/null; then
- printf "Yes.\n"