<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to support-requests</title><link>https://sourceforge.net/p/kildclient/support-requests/</link><description>Recent changes to support-requests</description><atom:link href="https://sourceforge.net/p/kildclient/support-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Fri, 22 May 2015 03:24:38 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/kildclient/support-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>#6 SSL Support Missing With GNUTLS Library</title><link>https://sourceforge.net/p/kildclient/support-requests/6/?limit=25#7014</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;This might be enlightening:&lt;br /&gt;
localhost kildclient-3.0.1 # pkg-config --cflags gnutls&lt;/p&gt;
&lt;p&gt;localhost kildclient-3.0.1 # pkg-config --libs gnutls&lt;br /&gt;
-lgnutls &lt;/p&gt;
&lt;p&gt;I don't appear to have any cflags set for gnutls.  The outputs as represented above were in Makefile and src/Makefile.&lt;/p&gt;
&lt;p&gt;However, adding #define HAVE_LIBGNUTLS 1 and recompiling did present the Use SSL option, and I was able to successfully make an SSL connection to a server.  So, that worked!  Given the effort I expended to fix this prior to reaching out, I'll remember to keep on top of any automatic updates that might break it in the future.  Thanks for the help!  :)&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RJ</dc:creator><pubDate>Fri, 22 May 2015 03:24:38 -0000</pubDate><guid>https://sourceforge.netb11c7c9508dc7de891202a1adf0d8fe4b5614fa2</guid></item><item><title>#6 SSL Support Missing With GNUTLS Library</title><link>https://sourceforge.net/p/kildclient/support-requests/6/?limit=25#9451</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Changing that and recompiling should be all that's necessary to enable support. However, since something didn't work right with the configure script, it might not have added the necessary compiler flags to link the library in the Makefile. But you can add them there, on my system they're just&lt;/p&gt;
&lt;p&gt;LIBGNUTLS_CFLAGS = -I/usr/include/p11-kit-1 &lt;br /&gt;
LIBGNUTLS_LIBS = -lgnutls &lt;/p&gt;
&lt;p&gt;(add them to Makefile and src/Makefile). You can get the exact flags necessary with&lt;/p&gt;
&lt;p&gt;pkg-config --cflags gnutls&lt;br /&gt;
pkg-config --libs gnutls&lt;/p&gt;
&lt;p&gt;The disadvantage of the manual edits is that if the configure script is run again they might be overwritten.&lt;/p&gt;
&lt;p&gt;As for why the kcconfig.h file is wrongly generated, I have no idea. But looks like a bug in autoconf or its related programs.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eduardo M Kalinowski</dc:creator><pubDate>Wed, 20 May 2015 22:48:21 -0000</pubDate><guid>https://sourceforge.netc473ee212253b699184a6eca628599f05ee90672</guid></item><item><title>#6 SSL Support Missing With GNUTLS Library</title><link>https://sourceforge.net/p/kildclient/support-requests/6/?limit=25#196c</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Ah-hah!  The contents of that file would verify your conclusion.&lt;br /&gt;
kcconfig.h:&lt;br /&gt;
/&lt;em&gt; Do we have the gnutls library? &lt;/em&gt;/&lt;br /&gt;
/&lt;em&gt; #undef HAVE_LIBGNUTLS &lt;/em&gt;/&lt;/p&gt;
&lt;p&gt;So, despite being detected in configure going by the config.log, and not specifically excluded as a build option, it is not being defined in kcconfig.h, and therefore not being compiled in.&lt;br /&gt;
If I change that line to '#define HAVE_LIBGNUTLS 1' and recompile, is that likely to work?  Or is there a more optimal way for me to go about this?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RJ</dc:creator><pubDate>Wed, 20 May 2015 22:31:12 -0000</pubDate><guid>https://sourceforge.net2f58f9338c18332c1c393e819a605b7803164a04</guid></item><item><title>#6 SSL Support Missing With GNUTLS Library</title><link>https://sourceforge.net/p/kildclient/support-requests/6/?limit=25#ee99</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Check the generated kcconfig.h file to see what it says about HAVE_LIBGNUTLS. Even though your log indicates that it was detected, the behavior you see suggests that it was compiled without SSL support.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eduardo M Kalinowski</dc:creator><pubDate>Wed, 20 May 2015 21:30:05 -0000</pubDate><guid>https://sourceforge.nete853098d2def0bd51d9e7c682442fa54f2461272</guid></item><item><title>SSL Support Missing With GNUTLS Library</title><link>https://sourceforge.net/p/kildclient/support-requests/6/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi!  I'm not sure if this is a bug or not, but I've exhausted every possibility I could think of to check, so I'm reaching out here.&lt;br /&gt;
After compiling Kildclient on my Gentoo Linux system, I initially suspected a build flag issue, as the new/edit world window never offers the checkbox for SSL support.&lt;br /&gt;
I then compiled kildclient-3.0.1 from source, and verified that it is set to build with the GNUTLS extensions.&lt;br /&gt;
The config.log file reports:&lt;br /&gt;
configure:5566: checking for LIBGNUTLS&lt;br /&gt;
configure:5573: $PKG_CONFIG --exists --print-errors "gnutls"&lt;br /&gt;
configure:5576: $? = 0&lt;br /&gt;
configure:5590: $PKG_CONFIG --exists --print-errors "gnutls"&lt;br /&gt;
configure:5593: $? = 0&lt;br /&gt;
configure:5637: result: yes&lt;/p&gt;
&lt;p&gt;Near as I can tell, it is compiling with the gnutls-3.3.10 package I also have installed.  However, the Use SSL checkbox is still missing on my dialog.  If I try to connect to a world using the SSL port, the main window says I'm connected... and nothing else happens.  I do not get the prompt I might otherwise expect from net.c that says SSL support was not compiled in.&lt;/p&gt;
&lt;p&gt;I'd really like to figure out what I'm missing!  Maybe it's something trivial that configure isn't checking for that I'm expected to have and do not?  Please let me know what else I can offer to try to figure this out.&lt;br /&gt;
Thank you!&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RJ</dc:creator><pubDate>Wed, 20 May 2015 05:21:02 -0000</pubDate><guid>https://sourceforge.net05617bd96da5b8d0df9739f23bb46e8ca82e50b5</guid></item><item><title>not sure if this is the right spot or not.</title><link>https://sourceforge.net/p/kildclient/support-requests/5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I am looking for some scripting examples,  I am wanting to make a group of triggers, that will keep track of the amount of money i spend at the slot machine, and the total winnings.&lt;br /&gt;
should be simple enough.   my problem is,  i don't know where to find some examples on how to set and use variables in this client,  so could some one point to a resource please.&lt;/p&gt;
&lt;p&gt;serriaromeo@gmail.com&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sat, 28 Mar 2009 20:47:29 -0000</pubDate><guid>https://sourceforge.netcc813642aee2f6d55c6dfbf49dfcbab0dad5a40d</guid></item><item><title>Problem with KCWin</title><link>https://sourceforge.net/p/kildclient/support-requests/4/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I'm a ex-z/cmud user and am truthfully estatic to finally find a linux client that suits my needs in programability.&lt;/p&gt;
&lt;p&gt;One of the features I wanted to explore was the KCWin plugin, see what it does and how it responds, etc. There's one slight problem though, I can't get it to work.&lt;/p&gt;
&lt;p&gt;I had v2.6 installed, trying to run /KCWin-&amp;gt;new in that version caused a segmentation fault and trashed the active program.&lt;/p&gt;
&lt;p&gt;I pulled in the sources through svn and compiled it, now I get an error and still no window. The errors are below. I didn't think this was a bug but rather a problem on my side of things. Any ideas?&lt;/p&gt;
&lt;p&gt;Perl Warning: Use of uninitialized value in bless at /usr/local/share/kildclient/plugins/KCWin.pl line 72.&lt;br /&gt;
Perl Warning: Explicit blessing to '' (assuming package main) at /usr/local/share/kildclient/plugins/KCWin.pl line 72.&lt;/p&gt;&lt;/div&gt;</description><pubDate>Thu, 22 Jan 2009 09:50:03 -0000</pubDate><guid>https://sourceforge.net2af03ef71db6ab8d72281cffc2030837997fb7d0</guid></item><item><title>Error on run</title><link>https://sourceforge.net/p/kildclient/support-requests/3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;KildClient installed alright, and will start up, but when I try to connect to a server I get the following error:&lt;/p&gt;
&lt;p&gt;Can't locate Locale/gettext.pm in @INC (@INC contains: /usr/local/share/kildclient/ /usr/lib/perl5/5.8.8/i486-linux /usr/lib/perl5/5.8.8 /usr/lib/perl5/site_perl/5.8.8/i486-linux /usr/lib/perl5/site_perl/5.8.8 /usr/lib/perl5/site_perl .) at /usr/local/share/kildclient/kildclient.pl line 14.&lt;br /&gt;
BEGIN failed--compilation aborted at /usr/local/share/kildclient/kildclient.pl line 14.&lt;br /&gt;
Undefined subroutine &amp;amp;main::__sethelpfile called at (eval 1) line 1.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sat, 11 Aug 2007 19:07:51 -0000</pubDate><guid>https://sourceforge.net386158a3a575dad3ce110164e996316e0818bfca</guid></item><item><title>alias files executed via functions defined in kildclient.plx</title><link>https://sourceforge.net/p/kildclient/support-requests/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I have an alias function that will read aliases from a file and execute a set number of lines in a loop, sleep, and repeat.&lt;/p&gt;
&lt;p&gt;Now when I execute one of my aliases within kildclient, it'll pause for about 4 to 5 seconds then send the entire file which results in my connection getting killed by the server.  I never see the sleeps.  When I change the code to and run it from a command line prompt with normal print statements, I actually see the sleeps.  I think the problem or reason I'm seeing what I'm seeing is due to the world-&amp;gt;send function.  On big aliases, the server will kick me out due to the rate at which I'm sending data.  The whole purpose of my code is to chop up huge alias files in to small chucks so the server doesn't kick me out.&lt;/p&gt;
&lt;p&gt;I'm hoping someone has some insite for me.&lt;/p&gt;
&lt;p&gt;:)&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sat, 12 May 2007 23:13:03 -0000</pubDate><guid>https://sourceforge.netef0a7ccba255c51c3a89658338ccd80c75e93c65</guid></item><item><title>alias syntax in a plugin</title><link>https://sourceforge.net/p/kildclient/support-requests/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I'm trying to write an alias that will let me pass a&lt;br /&gt;
parameter to a called subroutine. This is an example&lt;br /&gt;
target subroutine:&lt;/p&gt;
&lt;p&gt;my $targetsub = sub {&lt;br /&gt;
my $target = (@_);&lt;br /&gt;
$::world-&amp;gt;echonl($target);&lt;br /&gt;
return undef;&lt;br /&gt;
};&lt;/p&gt;
&lt;p&gt;I can't have a direct subroutine call in an s/// set,&lt;br /&gt;
but I can use a reference, hence the syntax above.&lt;/p&gt;
&lt;p&gt;This works, when loaded into a plugin:&lt;/p&gt;
&lt;p&gt;$::world-&amp;gt;alias({&lt;br /&gt;
name =&amp;gt; "achaea:tb",&lt;br /&gt;
pattern =&amp;gt; qr/^sen (.+)$/o,&lt;br /&gt;
substitution =&amp;gt; '"sense $1"',&lt;br /&gt;
perleval =&amp;gt; 1,&lt;br /&gt;
});&lt;/p&gt;
&lt;p&gt;This doesn't:&lt;/p&gt;
&lt;p&gt;$::world-&amp;gt;alias({&lt;br /&gt;
name =&amp;gt; "achaea:tar",&lt;br /&gt;
pattern =&amp;gt; qr/^tar (.+)$/o,&lt;br /&gt;
substitution =&amp;gt; qr/&amp;amp;$targetsub($1)/xo,&lt;br /&gt;
perleval =&amp;gt; 1,&lt;br /&gt;
});&lt;/p&gt;
&lt;p&gt;But this does:&lt;/p&gt;
&lt;p&gt;$::world-&amp;gt;alias({&lt;br /&gt;
name =&amp;gt; "achaea:tar",&lt;br /&gt;
pattern =&amp;gt; qr/^tar (.+)$/o,&lt;br /&gt;
substitution =&amp;gt; qr/&amp;amp;$targetsub()/xo,&lt;br /&gt;
perleval =&amp;gt; 1,&lt;br /&gt;
});&lt;/p&gt;
&lt;p&gt;I'm not certain why. The syntax above that doesn't work&lt;br /&gt;
in kildclient does work on the command line:&lt;/p&gt;
&lt;p&gt;perl -we 'my $xxx = sub { print "this is $_[0] xxx&lt;br /&gt;
sub\n"}; my $text = "tb xyz"; $text =~ s/tb&lt;br /&gt;
(.+)/&amp;amp;$xxx($1)/e'&lt;/p&gt;
&lt;p&gt;(Of course, can't 'use strict' or it will break.)&lt;/p&gt;
&lt;p&gt;Is there a way to use a subroutine as the action for an&lt;br /&gt;
alias? If not, perhaps I'll make a feature request.&lt;/p&gt;
&lt;p&gt;I can't code in C++, but I'm willing to offer other help.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Wulfen</dc:creator><pubDate>Fri, 22 Sep 2006 20:34:18 -0000</pubDate><guid>https://sourceforge.net77db45f2c4da18ec6aa0f8a24fd10b0405f6c986</guid></item></channel></rss>