Package Details: telegram-purple 1.4.7-1

Git Clone URL: https://aur.archlinux.org/telegram-purple.git (read-only, click to copy)
Package Base: telegram-purple
Description: Adds support for Telegram to Pidgin, Adium, Finch and other Libpurple based messengers.
Upstream URL: https://github.com/majn/telegram-purple
Licenses: GPL
Conflicts: telegram-purple-git
Submitter: wzyboy
Maintainer: wzyboy
Last Packager: wzyboy
Votes: 135
Popularity: 0.010738
First Submitted: 2015-03-21 13:17 (UTC)
Last Updated: 2021-05-15 20:16 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

itoffshore commented on 2018-08-26 19:57 (UTC)

The correct way to set CFLAGS in configure is:

./configure --prefix=/usr CFLAGS="$CFLAGS -w"

which on 64bit gives CFLAGS of:

CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w"

stefnix commented on 2018-07-23 18:28 (UTC)

This package will not build without changing the following line ./configure --prefix=/usr

to

./configure --prefix=/usr CFLAGS="-w"

alien2003 commented on 2018-07-12 07:56 (UTC)

cc1: all warnings being treated as errors make[1]: [Makefile:60: objs/queries.o] Error 1 make[1]: Waiting for unfinished jobs.... make[1]: Leaving directory '/tmp/makepkg/telegram-purple/src/telegram-purple/tgl' make: *** [Makefile:87: tgl/libs/libtgl.a] Error 2

to7m commented on 2018-06-10 22:35 (UTC)

As best I can tell, something in the build process is using -Werror, which is bad. Sticking -Wno-error in the pkgbuild isn't enough to override this, but -w is. So I replace

./configure --prefix=/usr

with

./configure --prefix=/usr CFLAGS="-w"

. No idea if that's dangerous, but it works!

to7m commented on 2018-06-07 22:26 (UTC)

When running makepkg, is anyone else getting an error starting with the following?:

queries.c: In function ‘_tgl_do_send_photo’: queries.c:2132:10: error: cast between incompatible function types from ‘void ()(struct tgl_state , void , int, struct tgl_message )’ to ‘void ()(struct tgl_state , void , int)’ [-Werror=cast-function-type] ((void ()(struct tgl_state , void , int))callback) (TLS, callback_extra, 0);

wzyboy commented on 2017-05-03 05:27 (UTC)

@jevv Thanks. I've bumped pkgrel.

je-vv commented on 2017-05-03 02:09 (UTC)

There's no need to move to development version, neither git version. Just re-building works fine. Perhaps the upgrade of libwebp (0.5.2-1 -> 0.6.0-1) affected telegram-purple: % ldd /usr/lib/purple-2/telegram-purple.so | grep libwebp libwebp.so.7 => /usr/lib/libwebp.so.7 (0x00007fc2fc991000) Perhaps a new AUR release (*-2) might automate a rebuild for those unaware... BTW, if using the other versions, the same should have happened, :-)

Ghul commented on 2017-05-02 09:58 (UTC)

@vasya I switched to dev package, it builds 1.4.0 and protocol works fine now thnx

vasya commented on 2017-05-02 08:34 (UTC)

@Ghul, I had this problem, too. Re-compiling the latest development version helped though. (The non-development version might work as well, I'm just saying how it was for me.)