Displaying 3 results from an estimated 3 matches for "xmlisblanknode".
2004 Aug 06
1
Icecast2: undefined reference to `xmlDocGetRootElement'
...t from Geoff Shang.
./autogen.sh works fine but I get the following errors after make...
config.o: In function `config_parse_file':
config.o(.text+0x122): undefined reference to `xmlDocGetRootElement'
config.o: In function `_parse_root':
config.o(.text+0x313): undefined reference to `xmlIsBlankNode'
config.o: In function `_parse_limits':
config.o(.text+0x565): undefined reference to `xmlIsBlankNode'
config.o: In function `_parse_directory':
config.o(.text+0x6f7): undefined reference to `xmlIsBlankNode'
config.o: In function `_parse_paths':
config.o(.text+0x7a2): undefi...
2004 Aug 06
1
[PATCH] IceCast2 - aliasing (reimplementation of the patch I posted earlier)
...uration->mounts = mount;
mount->max_listeners = -1;
+ mount->next = NULL;
do {
if (node == NULL) break;
@@ -474,6 +486,8 @@
else
configuration->relay = relay;
+ relay->next = NULL;
+
do {
if (node == NULL) break;
if (xmlIsBlankNode(node)) continue;
@@ -606,6 +620,9 @@
static void _parse_paths(xmlDocPtr doc, xmlNodePtr node,
ice_config_t *configuration)
{
+ char *temp;
+ aliases *alias, *current, *last;
+
do {
if (node == NULL) break;
if (xmlIsBlankNode(node)) continue;
@@ -621,7 +638,39...
2004 Aug 06
6
[PATCH] Icecast2 - chroot, setuid/gid...
Hi all again...
I did a chroot patch with ability to change uid and gid.
I dunno if you all approve with the current implementation but the patch
is small and it works here.
remember to CC, since i'm not on this ml...
//Ian Kumlien
PS. To anyone on vorbis-dev, I'm *REALLY* sorry must be tired or something.. =)
DS.
<p><p><p>
-------------- next part --------------
A