Re: [Monetdb-developers] [Monetdb-checkins] MonetDB5/src/modules/mal Makefile.ag, , 1.103, 1.104 batxml.mx, , 1.14, 1.15
Romulo Goncalves wrote:
Update of /cvsroot/monetdb/MonetDB5/src/modules/mal In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv29918/mal
Modified Files: Makefile.ag batxml.mx Log Message: Initialize variable to resolve problems on windows (32bit with VS) compilation Add a missing lib (lib_xml.lib) to be able to compile batxml.mx
Index: Makefile.ag =================================================================== RCS file: /cvsroot/monetdb/MonetDB5/src/modules/mal/Makefile.ag,v retrieving revision 1.103 retrieving revision 1.104 diff -u -d -r1.103 -r1.104 --- Makefile.ag 21 Aug 2007 20:54:59 -0000 1.103 +++ Makefile.ag 6 Sep 2007 11:04:32 -0000 1.104 @@ -35,7 +35,7 @@ #datacell.mx
HEADERS = h - LIBS = ../../mal/libmal $(MONETDB_LIBS) -lbat -lstream $(MATH_LIBS) \ + LIBS = ../../mal/libmal ../atoms/lib_xml $(MONETDB_LIBS) -lbat -lstream $(MATH_LIBS) \ $(CLIENTS_LIBS) -lMapi \ $(SOCKET_LIBS) $(Z_LIBS) $(BZ_LIBS) \ $(MALLOC_LIBS) $(PTHREAD_LIBS) $(DL_LIBS)
Index: batxml.mx =================================================================== RCS file: /cvsroot/monetdb/MonetDB5/src/modules/mal/batxml.mx,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- batxml.mx 1 Sep 2007 12:11:12 -0000 1.14 +++ batxml.mx 6 Sep 2007 11:04:32 -0000 1.15 @@ -729,7 +729,7 @@ BAT *j, *r, *g, *b, *bn; BUN p,q; int xx; - oid gid,o=0; + oid gid = 0,o=0; int first= 1; str t; str buf= GDKmalloc(BUFSIZ);
------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Monetdb-checkins mailing list Monetdb-checkins@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-checkins
participants (1)
-
Romulo Goncalves