Changeset a949b43 for Makefile


Ignore:
Timestamp:
2018-03-11T19:33:55Z (6 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
686ac51
Parents:
8167346
Message:

Remove old skype plugin. Use the skypeweb purple plugin instead.

RIP

This plugin relied on the skype linux client, which doesn't work
anymore. During login it just does exit(0) for mysterious reasons.
I guess that's the server trying to say that it's not supported.

This is officially dead now after a few years of kinda-almost-working.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r8167346 ra949b43  
    1919subdirobjs = $(foreach dir,$(subdirs),$(dir)/$(dir).o)
    2020
    21 all: $(OUTFILE) $(OTR_PI) $(SKYPE_PI) doc systemd
     21all: $(OUTFILE) $(OTR_PI) doc systemd
    2222
    2323doc:
     
    5353        rm -f *.o $(OUTFILE) core utils/bitlbeed init/bitlbee*.service
    5454        $(MAKE) -C tests clean
    55 ifdef SKYPE_PI
    56         $(MAKE) -C protocols/skype clean
    57 endif
    5855
    5956distclean: clean $(subdirs)
     
    7976        $(MAKE) -C doc install
    8077endif
    81 ifdef SKYPE_PI
    82         $(MAKE) -C protocols/skype install-doc
    83 endif
    8478
    8579uninstall-doc:
    8680ifdef DOC
    8781        $(MAKE) -C doc uninstall
    88 endif
    89 ifdef SKYPE_PI
    90         $(MAKE) -C protocols/skype uninstall-doc
    9182endif
    9283
     
    128119        -rmdir $(DESTDIR)$(ETCDIR)
    129120
    130 install-plugins: install-plugin-otr install-plugin-skype
     121install-plugins: install-plugin-otr
    131122
    132123install-plugin-otr:
     
    134125        mkdir -p $(DESTDIR)$(PLUGINDIR)
    135126        $(INSTALL) -m 0755 otr.so $(DESTDIR)$(PLUGINDIR)
    136 endif
    137 
    138 install-plugin-skype:
    139 ifdef SKYPE_PI
    140         mkdir -p $(DESTDIR)$(PLUGINDIR)
    141         $(INSTALL) -m 0755 skype.so $(DESTDIR)$(PLUGINDIR)
    142         mkdir -p $(DESTDIR)$(ETCDIR)/../skyped $(DESTDIR)$(BINDIR)
    143         $(INSTALL) -m 0644 $(_SRCDIR_)protocols/skype/skyped.cnf $(DESTDIR)$(ETCDIR)/../skyped/skyped.cnf
    144         $(INSTALL) -m 0644 $(_SRCDIR_)protocols/skype/skyped.conf.dist $(DESTDIR)$(ETCDIR)/../skyped/skyped.conf
    145         $(INSTALL) -m 0755 $(_SRCDIR_)protocols/skype/skyped.py $(DESTDIR)$(BINDIR)/skyped
    146         $(MAKE) -C protocols/skype install-doc
    147127endif
    148128
     
    177157        $(VERBOSE) $(CC) $(CFLAGS) -fPIC -shared $(LDFLAGS) $< -o $@ $(OTRFLAGS)
    178158
    179 $(SKYPE_PI): $(_SRCDIR_)protocols/skype/skype.c
    180         @echo '*' Building plugin skype
    181         $(VERBOSE) $(CC) $(CFLAGS) $(LDFLAGS) $(SKYPEFLAGS) $< -o $@
    182 
    183159$(objects): %.o: $(_SRCDIR_)%.c
    184160        @echo '*' Compiling $<
Note: See TracChangeset for help on using the changeset viewer.