Changeset cc7a153


Ignore:
Timestamp:
2010-04-05T21:25:07Z (14 years ago)
Author:
Miklos Vajna <vmiklos@…>
Branches:
master
Children:
12198ac
Parents:
f0493b1
Message:

make building documentation optional

Location:
skype
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • skype/Makefile

    rf0493b1 rcc7a153  
    1313endif
    1414
     15ifeq ($(ASCIIDOC),yes)
     16MANPAGES = skyped.1
     17else
     18MANPAGES =
     19endif
     20
    1521ifeq ($(BITLBEE),yes)
    16 all: skype.$(SHARED_EXT) skyped.1
     22LIBS = skype.$(SHARED_EXT)
    1723else
    18 all: skyped.1
     24LIBS =
    1925endif
     26
     27all: $(LIBS) $(MANPAGES)
    2028
    2129skype.$(SHARED_EXT): skype.c config.mak
  • skype/config.mak.in

    rf0493b1 rcc7a153  
    55SKYPE4PY = @SKYPE4PY@
    66BITLBEE = @BITLBEE@
     7ASCIIDOC = @ASCIIDOC@
    78INSTALL = @INSTALL@
    89prefix = @prefix@
  • skype/configure.ac

    rf0493b1 rcc7a153  
    5555AC_SUBST(BITLBEE)
    5656
     57dnl Check for a2x
     58AC_ARG_ENABLE([asciidoc], AS_HELP_STRING([--disable-asciidoc], [Disable asciidoc support (default: test)]))
     59if test "$enable_asciidoc" != "no"; then
     60        AC_CHECK_PROG(ASCIIDOC, asciidoc, yes, [])
     61fi
     62
    5763dnl Check for Skype4Py
    5864AC_MSG_CHECKING(for Python module Skype4Py)
Note: See TracChangeset for help on using the changeset viewer.