[gq-commit] gq/src xmlparse.c,1.5,1.6
Status: Beta
Brought to you by:
sur5r
From: <sta...@us...> - 2003-10-09 05:19:43
|
Update of /cvsroot/gqclient/gq/src In directory sc8-pr-cvs1:/tmp/cvs-serv6137 Modified Files: xmlparse.c Log Message: * Fixed a wrong conditional compilation: libxml2 does not have to correlate with gtk2. This is what we have HAVE_LIBXML2 for Index: xmlparse.c =================================================================== RCS file: /cvsroot/gqclient/gq/src/xmlparse.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** xmlparse.c 5 Oct 2003 22:19:09 -0000 1.5 --- xmlparse.c 9 Oct 2003 05:19:39 -0000 1.6 *************** *** 279,283 **** } ! #if GTK_MAJOR >= 2 static int inputReadCallback(FILE *context, char *buffer, --- 279,283 ---- } ! #ifdef HAVE_LIBXML2 static int inputReadCallback(FILE *context, char *buffer, *************** *** 316,320 **** int rc; int handler_is_local = 0; ! #if GTK_MAJOR >= 2 FILE *fp; #endif --- 316,320 ---- int rc; int handler_is_local = 0; ! #ifdef HAVE_LIBXML2 FILE *fp; #endif |