changelog
- Sun, 02 Oct 2016 15:41:50 -0500
- by Mike Ruprecht <cmaiku@gmail.com> [Sun, 02 Oct 2016 15:41:50 -0500] rev 38073
- msn: Remove protocol plugin from tree
The MSN prpl has been unusable and dormant for some time. MSNP18 has
been discontinued and this prpl would require a large update to start
working again. See: http://ismsndeadyet.com/
Pidgin SkypeWeb however, should provide enough functionality as a
replacement if people still want to use MSN:
https://github.com/EionRobb/skype4pidgin/tree/master/skypeweb
- Sun, 02 Oct 2016 15:41:04 -0500
- by Mike Ruprecht <cmaiku@gmail.com> [Sun, 02 Oct 2016 15:41:04 -0500] rev 38072
- Remove usage of MSN prpl code from the Raw Pidgin plugin
- Fri, 30 Sep 2016 15:07:30 -0500
- by Mike Ruprecht <cmaiku@gmail.com> [Fri, 30 Sep 2016 15:07:30 -0500] rev 38071
- mxit: Remove protocol plugin from tree
The MXit service is closing:
https://pidgin.im/pipermail/devel/2016-September/024078.html
This patch removes it from the tree.
- Fri, 30 Sep 2016 09:50:21 -0500
- by Gary Kramlich <grim@reaperworld.com> [Fri, 30 Sep 2016 09:50:21 -0500] rev 38070
- Merged in CMaiku/pidgin (pull request #129)
facebook: Port from sslconn to Gio
- Thu, 15 Sep 2016 13:31:06 -0500
- by Mike Ruprecht <cmaiku@gmail.com> [Thu, 15 Sep 2016 13:31:06 -0500] rev 38069
- facebook: Port from sslconn to Gio
This patch ports usage of libpurple's sslconn.[ch] to native Gio.
There is potential to improve this by allowing for MqttMessages to
use external bytes without copying (provided they're consumed soon
enough) and to "steal" the bytes from a MqttMessage for sending.
Unfortunately GByteArray doesn't have all the memory management API
GBytes has.
- Thu, 29 Sep 2016 10:42:41 -0500
- by Mike Ruprecht <cmaiku@gmail.com> [Thu, 29 Sep 2016 10:42:41 -0500] rev 38068
- configure.ac: Update libgadu GPL warning now that it's not internal
- Wed, 28 Sep 2016 16:07:11 -0500
- by Mike Ruprecht <cmaiku@gmail.com> [Wed, 28 Sep 2016 16:07:11 -0500] rev 38067
- gg: Remove internal libgadu in favor of always using an external one
- Wed, 28 Sep 2016 09:32:19 -0500
- by Gary Kramlich <grim@reaperworld.com> [Wed, 28 Sep 2016 09:32:19 -0500] rev 38066
- Merged in CMaiku/pidgin (pull request #136)
Windows build fixes
- Sun, 25 Sep 2016 13:10:06 -0500
- by Mike Ruprecht <cmaiku@gmail.com> [Sun, 25 Sep 2016 13:10:06 -0500] rev 38065
- configure.ac: Fix test for gg_is_gpl_complaint in non-standard location
If libgadu isn't in a standard library include directory (aka Windows),
AC_CHECK_LIB() will fail, unable to find it. This patch adds the
pkg-config $LIBGADU_LIBS variable to AC_CHECK_LIB()'s other-libraries
argument in order to allow it to find the library, wherever it is.
- Thu, 22 Sep 2016 14:00:27 -0500
- by Mike Ruprecht <cmaiku@gmail.com> [Thu, 22 Sep 2016 14:00:27 -0500] rev 38064
- libpidgin: Fix Win32 build due to lacking signalpair() and some enums
Win32 lacks the signalpair() function and some enums like SIGQUIT.
This patch removes signal handling capability from Win32 until an
appropriate alternative to signalpair() can be implemented. Which
may very well be making a signalpair() compat function.