diff options
120 files changed, 34527 insertions, 20 deletions
diff --git a/src/settings.js b/src/settings.js index 38e75baa..b5be8d3d 100644 --- a/src/settings.js +++ b/src/settings.js @@ -71,6 +71,7 @@ SHOW_LABELS = 0; // Show labels in the generated code DEBUG_TAGS_SHOWING = []; // Some useful items: // framework + // frameworkLines // gconst // types // vars diff --git a/tests/openjpeg/CHANGES b/tests/openjpeg/CHANGES new file mode 100644 index 00000000..18a1c989 --- /dev/null +++ b/tests/openjpeg/CHANGES @@ -0,0 +1,817 @@ +What's New for OpenJPEG + +* : fixed +- : removed +! : changed ++ : added + +January 2, 2011 +* [antonin] bug fixes to enable cmake compilation on WIN32 platform + - fixed getopt bug in jpwl/CMakeLists.txt + - added png, zlib and lcms win32 libraries to libs directory + - updated libs/libtiff library + - moved j2k_dump_{image,cp} to j2k_dump.c to remain consistent with API interface + - changed mj2 cmake compilation method: as long as mj2 binaries do not strictly use the API interface, libopenjpeg source files are directly included in mj2 executables compilation. +! [antonin] small update to xcode project + +December 14, 2010 +! [szukw000] adapted Makefile.am/Makefile.nix to build + choice: shared xor static + +December 11, 2010 +* [antonin] fixed flags when building jp3d with MinGW + +December 10, 2010 +! [szukw000] changed build choice in configure.ac/Makefile.am/Makefile.nix: + shared xor static + +December 9, 2010 +! [antonin] removed LCMS dependency in jp3d/libjp3dvm/CMakeLists.txt +! [antonin] updated xcode project +! [antonin] renamed jp3d/libjp3dvm/openjpeg.h => jp3d/libjp3dvm/openjpeg3d.h +- [antonin] removed "codec/compat/" directory +* [szukw000] updated Makefile.in +! [szukw000] removed LCMS dependencies from Makefile.am/Makefile.nix + +December 8, 2010 + (thanks to Winfried for his help) +* [antonin] changed remaining "WIN32" to "_WIN32" +! [antonin] libopenjpeg has no more dependency on LCMS lib. Everything concerning color (icc profile, conversion to rgb, etc) has been put outside libopenjpeg and is used in j2k_to_image.c and mj2_to_frames.c. +- [antonin] removed 'opj_convert{.c,.h}' ++ [antonin] added a directory 'common/' that contains 'getopt{.c,.h}' (previously in 'codec/compat'). ++ [antonin] added files 'color{.c,.h}' in 'common/' that define the code for icc profile management and sycc_to_rgb conversion ++ [antonin] added 'common/format_defs.h' that contains common definitions used in image_to_j2k, j2k_to_image, j2k_dump. + +December 5, 2010 +! [antonin] revert to previous behaviour for cmake: builds (and links) dynamically by default. Static build only if -DBUILD_SHARED_LIBS is set to OFF. +* [antonin] added a definition in getopt.h and an initial value in convert.c + +December 3, 2010 +* [antonin] workaround for name clash when building static and dynamic on WIN32 (see http://www.vtk.org/Bug/view.php?id=10190 for description) + +November 28, 2010 +* [antonin] fixed a bug in codec/convert.c that prevented to build executables with WIN32 compiler (thanks winfried) +! [antonin] changed cmake behaviour: executables are now always statically linked. When -DBUIL_SHARED_LIBS option is ON (the default), the shared versions of the libraries are also built (but executables remain linked against the static libraries). + +November 25, 2010 +* [antonin] fix compilation and DLL creation of libopenjpeg with MSYS/MinGW (from vincent.torri, see issue 47 on googlecode) + +November 22, 2010 +! [antonin] xcode : changed to native architecture build by default +* [antonin] reverted 'include "../opj_config.h"' to 'include "opj_config.h"' + +November 17, 2010 +! [antonin] install man pages by default. install CHANGES and LICENSE +! [antonin] minor changes in cmake files (from winfried) + +November 16, 2010 +! [antonin] minor changes in cmake flags + +November 15, 2010 +! [antonin] xcode project rewrite. +! [antonin] changed imagetopng() function to correctly deal with non-standard bit-depths. Add png support for win32. (from winfried) +* [antonin] minor changes in header inclusions +* [antonin] complete rewrite of opj_convert.c with correct values (from winfried) + +November 11, 2010 +- [antonin] removed call to dirent.h in jp3d; + +October 28, 2010 +* [ben.boeckel] Set the soname and soversion on the jpwl library with CMake ++ [ben.boeckel] Install jpwl binaries with CMake + +October 26, 2010 +* [ben.boeckel] Install symlinks to versioned directory headers when using CMake ++ [ben.boeckel] Set the library version on jp3d when using CMake + +October 25, 2010 +* [ben.boeckel] Fix jp3d version + +October 24, 2010 +* [antonin] Fixed doxygen data inside source code (from winfried) + +October 22, 2010 +* [ben.boeckel] Don't install jp3d and libopenjpeg headers to the same place + +October 22, 2010 +* [ben.boeckel] Install man pages when using CMake + +October 22, 2010 +! [ben.boeckel] Default to building shared libraries + + |