From: John Maddock (John_Maddock_at_[hidden])
Date: 2001-01-20 07:28:08


> Anyone can help me compile this?

I tried this with mingw32 + STLPort and see similar problems; it appears to
not like the line:

      std::string out_name(std::string(argv[i]) + std::string(".htm"));

Try replacing this with:

      std::string out_name(argv[i]);
      out_name.append(".htm");

I'm not sure why STLPort has problems with this, it should be OK I think...

- John Maddock
http://ourworld.compuserve.com/homepages/john_maddock/