Removed
Link Here
|
1 |
--- configure.orig 2016-07-19 09:43:20 UTC |
2 |
+++ configure |
3 |
@@ -66,6 +66,7 @@ PYTHON=${PYTHON:-} |
4 |
PREFIX=/usr/local |
5 |
LIBDIR= |
6 |
WITH_DOCS=1 |
7 |
+WITH_API_DOCS=1 |
8 |
WITH_EMACS=1 |
9 |
WITH_BASH=1 |
10 |
WITH_RUBY=1 |
11 |
@@ -134,7 +135,8 @@ Some features can be disabled (--with-fe |
12 |
--without-feature) : |
13 |
|
14 |
--without-bash-completion Do not install bash completions files |
15 |
- --without-docs Do not install documentation and man pages |
16 |
+ --without-docs Do not install man pages |
17 |
+ --without-api-docs Do not install API documentation |
18 |
--without-emacs Do not install lisp file |
19 |
--without-ruby Do not install ruby bindings |
20 |
--without-zsh-completion Do not install zsh completions files |
21 |
@@ -185,6 +187,14 @@ for option; do |
22 |
fi |
23 |
elif [ "${option}" = '--without-docs' ] ; then |
24 |
WITH_DOCS=0 |
25 |
+ elif [ "${option%%=*}" = '--with-api-docs' ]; then |
26 |
+ if [ "${option#*=}" = 'no' ]; then |
27 |
+ WITH_API_DOCS=0 |
28 |
+ else |
29 |
+ WITH_API_DOCS=1 |
30 |
+ fi |
31 |
+ elif [ "${option}" = '--without-api-docs' ] ; then |
32 |
+ WITH_API_DOCS=0 |
33 |
elif [ "${option%%=*}" = '--with-emacs' ]; then |
34 |
if [ "${option#*=}" = 'no' ]; then |
35 |
WITH_EMACS=0 |
36 |
@@ -507,7 +517,7 @@ else |
37 |
fi |
38 |
|
39 |
have_doxygen=0 |
40 |
-if [ $WITH_DOCS = "1" ] ; then |
41 |
+if [ $WITH_API_DOCS = "1" ] ; then |
42 |
printf "Checking if doxygen is available... " |
43 |
if command -v doxygen > /dev/null; then |
44 |
printf "Yes.\n" |