From: <car...@us...> - 2012-03-21 00:41:32
|
Revision: 9987 http://octave.svn.sourceforge.net/octave/?rev=9987&view=rev Author: carandraug Date: 2012-03-21 00:41:25 +0000 (Wed, 21 Mar 2012) Log Message: ----------- io: do not use Wall to compile functions. We know it issues warnings but there's no one to fix them Modified Paths: -------------- trunk/octave-forge/main/io/src/Makefile Modified: trunk/octave-forge/main/io/src/Makefile =================================================================== --- trunk/octave-forge/main/io/src/Makefile 2012-03-21 00:26:22 UTC (rev 9986) +++ trunk/octave-forge/main/io/src/Makefile 2012-03-21 00:41:25 UTC (rev 9987) @@ -1,6 +1,18 @@ all: csvexplode.oct csv2cell.oct csvconcat.oct cell2csv.oct xmlread.oct -MKOCTFILE = mkoctfile -Wall +## Compiling these function does produces warnings but seems there is no one +## to fix them so we do not enable Wall. Just for reference, here they are +## xmltree_read.l: In function ‘xml_lex’: +## xmltree_read.l:407: warning: operation on ‘pcdata’ may be undefined +## xmltree_read.l:492: warning: operation on ‘pcdata’ may be undefined +## xmltree_read.l:627: warning: operation on ‘pcdata’ may be undefined +## xmltree_read.l:673: warning: operation on ‘pcdata’ may be undefined +## xmltree_read.l:726: warning: operation on ‘pcdata’ may be undefined +## xmltree_read.act: At top level: +## xmltree_read.l:150: warning: ‘bufferliteral’ defined but not used +## xmltree_read.l:1221: warning: ‘input’ defined but not used +#MKOCTFILE = mkoctfile -Wall +MKOCTFILE = mkoctfile ifdef FLEXML # flexml is a dead project. It requires flex 2.5.4a-6 (flex-old on Debian). This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |