Search found 7644 matches

by hugbug
21 May 2009, 20:44
Forum: Support
Topic: OS/2: Failed with configure
Replies: 31
Views: 11472

Re: Failed with configure

Looks like configure completed without errors now or have I missed something?
by hugbug
21 May 2009, 18:26
Forum: Support
Topic: OS/2: Failed with configure
Replies: 31
Views: 11472

Re: Failed with configure

Those lines are the last check for libxml2. Are you sure about removing them and rebuilding configure (with autoconf)?

Please post your config.log every time.
by hugbug
21 May 2009, 18:02
Forum: Support
Topic: OS/2: Failed with configure
Replies: 31
Views: 11472

Re: Failed with configure

What lib is it looking for ? libxml2.so Try configure parameter "--with-libxml2-libraries" or remove the following lines from configure.ac: AC_SEARCH_LIBS([xmlNewNode], [xml2], , AC_MSG_ERROR("libxml2 library not found")) I recommend also to use configure options "--disable-curses --disable-parchec...
by hugbug
21 May 2009, 12:38
Forum: Support
Topic: OS/2: Failed with configure
Replies: 31
Views: 11472

Re: Failed with configure

May be it can't find "time.h" or uses a different "time.h" if there are more than one version on disk.
Please post config.log, it contains more info about the error.
by hugbug
21 May 2009, 11:05
Forum: Support
Topic: Unified handling of download queue, post queue and history
Replies: 1
Views: 1410

Re: Unified handling of download queue, post queue and history

Good proposal, but there are some problems, which must be solved. I'll explain few internal details. 1. Download queue and post-processor queue are managed by two different modules. The queues contain different objects. Moreover, one nzb-file in download queue can produce more than one post-process ...
by hugbug
21 May 2009, 10:08
Forum: Support
Topic: OS/2: Failed with configure
Replies: 31
Views: 11472

Re: Failed with configure

AFAIK OS/2 is not a POSIX compliant OS. Function "ctime_r" must be included in time.h . You can try to remove the check for "ctime_r" from "configure.ac" (then use "autoconf" to rebuild the configure-script), but the check for "ctime_r" is one of the first checks in configure-script. You will probab...
by hugbug
20 May 2009, 17:49
Forum: Support
Topic: nzbget xmlrpc append problem...
Replies: 11
Views: 5711

Re: nzbget xmlrpc append problem...

manage the download list (if/when the rpc api supports it) That's supported. Use method editqueue with commands "GroupMoveOffset", "GroupPause", etc. editing the server configuration (if/when the rpc api supports it) That's not supported. I'll think about it, but it requires a significant rework fo...
by hugbug
18 May 2009, 22:43
Forum: Support
Topic: Problem adding nzb to queue
Replies: 7
Views: 4509

Re: Problem adding nzb to queue

Improved error reporting in svn-revision 319. Please try it.
See [HOW-TO] Build the latest development version from svn.

Hope it will print something.
by hugbug
18 May 2009, 17:19
Forum: Support
Topic: Problem adding nzb to queue
Replies: 7
Views: 4509

Re: Problem adding nzb to queue

There are three modes: standalone mode: "nzbget myfile.nzb" console server mode: "nzbget -s", the server monitors files in nzb-folder; daemon mode: "nzbget -D", the server monitors files in nzb-folder; What I was asking, if the files are correctly processed from monitoring folder in a second mode. I...