MaXML Rebuild

BlitzMax Forums/BlitzMax Programming/MaXML Rebuild

jamesmintram(Posted 2007) [#1]
Hi I am trying to get MaXML to work under Linux, I downloaded it placed it in the correct folder and did a rebuild modules which went fine.

If I check the pub.maxml folder there are no new files created and the I get this error when trying to run one of the examples:

Compile Error: Can't find interface for module 'pub.maxml'

Any help would be appreciated,

Thanks


SebHoll(Posted 2007) [#2]
I had this problem under Linux - it stems from that fact that the Linux file system is typically case sensitive, therefore, all the files, folders and references need to be the same case.

The easiest way I did this for Pub.MaXML was to convert all the file and folder names to lowercase, and then open up the BlitzMax/mod/pub.mod/maxml.mod/maxml.bmx file, and change:

Module Pub.MaXML
to
Module pub.maxml
Try rebuilding modules again, and hopefully the module should be compiled.


jamesmintram(Posted 2007) [#3]
Thank you, it worked a treat!