Changeset - b628deb2d866
[Not reviewed]
8 3 0
Jan Kaluza - 9 years ago 2016-02-08 13:33:12
jkaluza@redhat.com
Remove old skype backend
11 files changed with 3 insertions and 1415 deletions:
0 comments (0 inline, 0 general)
CMakeLists.txt
Show inline comments
 
@@ -204,29 +204,24 @@ if(ENABLE_IRC)
 
	find_package(Communi)
 

	
 
	INCLUDE(FindQt4)
 
	FIND_PACKAGE(Qt4 COMPONENTS QtCore QtNetwork)
 
	# ADD_DEFINITIONS(${SWIFTEN_CFLAGS})
 
	ADD_DEFINITIONS(-DSUPPORT_LEGACY_CAPS)
 
	# ADD_DEFINITIONS(-DBOOST_FILESYSTEM_VERSION=2)
 
endif()
 

	
 
set(event_DIR "${CMAKE_SOURCE_DIR}/cmake_modules")
 
find_package(event)
 

	
 
if (NOT WIN32 AND ENABLE_SKYPE)
 
set(dbus_DIR "${CMAKE_SOURCE_DIR}/cmake_modules")
 
find_package(dbus)
 
endif()
 

	
 

	
 
####### Miscallanous ######
 

	
 
if(ENABLE_DOCS)
 
	find_package(Doxygen)
 
endif()
 

	
 
# if(ENABLE_LOG)
 
	if(LOG4CXX_INCLUDE_DIR AND LOG4CXX_LIBRARY)
 
		set(LOG4CXX_LIBRARIES ${LOG4CXX_LIBRARY})
 
		set(LOG4CXX_FOUND 1)
 
		message(STATUS "Using log4cxx: ${CPPUNIT_INCLUDE_DIR} ${LOG4CXX_INCLUDE_DIR}")
 
@@ -364,34 +359,24 @@ if (PROTOBUF_FOUND)
 
	endif()
 
	if (NOT WIN32)
 
		if(ENABLE_FROTZ)
 
			message("Frotz plugin      : yes")
 
		else()
 
			message("Frotz plugin      : no (user disabled)")
 
		endif()
 
		if(ENABLE_SMSTOOLS3)
 
			message("SMSTools3 plugin  : yes")
 
		else()
 
			message("SMSTools3 plugin  : no (user disabled)")
 
		endif()
 
		if(${LIBDBUSGLIB_FOUND})
 
			message("Skype plugin      : yes")
 
			include_directories(${LIBDBUSGLIB_INCLUDE_DIRS})
 
		else()
 
			if(ENABLE_SKYPE)
 
				message("Skype plugin      : no (install dbus-glib-devel)")
 
			else(ENABLE_SKYPE)
 
				message("Skype plugin      : no (user disabled)")
 
			endif()
 
		endif()
 
	else()
 
		message("Frotz plugin      : no (does not run on Win32)")
 
		message("SMSTools3 plugin  : no (does not run on Win32)")
 
		message("Skype plugin      : no (does not run on Win32)")
 
	endif()
 

	
 
	if(ENABLE_SWIFTEN)
 
		message("Swiften plugin    : yes")
 
	else()
 
		message("Swiften plugin    : no (user disabled)")
 
	endif()
 
else()
ChangeLog
Show inline comments
 
@@ -29,24 +29,27 @@ Version 2.0.2 (2016-02-xx):
 
	* Fix joining the rooms on networks when the nickname in the room cannot
 
	  be changed (Skype or Facebook). Libpurple backend changes your nickname
 
	  to the right one in that case.
 
	* Show the buddies aliases in the Facebook rooms instead of Facebook
 
	  buddies numbers.
 

	
 
	Twitter backend:
 
	* Fix compilation with newer gcc.
 

	
 
	Swiften backend:
 
	* Swiften backend works as before the frontends introduction.
 

	
 
	Skype backend:
 
	* The old skype backend has been removed. Use purple-skypeweb instead.
 

	
 
	Web interface:
 
	* Allow setting "port" and "base_location" in the config file.
 
	* Allow maintaining joined rooms in the Web interface for the Slack
 
	  frontend.
 
	* "[identity] name" config variables is now used as a name of the
 
	  transport.
 

	
 
Version 2.0.1 (2016-01-25):
 
	General:
 
	* Fix wrong nickname when joining room with some backends.
 
	* Leave room when disconnected from 3rd-party network because of an error.
 
	  Fixes a bug when users were not able to rejoin the room after Spectrum 2
backends/CMakeLists.txt
Show inline comments
 
@@ -13,17 +13,14 @@ if (PROTOBUF_FOUND)
 

	
 
	ADD_SUBDIRECTORY(template)
 
	if(ENABLE_TWITTER)
 
		ADD_SUBDIRECTORY(twitter)
 
	endif()
 
	if (NOT WIN32)
 
		if(ENABLE_SMSTOOLS3)
 
			ADD_SUBDIRECTORY(smstools3)
 
		endif()
 
		if(ENABLE_FROTZ)
 
			ADD_SUBDIRECTORY(frotz)
 
		endif()
 
		if (${LIBDBUSGLIB_FOUND})
 
			ADD_SUBDIRECTORY(skype)
 
		endif()
 
	endif()
 
endif()
backends/skype/CMakeLists.txt
Show inline comments
 
deleted file
backends/skype/main.cpp
Show inline comments
 
deleted file
backends/skype/skype.cpp
Show inline comments
 
deleted file
backends/skype/skype.h
Show inline comments
 
deleted file
backends/skype/skypedb.cpp
Show inline comments
 
deleted file
backends/skype/skypedb.h
Show inline comments
 
deleted file
backends/skype/skypeplugin.cpp
Show inline comments
 
deleted file
backends/skype/skypeplugin.h
Show inline comments
 
deleted file
0 comments (0 inline, 0 general)