Changeset a949b43


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.

Files:
56 deleted
2 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 $<
  • configure

    r8167346 ra949b43  
    4747plugins=1
    4848otr=0
    49 skype=0
    5049
    5150events=glib
     
    148147--otr=0/1/auto/plugin
    149148                Disable/enable OTR encryption support   $otr
    150 --skype=0/1/plugin
    151                 Disable/enable Skype support            $skype
    152149
    153150--events=...    Event handler (glib, libevent)          $events
     
    751748        echo "CFLAGS+=$($PKG_CONFIG --cflags libotr) $(libgcrypt-config --cflags)" >> Makefile.settings
    752749        echo 'OTR_PI=otr.so' >> Makefile.settings
    753 fi
    754 
    755 if [ "$skype" = "1" -o "$skype" = "plugin" ]; then
    756         if [ "$arch" = "Darwin" ]; then
    757                 echo "SKYPEFLAGS=-dynamiclib -undefined dynamic_lookup" >> Makefile.settings
    758         else
    759                 echo "SKYPEFLAGS=-fPIC -shared" >> Makefile.settings
    760         fi
    761         echo 'SKYPE_PI=skype.so' >> Makefile.settings
    762         protocols_mods="$protocol_mods skype(plugin)"
    763750fi
    764751
Note: See TracChangeset for help on using the changeset viewer.