On Tue, 2009-07-21 at 15:23 +0200, Mirco Babin wrote:
> Hello,
>  
> Craig Ringer has really helped by adjusting the sources for
> compilation with Borland. I thank him for doing that. These sources
> are adjusted in the Trunk section of the SVN. My understanding is the
> Trunk version is the version in development.

Correct.
 
> When is the Trunk version going to be a release candidate ?

There's not really any sort of release process for PoDoFo. Nobody has
enough time to commit to it that we're clear when we'll reach a certain
goal. To a large extent it's driven by code quality (release when things
have stabilised before making large changes), test case results, and
user needs.

> This is because I downloaded the 1087 build, but this breaks in
> PdfStream.cpp because of the pdf_long reorganization. So now I'm stuck
> in the middle of a development cycle with the Borland compilation.

Sorry. I've reverted that - I need to go through and clean up all the
type usage properly then kill off pdf_long when it's no longer used
anywhere.

It'd be helpful if you could build and run this trivial program on
Borland and let me know what it outputs.

#include <iostream>
int main() {
  std::cout << "ptrdiff_t: " << sizeof(ptrdiff_t) << std::endl;
  std::cout << "ull int:   " << sizeof(unsigned long long int) << 
            std::endl;
  std::cout << "ul int:    " << sizeof(unsigned long int) << std::endl;
  std::cout << "u int:     " << sizeof(unsigned int) << std::endl;
  std::cout << "streamoff: " << sizeof(std::streamoff) << std::endl;
  std::cout << "streampos: " << sizeof(std::streampos) << std::endl;
  return 0;
}

(if borland lacks "unsigned long long int" just chop that line).

Also, does borland provide off_t or off64_t ? If so, what size and
signedness are they?

If someone with MSVC6 can do the same that'd be really handy.


-- 
Craig Ringer


------------------------------------------------------------------------------
_______________________________________________
Podofo-users mailing list
Podofo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/podofo-users

Reply via email to