- Timestamp:
- 2015-02-23T04:50:32Z (10 years ago)
- Branches:
- master
- Children:
- a67e781
- Parents:
- 570f183
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r570f183 ra85a8ab 37 37 purple=0 38 38 39 doc=1 39 40 debug=0 40 41 strip=1 … … 59 60 # Cygwin and Darwin don't support PIC/PIE 60 61 case "$arch" in 61 62 63 64 62 CYGWIN* ) 63 pie=0;; 64 Darwin ) 65 pie=0;; 65 66 esac 66 67 … … 94 95 (automatically disables other protocol modules) 95 96 97 --doc=0/1 Disable/enable help.txt generation $doc 96 98 --debug=0/1 Disable/enable debugging $debug 97 99 --strip=0/1 Disable/enable binary stripping $strip … … 647 649 fi 648 650 649 if [ ! -e doc/user-guide/help.txt ] && ! type xmlto > /dev/null 2> /dev/null; then 650 echo 651 echo 'WARNING: Building from an unreleased source tree without prebuilt helpfile.' 652 echo 'Install xmlto if you want online help to work.' 651 if [ "$doc" = "1" ]; then 652 if [ ! -e doc/user-guide/help.txt ] && \ 653 ! type xmlto > /dev/null 2> /dev/null || \ 654 ! type xsltproc > /dev/null 2> /dev/null 655 then 656 echo 657 echo 'WARNING: Building from an unreleased source tree without prebuilt helpfile.' 658 echo 'Install xmlto and xsltproc if you want online help to work.' 659 else 660 echo "DOC=1" >> Makefile.settings 661 fi 662 663 if [ "$skype" = "1" -o "$skype" = "plugin" ]; then 664 # skype also needs asciidoc 665 if ! type a2x > /dev/null 2> /dev/null; then 666 echo 667 echo 'WARNING: The skyped man page requires asciidoc. It will not be generated.' 668 else 669 echo "ASCIIDOC=1" >> Makefile.settings 670 fi 671 fi 653 672 fi 654 673
Note: See TracChangeset
for help on using the changeset viewer.