Re: Problem building pidgin (talkatu)

2022-04-23 Thread Gary Kramlich
What branch are you on? Bitbucket removed mercurial support multiple years
ago.. Or more specifically, where did you clone pidgin from? The canonical
repository is at https://keep.imfreedom.org/pidgin/pidgin/ and the default
branch is up to date and pointing to the proper talkatu repository at
https://keep.imfreedom.org/talkatu/talkatu.

On Sun, Apr 3, 2022 at 1:46 PM Konstantin Kharlamov 
wrote:

> Regarding the error: it is trying to fetch talkatu repo, but the repo was
> deleted, which is why you're getting a 404. This really should be reported
> to
> the developers. It is trivial to fix: just replace (I presume in
> meson.build,
> but am not sure, you might want to grep for the string over the sources)
> the
>
> https://bitbucket.com/pidgin/talkatu
>
> with
>
> https://keep.imfreedom.org/talkatu/talkatu/
>
> that's the new URL of the repo.
>
> With that said: I am not sure you're really doing the correct thing. You
> see,
> you're trying to build a 3.0 version of Pidgin, that's the development
> version,
> which AFAIK has major changes to plugin API. Latest stable Pidgin release
> is
> 2.14.8.
>
> Is there any particular reason you're trying to build Pidgin from sources?
> It is
> usually in repositories of all distros, so there should be no reason in
> doing
> that other than wanting to do the Pidgin development (not even a plugin
> development, that one doesn't require building Pidgin from sources).
>
> On Sun, 2022-04-03 at 14:19 -0400, Ralph Hyre (edu edition) wrote:
> > I've not seen 400 errors before, but it seems that the attempt to build
> > talkatu - as part of a pidgin source build, is causing one.
> >
> > ralphw7@asimov:~/src/pidgin/Pidgin-master$ meson build
> > The Meson build system
> > Version: 0.53.2
> > Source dir: /home/ralphw7/src/pidgin/Pidgin-master
> > Build dir: /home/ralphw7/src/pidgin/Pidgin-master/build
> > Build type: native build
> > Project name: pidgin
> > Project version: 3.0.0-devel
> > C compiler for the host machine: cc (gcc 9.4.0 "cc (Ubuntu
> > 9.4.0-1ubuntu1~20.04.1) 9.4.0")
> > C linker for the host machine: cc ld.bfd 2.34
> > Host machine cpu family: x86_64
> > Host machine cpu: x86_64
> > Program sed found: YES (/usr/bin/sed)
> > Program mkmesonconf.py found: YES
> > (/home/ralphw7/src/pidgin/Pidgin-master/mkmesonconf.py)
> > Has header "sys/wait.h" : YES
> > Has header "fcntl.h" : YES
> > Has header "unistd.h" : YES
> > Has header "stdint.h" : YES
> > Checking for size of "time_t" : 8
> > Checking for function "inet_aton" : YES
> > Checking for function "gethostent" : YES
> > Checking for function "socket" : YES
> > Checking for function "getaddrinfo" : YES
> > Checking for function "inet_ntop" : YES
> > Checking for function "getifaddrs" : YES
> > Header  has symbol "socklen_t" : YES
> > Checking whether type "struct sockaddr" has member "sa_len" : NO
> > Header  has symbol "IPV6_V6ONLY" : YES
> > Library m found: YES
> > Found pkg-config: /usr/bin/pkg-config (0.29.1)
> > Run-time dependency glib-2.0 found: YES 2.64.6
> > Run-time dependency gio-2.0 found: YES 2.64.6
> > Run-time dependency gobject-2.0 found: YES 2.64.6
> > Run-time dependency gthread-2.0 found: YES 2.64.6
> > Found CMake: /usr/bin/cmake (3.16.3)
> > Run-time dependency gobject-introspection-1.0 found: NO (tried pkgconfig
> > and cmake)
> > Run-time dependency gtk+-3.0 found: YES 3.24.20
> > Run-time dependency talkatu found: NO (tried pkgconfig and cmake)
> > abort: HTTP Error 404: Not Found
> > Traceback (most recent call last):
> >   File "/usr/lib/python3/dist-packages/mesonbuild/mesonmain.py", line
> 129,
> > in run
> > return options.run_func(options)
> >   File "/usr/lib/python3/dist-packages/mesonbuild/msetup.py", line 245,
> in
> > run
> > app.generate()
> >   ... more python stack trace
> >   File "/usr/lib/python3.8/subprocess.py", line 364, in check_call
> > raise CalledProcessError(retcode, cmd)
> > subprocess.CalledProcessError: Command '['/usr/bin/hg', 'clone', '
> > https://bitbucket.com/pidgin/talkatu', 'talkatu']' returned non-zero
> exit
> > status 255.
> >
> > What's the run-time dependency trying to be resolved here?
> >
> > All I had to do so far, was install gtk3 and the meson build environment.
> >
> > I'm on ubuntu 20.04:lsb_release -a
> > No LSB modules are available.
> > Distributor ID: Ubuntu
> > Description: Ubuntu 20.04.4 LTS
> > Release: 20.04
> > Codename: focal
> > ___
> > Support@pidgin.im mailing list
> > Want to unsubscribe?  Use this link:
> > https://lists.pidgin.im/listinfo/support
>
> ___
> Support@pidgin.im mailing list
> Want to unsubscribe?  Use this link:
> https://lists.pidgin.im/listinfo/support



-- 
Thanks,

--
Gary Kramlich 
___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://lists.pidgin.im/listinfo/support

Re: Problem building pidgin (talkatu)

2022-04-03 Thread Konstantin Kharlamov
Regarding the error: it is trying to fetch talkatu repo, but the repo was
deleted, which is why you're getting a 404. This really should be reported to
the developers. It is trivial to fix: just replace (I presume in meson.build,
but am not sure, you might want to grep for the string over the sources) the 

https://bitbucket.com/pidgin/talkatu

with

https://keep.imfreedom.org/talkatu/talkatu/

that's the new URL of the repo.

With that said: I am not sure you're really doing the correct thing. You see,
you're trying to build a 3.0 version of Pidgin, that's the development version,
which AFAIK has major changes to plugin API. Latest stable Pidgin release is
2.14.8.

Is there any particular reason you're trying to build Pidgin from sources? It is
usually in repositories of all distros, so there should be no reason in doing
that other than wanting to do the Pidgin development (not even a plugin
development, that one doesn't require building Pidgin from sources).

On Sun, 2022-04-03 at 14:19 -0400, Ralph Hyre (edu edition) wrote:
> I've not seen 400 errors before, but it seems that the attempt to build
> talkatu - as part of a pidgin source build, is causing one.
> 
> ralphw7@asimov:~/src/pidgin/Pidgin-master$ meson build
> The Meson build system
> Version: 0.53.2
> Source dir: /home/ralphw7/src/pidgin/Pidgin-master
> Build dir: /home/ralphw7/src/pidgin/Pidgin-master/build
> Build type: native build
> Project name: pidgin
> Project version: 3.0.0-devel
> C compiler for the host machine: cc (gcc 9.4.0 "cc (Ubuntu
> 9.4.0-1ubuntu1~20.04.1) 9.4.0")
> C linker for the host machine: cc ld.bfd 2.34
> Host machine cpu family: x86_64
> Host machine cpu: x86_64
> Program sed found: YES (/usr/bin/sed)
> Program mkmesonconf.py found: YES
> (/home/ralphw7/src/pidgin/Pidgin-master/mkmesonconf.py)
> Has header "sys/wait.h" : YES
> Has header "fcntl.h" : YES
> Has header "unistd.h" : YES
> Has header "stdint.h" : YES
> Checking for size of "time_t" : 8
> Checking for function "inet_aton" : YES
> Checking for function "gethostent" : YES
> Checking for function "socket" : YES
> Checking for function "getaddrinfo" : YES
> Checking for function "inet_ntop" : YES
> Checking for function "getifaddrs" : YES
> Header  has symbol "socklen_t" : YES
> Checking whether type "struct sockaddr" has member "sa_len" : NO
> Header  has symbol "IPV6_V6ONLY" : YES
> Library m found: YES
> Found pkg-config: /usr/bin/pkg-config (0.29.1)
> Run-time dependency glib-2.0 found: YES 2.64.6
> Run-time dependency gio-2.0 found: YES 2.64.6
> Run-time dependency gobject-2.0 found: YES 2.64.6
> Run-time dependency gthread-2.0 found: YES 2.64.6
> Found CMake: /usr/bin/cmake (3.16.3)
> Run-time dependency gobject-introspection-1.0 found: NO (tried pkgconfig
> and cmake)
> Run-time dependency gtk+-3.0 found: YES 3.24.20
> Run-time dependency talkatu found: NO (tried pkgconfig and cmake)
> abort: HTTP Error 404: Not Found
> Traceback (most recent call last):
>   File "/usr/lib/python3/dist-packages/mesonbuild/mesonmain.py", line 129,
> in run
>     return options.run_func(options)
>   File "/usr/lib/python3/dist-packages/mesonbuild/msetup.py", line 245, in
> run
>     app.generate()
>   ... more python stack trace
>   File "/usr/lib/python3.8/subprocess.py", line 364, in check_call
>     raise CalledProcessError(retcode, cmd)
> subprocess.CalledProcessError: Command '['/usr/bin/hg', 'clone', '
> https://bitbucket.com/pidgin/talkatu', 'talkatu']' returned non-zero exit
> status 255.
> 
> What's the run-time dependency trying to be resolved here?
> 
> All I had to do so far, was install gtk3 and the meson build environment.
> 
> I'm on ubuntu 20.04:lsb_release -a
> No LSB modules are available.
> Distributor ID: Ubuntu
> Description: Ubuntu 20.04.4 LTS
> Release: 20.04
> Codename: focal
> ___
> Support@pidgin.im mailing list
> Want to unsubscribe?  Use this link:
> https://lists.pidgin.im/listinfo/support

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://lists.pidgin.im/listinfo/support

Problem building pidgin (talkatu)

2022-04-03 Thread Ralph Hyre (edu edition)
I've not seen 400 errors before, but it seems that the attempt to build
talkatu - as part of a pidgin source build, is causing one.

ralphw7@asimov:~/src/pidgin/Pidgin-master$ meson build
The Meson build system
Version: 0.53.2
Source dir: /home/ralphw7/src/pidgin/Pidgin-master
Build dir: /home/ralphw7/src/pidgin/Pidgin-master/build
Build type: native build
Project name: pidgin
Project version: 3.0.0-devel
C compiler for the host machine: cc (gcc 9.4.0 "cc (Ubuntu
9.4.0-1ubuntu1~20.04.1) 9.4.0")
C linker for the host machine: cc ld.bfd 2.34
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program sed found: YES (/usr/bin/sed)
Program mkmesonconf.py found: YES
(/home/ralphw7/src/pidgin/Pidgin-master/mkmesonconf.py)
Has header "sys/wait.h" : YES
Has header "fcntl.h" : YES
Has header "unistd.h" : YES
Has header "stdint.h" : YES
Checking for size of "time_t" : 8
Checking for function "inet_aton" : YES
Checking for function "gethostent" : YES
Checking for function "socket" : YES
Checking for function "getaddrinfo" : YES
Checking for function "inet_ntop" : YES
Checking for function "getifaddrs" : YES
Header  has symbol "socklen_t" : YES
Checking whether type "struct sockaddr" has member "sa_len" : NO
Header  has symbol "IPV6_V6ONLY" : YES
Library m found: YES
Found pkg-config: /usr/bin/pkg-config (0.29.1)
Run-time dependency glib-2.0 found: YES 2.64.6
Run-time dependency gio-2.0 found: YES 2.64.6
Run-time dependency gobject-2.0 found: YES 2.64.6
Run-time dependency gthread-2.0 found: YES 2.64.6
Found CMake: /usr/bin/cmake (3.16.3)
Run-time dependency gobject-introspection-1.0 found: NO (tried pkgconfig
and cmake)
Run-time dependency gtk+-3.0 found: YES 3.24.20
Run-time dependency talkatu found: NO (tried pkgconfig and cmake)
abort: HTTP Error 404: Not Found
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/mesonbuild/mesonmain.py", line 129,
in run
return options.run_func(options)
  File "/usr/lib/python3/dist-packages/mesonbuild/msetup.py", line 245, in
run
app.generate()
  ... more python stack trace
  File "/usr/lib/python3.8/subprocess.py", line 364, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['/usr/bin/hg', 'clone', '
https://bitbucket.com/pidgin/talkatu', 'talkatu']' returned non-zero exit
status 255.

What's the run-time dependency trying to be resolved here?

All I had to do so far, was install gtk3 and the meson build environment.

I'm on ubuntu 20.04:lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 20.04.4 LTS
Release: 20.04
Codename: focal
___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://lists.pidgin.im/listinfo/support

Re: Problem building Pidgin.

2021-05-06 Thread Gary Kramlich


On 5/5/21 11:16 AM, DAVID MAY wrote:
> I also tried building Pidgin 2.14.4 with MSYS2. Documentation, such as
> it is, assumes a Cygwin environment but suggests MSYS (not MSYS2) can be
> used with "tweaks" to the build scripts.

You need a win32-dev directory that contains all of our dependencies.
The easiest way to get that right now is from
https://data.imfreedom.org/pidgin/win32-dev.7z

> Anyway running configure results in the following error:
> 
> ...
> checking for inet_aton... no
> checking for inet_aton in -lresolv... no
> configure: error: inet_aton not found

Pidgin 2 on windows doesn't use autotools.  You build it using `make -f
Makefile.mingw` in the root of the source code.

> Looking at the Pidgin 2.14.4 source code there are multiple bare
> inet_aton() calls - with no #ifdefs nor macro magic to substitute a
> Win32 alternative.
> 
> Which suggests there is no way this thing is going to build with MSYS2.

There's a bunch of nonsense in pidgin2 that makes this work, serious you
don't want to dig into it and we replaced most if not all of it in
pidgin 3 already.

> The reason I tried building Pidgin 3.0 is that the documentation, such
> as it is, claims to build with MSYS2 - and indeed a talkatu standalone
> project does build cleanly out of the box even though the Pidgin project
> fails to build a talkatu sub-project.

Pidgin3 under msys2 currently requires msys2 packages and will not be
distribute-able outside of msys2.  We're working on a solution for that,
but limited resources makes that difficult.

Thanks,

--
Gary Kramlich 

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://lists.pidgin.im/listinfo/support

Re: Problem building Pidgin.

2021-05-05 Thread DAVID MAY
I also tried building Pidgin 2.14.4 with MSYS2. Documentation, such as
it is, assumes a Cygwin environment but suggests MSYS (not MSYS2) can be
used with "tweaks" to the build scripts.

Anyway running configure results in the following error:

...
checking for inet_aton... no
checking for inet_aton in -lresolv... no
configure: error: inet_aton not found

Looking at the Pidgin 2.14.4 source code there are multiple bare
inet_aton() calls - with no #ifdefs nor macro magic to substitute a
Win32 alternative.

Which suggests there is no way this thing is going to build with MSYS2.

The reason I tried building Pidgin 3.0 is that the documentation, such
as it is, claims to build with MSYS2 - and indeed a talkatu standalone
project does build cleanly out of the box even though the Pidgin project
fails to build a talkatu sub-project.


On 5/05/2021 9:53 pm, Konstantin Kharlamov wrote:
> Btw, it might help if you say what exactly are you trying to achieve. You see,
> if for example you just want to work on some Pidgin plugin, then I don't think
> you need to compile libpurple either. Simply installing Pidgin from 
> installation
> binaries for your system should give you libpurple.
> 
> On Wed, 2021-05-05 at 16:49 +0300, Konstantin Kharlamov wrote:
>> Disclaimer: just a random user here.
>>
>> So, before anything else: I suspect you don't want the latest upstream 
>> Pidgin.
>> You see, latest released version is 2.14.4, and if you want to develop a
>> libpurple plugin, you better use that one. The 3.0 version was never 
>> released,
>> and devs thinking about releasing it for a long time already. I also think it
>> might have introduced some incompatibilities (since it is a new major
>> version),
>> so, anyway, I don't think you currently want it.
>>
>> ---
>>
>> With that said, if you are really interested in latest upstream libpurple,
>> then…
>> Regarding the error: I looked at `meson.build` file, it tries to find the
>> talkatu subproject in the system (by using pkg-config, I suppose like `pkg-
>> config --cflags --libs talkatu` or something similar), fails at that, then
>> searches "talkatu" directory in `subprojects/` subdirectory, fails again. Idk
>> what results in the error regarding "Mercurial" though (does Meson try to
>> download a subproject? I never knew it does that), but I suppose if you clone
>> `talkatu` into `subprojects/` sub-directory, the error will go away.
>>
>> But you don't need all that since you only want libpurple. You can safely
>> disable `gtkui`. That is, execute something like `meson build -Dgtkui=false`
>> (if
>> you look at paragraph with talkatu dependency, you'll see it is only checked
>> when gtkui is enabled).
>>
>> On Wed, 2021-05-05 at 21:11 +0800, DAVID MAY wrote:
>>> Hello,
>>>
>>> Sorry if this is the wrong forum, but this is the first time I have
>>> worked with Pidgin.
>>>
>>> I am experiencing an error when I attempt to build Pidgin 3.0 on Windows
>>> with MSYS2.   Actually, I am only interested in working with libpurple
>>> but it does not seem to be possible to build libpurple as a standalone
>>> project.
>>>
>>> I cloned the Pidgin 3.0 Mercurial repository. However meson.build for
>>> Pidgin 3.0 fails with an error message which states that Mercurial is
>>> not installed.  This cannot be correct: I can clone the talkatu
>>> Mercurial repository using MSYS2 Mercurial; Meson builds talkatu as a
>>> standalone project; the build products talkatu pass all the tests and
>>> the demo program works.
>>>
>>>
>>> The full Pidgin 3.0 meson.build output I see is this:
>>>
>>> $ meson build
>>> The Meson build system
>>> Version: 0.58.0
>>> Source dir: C:/msys64/home/david/projects/pidgin
>>> Build dir: C:/msys64/home/david/projects/pidgin/build
>>> Build type: native build
>>> Project name: pidgin
>>> Project version: 3.0.0-devel
>>> C compiler for the host machine: cc (gcc 10.2.0 "cc (Rev11, Built by
>>> MSYS2 project) 10.2.0")
>>> C linker for the host machine: cc ld.bfd 2.36.1
>>> Host machine cpu family: x86_64
>>> Host machine cpu: x86_64
>>> Program gettext found: YES (C:\msys64\mingw64\bin/gettext.EXE)
>>> Program C:/msys64/mingw64/bin/meson found: YES
>>> (C:/msys64/mingw64/bin/meson.exe)
>>> Program mkmesonconf.py found: YES (C:/msys64/mingw64/bin/python.exe
>>> C:/msys64/home/david/projects/pidgin/mkmesonconf.py)
>>> Program xgettext found: YES (C:\msys64\mingw64\bin/xgettext.EXE)
>>> Library ws2_32 found: YES
>>> Library dnsapi found: YES
>>> Has header "sys/wait.h" : NO
>>> Has header "unistd.h" : YES
>>> Has header "fcntl.h" : YES
>>> Has header "stdint.h" : YES
>>> Checking for size of "time_t" : 8
>>> Header  has symbol "socklen_t" : YES
>>> Checking whether type "struct sockaddr" has member "sa_len" : NO
>>> Library m found: YES
>>> Found pkg-config: C:\msys64\mingw64\bin/pkg-config.EXE (0.29.2)
>>> Run-time dependency glib-2.0 found: YES 2.68.1
>>> Run-time dependency gio-2.0 found: YES 2.68.1
>>> Run-time dependency gobject-2.0 found: YES 2.68.1
>>> 

Re: Problem building Pidgin.

2021-05-05 Thread Konstantin Kharlamov
Btw, it might help if you say what exactly are you trying to achieve. You see,
if for example you just want to work on some Pidgin plugin, then I don't think
you need to compile libpurple either. Simply installing Pidgin from installation
binaries for your system should give you libpurple.

On Wed, 2021-05-05 at 16:49 +0300, Konstantin Kharlamov wrote:
> Disclaimer: just a random user here.
> 
> So, before anything else: I suspect you don't want the latest upstream Pidgin.
> You see, latest released version is 2.14.4, and if you want to develop a
> libpurple plugin, you better use that one. The 3.0 version was never released,
> and devs thinking about releasing it for a long time already. I also think it
> might have introduced some incompatibilities (since it is a new major
> version),
> so, anyway, I don't think you currently want it.
> 
> ---
> 
> With that said, if you are really interested in latest upstream libpurple,
> then…
> Regarding the error: I looked at `meson.build` file, it tries to find the
> talkatu subproject in the system (by using pkg-config, I suppose like `pkg-
> config --cflags --libs talkatu` or something similar), fails at that, then
> searches "talkatu" directory in `subprojects/` subdirectory, fails again. Idk
> what results in the error regarding "Mercurial" though (does Meson try to
> download a subproject? I never knew it does that), but I suppose if you clone
> `talkatu` into `subprojects/` sub-directory, the error will go away.
> 
> But you don't need all that since you only want libpurple. You can safely
> disable `gtkui`. That is, execute something like `meson build -Dgtkui=false`
> (if
> you look at paragraph with talkatu dependency, you'll see it is only checked
> when gtkui is enabled).
> 
> On Wed, 2021-05-05 at 21:11 +0800, DAVID MAY wrote:
> > Hello,
> > 
> > Sorry if this is the wrong forum, but this is the first time I have
> > worked with Pidgin.
> > 
> > I am experiencing an error when I attempt to build Pidgin 3.0 on Windows
> > with MSYS2.   Actually, I am only interested in working with libpurple
> > but it does not seem to be possible to build libpurple as a standalone
> > project.
> > 
> > I cloned the Pidgin 3.0 Mercurial repository. However meson.build for
> > Pidgin 3.0 fails with an error message which states that Mercurial is
> > not installed.  This cannot be correct: I can clone the talkatu
> > Mercurial repository using MSYS2 Mercurial; Meson builds talkatu as a
> > standalone project; the build products talkatu pass all the tests and
> > the demo program works.
> > 
> > 
> > The full Pidgin 3.0 meson.build output I see is this:
> > 
> > $ meson build
> > The Meson build system
> > Version: 0.58.0
> > Source dir: C:/msys64/home/david/projects/pidgin
> > Build dir: C:/msys64/home/david/projects/pidgin/build
> > Build type: native build
> > Project name: pidgin
> > Project version: 3.0.0-devel
> > C compiler for the host machine: cc (gcc 10.2.0 "cc (Rev11, Built by
> > MSYS2 project) 10.2.0")
> > C linker for the host machine: cc ld.bfd 2.36.1
> > Host machine cpu family: x86_64
> > Host machine cpu: x86_64
> > Program gettext found: YES (C:\msys64\mingw64\bin/gettext.EXE)
> > Program C:/msys64/mingw64/bin/meson found: YES
> > (C:/msys64/mingw64/bin/meson.exe)
> > Program mkmesonconf.py found: YES (C:/msys64/mingw64/bin/python.exe
> > C:/msys64/home/david/projects/pidgin/mkmesonconf.py)
> > Program xgettext found: YES (C:\msys64\mingw64\bin/xgettext.EXE)
> > Library ws2_32 found: YES
> > Library dnsapi found: YES
> > Has header "sys/wait.h" : NO
> > Has header "unistd.h" : YES
> > Has header "fcntl.h" : YES
> > Has header "stdint.h" : YES
> > Checking for size of "time_t" : 8
> > Header  has symbol "socklen_t" : YES
> > Checking whether type "struct sockaddr" has member "sa_len" : NO
> > Library m found: YES
> > Found pkg-config: C:\msys64\mingw64\bin/pkg-config.EXE (0.29.2)
> > Run-time dependency glib-2.0 found: YES 2.68.1
> > Run-time dependency gio-2.0 found: YES 2.68.1
> > Run-time dependency gobject-2.0 found: YES 2.68.1
> > Run-time dependency gthread-2.0 found: YES 2.68.1
> > Run-time dependency gobject-introspection-1.0 found: YES 1.66.1
> > Run-time dependency nice found: YES 0.1.18
> > Run-time dependency gtk+-3.0 found: YES 3.24.29
> > Found CMake: C:\msys64\mingw64\bin/cmake.EXE (3.20.2)
> > Run-time dependency talkatu found: NO (tried pkgconfig and cmake)
> > 
> > meson.build:273:2: ERROR: Mercurial program not found.
> > 
> > 
> > 
> 


___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://lists.pidgin.im/listinfo/support

Re: Problem building Pidgin.

2021-05-05 Thread Konstantin Kharlamov
Disclaimer: just a random user here.

So, before anything else: I suspect you don't want the latest upstream Pidgin.
You see, latest released version is 2.14.4, and if you want to develop a
libpurple plugin, you better use that one. The 3.0 version was never released,
and devs thinking about releasing it for a long time already. I also think it
might have introduced some incompatibilities (since it is a new major version),
so, anyway, I don't think you currently want it.

---

With that said, if you are really interested in latest upstream libpurple, then…
Regarding the error: I looked at `meson.build` file, it tries to find the
talkatu subproject in the system (by using pkg-config, I suppose like `pkg-
config --cflags --libs talkatu` or something similar), fails at that, then
searches "talkatu" directory in `subprojects/` subdirectory, fails again. Idk
what results in the error regarding "Mercurial" though (does Meson try to
download a subproject? I never knew it does that), but I suppose if you clone
`talkatu` into `subprojects/` sub-directory, the error will go away.

But you don't need all that since you only want libpurple. You can safely
disable `gtkui`. That is, execute something like `meson build -Dgtkui=false` (if
you look at paragraph with talkatu dependency, you'll see it is only checked
when gtkui is enabled).

On Wed, 2021-05-05 at 21:11 +0800, DAVID MAY wrote:
> Hello,
> 
> Sorry if this is the wrong forum, but this is the first time I have
> worked with Pidgin.
> 
> I am experiencing an error when I attempt to build Pidgin 3.0 on Windows
> with MSYS2.   Actually, I am only interested in working with libpurple
> but it does not seem to be possible to build libpurple as a standalone
> project.
> 
> I cloned the Pidgin 3.0 Mercurial repository. However meson.build for
> Pidgin 3.0 fails with an error message which states that Mercurial is
> not installed.  This cannot be correct: I can clone the talkatu
> Mercurial repository using MSYS2 Mercurial; Meson builds talkatu as a
> standalone project; the build products talkatu pass all the tests and
> the demo program works.
> 
> 
> The full Pidgin 3.0 meson.build output I see is this:
> 
> $ meson build
> The Meson build system
> Version: 0.58.0
> Source dir: C:/msys64/home/david/projects/pidgin
> Build dir: C:/msys64/home/david/projects/pidgin/build
> Build type: native build
> Project name: pidgin
> Project version: 3.0.0-devel
> C compiler for the host machine: cc (gcc 10.2.0 "cc (Rev11, Built by
> MSYS2 project) 10.2.0")
> C linker for the host machine: cc ld.bfd 2.36.1
> Host machine cpu family: x86_64
> Host machine cpu: x86_64
> Program gettext found: YES (C:\msys64\mingw64\bin/gettext.EXE)
> Program C:/msys64/mingw64/bin/meson found: YES
> (C:/msys64/mingw64/bin/meson.exe)
> Program mkmesonconf.py found: YES (C:/msys64/mingw64/bin/python.exe
> C:/msys64/home/david/projects/pidgin/mkmesonconf.py)
> Program xgettext found: YES (C:\msys64\mingw64\bin/xgettext.EXE)
> Library ws2_32 found: YES
> Library dnsapi found: YES
> Has header "sys/wait.h" : NO
> Has header "unistd.h" : YES
> Has header "fcntl.h" : YES
> Has header "stdint.h" : YES
> Checking for size of "time_t" : 8
> Header  has symbol "socklen_t" : YES
> Checking whether type "struct sockaddr" has member "sa_len" : NO
> Library m found: YES
> Found pkg-config: C:\msys64\mingw64\bin/pkg-config.EXE (0.29.2)
> Run-time dependency glib-2.0 found: YES 2.68.1
> Run-time dependency gio-2.0 found: YES 2.68.1
> Run-time dependency gobject-2.0 found: YES 2.68.1
> Run-time dependency gthread-2.0 found: YES 2.68.1
> Run-time dependency gobject-introspection-1.0 found: YES 1.66.1
> Run-time dependency nice found: YES 0.1.18
> Run-time dependency gtk+-3.0 found: YES 3.24.29
> Found CMake: C:\msys64\mingw64\bin/cmake.EXE (3.20.2)
> Run-time dependency talkatu found: NO (tried pkgconfig and cmake)
> 
> meson.build:273:2: ERROR: Mercurial program not found.
> 
> 
> 


___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://lists.pidgin.im/listinfo/support

Problem building Pidgin.

2021-05-05 Thread DAVID MAY
Hello,

Sorry if this is the wrong forum, but this is the first time I have
worked with Pidgin.

I am experiencing an error when I attempt to build Pidgin 3.0 on Windows
with MSYS2.   Actually, I am only interested in working with libpurple
but it does not seem to be possible to build libpurple as a standalone
project.

I cloned the Pidgin 3.0 Mercurial repository. However meson.build for
Pidgin 3.0 fails with an error message which states that Mercurial is
not installed.  This cannot be correct: I can clone the talkatu
Mercurial repository using MSYS2 Mercurial; Meson builds talkatu as a
standalone project; the build products talkatu pass all the tests and
the demo program works.


The full Pidgin 3.0 meson.build output I see is this:

$ meson build
The Meson build system
Version: 0.58.0
Source dir: C:/msys64/home/david/projects/pidgin
Build dir: C:/msys64/home/david/projects/pidgin/build
Build type: native build
Project name: pidgin
Project version: 3.0.0-devel
C compiler for the host machine: cc (gcc 10.2.0 "cc (Rev11, Built by
MSYS2 project) 10.2.0")
C linker for the host machine: cc ld.bfd 2.36.1
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program gettext found: YES (C:\msys64\mingw64\bin/gettext.EXE)
Program C:/msys64/mingw64/bin/meson found: YES
(C:/msys64/mingw64/bin/meson.exe)
Program mkmesonconf.py found: YES (C:/msys64/mingw64/bin/python.exe
C:/msys64/home/david/projects/pidgin/mkmesonconf.py)
Program xgettext found: YES (C:\msys64\mingw64\bin/xgettext.EXE)
Library ws2_32 found: YES
Library dnsapi found: YES
Has header "sys/wait.h" : NO
Has header "unistd.h" : YES
Has header "fcntl.h" : YES
Has header "stdint.h" : YES
Checking for size of "time_t" : 8
Header  has symbol "socklen_t" : YES
Checking whether type "struct sockaddr" has member "sa_len" : NO
Library m found: YES
Found pkg-config: C:\msys64\mingw64\bin/pkg-config.EXE (0.29.2)
Run-time dependency glib-2.0 found: YES 2.68.1
Run-time dependency gio-2.0 found: YES 2.68.1
Run-time dependency gobject-2.0 found: YES 2.68.1
Run-time dependency gthread-2.0 found: YES 2.68.1
Run-time dependency gobject-introspection-1.0 found: YES 1.66.1
Run-time dependency nice found: YES 0.1.18
Run-time dependency gtk+-3.0 found: YES 3.24.29
Found CMake: C:\msys64\mingw64\bin/cmake.EXE (3.20.2)
Run-time dependency talkatu found: NO (tried pkgconfig and cmake)

meson.build:273:2: ERROR: Mercurial program not found.



-- 
David May

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://lists.pidgin.im/listinfo/support

Problem with Pidgin

2016-02-02 Thread Shawn

Hello,

I have the most current version of pidgin and ever since I upgraded to 
it there is a delay when I press send on my messages.  It delays for 
about 3-5 seconds then it will send it.  Also when a message comes in 
the notification sound is also delayed.


Thank you

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://pidgin.im/cgi-bin/mailman/listinfo/support

Re: Problem with pidgin

2016-01-16 Thread Amanda King
Just noticed that my debug might not have posted on the site, so I'll
repost it here.

(01:39:38) util: Writing file prefs.xml to directory
C:\Users\Mandy\AppData\Roaming\.purple
(01:39:38) util: Writing file
C:\Users\Mandy\AppData\Roaming\.purple\prefs.xml
(01:39:42) proxy: Connecting to 64.12.109.25:443.
(01:39:42) proxy: Error connecting to 64.12.109.25:443 (Connection timed
out.).
(01:39:42) proxy: Connection attempt failed: Connection timed out.
(01:39:42) oscar: unable to connect to FLAP server of type 0x0018
(01:39:42) oscar: Scheduling destruction of FLAP connection 0447E290 of
type 0x0018
(01:39:42) oscar: Destroying FLAP connection 0447E290
(01:39:42) oscar: Destroying oscar connection (0447E290) of type 0x0018.
Disconnect reason is 6
(01:39:42) oscar: Disconnected.  Code is 0x and msg is SSL Connection
Failed
(01:39:42) proxy: Connecting to 152.163.9.66:443.
(01:39:42) proxy: Error connecting to 152.163.9.66:443 (Connection timed
out.).
(01:39:42) proxy: Connection attempt failed: Connection timed out.
(01:39:42) oscar: unable to connect to FLAP server of type 0x0018
(01:39:42) oscar: Scheduling destruction of FLAP connection 0447E560 of
type 0x0018
(01:39:42) oscar: Destroying FLAP connection 0447E560
(01:39:42) oscar: Destroying oscar connection (0447E560) of type 0x0018.
Disconnect reason is 6
(01:39:42) oscar: Disconnected.  Code is 0x and msg is SSL Connection
Failed
(01:40:15) oscar: rate limit cleared (param ID 0x0003): curavg = 4500,
maxavg = 4500, alert at 2500, clear warning at 3100, limit at 2000,
disconnect at 1500, delta is 54437, dropping is 0 (window size = 20)


On Thu, Jan 14, 2016 at 10:10 PM, Amanda King  wrote:

> I'm sorry if my message got cut off to you before, but I actually said in
> my original message that I was using aim through pidgin.
>
> I can log into aim through the pidgin service, but when I click on
> someone's username it says pidgin has stopped working and closes.
>
> I've provided the debug log in an attachment.
>
> Thanks for your time
>
> Amanda
>
>
> On Thu, Jan 14, 2016 at 6:41 PM, David Woolley  > wrote:
>
>> On 14/01/16 02:12, Amanda King wrote:
>>
>> can't message anyone.  I can log in to pidgin, but the second I click on
>>> someone's username to message them pidgin doesn't respond and stops
>>> working.
>>>
>>
>> It is not possible to log in to pidgin, only to use pidgin to log in to
>> some instant messages service.  What is that service?
>>
>> Also, you are going to need to provide the debug log.
>>
>> https://developer.pidgin.im/wiki/TipsForBugReports
>>
>>
>
___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://pidgin.im/cgi-bin/mailman/listinfo/support

Re: Problem with pidgin

2016-01-14 Thread Amanda King
I'm sorry if my message got cut off to you before, but I actually said in
my original message that I was using aim through pidgin.

I can log into aim through the pidgin service, but when I click on
someone's username it says pidgin has stopped working and closes.

I've provided the debug log in an attachment.

Thanks for your time

Amanda


On Thu, Jan 14, 2016 at 6:41 PM, David Woolley 
wrote:

> On 14/01/16 02:12, Amanda King wrote:
>
> can't message anyone.  I can log in to pidgin, but the second I click on
>> someone's username to message them pidgin doesn't respond and stops
>> working.
>>
>
> It is not possible to log in to pidgin, only to use pidgin to log in to
> some instant messages service.  What is that service?
>
> Also, you are going to need to provide the debug log.
>
> https://developer.pidgin.im/wiki/TipsForBugReports
>
>


purple-debug.log
Description: Binary data
___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://pidgin.im/cgi-bin/mailman/listinfo/support

Re: Problem with pidgin

2016-01-14 Thread David Woolley

On 14/01/16 02:12, Amanda King wrote:


can't message anyone.  I can log in to pidgin, but the second I click on
someone's username to message them pidgin doesn't respond and stops working.


It is not possible to log in to pidgin, only to use pidgin to log in to 
some instant messages service.  What is that service?


Also, you are going to need to provide the debug log.

https://developer.pidgin.im/wiki/TipsForBugReports

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://pidgin.im/cgi-bin/mailman/listinfo/support

Problem with pidgin

2016-01-13 Thread Amanda King
Hello. I'm having an issue with Pidgin, and I don't know if it's created by
Windows or not. Wndows installed a new update and now I suddenly can't
message anyone.  I can log in to pidgin, but the second I click on
someone's username to message them pidgin doesn't respond and stops working.

I've never had a problem with this before, and don't know what the problem
is.  I've tried unintalling and installing and do have the latest version.

I'm using aim through pidgin on Windows 10.

Amanda
___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://pidgin.im/cgi-bin/mailman/listinfo/support

problem with pidgin and open fire

2015-08-07 Thread Łożyński Mariusz
Hi,

I have problem with connecting pidgin to my own openfire server. Openfire 
3.10.2 is working on Ubuntu
Below I attached logs from pidgin - its look like Server does not use any 
supported authentication method
My openfire server has in /etc/hosts entry: 127.0.0.1  op.test.com
I've changed some real names in logs for e.g test.com



(11:30:24) account: Connecting to account a...@op.test.com/.
(11:30:24) connection: Connecting. gc = 06378F30
(11:30:24) dnsquery: Performing DNS lookup for a...@op.test.com
(11:30:24) dnsquery: IP resolved for a...@op.test.com
(11:30:24) proxy: Attempting connection to 192.168.4.21
(11:30:24) proxy: Connecting to a...@op.test.com:5222 with no proxy
(11:30:24) proxy: Connection in progress
(11:30:24) proxy: Connecting to a...@op.test.com:5222.
(11:30:24) proxy: Connected to a...@op.test.com:5222.
(11:30:24) jabber: Sending (a...@op.test.com): ?xml version='1.0' ?
(11:30:24) jabber: Sending (a...@op.test.com): stream:stream 
to='a...@op.test.com' xmlns='jabber:client' 
xmlns:stream='http://etherx.jabber.org/streams' version='1.0'
(11:30:24) jabber: Recv (186): ?xml version='1.0' 
encoding='UTF-8'?stream:stream 
xmlns:stream=http://etherx.jabber.org/streams; xmlns=jabber:client 
from=a...@op.test.com id=a3c861df xml:lang=en version=1.0
(11:30:24) jabber: Recv (335): stream:featuresstarttls 
xmlns=urn:ietf:params:xml:ns:xmpp-tls/starttlsmechanisms 
xmlns=urn:ietf:params:xml:ns:xmpp-saslmechanismEXTERNAL/mechanism/mechanismscompression
 
xmlns=http://jabber.org/features/compress;methodzlib/method/compressionauth
 xmlns=http://jabber.org/features/iq-auth//stream:features
(11:30:24) jabber: Sending (a...@op.test.com): starttls 
xmlns='urn:ietf:params:xml:ns:xmpp-tls'/
(11:30:24) jabber: Recv (50): proceed xmlns=urn:ietf:params:xml:ns:xmpp-tls/
(11:30:24) nss: SSL version 3.3 using 128-bit AES with 160-bit SHA1 MAC
Server Auth: 2048-bit RSA, Key Exchange: 256-bit ECDHE, Compression: NULL
Cipher Suite Name: TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
(11:30:24) nss: 
subject=CN=a...@op.test.com,OU=IT,O=Company,L=City,ST=Region,C=CU 
issuer=E=administra...@op.test.com,CN=CA Root 
Company,OU=IT,O=Company,L=City,ST=Region,C=CU
(11:30:24) nss: subject=E=administra...@test.com,CN=CA Root 
Company,OU=IT,O=Company,L=City,ST=Region,C=CU 
issuer=E=administra...@test.com,CN=CA Root 
Company,OU=IT,O=Company,L=City,ST=Region,C=CU
(11:30:24) certificate/x509/tls_cached: Starting verify for a...@op.test.com
(11:30:24) certificate/x509/tls_cached: Checking for cached cert...
(11:30:24) certificate/x509/tls_cached: ...Found cached cert
(11:30:24) nss/x509: Loading certificate from 
C:\Users\abc\AppData\Roaming\.purple\certificates\x509\tls_peers\a...@op.test.com
(11:30:24) certificate/x509/tls_cached: Peer cert matched cached
(11:30:24) nss/x509: Exporting certificate to 
C:\Users\abc\AppData\Roaming\.purple\certificates\x509\tls_peers\a...@op.test.com
(11:30:24) util: Writing file 
C:\Users\abc\AppData\Roaming\.purple\certificates\x509\tls_peers\a...@op.test.com
(11:30:24) nss: Trusting 
CN=a...@op.test.com,OU=IT,O=Company,L=City,ST=Region,C=CU
(11:30:24) certificate: Successfully verified certificate for a...@op.test.com
(11:30:24) jabber: Sending (ssl) (a...@op.test.com): stream:stream 
to='a...@op.test.com' xmlns='jabber:client' 
xmlns:stream='http://etherx.jabber.org/streams' version='1.0'
(11:30:24) jabber: Recv (ssl)(460): ?xml version='1.0' 
encoding='UTF-8'?stream:stream 
xmlns:stream=http://etherx.jabber.org/streams; xmlns=jabber:client 
from=a...@op.test.com id=a3c861df xml:lang=en 
version=1.0stream:featuresmechanisms 
xmlns=urn:ietf:params:xml:ns:xmpp-saslmechanismEXTERNAL/mechanism/mechanismscompression
 
xmlns=http://jabber.org/features/compress;methodzlib/method/compressionauth
 xmlns=http://jabber.org/features/iq-auth//stream:features
(11:30:24) sasl: Mechs found:
(11:30:24) connection: Connection error on 06378F30 (reason: 3 description: 
Server does not use any supported authentication method)
(11:30:24) account: Disconnecting account a...@op.test.com/ (008B3FB8)
(11:30:24) connection: Disconnecting connection 06378F30
(11:30:24) jabber: Sending (ssl) (a...@op.test.com): /stream:stream
(11:30:24) connection: Destroying connection 06378F30
(11:30:25) util: Writing file prefs.xml to directory 
C:\Users\abc\AppData\Roaming\.purple
(11:30:25) util: Writing file C:\Users\abc\AppData\Roaming\.purple\prefs.xml

Thank you veru much in advance

Regards,

Mariusz Lozynski

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://pidgin.im/cgi-bin/mailman/listinfo/support

Problem of Pidgin 2.10.11 Compilation on OpenSUSE 13.2 x86_64

2015-01-10 Thread Mikhail Kasimov
Hello!

Given: OpenSUSE 13.2 x86_64, XFCE 4.10. Pidgin version in repos is
out-dated (2.10.10-5.4.1), so I tried to install it manual from sources
downloaded from https://www.pidgin.im/download/source/.

So, wget  tar  cd ./pidgin  ./configure. But ./configure fails with
=
configure: error:

You must have GLib 2.16.0 or newer development headers installed to build.

If you have these installed already you may need to install pkg-config so
I can find them.

=

sudo zypper se -s pkg-config command shows that pkg-config 0.28-7.1.2
x86_64 is installed.

Pidgin's config.log shows:

1.
=
configure:12494: checking for pkg-config
configure:12512: found /usr/bin/pkg-config
configure:12524: result: /usr/bin/pkg-config
configure:12549: checking pkg-config is at least version 0.9.0
configure:12552: result: yes
=

2.
=
configure:15612: checking for GLIB
configure:15619: $PKG_CONFIG --exists --print-errors glib-2.0 = 2.16.0
gobject-2.0 gmodule-2.0 gthread-2.0
Package glib-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `glib-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'glib-2.0' found
Package gobject-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gobject-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gobject-2.0' found
Package gmodule-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gmodule-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gmodule-2.0' found
Package gthread-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gthread-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gthread-2.0' found
configure:15622: $? = 1
configure:15636: $PKG_CONFIG --exists --print-errors glib-2.0 = 2.16.0
gobject-2.0 gmodule-2.0 gthread-2.0
Package glib-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `glib-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'glib-2.0' found
Package gobject-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gobject-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gobject-2.0' found
Package gmodule-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gmodule-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gmodule-2.0' found
Package gthread-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gthread-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gthread-2.0' found
configure:15639: $? = 1
configure:15653: result: no
No package 'glib-2.0' found
No package 'gobject-2.0' found
No package 'gmodule-2.0' found
No package 'gthread-2.0' found
configure:15670: result: no
configure:15672: error:

You must have GLib 2.16.0 or newer development headers installed to build.

If you have these installed already you may need to install pkg-config so
I can find them.
=

Please, help me to struggle this little problem.

Thank you!
___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://pidgin.im/cgi-bin/mailman/listinfo/support

Re: problem compiling pidgin 2.10.10

2014-11-23 Thread Matthias Apitz
El día Saturday, November 22, 2014 a las 09:55:16AM -0500, Ethan Blanton 
escribió:

CCLD finch
  /usr/bin/ld: i: invalid DSO for symbol `cur_term' definition
  /usr/local/lib/libtinfow.so.5.9: could not read symbols: Bad value
  cc: error: linker command failed with exit code 1 (use -v to see invocation)
  gmake[3]: *** [finch] Error 1
 
 There's a lot of stuff on the web about this.  I don't understand why
 you're getting that specific error, but it appears to be a missing
 library on the link line.  This likely means that the Pidgin configure
 scripts aren't finding something that they probably don't know to look
 for; I'm not sure exactly how this is happening.

The linkage command is in both cases (the good and the broken) the same:

/bin/sh ../libtool --silent --silent --tag=CC --mode=link cc -g 
-I/usr/local/include -I/usr/include/ncursesw -export-dynamic -L/usr/local/lib 
-L/usr/local/lib/nss -o finch gntaccount.o gntblist.o gntcertmgr.o gntconn.o 
gntconv.o gntdebug.o gntft.o finch.o gntidle.o gntlog.o gntmedia.o gntnotify.o 
gntplugin.o gntpounce.o gntprefs.o gntrequest.o gntroomlist.o gntsound.o 
gntstatus.o gntui.o -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -L/usr/local/lib 
-lglib-2.0 -lintl   -lintl -lgobject-2.0 -Wl,--export-dynamic -lgmodule-2.0 
-lgthread-2.0 -pthread -L/usr/local/lib -lglib-2.0 -lintl   -L/usr/local/lib 
-lxml2 -lncursesw -lpanelw -lgstreamer-0.10 -lgobject-2.0 -lgmodule-2.0 
-lgthread-2.0 -pthread -lglib-2.0 -lintl -L/usr/local/lib -lxml2 
./libgnt/libgnt.la ../libpurple/libpurple.la -lm 

so the problem must either be in one of the *.o file or in one of the two local
libs ./libgnt/libgnt.la ../libpurple/libpurple.la; needs further
debugging

matthias
-- 
Matthias Apitz, g...@unixarea.de, http://www.unixarea.de/ +49-170-4527211
1989-2014: The Wall was torn down so that we go to war together again.
El Muro ha sido derribado para que nos unimos en ir a la guerra otra vez.
Diese Grenze wurde aufgehoben damit wir gemeinsam wieder in den Krieg ziehen.

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://pidgin.im/cgi-bin/mailman/listinfo/support

Re: problem compiling pidgin 2.10.10

2014-11-23 Thread Matthias Apitz
El día Saturday, November 22, 2014 a las 09:55:16AM -0500, Ethan Blanton 
escribió:

CCLD finch
  /usr/bin/ld: i: invalid DSO for symbol `cur_term' definition
  /usr/local/lib/libtinfow.so.5.9: could not read symbols: Bad value
  cc: error: linker command failed with exit code 1 (use -v to see invocation)
  gmake[3]: *** [finch] Error 1
 
 There's a lot of stuff on the web about this.  I don't understand why
 you're getting that specific error, but it appears to be a missing
 library on the link line.  This likely means that the Pidgin configure
 scripts aren't finding something that they probably don't know to look
 for; I'm not sure exactly how this is happening.

It works fine with a small change in the ./configure script:

$ diff configure.orig configure
17455c17455
   GNT_LIBS=-lncursesw
---
   GNT_LIBS=-lncursesw -ltinfow

Maybe it's an issue only with FreeBSD, or even with certain environments
of FreeBSD. It is fine without this change on 11-CURRENT, while the
above issue is with 10-ALPHA.

I think, we can close this thread. Thanks for your help.

matthias
-- 
Matthias Apitz, g...@unixarea.de, http://www.unixarea.de/ +49-170-4527211
1989-2014: The Wall was torn down so that we go to war together again.
El Muro ha sido derribado para que nos unimos en ir a la guerra otra vez.
Diese Grenze wurde aufgehoben damit wir gemeinsam wieder in den Krieg ziehen.

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://pidgin.im/cgi-bin/mailman/listinfo/support

Re: problem compiling pidgin 2.10.10

2014-11-23 Thread Ethan Blanton
Matthias Apitz spake unto us the following wisdom:
 It works fine with a small change in the ./configure script:
 
 $ diff configure.orig configure
 17455c17455
GNT_LIBS=-lncursesw
 ---
GNT_LIBS=-lncursesw -ltinfow
 
 Maybe it's an issue only with FreeBSD, or even with certain environments
 of FreeBSD. It is fine without this change on 11-CURRENT, while the
 above issue is with 10-ALPHA.
 
 I think, we can close this thread. Thanks for your help.

The above is something like what I expected from the googling I did.
If it is not a problem with current releases, I don't consider it too
critical; however, this is really something that our configure scripts
should have caught.  I'm glad you got it straightened out.

Ethan

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://pidgin.im/cgi-bin/mailman/listinfo/support


problem compiling pidgin 2.10.10

2014-11-22 Thread Matthias Apitz

Hello,

I have problems compiling pidgin 2.10.10 in one of my laptops, running
FreeBSD 10.x:

$ gmake
...
Making all in plugins
gmake[3]: Entering directory `/usr/local/guru/pidgin-2.10.10/finch/plugins'
gmake[3]: Nothing to be done for `all'.
gmake[3]: Leaving directory `/usr/local/guru/pidgin-2.10.10/finch/plugins'
gmake[3]: Entering directory `/usr/local/guru/pidgin-2.10.10/finch'
  CCLD finch
/usr/bin/ld: i: invalid DSO for symbol `cur_term' definition
/usr/local/lib/libtinfow.so.5.9: could not read symbols: Bad value
cc: error: linker command failed with exit code 1 (use -v to see invocation)
gmake[3]: *** [finch] Error 1
gmake[3]: Leaving directory `/usr/local/guru/pidgin-2.10.10/finch'
gmake[2]: *** [all-recursive] Error 1
gmake[2]: Leaving directory `/usr/local/guru/pidgin-2.10.10/finch'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory `/usr/local/guru/pidgin-2.10.10'
gmake: *** [all] Error 2

the shared lib /usr/local/lib/libtinfow.so.5.9 seems to be fine:

$ nm /usr/local/lib/libtinfow.so.5.9 | fgrep cur_term
00025b58 B cur_term

What could cause this problem? And can I somehow disable the use of
finch (I don't even know what this is, I only use MSN and Yahoo)?

Thanks

matthias
-- 
Matthias Apitz, g...@unixarea.de, http://www.unixarea.de/ +49-170-4527211
1989-2014: The Wall was torn down so that we go to war together again.
El Muro ha sido derribado para que nos unimos en ir a la guerra otra vez.
Diese Grenze wurde aufgehoben damit wir gemeinsam wieder in den Krieg ziehen.

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://pidgin.im/cgi-bin/mailman/listinfo/support


Re: problem compiling pidgin 2.10.10

2014-11-22 Thread Ethan Blanton
Matthias Apitz spake unto us the following wisdom:
 I have problems compiling pidgin 2.10.10 in one of my laptops, running
 FreeBSD 10.x:
 
 $ gmake
 ...
 Making all in plugins
 gmake[3]: Entering directory `/usr/local/guru/pidgin-2.10.10/finch/plugins'
 gmake[3]: Nothing to be done for `all'.
 gmake[3]: Leaving directory `/usr/local/guru/pidgin-2.10.10/finch/plugins'
 gmake[3]: Entering directory `/usr/local/guru/pidgin-2.10.10/finch'
   CCLD finch
 /usr/bin/ld: i: invalid DSO for symbol `cur_term' definition
 /usr/local/lib/libtinfow.so.5.9: could not read symbols: Bad value
 cc: error: linker command failed with exit code 1 (use -v to see invocation)
 gmake[3]: *** [finch] Error 1
 gmake[3]: Leaving directory `/usr/local/guru/pidgin-2.10.10/finch'
 gmake[2]: *** [all-recursive] Error 1
 gmake[2]: Leaving directory `/usr/local/guru/pidgin-2.10.10/finch'
 gmake[1]: *** [all-recursive] Error 1
 gmake[1]: Leaving directory `/usr/local/guru/pidgin-2.10.10'
 gmake: *** [all] Error 2
 
 the shared lib /usr/local/lib/libtinfow.so.5.9 seems to be fine:
 
 $ nm /usr/local/lib/libtinfow.so.5.9 | fgrep cur_term
 00025b58 B cur_term
 
 What could cause this problem? And can I somehow disable the use of
 finch (I don't even know what this is, I only use MSN and Yahoo)?

There's a lot of stuff on the web about this.  I don't understand why
you're getting that specific error, but it appears to be a missing
library on the link line.  This likely means that the Pidgin configure
scripts aren't finding something that they probably don't know to look
for; I'm not sure exactly how this is happening.

Finch is a terminal-based IM client.  If you don't want it, you can
configure with --disable-consoleui and it will not build.  This will
likely fix your problem.

Ethan

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://pidgin.im/cgi-bin/mailman/listinfo/support


Re: problem compiling pidgin 2.10.10

2014-11-22 Thread Matthias Apitz
El día Saturday, November 22, 2014 a las 09:55:16AM -0500, Ethan Blanton 
escribió:

  gmake[3]: Entering directory `/usr/local/guru/pidgin-2.10.10/finch'
CCLD finch
  /usr/bin/ld: i: invalid DSO for symbol `cur_term' definition
  /usr/local/lib/libtinfow.so.5.9: could not read symbols: Bad value
  cc: error: linker command failed with exit code 1 (use -v to see invocation)
 
 There's a lot of stuff on the web about this.  I don't understand why
 you're getting that specific error, but it appears to be a missing
 library on the link line.  This likely means that the Pidgin configure
 scripts aren't finding something that they probably don't know to look
 for; I'm not sure exactly how this is happening.

Thanks for your kind reply and the hint re/ --disable-consoleui. I have
machines where the same source builds find and I will compare the
linkage command to figure out what it is missing. Maybe we can bring
light into it this way.

Thx

matthias
-- 
Matthias Apitz, g...@unixarea.de, http://www.unixarea.de/ +49-170-4527211
1989-2014: The Wall was torn down so that we go to war together again.
El Muro ha sido derribado para que nos unimos en ir a la guerra otra vez.
Diese Grenze wurde aufgehoben damit wir gemeinsam wieder in den Krieg ziehen.

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://pidgin.im/cgi-bin/mailman/listinfo/support

Re: problem with pidgin

2014-07-06 Thread Mark Doliner
I'm able to login to that XMPP server with no certificate problems.
Pidgin happily accepts the certificate without asking me any
questions. I tested with Pidgin compiled to use both GnuTLS and
libnss. I'm using the CA certificates that are shipped with Pidgin.

My only guess is that your build of Pidgin is configured to use a
system-wide directory containing CA certificates and that the
directory does not contain the CA certificate needed to verify
jabbim.cz.

What error message does Pidgin show to you? What operating system are
you using? Are all of your packages up to date?

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://pidgin.im/cgi-bin/mailman/listinfo/support


problem with pidgin

2014-07-04 Thread Live

Hi,
My pidgin 2.10.9 not working with xmpp.
Cant login on server jabbim.cz Coming mistake that sertifikates is wrong.

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
https://pidgin.im/cgi-bin/mailman/listinfo/support


I have a problem with pidgin!

2013-10-19 Thread test1a test1a
Hello,
When i open pidgin it shows the messeges from chat rooms, as a notification.
but it doesnt show the hangouts of gmail. i have to open my gmail in
standard mode to see them.

is ther any way, i see the hangouts as notification wen i open pidgin?
i mean the messeges that have been sent to me, when i was offline.

thank u very much

best wishes
___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Facebook Problem in Pidgin

2013-09-07 Thread Alexander Hornung
Hey Guys,

sry for my bad english.



I have a big Problem i delete the wrong group from Pidgin, ive delete the Facebook group, and delete all buddys, i try to reinstallt Pidgin and do what ever, but this is lost.

How can i get the Buddys back into Pidgin? All Facebook Buddys are delete, i hope you can help me to fix that problem.



regards

soxy

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Re: Problem Installing Pidgin with google talk

2013-05-15 Thread Phil Hannent
Good morning,

The not authorized message is usually that your password is wrong or that
you have 2 factor authentication on your account.

What does the output of the debug window in the help menu tell you about
what is happening?

Regards
Phil Hannent



On 14 May 2013 19:46, Michel Spiero michel.spi...@gmail.com wrote:

 Dear Sirs,

 I am looking for days at the discussions in the forum but nothing solved
 the problem. I get that my user is not authorized. Also, when I send a
 message I get XMPP error (404). I have a Asus and I am working on Windows
 8. How do I solve it?

 best,

 Michel

 ___
 Support@pidgin.im mailing list
 Want to unsubscribe?  Use this link:
 http://pidgin.im/cgi-bin/mailman/listinfo/support

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Problem Installing Pidgin with google talk

2013-05-14 Thread Michel Spiero
Dear Sirs,

I am looking for days at the discussions in the forum but nothing solved
the problem. I get that my user is not authorized. Also, when I send a
message I get XMPP error (404). I have a Asus and I am working on Windows
8. How do I solve it?

best,

Michel
___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Problem in Pidgin

2013-04-04 Thread Asha Bhat

Hi

I am facing problem in Pidgin everyday. Everytime I need to uninstall 
and install pidgin instance.Kindly please look into this issue and let 
me know what is the fix for this.


Thanks,
Asha

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


Re: Problem in Pidgin

2013-04-04 Thread Mark Doliner
On Wed, Apr 3, 2013 at 11:23 PM, Asha Bhat asha.p.b...@oracle.com wrote:
 Everytime I need to uninstall and install pidgin instance.

Why?

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


Re: Problem in Pidgin

2013-04-04 Thread David Woolley

Asha Bhat wrote:


I am facing problem in Pidgin everyday. Everytime I need to uninstall 
and install pidgin instance.Kindly please look into this issue and let 
me know what is the fix for this.


I presume that you feel the need to do this because something is going 
wrong.  To have any chance of anyone finding a solution, you need to 
provide as much information as possible about what is going wrong.  That 
will include exactly what you were trying to do at the time, error 
messages, and will probably include the contents of the debug window.


You also need to say which version you are using, and the environment in 
which you are using it, in particular which service(s) you are trying to 
use, possibly the OS, and anything about the way you connect to the 
internet that may impose restrictions.



--
David Woolley
Emails are not formal business letters, whatever businesses may want.
RFC1855 says there should be an address here, but, in a world of spam,
that is no longer good advice, as archive address hiding may not work.

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


Re: Problem in Pidgin

2013-04-04 Thread Matthias Apitz
El día Thursday, April 04, 2013 a las 12:26:51AM -0700, Mark Doliner escribió:

 On Wed, Apr 3, 2013 at 11:23 PM, Asha Bhat asha.p.b...@oracle.com wrote:
  Everytime I need to uninstall and install pidgin instance.
 
 Why?

I think this is one of the typically attitudes of Windows users to solve
any kind of problem; another is reboot. Maybe, both are even official
recommendations of M$ and/or IT departments running Windows only.

matthias
-- 
Sent from my FreeBSD netbook

Matthias Apitz   |  - No system with backdoors like Apple/Android
E-mail: g...@unixarea.de |  - Never being an iSlave
WWW: http://www.unixarea.de/ |  - No proprietary attachments, no HTML/RTF in 
E-mail
phone: +49-170-4527211   |  - Respect for open standards

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


Re: Problem in Pidgin

2013-04-04 Thread David Woolley

Matthias Apitz wrote:

El día Thursday, April 04, 2013 a las 12:26:51AM -0700, Mark Doliner escribió:


On Wed, Apr 3, 2013 at 11:23 PM, Asha Bhat asha.p.b...@oracle.com wrote:

Everytime I need to uninstall and install pidgin instance.

Why?


I think this is one of the typically attitudes of Windows users to solve
any kind of problem; another is reboot. Maybe, both are even official
recommendations of M$ and/or IT departments running Windows only.


Even for Windows, these days, I don't think it is terribly effective. 
It might have helped when DLL Hell was more prevalent, and a 
subsequent install had downdated a DLL.



--
David Woolley
Emails are not formal business letters, whatever businesses may want.
RFC1855 says there should be an address here, but, in a world of spam,
that is no longer good advice, as archive address hiding may not work.

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


Re: Problem in Pidgin

2013-04-04 Thread Ethan Blanton
Asha Bhat spake unto us the following wisdom:
 I am facing problem in Pidgin everyday. Everytime I need to
 uninstall and install pidgin instance.Kindly please look into this
 issue and let me know what is the fix for this.

Contact Oracle IT.

Ethan

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


Re: Problem with Pidgin 2.10.7

2013-02-13 Thread Brian Morrison
On Wed, 13 Feb 2013 17:47:34 +0100
Łukasz Drwal wrote:

 I'm reporting a problem with Pidgin 2.10.7. After installation this
 program it could not run. It shows problem that it could not find a
 GTK+ program though I install this program with Pidgin automatically.
 

The downloaded gtk+ installer seems to be broken, if you download the
offline Pidgin installer (which contains gtk+ already) then it will
install and run normally.

-- 

Brian Morrison

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Re: Problem with Pidgin 2.10.7

2013-02-13 Thread Mark Doliner
On Wed, Feb 13, 2013 at 8:47 AM, Łukasz Drwal lukas...@gmail.com wrote:
 I'm reporting a problem with Pidgin 2.10.7. After installation this program
 it could not run. It shows problem that it could not find a GTK+ program
 though I install this program with Pidgin automatically.

Hi Łukasz.  I think a few other people are reporting the same problem,
but I'd like to verify that it is indeed the same problem.  Can you
please copy and paste (or retype it, if necessary) and send us the
error message you're seeing?

Thanks,
Mark

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Re: Problem with Pidgin 2.10.7

2013-02-13 Thread Mark Doliner
On Wed, Feb 13, 2013 at 9:13 AM, Łukasz Drwal lukas...@gmail.com wrote:
 Translation of the message number 1(Error 1.jpg):
 Can not run because the computer was not found libatk-1.0-0.dll. Try
 reinstalling the program to fix this problem.

 Translation of the message number 2 (Error 2.jpg):
 Error loading pidgin.dll
 Error: (126) Could not find the specified module.
 This proably means that GTK + can not be found.

Ok, great, thanks.  It sounds like this IS the same problem other
people are seeing.

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Re: Problem with Pidgin

2012-11-14 Thread Sridhar Reddy
Hey - Thanks for the quick response.

But, i mean to say, if i close AIM its signing out. normally if we do file
exit then it will sign out and if we close it, then it will close
for temporary and you can open it through quick lunch or somewhere. But,
now after installing new version, if i close it its directly signing out.

Can you please help me with this issue.

On Wed, Nov 14, 2012 at 3:32 PM, Sridhar Reddy sridharm...@gmail.comwrote:

 I am using Pidgin for AIM and recently I got a problem. Whenever I close
 Pidgin its signing out (Not just closing). Can you please help me with this
 problem

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Problem with Pidgin plugin

2012-09-25 Thread spidy mc
Hello !

I need some help to install skype plugin for pidgin.

I download the zip and inside there are the following files: MacOS,
Resources, Info.plist

Where do I place those files in order to make it work ?

THanks a lot for any possible help !
___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Re: Problem with Pidgin plugin

2012-09-25 Thread Tres Finocchiaro
Are you on PC or Mac?

On Tue, Sep 25, 2012 at 9:54 AM, spidy mc spid...@gmail.com wrote:

 Hello !

 I need some help to install skype plugin for pidgin.

 I download the zip and inside there are the following files: MacOS,
 Resources, Info.plist

 Where do I place those files in order to make it work ?

 THanks a lot for any possible help !

 ___
 Support@pidgin.im mailing list
 Want to unsubscribe?  Use this link:
 http://pidgin.im/cgi-bin/mailman/listinfo/support




-- 
- tres.finocchi...@gmail.com
___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

problem using pidgin

2012-09-12 Thread Robin ROUMEZI
Hello,

I downloaded and installed pidgin but I can't make it work correctly. When 
someone calls me on my fix phone, I would like to see who is calling me on the 
pidgin screen + have a link toward buzzee/delosmail.
I logged in but I only have a blank page with the message you require 
encryption, but it is not available on your server. Is it the problem ?

Best regards,

Robin Roumezi

ARDDI SAS
ZI de Munas
07290 ARDOIX
TEL : 04 75 69 90 31
FAX : 04 75 69 90 35
SIRET : 40160446700027
TVA : FR81401604467

www.arddi.fr___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Re: problem using pidgin

2012-09-12 Thread Mark Doliner
On Wed, Sep 12, 2012 at 4:47 AM, Robin ROUMEZI ro...@arddi.fr wrote:
 I logged in but I only have a blank page with the message you require
 encryption, but it is not available on your server. Is it the problem ?

This sounds like you're trying to connect to an XMPP server which does
not allow encrypted connections, and the settings for your account
specify that the account will refuse to connect if encryption is not
available.  I think you'll either need to change the server to support
encryption (possibly by installing an SSL certificate), or change the
settings for your account to allow unencrypted authentication.

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


Re: problem with pidgin-ppa

2011-10-02 Thread Richard Laager
The error is happening on removal. Specifically, it's happening because
the package post-removal script is trying to remove the Pidgin PPA key
and the key isn't installed. Tomorrow, I'll correct the pidgin-ppa
package to handle this condition. I really need to upload a new pidgin
package anyway.

That said, Knoppix is not Ubuntu. The PPA is for Ubuntu. Since you're
using Knoppix, you'll have to either get your package from Knoppix or
build from source.

Richard

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


problem with pidgin-ppa

2011-10-01 Thread Ivan Altaparmakov
 hi i try to install pidgin-ppa on knoppix hd install 

but something gone wrong and now i get this error:


Removing pidgin-ppa ...
gpg: key 67265EB522BDD6B1C69E66ED7FB8BEE0A1F196A8 not found: eof
gpg: 67265EB522BDD6B1C69E66ED7FB8BEE0A1F196A8: delete key failed: eof
dpkg: error processing pidgin-ppa (--remove):
 subprocess installed post-removal script returned error exit status 2
Errors were encountered while processing:
 pidgin-ppa
E: Sub-process /usr/bin/dpkg returned an error code (1)

and now i am unable to use package instaler because of this error 

what can i do to fix the error?

thanks best regards 


-
100 лв БОНУС. Най-високи коефициенти. Tempobet.com
http://bg.tempobet.com/affiliates/3208311

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Re: connectivity problem with pidgin

2011-09-28 Thread David Woolley

BBB wrote:

bigbadbabar disabled.  You have been connecting and disconnecting too 
frequently. Wait ten minutes and try again. If you continue to try, you 
will need to wait even longer.




Why do you believe the error message (which comes from AOL, not from 
Pidgin) is incorrect?


--
David Woolley
Emails are not formal business letters, whatever businesses may want.
RFC1855 says there should be an address here, but, in a world of spam,
that is no longer good advice, as archive address hiding may not work.

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


connectivity problem with pidgin

2011-09-27 Thread BBB
Hi there, was having some connectivity issues and was hoping you could help.

starting sometime yesterday I've been getting this error message when I try
to log my AIM account bigbadbabar into Pidgin (2.10.0)

bigbadbabar disabled.  You have been connecting and disconnecting too
frequently. Wait ten minutes and try again. If you continue to try, you will
need to wait even longer.

I'm not sure what it means -- I haven't been connecting or disconnecting.  I
saw some other similar complaints online and they'd posted their error log,
so I attached mine.

Thanks in advance for any time and help! I really appreciate it.

Todd


purple-debug.log
Description: Binary data
___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

RE: Problem with Pidgin (Linux) download

2011-08-24 Thread David Balažic
Shlomi Fish wrote:
 
 1. What do you mean by Mozilla? The standalone Mozilla 
 browser has been
 deprecated in favour of Firefox, which is now at version 6.0. 
 There's also
 Seamonkey. What are you using?

People refer to Mozilla Firefox just in short Mozilla.


 
 2. What do you mean by Linux (Red Hat)? Fedora? CentOS? Red 
 Hat Enterprise
 Linux (RHEL)? The old Red Hat Linux? What?

They all have own software repositories, where they have a copy of pidgin.
It is just, that they did not yet update to pidgin version 2.10.0 but
have the older 2.9.0. (judgung by the web page

https://admin.fedoraproject.org/pkgdb/applications/Pidgin%20Internet%20Messenger?_csrf_token=4b04ff271344f28b015318808857a1ed2da905c7


So the solution is to wait until RedHat gets the new version, when it wil 
probably be automatically updated on your PC.

Regards,
David

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


Problem with Pidgin (Linux) download

2011-08-23 Thread syamalaraotsn
Hello,

I am SYAMALARAO.

I tried downloading pidgin 2.10.0 ( The free Pidgin chat client which runs
on Windows and Linux/UNIX.), but download is not getting started.

But i am able to download for Windows from the below link:
http://pidgin.im/download/windows/

Now i am willing to download for Linux from the below site:
http://pidgin.im/download/

But download is not getting started. I am sure this is not browser
problem, i checked with Mozilla  Inter Explorer.

Please provide me with an alternative link downloading pidgin for
Linux(Red Hat).

Thanks  Regards,
SYAM.



Confidentiality Notice

The information contained in this electronic message and any 
attachments to this message are intended for the exclusive use of
the addressee(s) and may contain confidential or privileged 
information. If you are not the intended recipient, please notify
the sender at Bharat Electronics  or supp...@bel.co.in immediately
and destroy all copies of this message and any attachments.

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


Re: Problem with Pidgin (Linux) download

2011-08-23 Thread Shlomi Fish
Hi Syamalarao,

On Tue, 23 Aug 2011 15:13:42 +0530
syamalarao...@bel.co.in wrote:

 Hello,
 
 I am SYAMALARAO.
 
 I tried downloading pidgin 2.10.0 ( The free Pidgin chat client which runs
 on Windows and Linux/UNIX.), but download is not getting started.
 
 But i am able to download for Windows from the below link:
 http://pidgin.im/download/windows/
 
 Now i am willing to download for Linux from the below site:
 http://pidgin.im/download/
 
 But download is not getting started. I am sure this is not browser
 problem, i checked with Mozilla  Inter Explorer.
 
 Please provide me with an alternative link downloading pidgin for
 Linux(Red Hat).
 

1. What do you mean by Mozilla? The standalone Mozilla browser has been
deprecated in favour of Firefox, which is now at version 6.0. There's also
Seamonkey. What are you using?

2. What do you mean by Linux (Red Hat)? Fedora? CentOS? Red Hat Enterprise
Linux (RHEL)? The old Red Hat Linux? What?

3. Are you interested in the source tar ball or in a binary package? Please
look into your distribution's repositories for binary packages.

If you're interested in the sources, see:

http://garr.dl.sourceforge.net/project/pidgin/Pidgin/2.10.0/pidgin-2.10.0.tar.bz2

Regards,

Shlomi Fish

-- 
-
Shlomi Fish   http://www.shlomifish.org/
The Human Hacking Field Guide - http://shlom.in/hhfg

Had I not been already insane, I would have long ago driven myself mad.
— The Enemy and how I Helped to Fight It

Please reply to list if it's a mailing list post - http://shlom.in/reply .

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Re: How can i fix the display problem with pidgin

2011-04-03 Thread Ethan Blanton
Kwagga Productions spake unto us the following wisdom:
 Hallo guys.  I am a blind person.  I have to use pidgin to talk to my
 mxit buddies.  My screen reader don't want to read pidgin's
 conversation window.  I know that there arn't any screen readers that
 support pidgin so i have to make do with what i've got.  So i enlarge
 the fonts in pidgin.  But guys sometimes and more frequently these
 days pidgin loads a conversation window and the display is terrible.
 Can you please look in to the matter for me?  Thank you.  It's a pitty
 that the conversation window isn't just text based or else my screen
 reader would read it.  You know i am not asking the world to adapt to
 me All i am asking is people to find ideas to help me adapt to the
 rest of the world.  Thanx again for the hep. Corrie

Are you in Windows?

Pidgin actually uses a widget toolkit which has extensive support for
screen reading and other accessibility measures.  They may not work in
Windows, or may require additional effort to plumb into your Windows
screen reading software.  The toolkit is called Gtk+, you may wish to
search around the web and see if there is a standard solution for
screen reading with Gtk+ on Windows.

If you're not on Windows ... it really should work, and we'd love to
know why it doesn't, so we can fix it.

Ethan


signature.asc
Description: Digital signature
___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

How can i fix the display problem with pidgin

2011-04-02 Thread Kwagga Productions
Hallo guys.  I am a blind person.  I have to use pidgin to talk to my mxit 
buddies.  My screen reader don't want to read pidgin's conversation window.  I 
know that there arn't any screen readers that support pidgin so i have to make 
do with what i've got.  So i enlarge the fonts in pidgin.  But guys sometimes 
and more frequently these days pidgin loads a conversation window and the 
display is terrible. Can you please look in to the matter for me?  Thank you.  
It's a pitty that the conversation window isn't just text based or else my 
screen reader would read it.  You know i am not asking the world to adapt to me 
All i am asking is people to find ideas to help me adapt to the rest of the 
world.  Thanx again for the hep. Corrie___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

problem with pidgin

2011-04-01 Thread Zenad Walid
hello
I installed Pidgin 2.7 on ubuntu 10.10 ,but I found that it doesn't support
Facebook chat ,but when I installed it on windows I found that it supports
Facebook,I don't know what is the problem .
please help me .
Bye
___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Re: problem with pidgin

2011-04-01 Thread Michael Secord
Facebook chat is supported in both linux and windows versions of pidgin 
using the XMPP standard. You can find details on this here: 
http://www.facebook.com/sitetour/chat.php


-Michael

On 4/1/2011 5:23 AM Zenad Walid nout...@gmail.com said unto 
support@pidgin.im:

hello
I installed Pidgin 2.7 on ubuntu 10.10 ,but I found that it doesn't 
support Facebook chat ,but when I installed it on windows I found that 
it supports Facebook,I don't know what is the problem .

please help me .
Bye


___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Problem with Pidgin

2011-01-27 Thread Mitchell Chea

http://i.imgur.com/Bv8Zu.png
You see with the first IM window, the top bar with the icon takes up way too 
much room. It happened randomly and I can't remember if I did anything to 
change it for that user. It open happens with the user 'Mike Chea.' The second 
window is an example of the default size to whichc I want Mike Chea to return 
to.   ___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Problem with Pidgin buddy icon

2011-01-24 Thread Tim Bairstow

Hi,

I'm hoping you can help. My friend on MSN has changed her buddy icon but it 
still hasn't changed in Pidgin. Is there a way to force it to refresh, or 
better still is it a problem that needs resolving? I'm running version 2.7.9

Many thanks

Tim Bairstow
  ___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Problem with pidgin

2010-11-30 Thread Frantisek Cisar
Hello,

How are you? At first, I would like to tell you that pidgin is great
communicator in linux. I use pidgin many years. But now, I have a
problem with connecting. After turning on the pidgin, I received this
message:  https://api.oscar.aol.com/aim/startOSCARSession: Invalid
requested host

If you help me, I will be very glad.

Thank you very much.

Frank

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


Problem starting Pidgin 2.7.5 after installing files for East Asian language in Windows XP

2010-11-09 Thread Sangwon Lee

Hello there,
 
I installed Pidgin version 2.7.5 in my Windows XP box, and it's been 
working fine.
 
However, after I installed files for East Asian language in XP's Regional 
and Language Options,
 
I got this error message when I tried to start Pigdin.
 
pidgin.exe - Entry Point Not Found
The procedure entry point gdk_pixbuf_save_utf8 could not be located in the 
dynamic link library libgdk_pixbuf-2.0-0.dll.
 
Error loading pidgin.dll. 
Error: (127) The specified procedure could not be found.
 
Is this a bug?
 
Thank you for your support!
  ___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Problem with Pidgin 2.7.1

2010-06-14 Thread Lior Eyal

Dear support,

I use Pidgine 2.7.1, every contact of ICQ is getting my messages with HTML 
signs, however the bug which before I got such notes around the text people 
sent to me is resolved.

Thank you,

Lior


___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Re: Problem with Pidgin 2.7.1

2010-06-14 Thread Paul Aurich
On 2010-06-14 06:14, Lior Eyal wrote:
 I use Pidgine 2.7.1, every contact of ICQ is getting my messages with
 HTML signs, however the bug which before I got such notes around the
 text people sent to me is resolved.

This is a known issue with Pidgin 2.7.1; receiving HTML markup was fixed
in 2.7.1, but the fix for sending didn't make it in (it will be in 2.7.2).

~Paul



signature.asc
Description: OpenPGP digital signature
___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Re: Problem with Pidgin and getting Chinese characters instead of English

2010-06-07 Thread David Woolley

Alex Garcia-Rojas wrote:

Hello, I've been using Pidgin for a while now and have not been able
to fix a problem I've been having.  If I am talking to someone who has
the mobile device image next to their screen name, most of the things
they send to me get changed into what looks like Chinese rather than


Which version of Pidgin?

Which service?

What client is the other party using?

What does the Pidgin debug log say?

Which country is the other party in?


being in English.  I don't know what is causing this problem and it
only ever happen when talking to someone listed as being on a mobile,
and it has started up a few months ago I think.  If you can shed any
light on this as it gets very difficult communicating with people when
i can't understand almost any of what they type to me.

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support



--
David Woolley
Emails are not formal business letters, whatever businesses may want.
RFC1855 says there should be an address here, but, in a world of spam,
that is no longer good advice, as archive address hiding may not work.

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


Problem with Pidgin and getting Chinese characters instead of English

2010-06-06 Thread Alex Garcia-Rojas
Hello, I've been using Pidgin for a while now and have not been able
to fix a problem I've been having.  If I am talking to someone who has
the mobile device image next to their screen name, most of the things
they send to me get changed into what looks like Chinese rather than
being in English.  I don't know what is causing this problem and it
only ever happen when talking to someone listed as being on a mobile,
and it has started up a few months ago I think.  If you can shed any
light on this as it gets very difficult communicating with people when
i can't understand almost any of what they type to me.

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


problem after pidgin update

2010-05-13 Thread Lukas Hasucha

Hello,
i had update my pidgin today and in icq the texts is across a html border.
example:
(09:30:06) Peter: hello how are you?

i don't find tipps at google...
sry for my bad english.
i hope you can help me.
thanks, lukas

  
_
http://redirect.gimas.net/?n=M1004xWin72
Windows 7 - Alles was Du brauchst und noch viel mehr!___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Re: problem installing pidgin 2.6.4 on windows xp

2009-12-07 Thread Daniel Atallah
On Mon, Dec 7, 2009 at 01:13, Ian McGuire imcgu...@thebrick.com wrote:
 When I try to install pidgin on my windows XP machine it seems to go OK.
 When I try to run the program I get the error “Windows cannot access the
 specified device, path, or file.  You may not have the appropriate
 permissions to access the item.”


Are you installing as an Adminstrator user?

Where (which path) are you installing Pidgin to?

If you look at the Properties of the shortcut you're using to launch
pidgin, what are the entire contents of the Target and Start in
fields?

-D

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


Re: problem installing pidgin 2.6.4 on windows xp

2009-12-07 Thread Daniel Atallah
On Mon, Dec 7, 2009 at 13:12, Ian McGuire imcgu...@thebrick.com wrote:
 I tried this on two different machines with the same result and I am an 
 administrator for both.  I tried to install in C:\Program Files\Pidgin.  
 The Target is C:\Program Files\Pidgin\pidgin.exe and Start in is 
 C:\Program Files\Pidgin.  The icon displayed for pidgin.exe seems to be a 
 windows default.

Please reply to the mailing list instead of just to me.

Does C:\Program Files\Pidgin\pidgin.exe exist?

Are the permissions on the file such that the user you're trying to
run as can execute it?

If you try to run C:\Program Files\Pidgin\pidgin.exe directly
instead of via the shortcut, does it work?

-D


 Ian

 -Original Message-
 From: daniel.atal...@gmail.com [mailto:daniel.atal...@gmail.com] On Behalf Of 
 Daniel Atallah
 Sent: December 7, 2009 9:53 AM
 To: Ian McGuire
 Cc: support@pidgin.im
 Subject: Re: problem installing pidgin 2.6.4 on windows xp

 On Mon, Dec 7, 2009 at 01:13, Ian McGuire imcgu...@thebrick.com wrote:
 When I try to install pidgin on my windows XP machine it seems to go OK.
 When I try to run the program I get the error Windows cannot access the
 specified device, path, or file.  You may not have the appropriate
 permissions to access the item.


 Are you installing as an Adminstrator user?

 Where (which path) are you installing Pidgin to?

 If you look at the Properties of the shortcut you're using to launch
 pidgin, what are the entire contents of the Target and Start in
 fields?

 -D


___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


RE: problem installing pidgin 2.6.4 on windows xp

2009-12-07 Thread Ian McGuire
I figured out the problem.  Application control software on my workstation was 
blocking the application.  Thank you for your help.

Ian

-Original Message-
From: daniel.atal...@gmail.com [mailto:daniel.atal...@gmail.com] On Behalf Of 
Daniel Atallah
Sent: December 7, 2009 11:51 AM
To: Ian McGuire; support@pidgin.im
Subject: Re: problem installing pidgin 2.6.4 on windows xp

On Mon, Dec 7, 2009 at 13:12, Ian McGuire imcgu...@thebrick.com wrote:
 I tried this on two different machines with the same result and I am an 
 administrator for both.  I tried to install in C:\Program Files\Pidgin.  
 The Target is C:\Program Files\Pidgin\pidgin.exe and Start in is 
 C:\Program Files\Pidgin.  The icon displayed for pidgin.exe seems to be a 
 windows default.

Please reply to the mailing list instead of just to me.

Does C:\Program Files\Pidgin\pidgin.exe exist?

Are the permissions on the file such that the user you're trying to
run as can execute it?

If you try to run C:\Program Files\Pidgin\pidgin.exe directly
instead of via the shortcut, does it work?

-D


 Ian

 -Original Message-
 From: daniel.atal...@gmail.com [mailto:daniel.atal...@gmail.com] On Behalf Of 
 Daniel Atallah
 Sent: December 7, 2009 9:53 AM
 To: Ian McGuire
 Cc: support@pidgin.im
 Subject: Re: problem installing pidgin 2.6.4 on windows xp

 On Mon, Dec 7, 2009 at 01:13, Ian McGuire imcgu...@thebrick.com wrote:
 When I try to install pidgin on my windows XP machine it seems to go OK.
 When I try to run the program I get the error Windows cannot access the
 specified device, path, or file.  You may not have the appropriate
 permissions to access the item.


 Are you installing as an Adminstrator user?

 Where (which path) are you installing Pidgin to?

 If you look at the Properties of the shortcut you're using to launch
 pidgin, what are the entire contents of the Target and Start in
 fields?

 -D


___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


problem installing pidgin 2.6.4 on windows xp

2009-12-06 Thread Ian McGuire
When I try to install pidgin on my windows XP machine it seems to go OK.  When 
I try to run the program I get the error Windows cannot access the specified 
device, path, or file.  You may not have the appropriate permissions to access 
the item.
___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Problem with Pidgin start

2009-11-30 Thread Emil Sekula
Hello,

I have some problem with Pidgin start. It doesn't start and and tray
icon is all the time like this one:
http://img228.imageshack.us/img228/1125/pidginv.png Why ?

Regards,
Emil Sekula

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


Re: Problem with Pidgin start

2009-11-30 Thread Daniel Atallah
On Mon, Nov 30, 2009 at 06:28, Emil Sekula emil.sek...@gmail.com wrote:
 I have some problem with Pidgin start. It doesn't start and and tray
 icon is all the time like this one:
 http://img228.imageshack.us/img228/1125/pidginv.png Why ?

For that icon to appear, Pidgin is starting.

I suspect what you actually mean is that it isn't actually connecting.

If you bring up the buddy list by clicking on the icon, does it say
Waiting for Network Connection... at the bottom?

-D

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


problem installing pidgin

2009-10-25 Thread dreamy Unicorn
Hi,
I have some problem installing Pidgin for Fedora Core :(
http://rpm.pidgin.im/fedora/8/i386/repodata/repomd.xml: [Errno 14] HTTP Error 
404: Not Found
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: pidgin. 
Please verify its path and try again

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


Re: problem installing pidgin

2009-10-25 Thread Brian Morrison
On Mon, 26 Oct 2009 00:33:54 +0400
dreamy Unicorn dreamy-unic...@yandex.ru wrote:

 Hi,
 I have some problem installing Pidgin for Fedora Core :(
 http://rpm.pidgin.im/fedora/8/i386/repodata/repomd.xml: [Errno 14] HTTP 
 Error 404: Not Found
 Trying other mirror.
 Error: Cannot retrieve repository metadata (repomd.xml) for repository: 
 pidgin. Please verify its path and try again

Was Pidgin not part of the main repository Fedora 8? I'm pretty sure it
was.

-- 

Brian Morrison

I am not young enough to know everything
  Oscar Wilde

___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support


Problem with Pidgin

2009-08-22 Thread NintendoBoy259
Hey,

I think I found a bug in Pidgin last night, my OS is XP SP3. I had v2.5.6
installed when I noticed that my buddies, all of them, would sign off at a
seemingly random time. I would still be able to have an IM conversation with
them despite them appearing as offline, and I could fully use my internet.
Apparently, I stay signed on for their lists too. When they would change
their status, they sign back on with the change apparent; however,
eventually I would run into the same issue. So I updated to v2.5.8, and had
the same problem. Uninstalled completely, reinstalled, still getting the
same problem. Messed with some options, no avail. I emailed you this
message, almost verbatim, then updated to 2.6.1. And it's still happening,
so I'm send thing again... What gives?


Thanks for a great program, AND PLEASE RESPOND,
NB
___
Support@pidgin.im mailing list
Want to unsubscribe?  Use this link:
http://pidgin.im/cgi-bin/mailman/listinfo/support

Problem Running Pidgin

2009-04-20 Thread David McCarley
Until recently, I have run Pidgin (and GAIM prior to the name change) with
absolutely no problems.  Last night I got the wild hair to install the
microblog purple plugin so that I could access my Twitter account via
Pidgin.  Everything went fine until I later last night when I got ready to
shut down, I received an error when I attempted to shut down Pidgin.  I
didn't think too much about it at the time, as I had every intention this
morning of uninstalling the microblog purple plugin.  Unfortunately, as a
result, I didn't think to make a note of the error.  (I am running Windows
XP with Service Pack 3, and all the latest updates and fixes, installed.)

This morning when I cranked up my computer and attempted to load Pidgin, I
received the following two error messages:

Gdk error **:_gdk_visual_init: unsupported BITSPIXEL: 0 Aborting

and then,

Runtime Error!
Program C:\Program Files\Pidgin\Pidgin.exe
This application has requested the Runtime to terminate it in an unusual
way.  Please contact the application's support team for more information.

Upon receiving these messages, I uninstalled Pidgin and the microblog purple
plugin, downloaded the latest version (version 2.5.5) of Pidgin and
installed it, but I am still receiving the same two errors. I have tried
uninstalling and reinstalling three or four times, and I have run a Registry
cleaner in between each installation, but I continue to receive the above
two errors after I reinstall Pidgin.

What do I need to do to be able to run Pidgin again on my computer?

Thanks,

David

___
Support mailing list
Support@pidgin.im
http://pidgin.im/cgi-bin/mailman/listinfo/support


Sound Problem on Pidgin

2009-02-20 Thread Greg Miller
I'm having a problem on version 2.5.4.  I have it running on Widows XP 
and also Ubuntu Intrepid ver. 8.10.  I have the same problem on both 
systems.  I installed Pidgin.  The Default Sounds worked OK at first.  I 
attempted to change the sounds for Buddy Logs In, Buddy Logs Out, 
Message Sent and Message Received.  I attempted to change them to the 
same sounds used by AOL IM, since I used that application for years 
before switching to Pidgin.

After I changed the sounds they work fine in Preview, but not when a 
buddy logs on or off or a message is sent or received. I tried to 
restore the sounds to Default but still the same result.  Preview works 
but the actual event doesn't.  When I send a message the Enable Sounds 
is checked in the Options Menu of the Conversation Window.

On my Windows system the sounds work OK on 2 user accounts that the 
sounds were never changed from Default.  On Ubuntu it seems that 
changing one account bolixxed both.

On the Windows system I uninstalled the application and reinstalled it 
but no help.  Uninstalling it must not remove an .ini file or something 
because as soon as I reinstalled it and started Pidgin it came up and 
knew about the accounts I had on it before I removed it.

I've checked and Mute Sounds is not checked and Enable Sounds is set to 
Always.

Any help would be much appreciated.

___
Support mailing list
Support@pidgin.im
http://pidgin.im/cgi-bin/mailman/listinfo/support


Problem with Pidgin

2008-12-11 Thread Mark N Harris
I have several empty groups that I want to delete, but every time I 
delete them and then exit the program the next time I start it back up 
there they are again. How do I permanently remove them?

___
Support mailing list
Support@pidgin.im
http://pidgin.im/cgi-bin/mailman/listinfo/support


Re: Problem with Pidgin

2008-12-11 Thread Michael Secord
This has been discussed before in Trac.  Depending on what they are 
from, probably MSN in this case, just go to Buddies  Show and make sure 
that Empty Groups is unchecked.

-Michael

 Original Message 
Subject: Problem with Pidgin
From: Mark N Harris marknhar...@gmail.com
To: support@pidgin.im
Date: 12/11/2008 1:33 PM

 I have several empty groups that I want to delete, but every time I 
 delete them and then exit the program the next time I start it back up 
 there they are again. How do I permanently remove them?
 
 ___
 Support mailing list
 Support@pidgin.im
 http://pidgin.im/cgi-bin/mailman/listinfo/support
 

___
Support mailing list
Support@pidgin.im
http://pidgin.im/cgi-bin/mailman/listinfo/support


Problem with pidgin + SIP + freephonie account

2008-08-24 Thread giggz
Hi,

I try to configure a pidgin SIP profil with my freephonie SIP account.
And it doesn't work (no connection...).

I'm running under debian SID, so with 2.4.3 pidgin version.

How to configure a SIP account under pidgin ? if someone has a link...

My freephonie account works good with linphone. so it's just a problem
of configuration or compatibility between pidgin and freephonie.

Regards,
Guillaume

___
Support mailing list
Support@pidgin.im
http://pidgin.im/cgi-bin/mailman/listinfo/support


Sound problem with Pidgin

2008-07-22 Thread Nicholas Meisner
Hello,
I just reinstalled windows (Now Vista 64-bit), and I also reinstalled pidgin.  
For some reason I can not hear any sound from pidgin when I receive messages, 
send messages or some logs on or off.  Are there any causes/fixes for this 
problem?

Thanks,
Nick



  ___
Support mailing list
Support@pidgin.im
http://pidgin.im/cgi-bin/mailman/listinfo/support


Re: Sound problem with Pidgin

2008-07-22 Thread Lee Roach
2008/7/22 Nicholas Meisner [EMAIL PROTECTED]:

 Hello,
 I just reinstalled windows (Now Vista 64-bit), and I also reinstalled
 pidgin.  For some reason I can not hear any sound from pidgin when I receive
 messages, send messages or some logs on or off.  Are there any causes/fixes
 for this problem?

 Thanks,
 Nick


If you right click on Pidgin's notification tray icon, is Mute Sounds
checked? If you go to the Tools  Preferences  Sounds tab, do you have
sounds assigned to any events, and is Enable sounds set to an appropriate
selection? Does the Preview button at the bottom of the sounds dialog
produce any sounds? If you have the buddy list visible (ie: not minimized /
sent to tray), and you open the system volume mixer via control panel or
double clicking the speaker in the notification area, is Pidgin turned way
down or muted? Can you hear sounds from other programs?

If none of these questions helps you discover the problem(s), please obtain
a debug log [1] of what happens when you hit the sound preview button, and
attach it to a new ticket [2].

[1]: http://developer.pidgin.im/wiki/TipsForBugReports#ObtainingaDebugLog
[2]: http://developer.pidgin.im/simpleticket

--Lee
___
Support mailing list
Support@pidgin.im
http://pidgin.im/cgi-bin/mailman/listinfo/support


Re: Problem with Pidgin

2007-12-29 Thread er0rs

Yet i can still access my account via E-buddy?


N.Novozhilov-2 wrote:
 
 Microsoft close your account, because you don't visit there by browser
 too long time, I think.
 It's not a pidgin problem
 
 On Sat, 29 Dec 2007 03:54:37 -0800 (PST)
 er0rs [EMAIL PROTECTED] wrote:
 
 
 I have a problem with pidgin.. I don't know what the problem is but it
 dosen't let me log in.. 
 
 http://www.nabble.com/file/p14536918/pidginfuckingup.jpg 
 
 ~Help!
 -- 
 View this message in context:
 http://www.nabble.com/Problem-with-Pidgin-tp14536918p14536918.html
 Sent from the Pidgin Support List mailing list archive at Nabble.com.
 
 ___
 Support mailing list
 Support@pidgin.im
 http://pidgin.im/cgi-bin/mailman/listinfo/support
 
 
 ~~
 Regards
 Nicholas A. Novozhilov, NAN6-RIPE
 
  NTR Lab
  System administrator
 
 ___
 Support mailing list
 Support@pidgin.im
 http://pidgin.im/cgi-bin/mailman/listinfo/support
 
 

-- 
View this message in context: 
http://www.nabble.com/Problem-with-Pidgin-tp14536918p14537153.html
Sent from the Pidgin Support List mailing list archive at Nabble.com.

___
Support mailing list
Support@pidgin.im
http://pidgin.im/cgi-bin/mailman/listinfo/support


Re: Problem with Pidgin

2007-12-29 Thread Daniel Atallah
On Dec 29, 2007 7:37 AM, er0rs [EMAIL PROTECTED] wrote:


 Yet i can still access my account via E-buddy?


If this isn't Pidgin 2.3.1, you should upgrade, otherwise, if your password
is longer than 16 characters, you need to only enter the first 16
characters.  Also, make sure your screenname (email address) doesn't have
any leading or trailing spaces.


N.Novozhilov-2 wrote:

 Microsoft close your account, because you don't visit there by browser
 too long time, I think.
 It's not a pidgin problem

The disabled part refers to the account within Pidgin, not necessarily the
account on the server.

-D
___
Support mailing list
Support@pidgin.im
http://pidgin.im/cgi-bin/mailman/listinfo/support