When compiling with -pedantic, gcc complains: util/neo_err.h:75:25: warning: ISO C does not permit named variadic macros util/neo_err.h:89:31: warning: ISO C...
As Splint isn't able to parse macros with (...) parameters, it's even better to add defined (S_SPLINT_S) like this: #if defined (__STDC_VERSION__) &&...
... Hash: SHA1 Hi all, I'm having with the RPM package on Fedora, but I've tried hand-compiling it on the same system and it gives the same message. It's when...
Hmm, is it somehow not linking in the libneo_utl library into the .so? Brandon ... -- "He felt that his whole life was some kind of dream and he sometimes ...
Just in case someone needs this patch and wasn't subscribed to yahoo groups at the time of writing, I'm resending it in the body (yahoo groups won't store an...
Hi all: I am trying to compile manhattan virtual classroom but have a little problems when doing a test on ClearSilver. ~/Desktop/manhat-3.2.0/src$ make...
I'm at least partially confused here... clearsilver doesn't have a libneo library. This article implies that you should add -fno-stack-protector to the ...
Hi, I have an hdf tree and I want to traverse it and only show every two first childs of every node (and not more childs). how can I do this? (in a template) ...
There's no way to "break" out of an each/loop in ClearSilver. You can loop through everything and only choose to show the first two (maintaining a counter),...
... If the children are numbered, i.e. menu.recentmsgs.0.subject = "What's up" menu.recentmsgs.0.body = "Hey man, what's going on" menu.recentmsgs.1.subject =...
Hello, all Today I have finished several hours long hunting of a very unpleasant bug which appeared only on the target platform, which had practically no ...
Sorry for the late response, I was hoping to get to this much sooner. This looks fine with me, it'll be in 0.10.5 which I hope to get out this week... Brandon ...
Cool, yeah. I've made the change, and added it to the various other printf style functions, and caught a couple other minor things. It'll be in the next...
I'll try to get bugfix releases out more often. Thanks to everyone both inside of Google and out who contributed to this release. As always, available from...
Hi people, Just tried to compile the 0.10.5 package on an Athlon-XP under Fedora 7 (glibc 2.6.3, kernel 2.6.21-1.3228); all went fine until the C# tests: ...
... /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/ClearSilver/ClearSilver.so ... I thought about this a bit more and realised that this wasn't...
... Yes, actually. I've worked it out - quite simple really. For some reason an old and/or outdated version of the ClearSilver.so library was being put in...
Line 164 of 'cgi/html.c', there is: parts = (struct _parts *) realloc (parts, sizeof(struct _parts) * part_count); Couldn't this be a potential memory leak in...
Yes, that would be a memory leak if the realloc fails. Its also not the only case of this in the code. If people think its worth fixing, ok. Brandon ... -- ...
Anything that returns a NEOERR is allocating memory on error. You must check the return value and call one of the methods to free the data, usually one of: ...
Makes sense. Brandon ... -- "Being intelligent is not a felony. But most societies evaluate it as being at least a misdemeanor." -- Robert A. Heinlein ...
Hello, I'm having trouble compiling clearsilver on i386 FreeBSD. What can I do to fix the pthread errors I'm seeing? Also, is this line of the ./configure...
Is this the latest version? Much older versions used to use a FreeList for NEOERR's instead of always allocating new ones... but that still seems odd. Hmm,...