>
> On Thu, 2009-07-16 at 09:46 +0200, Mirco Babin wrote:
> > Hello,
> >
> > When compiling PoDoFo with Borland (nowadays Codegear) the following
> > 25 adjustments have to be made:
>
> If you're using a legacy compiler, it'd be really helpful if you could
> minimise the maintenance work required to keep it working in trunk by
> sending patches friendly to modern compilers too. Appropriate
> conditional compilation guards etc will do the job.
>
> I've applied many of these changes in svn trunk, and added a new
> PdfCompilerCompat.h header that tries to isolate as much of the uglyness
> as possible. Can you please re-test with current trunk and let me know
> what else, if anything, needs changing?
>
> You'll need to update your code to use svn trunk instead of 0.7.0. I
> will not make these changes in the 0.7.0 branch.
>
> Note that you will now have to add $SRCDIR/podofo/compilercompat/borland
> to your header search path. If you can send me your CMakeCache.txt I may
> be able to get CMake to do this for you automatically when it detects
> Borland.
I don't know how these sources should be downloaded. I'm not familiair with
SVN. Is it possible to provide the sources in a tar or gzip or something
like that ?
>
> > 9) Build PoDoFo
> > md PoDoFo-dll
> > cd PoDoFo-dll
> > cmake -G "Borland Makefiles" ..\podofo
> > -DCMAKE_INCLUDE_PATH=..\zlib;..\jpeg;..\freetype\include
> > -DCMAKE_LIBRARY_PATH=..\zlib;..\jpeg;..\freetype\objs
> > -DPODOFO_BUILD_SHARED=TRUE
> > 9.01) Edit PdfVariant.h (error: call to undefined function floor)
> > Replace #include <cmath> with #include <math.h>
>
> Your compiler is broken.
>
> The C++ standard specifies <cmath> as the standard header. <math.h> is
> supported as a backward compatibility kludge.
>
> I'll add includes/compat/borland with dummy headers for this compiler.
>
> It would be really helpful if you could send me your CMakeCache.txt so I
> can see how to detect bcc and add the include path.
I have attached CMakeCache.txt to this message.
> > Replace "_stricmp" with "stricmp"
>
> You must be using an old Borland compiler. MS has been doing the
> underscore-prefixing of function names since ... forever.
>
> I've added a compat wrapper for case insensitive compare in the new
> header file PdfCompilerCompat.h, where I've just moved most of the
> compiler compatibility uglyness.
>
> Please add an appropriate clause for Borland if the existing tests don't
> work.
>
> > Comment out in the MD5 part: //#include <sys/types.h>
>
> I presume you mean that Borland doesn't have sys/types.h ?
>
> If you leave the MD5 part enabled but comment out the include of
> sys/types.h, what breaks? Can you provide error messages? Is there an
> appropriate alternative header you can use (which we can add to
> PdfCompilerCompat.h) ?
Boland does have sys/types.h
> > 9.09) Edit PdfField.cpp
> > void PdfCheckBox::SetChecked( bool bChecked )
> > {
> > m_pObject->GetDictionary().AddKey( PdfName("V"), (bChecked ?
> > PdfName("Yes") : PdfName("Off")) );
> > m_pObject->GetDictionary().AddKey( PdfName("AS"),
> > (bChecked ? PdfName("Yes") : PdfName("Off")) );
> > }
>
> What've you changed? Why?
I added additional ( ) around "bChecked ? PdfName("Yes"): PdfName("Off")".
Otherwise Borland won't recognize the '?' ':' construction.
>
> > Replace "__FUNCTION__" with "__FUNC__"
>
> Compat wrapper PODOFO__FUNCTION__ added. Please add your own clause to
> PdfCompilerCompat that checks for the Borland compiler.
Ok
> > "#ifdef _MSC_VER" is used in stead of "#ifdef _WIN32"
>
> Often correctly, eg for _prefixed names.
>
> > The _stricmp and _strnicmp functions should be strcmp and strnicmp
>
> No, they shouldn't. The canonical win32 names are "_stricmp" and
> "_strnicmp" according to MSDN and MSVC. Compat wrappers can be added for
> Borland since it's relatively non-intrusive.
>
> > 7) The "floor" function is defined in math.h (and not <cmath>)
>
> I suspect Borland's compiler of being broken here. Please add a
> directive to PdfCompilerCompat.h that tests for Borland and includes
> "math.h".
>
I think you are right, I was surprised when I looked into the cmath borland
header the "floor" function was missing.
> > I hope this can be fixed.
>
> It should be. It'd be REALLY helpful, in future, if you'd think about
> your changes in terms of _all_ platforms/compilers not just "hack it to
> work with Borland". It makes it much harder for me / dom to merge the
> changes you need if we have to fix them all up so they won't break
> everything else.
My message wasn't meant as a hack, it was meant to provide information about
Borland compilation and at what points it did fail. I wasn't aware that I
was suppose to provide suggestions for a solution. Next time I will try to
provide a solution. You now have introduced the PdfCompilerCompat.h. If can
get the new sources, I can try to compile again.
(I downloaded the 0.7.0 version as one zipfile, if possible it would be very
helpfull when I can download the new sources again as one zipfile.)
Regards,
Mirco
# This is the CMakeCache file.
# For build in directory: c:/a/open/PoDoFo/PoDoFo-dll
# It was generated by CMake: C:/Program Files (x86)/CMake 2.6/bin/cmake.exe
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUI's for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.
########################
# EXTERNAL cache entries
########################
//Path to a program.
CMAKE_AR:FILEPATH=C:/MinGW/bin/ar.exe
//Choose the type of build, options are: Debug Release RelWithDebInfo
// MinSizeRel.
CMAKE_BUILD_TYPE:STRING=Debug
//Enable/Disable color output during build.
CMAKE_COLOR_MAKEFILE:BOOL=ON
//CXX compiler.
CMAKE_CXX_COMPILER:FILEPATH=C:/Program Files (x86)/CodeGear/RAD
Studio/5.0/bin/bcc32.exe
//Flags used by the compiler during all build types.
CMAKE_CXX_FLAGS:STRING= -tWM
//Flags used by the compiler during debug builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-Od -v
//Flags used by the compiler during release minsize builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-O1 -DNDEBUG
//Flags used by the compiler during release builds (/MD /Ob1 /Oi
// /Ot /Oy /Gs will produce slightly less optimized but smaller
// files).
CMAKE_CXX_FLAGS_RELEASE:STRING=-O2 -DNDEBUG
//Flags used by the compiler during Release with Debug Info builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-Od
//Libraries linked by defalut with all C++ applications.
CMAKE_CXX_STANDARD_LIBRARIES:STRING=import32.lib
//C compiler.
CMAKE_C_COMPILER:FILEPATH=C:/Program Files (x86)/CodeGear/RAD
Studio/5.0/bin/bcc32.exe
//Flags used by the compiler during all build types.
CMAKE_C_FLAGS:STRING= -tWM
//Flags used by the compiler during debug builds.
CMAKE_C_FLAGS_DEBUG:STRING=-Od -v
//Flags used by the compiler during release minsize builds.
CMAKE_C_FLAGS_MINSIZEREL:STRING=-O1 -DNDEBUG
//Flags used by the compiler during release builds (/MD /Ob1 /Oi
// /Ot /Oy /Gs will produce slightly less optimized but smaller
// files).
CMAKE_C_FLAGS_RELEASE:STRING=-O2 -DNDEBUG
//Flags used by the compiler during Release with Debug Info builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-Od
//Libraries linked by defalut with all C applications.
CMAKE_C_STANDARD_LIBRARIES:STRING=import32.lib
//Flags used by the linker.
CMAKE_EXE_LINKER_FLAGS:STRING='-tWM -lS:10000000 -lSc:10000000 '
//Flags used by the linker during debug builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=-v
//Flags used by the linker during release minsize builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during release builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during Release with Debug Info builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=-v
//No help, variable specified on the command line.
CMAKE_INCLUDE_PATH:UNINITIALIZED=..\zlib;..\jpeg;..\freetype\include;..\pthreads
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/PoDoFo
//No help, variable specified on the command line.
CMAKE_LIBRARY_PATH:UNINITIALIZED=..\zlib;..\jpeg;..\freetype\objs;..\threads
//Path to a program.
CMAKE_LINKER:FILEPATH=C:/MinGW/bin/ld.exe
//Program used to build from makefiles.
CMAKE_MAKE_PROGRAM:STRING=make
//Flags used by the linker during the creation of modules.
CMAKE_MODULE_LINKER_FLAGS:STRING='-tWM -lS:10000000 -lSc:10000000 '
//Flags used by the linker during debug builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=-v
//Flags used by the linker during release minsize builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during release builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during Release with Debug Info builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=-v
//Path to a program.
CMAKE_NM:FILEPATH=C:/MinGW/bin/nm.exe
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=C:/MinGW/bin/objcopy.exe
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=C:/MinGW/bin/objdump.exe
//Path to a program.
CMAKE_PKGCONFIG_EXECUTABLE:FILEPATH=CMAKE_PKGCONFIG_EXECUTABLE-NOTFOUND
//Path to a program.
CMAKE_RANLIB:FILEPATH=C:/MinGW/bin/ranlib.exe
//Flags used by the linker during the creation of dll's.
CMAKE_SHARED_LINKER_FLAGS:STRING='-tWM -lS:10000000 -lSc:10000000 '
//Flags used by the linker during debug builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=-v
//Flags used by the linker during release minsize builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during release builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during Release with Debug Info builds.
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=-v
//If set, runtime paths are not added when using shared libraries.
CMAKE_SKIP_RPATH:BOOL=NO
//Path to a program.
CMAKE_STRIP:FILEPATH=C:/MinGW/bin/strip.exe
//If true, cmake will use relative paths in makefiles and projects.
CMAKE_USE_RELATIVE_PATHS:BOOL=OFF
//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make. This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//Path to a file.
CPPUNIT_CFLAGS:PATH=CPPUNIT_CFLAGS-NOTFOUND
//Path to a program.
CPPUNIT_CONFIG_EXECUTABLE:FILEPATH=CPPUNIT_CONFIG_EXECUTABLE-NOTFOUND
//Path to a library.
CPPUNIT_LIBRARIES:FILEPATH=CPPUNIT_LIBRARIES-NOTFOUND
//Not found cppunit library
CppUnit_FOUND:BOOL=FALSE
//Path to a file.
FONTCONFIG_INCLUDE_DIR:PATH=FONTCONFIG_INCLUDE_DIR-NOTFOUND
//Path to a library.
FONTCONFIG_LIBRARIES:FILEPATH=FONTCONFIG_LIBRARIES-NOTFOUND
//Path to a file.
FREETYPE_INCLUDE_DIR_FT2BUILD:PATH=C:/a/open/PoDoFo/freetype/include
//Path to a file.
FREETYPE_INCLUDE_DIR_FTHEADER:PATH=C:/a/open/PoDoFo/freetype/include
//Path to a library.
FREETYPE_LIBRARY_DEBUG:FILEPATH=FREETYPE_LIBRARY_DEBUG-NOTFOUND
//Path to a library.
FREETYPE_LIBRARY_RELEASE:FILEPATH=C:/a/open/PoDoFo/freetype/objs/freetype.lib
//Path to a file.
LIBJPEG_INCLUDE_DIR:PATH=C:/a/open/PoDoFo/jpeg
//Path to a library.
LIBJPEG_LIBRARY_DEBUG:FILEPATH=LIBJPEG_LIBRARY_DEBUG-NOTFOUND
//Path to a library.
LIBJPEG_LIBRARY_RELEASE:FILEPATH=C:/a/open/PoDoFo/jpeg/libjpeg.lib
//Was libstlport found?
LIBSTLPORT_FOUND:STRING=FALSE
//Path to a file.
LIBSTLPORT_INCLUDE_DIR:PATH=LIBSTLPORT_INCLUDE_DIR-NOTFOUND
//Path to a library.
LIBSTLPORT_LIBRARY:FILEPATH=LIBSTLPORT_LIBRARY-NOTFOUND
//Path to a file.
LUA_INCLUDE_DIR:PATH=LUA_INCLUDE_DIR-NOTFOUND
//Path to a library.
LUA_LIBRARY:FILEPATH=LUA_LIBRARY-NOTFOUND
//Path to a file.
OPENSSL_INCLUDE_DIR:PATH=OPENSSL_INCLUDE_DIR-NOTFOUND
//Path to a library.
OPENSSL_LIBRARIES:FILEPATH=OPENSSL_LIBRARIES-NOTFOUND
//Path to a program.
PKGCONFIG_EXECUTABLE:FILEPATH=PKGCONFIG_EXECUTABLE-NOTFOUND
//No help, variable specified on the command line.
PODOFO_BUILD_SHARED:UNINITIALIZED=TRUE
//Value Computed by CMake
PoDoFo_BINARY_DIR:STATIC=C:/a/open/PoDoFo/PoDoFo-dll
//Value Computed by CMake
PoDoFo_SOURCE_DIR:STATIC=C:/a/open/PoDoFo/podofo
//Path to a file.
TIFF_INCLUDE_DIR:PATH=TIFF_INCLUDE_DIR-NOTFOUND
//Path to a library.
TIFF_LIBRARY_DEBUG:FILEPATH=TIFF_LIBRARY_DEBUG-NOTFOUND
//Path to a library.
TIFF_LIBRARY_RELEASE:FILEPATH=TIFF_LIBRARY_RELEASE-NOTFOUND
//Path to a file.
ZLIB_INCLUDE_DIR:PATH=C:/a/open/PoDoFo/zlib
//Path to a library.
ZLIB_LIBRARY_DEBUG:FILEPATH=ZLIB_LIBRARY_DEBUG-NOTFOUND
//Path to a library.
ZLIB_LIBRARY_RELEASE:FILEPATH=C:/a/open/PoDoFo/zlib/zlib.lib
//Dependencies for the target
podofo_shared_LIB_DEPENDS:STATIC=general;C:/a/open/PoDoFo/zlib/zlib.lib;general;C:/a/open/PoDoFo/freetype/objs/freetype.lib;general;C:/a/open/PoDoFo/jpeg/libjpeg.lib;general;kernel32;general;user32;general;gdi32;general;winspool;general;comdlg32;general;advapi32;general;shell32;general;ole32;general;oleaut32;general;uuid;general;WS2_32;
########################
# INTERNAL cache entries
########################
//Advanced flag for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_BUILD_TOOL
CMAKE_BUILD_TOOL-ADVANCED:INTERNAL=1
//What is the target build tool cmake is generating for.
CMAKE_BUILD_TOOL:INTERNAL=make
//This is the directory where this CMakeCahe.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=c:/a/open/PoDoFo/PoDoFo-dll
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=2
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=6
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_RELEASE_VERSION:INTERNAL=patch 4
//Advanced flag for variable: CMAKE_COLOR_MAKEFILE
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=C:/Program Files (x86)/CMake 2.6/bin/cmake.exe
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=C:/Program Files (x86)/CMake 2.6/bin/cpack.exe
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=C:/Program Files (x86)/CMake 2.6/bin/ctest.exe
//Advanced flag for variable: CMAKE_CXX_COMPILER
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
CMAKE_CXX_COMPILER_WORKS:INTERNAL=1
//Advanced flag for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_CXX_STANDARD_LIBRARIES
CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_C_COMPILER
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
CMAKE_C_COMPILER_WORKS:INTERNAL=1
//Advanced flag for variable: CMAKE_C_FLAGS
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_C_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_C_STANDARD_LIBRARIES
CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
//Result of TRY_COMPILE
CMAKE_DETERMINE_CXX_ABI_COMPILED:INTERNAL=TRUE
//Result of TRY_COMPILE
CMAKE_DETERMINE_C_ABI_COMPILED:INTERNAL=TRUE
//Path to cache edit program executable.
CMAKE_EDIT_COMMAND:INTERNAL=C:/Program Files (x86)/CMake 2.6/bin/CMakeSetup.exe
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown
//Advanced flag for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Borland Makefiles
//Have includes CMAKE_HAVE_PTHREAD_H
CMAKE_HAVE_PTHREAD_H:INTERNAL=
//Start directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=C:/a/open/PoDoFo/podofo
//Advanced flag for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_MAKE_PROGRAM
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_LOCAL_GENERATORS:INTERNAL=26
//Advanced flag for variable: CMAKE_OBJCOPY
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_PKGCONFIG_EXECUTABLE
CMAKE_PKGCONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=C:/Program Files (x86)/CMake 2.6/share/cmake-2.6
//Advanced flag for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Result of CHECK_TYPE_SIZE
CMAKE_SIZEOF_UNSIGNED_SHORT:INTERNAL=2
//Advanced flag for variable: CMAKE_SKIP_RPATH
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_USE_RELATIVE_PATHS
CMAKE_USE_RELATIVE_PATHS-ADVANCED:INTERNAL=1
//Advanced flag for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//Advanced flag for variable: CPPUNIT_LIBRARIES
CPPUNIT_LIBRARIES-ADVANCED:INTERNAL=1
//Details about finding LIBJPEG
FIND_PACKAGE_MESSAGE_DETAILS_LIBJPEG:INTERNAL=[C:/a/open/PoDoFo/jpeg/libjpeg.lib][C:/a/open/PoDoFo/jpeg]
//Details about finding Threads
FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE]
//Details about finding ZLIB
FIND_PACKAGE_MESSAGE_DETAILS_ZLIB:INTERNAL=[C:/a/open/PoDoFo/zlib/zlib.lib][C:/a/open/PoDoFo/zlib]
//Advanced flag for variable: FONTCONFIG_INCLUDE_DIR
FONTCONFIG_INCLUDE_DIR-ADVANCED:INTERNAL=1
//Advanced flag for variable: FONTCONFIG_LIBRARIES
FONTCONFIG_LIBRARIES-ADVANCED:INTERNAL=1
//Result of TRY_COMPILE
HAVE_CMAKE_SIZEOF_UNSIGNED_SHORT:INTERNAL=TRUE
//Have include stddef.h
HAVE_STDDEF_H:INTERNAL=1
//Have include stdint.h
HAVE_STDINT_H:INTERNAL=1
//Have include sys/types.h
HAVE_SYS_TYPES_H:INTERNAL=1
//Result of TRY_COMPILE
HAVE_TEST_BIG:INTERNAL=TRUE
//Advanced flag for variable: LIBJPEG_INCLUDE_DIR
LIBJPEG_INCLUDE_DIR-ADVANCED:INTERNAL=1
//Advanced flag for variable: LUA_INCLUDE_DIR
LUA_INCLUDE_DIR-ADVANCED:INTERNAL=1
//Advanced flag for variable: LUA_LIBRARY
LUA_LIBRARY-ADVANCED:INTERNAL=1
//Advanced flag for variable: OPENSSL_INCLUDE_DIR
OPENSSL_INCLUDE_DIR-ADVANCED:INTERNAL=1
//Advanced flag for variable: OPENSSL_LIBRARIES
OPENSSL_LIBRARIES-ADVANCED:INTERNAL=1
//Advanced flag for variable: PKGCONFIG_EXECUTABLE
PKGCONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
//Extra flags required when linking to PoDoFo
PODOFO_CFLAGS:INTERNAL=-DUSING_SHARED_PODOFO
//Which PoDoFo library variant to depend on
PODOFO_DEPEND_TARGET:INTERNAL=podofo_shared
//Result of TEST_BIG_ENDIAN
TEST_BIG:INTERNAL=0
//True if PoDoFo should be built with fontconfig support
WANT_FONTCONFIG:INTERNAL=FALSE
//Advanced flag for variable: ZLIB_INCLUDE_DIR
ZLIB_INCLUDE_DIR-ADVANCED:INTERNAL=1
------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge
This is your chance to win up to $100,000 in prizes! For a limited time,
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Podofo-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/podofo-users