Bug#491691: gnugk: mysql connection loss

2008-07-21 Thread Jan Willamowius
Hi,

That patch is already included in GnuGk 2.2.7 and it should work fine
in 2.2.6, too.

Regards,
Jan

misi wrote:
 Package: gnugk
 Version: 2:2.2.6-7
 Severity: normal
 
 This patch solved my problem.
 I had been detecting database connection loss without this patch.
 This is piece of log file where You can see the error. 
 This is the error message without the patch
 (This ocours after a day or so, until that time, everything is working fine.)
 
 
 2008/07/06 09:52:06.078 1 RasSrv.cxx(368)   RAS RRQ
 Received
 2008/07/06 09:52:06.079 2sqlauth.cxx(237)   SQLAUTH
 SQLAliasAuth('00361002460'): query failed (1) - MySQL server has gone
 away
 2008/07/06 09:52:06.079 4 gkauth.cxx(1503)  GKAUTH
 SQLAliasAuth
 auth condition not found for alias '00361002460'
 2008/07/06 09:52:06.079 2sqlauth.cxx(237)   SQLAUTH
 SQLAliasAuth('BKF_HD00361002460'): query failed (1) - MySQL server has
 gone
 away
 2008/07/06 09:52:06.079 4 gkauth.cxx(1503)  GKAUTH
 SQLAliasAuth
 auth condition not found for alias 'BKF_HD00361002460'
 2008/07/06 09:52:06.079 2sqlauth.cxx(237)   SQLAUTH
 SQLAliasAuth('default'): query failed (1) - MySQL server has gone away
 2008/07/06 09:52:06.079 4 gkauth.cxx(1503)  GKAUTH
 SQLAliasAuth
 auth condition not found for alias 'default'
 2008/07/06 09:52:06.079 4 gkauth.cxx(1503)  GKAUTH
 AliasAuth
 auth condition not found for alias '00361002460'
 2008/07/06 09:52:06.079 4 gkauth.cxx(1503)  GKAUTH
 AliasAuth
 auth condition not found for alias 'BKF_HD00361002460'
 2008/07/06 09:52:06.079 4 gkauth.cxx(1503)  GKAUTH
 AliasAuth
 auth condition not found for alias 'default'
 2008/07/06 09:52:06.079 3 gkauth.cxx(927)   GKAUTH
 AliasAuth
 RRQ check failed
 2008/07/06 09:52:06.080 2 RasSrv.cxx(413)
 RRJ|193.224.67.1|00361002460:dialedDigits=BKF_HD00361002460:h323_ID|terminal|securityDenial;
 2008/07/06 09:52:06.080 3 RasSrv.cxx(250)   RAS Send to
 193.224.67.1:1719
 registrationReject {
 requestSeqNum = 52495
 protocolIdentifier = 0.0.8.2250.0.5
 rejectReason = securityDenial null
 gatekeeperIdentifier =  7 characters {
   004e 0049 0049 0046 002d 0047 004bNIIF-GK
 }
   }
 
 
 The key is MySQL server is gone(so this line): 
 
 2008/07/06 09:52:06.079 2sqlauth.cxx(237)   SQLAUTH
 SQLAliasAuth('00361002460'): query failed (1) - MySQL server 
 has gone away
 
 
 The patch:
 [EMAIL PROTECTED]:/tmp$ cat gksql_mysql.cxx.diff 
 --- gnugk-2.2.6.orig/gksql_mysql.cxx
 +++ gnugk-2.2.6/gksql_mysql.cxx
 @@ -480,6 +480,11 @@
   }
   mysql_options(conn, MYSQL_OPT_CONNECT_TIMEOUT, (const
 char*)CONNECT_TIMEOUT);
  
 +#if (MYSQL_VERSION_ID = 50013)
 + my_bool reconnect = 1;  // enable auto-reconnect, older versions
 have it on by default
 + mysql_options(conn, MYSQL_OPT_RECONNECT, reconnect);
 +#endif
 +
   // connect to the MySQL database, try each host on the list in
   // case of failure
   if (mysql_real_connect(conn, m_host, m_username, 
   m_password.IsEmpty() ? (const char*)NULL :
 (const char*)m_password,
 
 
 
 -- System Information:
 Debian Release: lenny/sid
   APT prefers testing
   APT policy: (500, 'testing')
 Architecture: i386 (i686)
 
 Kernel: Linux 2.6.25-2-686 (SMP w/2 CPU cores)
 Locale: LANG=hu_HU.UTF-8, LC_CTYPE=hu_HU.UTF-8 (charmap=ISO-8859-2) (ignored: 
 LC_ALL set to hu_HU)
 Shell: /bin/sh linked to /bin/bash
 
 Versions of packages gnugk depends on:
 ii  adduser  3.108   add and remove users and groups
 ii  libc62.7-10  GNU C Library: Shared libraries
 ii  libexpat12.0.1-4 XML parsing C library - runtime 
 li
 ii  libfbclient2 2.0.4.13130-1.ds1-3 Firebird client library
 ii  libgcc1  1:4.3.1-2   GCC support library
 ii  libldap-2.4-22.4.10-2+lenny1 OpenLDAP libraries
 ii  libmysqlclient15off  5.0.51a-9+lenny2MySQL database client library
 ii  libopenh323-1.19.1-d 1.19.1~dfsg-3+b1H.323 aka VoIP library
 ii  libpq5   8.3.3-1 PostgreSQL C client library
 ii  libpt-1.11.2 1.11.2-2Portable Windows Library
 ii  libsasl2-2   2.1.22.dfsg1-21 Cyrus SASL - authentication 
 abstra
 ii  libsdl1.2debian  1.2.13-2Simple DirectMedia Layer
 ii  libssl0.9.8  0.9.8g-10.1 SSL shared libraries
 ii  libstdc++6   4.3.1-2 The GNU Standard C++ Library v3
 ii  zlib1g   1:1.2.3.3.dfsg-12   compression library - runtime
 
 gnugk recommends no packages.
 
 -- no debconf information

-- 
Jan Willamowius, [EMAIL PROTECTED], http://www.gnugk.org/



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#440855: gnugk: Must build-depend on firebird2.0-dev, not firebird2-dev

2007-09-04 Thread Jan Willamowius
Hi,

from what I hear, the Firebird database driver is very rarely used. If
its causing you any trouble, I would suggest to build without Firebird
support.

Regards,
Jan


Damyan Ivanov wrote:
 Package: gnugk
 Version: 2:2.2.6-1
 Severity: serious
 Tags: patch
 
 Hi,
 
 Since firebird1.5 (providing firebird2-dev) is going to be removed[1]
 because it is not supported by upstream any more and has security
 issues, gnugk will suddenly FTBFS and become uninstallable due to
 missing firebird2-dev and libfbclient1 packages.
 
 [1] http://bugs.debian.org/438862
 
 The attached patch changes the Build-Depends on firebird to
 firebird2.0-dev, which takes care of the Depends also. I've build the
 package on amd64 without errors (in a fresh sid pbuilder chroot).
 
 Note that I've taken the oportunity to also extend the list of
 architectures firebird is supported by powerpc, sparc and kfreebsd-*.
 
 Severity is serious, since gnugk should not be released
 (build-)depending on an unsupported version ofr firebird.
 
 Thanks for taking care.
 
 -- System Information:
 Debian Release: lenny/sid
   APT prefers unstable
   APT policy: (990, 'unstable'), (500, 'stable'), (1, 'experimental')
 Architecture: amd64 (x86_64)
 
 Kernel: Linux 2.6.22-1-amd64 (SMP w/2 CPU cores)
 Locale: LANG=bg_BG.UTF-8, LC_CTYPE=bg_BG.UTF-8 (charmap=UTF-8)
 Shell: /bin/sh linked to /bin/dash


-- 
Jan Willamowius, [EMAIL PROTECTED], http://www.gnugk.org/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#478502: gnugk 2.2.7 fails to run on sparc, s390, m68k and armel architecture

2008-06-24 Thread Jan Willamowius
Bastian Blank wrote:
 On Tue, Jun 24, 2008 at 03:44:49PM +0200, Jan Willamowius wrote:
  i'm pretty baffeled that addpasswd segfaults since that code hasn't
  changed since GnuGk 2.2.5 (apart from one #include that was removed).
  I'm even more surprised that gnugk segfaults on sparc and armel.
 
 Different environments? Compiler, other libraries?

The same libs (PTLib 1.11.2 and OpenH323 1.19.1) have worked before and
executables produce with gcc 4.3 have worked, also...

  I'd be happy to debug this problem, but I don't have a test machine for
  any of these architectures to reproduce this and all platforms I have
  available don't have this problem. If you have any test machine where I
  can get a remote login, that would be great.
 
 Debian developer have access to many machines including the problematic
 architectures.

I'm not sure what you mean by that and looking at www.debian.org I don't
see a 'Sign up here' button. If you want me to apply for anything,
please provide a link.

Regards,
Jan


-- 
Jan Willamowius, [EMAIL PROTECTED], http://www.gnugk.org/



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#358090: FTBFS with G++ 4.1: extra qualification

2006-03-22 Thread Jan Willamowius
Thanks Martin,

we'll fix this in the upcomming version 2.2.4.

Regards,
Jan


Martin Michlmayr wrote:
 Package: gnugk
 Version: 2:2.2.3-2-2
 Severity: important
 Tags: patch
 
 Your package fails to build with G++ 4.1.  I'm filing this bug as
 important for now, but when 4.1 will be the default compiler in
 unstable (probably in a few weeks) I'll upgrade this to serious.
 
 A patch is attached.
 
 
  Automatic build of gnugk_2:2.2.3-2-2 on bigsur by sbuild/mips 1.106
 ...
  g++ -I/usr/include/postgresql -DHAS_PGSQL=1  -I/usr/include/mysql
-DHAS_MYSQL=1 -DHAS_RADIUS=1 -DHAS_MSG_NOSIGNAL=1  -D'MANUFACTURER=GNU'
-D'PROGRAMMNAME=Gatekeeper' -DPTRACING  -D_REENTRANT -Wall 
-I/usr/share/pwlib//include -Wa,-xgot -DPTRACING -I/usr/include/openh323
-fexceptions -DMAJOR_VERSION=2 -DMINOR_VERSION=2 -DBUILD_NUMBER=3 -O2 
-felide-constructors -c yasocket.cxx -o obj_linux_mips_r/yasocket.o
  yasocket.h:415: error: extra qualification 'TCPListenSocket::' on
member 'TCPListenSocket'
  make[1]: *** [obj_linux_mips_r/yasocket.o] Error 1
  make[1]: Leaving directory `/build/tbm/gnugk-2.2.3-2'
  make: *** [build] Error 2
 
 --- ./yasocket.h~ 2006-03-21 06:14:18.0 +
 +++ ./yasocket.h  2006-03-21 06:14:25.0 +
 @@ -412,7 +412,7 @@
   PCLASSINFO ( TCPListenSocket, TCPSocket )
  #endif
  public:
 - TCPListenSocket::TCPListenSocket(int seconds = 0);
 + TCPListenSocket(int seconds = 0);
   ~TCPListenSocket();
  
   bool IsTimeout(const PTime *) const;
 
 -- 
 Martin Michlmayr
 http://www.cyrius.com/
 
 


-- 
Jan Willamowius, [EMAIL PROTECTED], http://www.gnugk.org/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#644360: gnugk segfaulting

2011-10-05 Thread Jan Willamowius
Hi Jan,

GnuGk 2.3.2 has a number of known bugs that have been fixed in the
meantime, some of them resulting in a possible crash.

I would suggest that Debian switches to GnuGk 2.3.5.
Until then you can use the GnuGk executable from the gnugk.org
website which should run on Debian.

Regards,
Jan

Jan Tvrznik wrote:
 Package: gnugk
 Version: 2:2.3.2-3-1
 System: Debian GNU/Linux 6.0 Squeeze (all packages updated)
 
 The gnugk daemon crashes once/twice a day with segfault. Here is part of 
 my logs:
 
 ---
 Oct  3 08:29:57 ns2 kernel: [919494.051150] gnugk[29125]: segfault at 0 
 ip 7f26c9bc81a5 sp 7f26cad4f488 error 4 in 
 libpt.so.2.4.5[7f26c98a4000+39d000]
 Oct  3 08:29:57 ns2 kernel: [919494.053684] [ cut here 
 ]
 Oct  3 08:29:57 ns2 kernel: [919494.053694] WARNING: at 
 /build/buildd-linux-2.6_2.6.32-35squeeze2-amd64-OT816k/linux-2.6-2.6.32/debian/build/source_amd64_none/net/ipv4/af_inet.c:153
  
 inet_sock_destruct+0x15c/0x17a()
 Oct  3 08:29:57 ns2 kernel: [919494.053729] Hardware name: VMware 
 Virtual Platform
 Oct  3 08:29:57 ns2 kernel: [919494.053731] Modules linked in: vsock 
 vmmemctl acpiphp ext3 jbd loop psmouse i2c_piix4 parport_pc shpchp 
 parport i2c_core pcspkr pci_hotplug evdev processor container serio_raw 
 ac button vmci ext4 mbcache jbd2 crc16 dm_mod vmw_pvscsi vmxnet3 vmxnet 
 sg sr_mod cdrom ata_generic sd_mod crc_t10dif ata_piix libata mptspi 
 mptscsih mptbase e1000 scsi_transport_spi floppy thermal thermal_sys 
 scsi_mod [last unloaded: scsi_wait_scan]
 Oct  3 08:29:57 ns2 kernel: [919494.053822] Pid: 29127, comm: gnugk Not 
 tainted 2.6.32-5-amd64 #1
 Oct  3 08:29:57 ns2 kernel: [919494.053825] Call Trace:
 Oct  3 08:29:57 ns2 kernel: [919494.053831]  [8129a972] ? 
 inet_sock_destruct+0x15c/0x17a
 Oct  3 08:29:57 ns2 kernel: [919494.053835]  [8129a972] ? 
 inet_sock_destruct+0x15c/0x17a
 Oct  3 08:29:57 ns2 kernel: [919494.053840]  [8104df1c] ? 
 warn_slowpath_common+0x77/0xa3
 Oct  3 08:29:57 ns2 kernel: [919494.053844]  [8129a972] ? 
 inet_sock_destruct+0x15c/0x17a
 Oct  3 08:29:57 ns2 kernel: [919494.053850]  [81243eef] ? 
 __sk_free+0x15/0xe8
 Oct  3 08:29:57 ns2 kernel: [919494.053854]  [8129a4a0] ? 
 inet_release+0x4e/0x54
 Oct  3 08:29:57 ns2 kernel: [919494.053858]  [81241371] ? 
 sock_release+0x19/0x66
 Oct  3 08:29:57 ns2 kernel: [919494.053861]  [812413e0] ? 
 sock_close+0x22/0x26
 Oct  3 08:29:57 ns2 kernel: [919494.053866]  [810efc05] ? 
 __fput+0x100/0x1af
 Oct  3 08:29:57 ns2 kernel: [919494.053870]  [810ed06a] ? 
 filp_close+0x5b/0x62
 Oct  3 08:29:57 ns2 kernel: [919494.053874]  [8104fa20] ? 
 put_files_struct+0x64/0xc1
 Oct  3 08:29:57 ns2 kernel: [919494.053878]  [810512e5] ? 
 do_exit+0x236/0x6c6
 Oct  3 08:29:57 ns2 kernel: [919494.053882]  [810517eb] ? 
 do_group_exit+0x76/0x9d
 Oct  3 08:29:57 ns2 kernel: [919494.053887]  [8105e0d7] ? 
 get_signal_to_deliver+0x310/0x339
 Oct  3 08:29:57 ns2 kernel: [919494.053893]  [8101004f] ? 
 do_notify_resume+0x87/0x73f
 Oct  3 08:29:57 ns2 kernel: [919494.053898]  [810fb7ba] ? 
 poll_select_copy_remaining+0xd0/0xf3
 Oct  3 08:29:57 ns2 kernel: [919494.053902]  [81010e0e] ? 
 int_signal+0x12/0x17
 Oct  3 08:29:57 ns2 kernel: [919494.053905] ---[ end trace 
 ea462709b8099a91 ]---
 
 ---
 Oct  3 14:15:22 ns2 kernel: [940214.250481] gnugk[6056]: segfault at 0 
 ip 7f06731d2d94 sp 7f067431e4a8 error 4 in 
 libpt.so.2.4.5[7f0672eb4000+39d000]
 
 ---
 Oct  4 11:26:08 ns2 kernel: [1016445.358953] gnugk[10535]: segfault at 0 
 ip 7ff38d5ae1a5 sp 7ff38e735488 error 4 in 
 libpt.so.2.4.5[7ff38d28a000+39d000]
 
 Kernel version:  2.6.32-5-amd64
 libc version:  2.11.2-10
 libpt version: 2.4.5-1
 
 Best regards,
 Jan Tvrznik
 
 
 
 


-- 
Jan Willamowius, j...@willamowius.de, http://www.gnugk.org/



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#707353: gnugk: FTBFS: job.cxx:88:2: error: 'PThreadIdentifer' does not name a type

2013-05-09 Thread Jan Willamowius
Hi,

you are mixing an old GnuGk (3.0.2) version with a rather new PTLib
(2.10.10) version.

Newer PTLib version have the typo in the class name fixed and you have
to change PThreadIdentifer to PThreadIdentifier. GnuGk 3.1 and later
have this already fixed. Alternatively you can use an older PTLib
version.

Regards,
Jan

-- 
Jan Willamowius, Founder of the GNU Gatekeeper Project
EMail  : j...@willamowius.de
Website: http://www.gnugk.org
Support: http://www.willamowius.com/gnugk-support.html


Lucas Nussbaum wrote:
 Source: gnugk
 Version: 2:3.0.2-3
 Severity: serious
 Tags: jessie sid
 User: debian...@lists.debian.org
 Usertags: qa-ftbfs-20130509 qa-ftbfs
 Justification: FTBFS on amd64
 
 Hi,
 
 During a rebuild of all packages in sid, your package failed to build on
 amd64.
 
 Relevant part:
  make[3]: Entering directory `/«PKGBUILDDIR»'
  [CC] singleton.cxx
  [CC] job.cxx
  job.cxx:88:2: error: 'PThreadIdentifer' does not name a type
  job.cxx: In constructor 'Worker::Worker(Agent*, long int)':
  job.cxx:150:65: error: class 'Worker' does not have any field named 'm_id'
  job.cxx: In destructor 'virtual Worker::~Worker()':
  job.cxx:161:3: error: 'm_id' was not declared in this scope
  job.cxx:165:2: error: 'm_id' was not declared in this scope
  job.cxx: In member function 'virtual void Worker::Main()':
  job.cxx:170:2: error: 'm_id' was not declared in this scope
  job.cxx: In member function 'void Worker::Destroy()':
  job.cxx:246:2: error: 'm_id' was not declared in this scope
  make[3]: *** [obj_linux_x86_64/job.o] Error 1
 
 The full build log is available from:
http://people.debian.org/~lucas/logs/2013/05/09/gnugk_3.0.2-3_unstable.log
 
 A list of current common problems and possible solutions is available at 
 http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!
 
 About the archive rebuild: The rebuild was done on EC2 VM instances from
 Amazon Web Services, using a clean, minimal and up-to-date chroot. Every
 failed build was retried once to eliminate random failures.
 
 


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#739492: Test your package against libssh 0.6.x

2014-02-19 Thread Jan Willamowius
Hi,

if you are using libssh 0.6.1 compiled without GSSAPI suport, the
current version of GnuGk works fine with it.

If you have GSSAPI support included, the libssh detection fails.
You can either wait for the GnuGk 3.6 release or patch configure:
http://openh323gk.cvs.sourceforge.net/viewvc/openh323gk/openh323gk/configure.in?r1=1.61r2=1.62

Regards,
Jan

Mike Gabriel wrote:
 Package: gnugk
 
 Dear maintainer,
 
 the libssh maintainers are planning the upload of libssh 0.6.x to  
 unstable soon (4-6 weeks from now).
 
 Please test your package's functionality with libssh 0.6.1 as found in  
 Debian experimental (currently: 0.6.1-1~exp1).
 
 Thanks,
 Mike Gabriel
 -- 
 
 mike gabriel aka sunweaver (Debian Developer)
 fon: +49 (1520) 1976 148
 
 GnuPG Fingerprint: 9BFB AEE8 6C0A A5FF BF22  0782 9AF4 6B30 2577 1B31
 mail: sunwea...@debian.org, http://sunweavers.net
 


-- 
Jan Willamowius, j...@willamowius.de, http://www.gnugk.org/


signature.asc
Description: PGP signature


Bug#795179: gnugk compiled without H.460 support

2015-08-11 Thread Jan Willamowius
Hi,

for H.460 support in GnuGk (which includes about a dozen
sub-standards), the H323Plus package must be compiled with H.460
support which should be on by default (unless disabled with
--disable-h460 in the H323Plus ./configure run). It seems to be
off in your compile run.

Once H.460 is enabled in H323Plus, GnuGk's H.460 features will
automatically be enabled. Only H.460.18 must be enabled explicitly
using --enable-h46018 when compiling GnuGk.

But please note that H.460.18 is covered by a patent held by Tandberg
and now Cisco. I do have a license for this patent for my 'official'
GnuGk releases, but it probably takes a lawyer to decide if that
license also applies to executables compiled by Debian.

H.460.23/.24 is also covered by a patent, but the GnuGk Project has
obtained a license that explicitly transfers to others compiling GnuGk.
All other H.460 features are not patent encumbered as far as I know.

Regards,
Jan

-- 
Jan Willamowius, Founder of the GNU Gatekeeper Project
EMail  : j...@willamowius.de
Website: http://www.gnugk.org
Support: http://www.willamowius.com/gnugk-support.html

Relaxed Communications GmbH
Frahmredder 91
22393 Hamburg
Geschäftsführer: Jan Willamowius
HRB 125261 (Amtsgericht Hamburg)
USt-IdNr: DE286003584


Naoto SONE wrote:
 Package: gnugk
 Version: 2:3.6-1
 Severity: normal
 
 Dear Maintainer,
 
 debian's gnugk compile option:
 Gatekeeper(GNU) Version(3.6.0) 
 Ext(pthreads=1,radius=1,mysql=1,pgsql=1,firebird=1,odbc=0,sqlite=1,large_fdset=0,crypto/ssl=1,h46018=0,h46023=0,ldap=1,ssh=1,ipv6=0,h235media=0,lua=0,h46017=0,snmp=0,h46026=0)
  H323Plus(1.24.0) PTLib(2.10.10) Build(May 31 2014, 06:43:12) Sys(Linux 
 x86_64 3.16.0-4-amd64)
 
 h46018,h46017,h46023 were disabled.
 
 I tried to build a custom package of gnugk.
 However, I can not enable those options with following errors.
 
 cat: /usr/share/openh323/include/openh323buildopts.h: No such file or 
 directory
 No H.460 support available
 H.460.17 support disabled
 cat: /usr/share/openh323/include/openh323buildopts.h: No such file or 
 directory
 No H.460 support available
 H.460.18 / H.460.19 support disabled
 cat: /usr/share/openh323/include/openh323buildopts.h: No such file or 
 directory
 No H.460 support available
 H.460.23 / H.460.24 support disabled
 
 
 -- System Information:
 Debian Release: 8.1
   APT prefers stable-updates
   APT policy: (500, 'stable-updates'), (500, 'stable')
 Architecture: amd64 (x86_64)
 
 Kernel: Linux 4.0.0-2-amd64 (SMP w/2 CPU cores)
 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
 Shell: /bin/sh linked to /bin/dash
 Init: systemd (via /run/systemd/system)
 
 Versions of packages gnugk depends on:
 ii  adduser  3.113+nmu3
 ii  libc62.19-18
 ii  libexpat12.1.0-6+deb8u1
 ii  libgcc1  1:4.9.2-10
 ii  libh323-1.24.0   1.24.0~dfsg2-1+b1
 ii  libldap-2.4-22.4.40+dfsg-1
 ii  libodbc1 2.3.1-3
 ii  libpt2.10.10 2.10.10~dfsg-4.1
 ii  libsasl2-2   2.1.26.dfsg1-13
 ii  libsdl1.2debian  1.2.15-10+b1
 ii  libssh-4 0.6.3-4
 ii  libssl1.0.0  1.0.1k-3+deb8u1
 ii  libstdc++6   4.9.2-10
 ii  zlib1g   1:1.2.8.dfsg-2+b1
 
 gnugk recommends no packages.
 
 Versions of packages gnugk suggests:
 pn  ekiga  none
 pn  ohphonenone
 pn  ohphone-basic  none
 pn  simph323   none
 
 -- Configuration Files:
 /etc/default/gnugk changed [not included]
 /etc/gatekeeper.ini changed [not included]
 /etc/init.d/gnugk changed [not included]
 
 -- no debconf information


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#798221: gnugk: build logs do not show compiler command-line

2015-09-06 Thread Jan Willamowius
Hi,

the silent build is cause by the Makefile of PTLib that H323Plus and in
turn GnuGk includes.

You can make the build show the command line if update the build script
to call "VERBOSE=1 make" instead of make.

Also, GnuGk doesn't use a C++ Mysql lib. It only uses the C
client header.

Actually, the gnugk executable doesn't depend on any of the database
libraries: The headers are needed in the compile, but the libraries are
loaded dynamically at runtime, so one doesn't need to install all
database libraries, just the one the user wants to use.

Regards,
Jan

-- 
Jan Willamowius, Founder of the GNU Gatekeeper Project
EMail  : j...@willamowius.de
Website: http://www.gnugk.org
Support: http://www.willamowius.com/gnugk-support.html

Relaxed Communications GmbH
Frahmredder 91
22393 Hamburg
Geschäftsführer: Jan Willamowius
HRB 125261 (Amtsgericht Hamburg)
USt-IdNr: DE286003584


Simon McVittie wrote:
> Package: gnugk
> Version: 2:3.6-1
> Severity: normal
> 
> While investigating why gnugk, gnuift and opennebula have Build-Depends
> on libmysql++-dev but no Depends on libmysql++3, I noticed that gnugk
> is built with "silent rules":
> 
> [CC] singleton.cxx
> Processing file manual.sgml
> [CC] job.cxx
> make[3]: Leaving directory '/«PKGBUILDDIR»/docs/manual'
> [CC] yasocket.cxx
> [CC] h323util.cxx
> [CC] Toolkit.cxx
> 
> This makes it impossible to get useful QA information from buildd
> logs such as:
> <https://buildd.debian.org/status/fetch.php?pkg=gnugk=amd64=2%3A3.6-1%2Bb1=1441323361>
> 
> Please make the log show compiler command-lines. For CMake projects,
> you can usually do this by passing -DCMAKE_VERBOSE_MAKEFILE=TRUE
> to cmake (or by passing that to dh_auto_configure after the "--" token),
> or by passing VERBOSE=1 to make.
> 
> S
> 
> 



Bug#853426: Not a compile error with GCC 7.0.1

2017-06-21 Thread Jan Willamowius
I tested with the GCC 7.0.1 and there this eror is only a
warning and the compile goes through correctly.

I think this error shold be downgraded or closed.

Regards,
Jan

-- 
Jan Willamowius, Founder of the GNU Gatekeeper Project
EMail  : j...@willamowius.de
Website: https://www.gnugk.org

Relaxed Communications GmbH
Frahmredder 91
22393 Hamburg
Geschäftsführer: Jan Willamowius
HRB 125261 (Amtsgericht Hamburg)
USt-IdNr: DE286003584



Bug#891510: O: h323plus

2018-06-05 Thread Jan Willamowius
Hi,

the OpenSSL 1.1 issue was resolved a few days ago. Now both GnuGk and
H323Plus work fine with it. Current code from Github works fine on
Debian 9.

Regards,
Jan

-- 
Jan Willamowius, Founder of the GNU Gatekeeper Project
EMail  : j...@willamowius.de
Website: https://www.gnugk.org
Support: https://www.willamowius.com/gnugk-support.html

Relaxed Communications GmbH
Frahmredder 91
22393 Hamburg
Geschäftsführer: Jan Willamowius
HRB 125261 (Amtsgericht Hamburg)
USt-IdNr: DE286003584


Moritz Mühlenhoff wrote:
> On Mon, Feb 26, 2018 at 12:01:35PM +0100, Bernhard Schmidt wrote:
> > Package: wnpp
> > Severity: normal
> > 
> > Hi,
> > 
> > on behalf of the Debian VoIP team I intent to orphan the package
> > h323plus.
> > 
> > It is a reverse dependency of 
> > 
> > - gnugk (orphaned in #891509)
> > - openam (RM requested in #891508)
> > 
> > The version currently in Debian has been released 6 years ago. Upstream
> > still appears to be active.
> > 
> > If there are no takers I intend to RM it from the archive end of March
> > 2018, together with gnugk.  
> 
> Given noone stepped forward and both gnugk and h323plus are currently
> RC-buggy due to a lack of compatibility with OpenSSL 1.1, let's proceed
> with removal of them?
> 
> Cheers,
> Moritz



Bug#891510: Don't remove h323plus

2018-03-05 Thread Jan Willamowius
Hi,

I'm the upstream maintainer for H323Plus.

I maintain Github repositories for H323Plus, PTLib and OpenAM
that all compile fine on Debian and get regular updates:

https://github.com/willamowius/h323plus
https://github.com/willamowius/ptlib
https://github.com/willamowius/openam

I'd be happy to assist somebody familiar with the Debian packaging
system to switch your packages to these repositories and possibly
adapt your compile rules.

All these packages are still in active use by many people and should
remain in Debian.

Regards,
Jan

-- 
Jan Willamowius, Founder of the GNU Gatekeeper Project
EMail  : j...@willamowius.de
Website: https://www.gnugk.org



Bug#891509: Don't remove gnugk

2018-03-05 Thread Jan Willamowius
Hi,

I'm the upstream maintainer for GnuGk and H323Plus.

I maintain Github repositories for GnuGk, H323Plus, PTLib and OpenAM
that all compile fine on Debian and get regular updates:

https://github.com/willamowius/gnugk
https://github.com/willamowius/h323plus
https://github.com/willamowius/ptlib
https://github.com/willamowius/openam

I'd be happy to assist somebody familiar with the Debian packaging
system to switch your packages to these repositories and possibly
adapt your compile rules.

All these packages are still in active use by many people and should
remain in Debian.

Regards,
Jan

-- 
Jan Willamowius, Founder of the GNU Gatekeeper Project
EMail  : j...@willamowius.de
Website: https://www.gnugk.org



Bug#891508: I am maintaining OpenAM

2018-03-05 Thread Jan Willamowius
Hi,

I'm maintaining OpenAM. Please feel free to switch to my Github repository:

https://github.com/willamowius/openam

I'd be happy to assist somebody familiar with the Debian packaging
system to switch your packages to these repositories and possibly
adapt your compile rules.

Regards,
Jan

-- 
Jan Willamowius, Founder of the GNU Gatekeeper Project
EMail  : j...@willamowius.de
Website: https://www.gnugk.org