[1.5] Fix 'distcheck' rule
This commit is contained in:
parent
642d09f5cb
commit
adbccc2e56
5
CHANGES
5
CHANGES
|
@ -5,6 +5,9 @@ What's New for OpenJPEG
|
||||||
! : changed
|
! : changed
|
||||||
+ : added
|
+ : added
|
||||||
|
|
||||||
|
October 10, 2011
|
||||||
|
* [vincent] fix 'distcheck' rule
|
||||||
|
|
||||||
October 7, 2011
|
October 7, 2011
|
||||||
+ [mickael] enhance non regression test suite generation (and some test names). It is based on a file as encoder previously.
|
+ [mickael] enhance non regression test suite generation (and some test names). It is based on a file as encoder previously.
|
||||||
+ [mickael] add tests about jp2 conformance
|
+ [mickael] add tests about jp2 conformance
|
||||||
|
@ -16,7 +19,7 @@ October 6, 2011
|
||||||
+ [mickael] enhance some new JPIP files with opj_config inclusion and using of opj_free/opj_calloc functions (credit to Julien Malik)
|
+ [mickael] enhance some new JPIP files with opj_config inclusion and using of opj_free/opj_calloc functions (credit to Julien Malik)
|
||||||
|
|
||||||
October 1, 2011
|
October 1, 2011
|
||||||
+ [vincent] fix output when --disable-shared or --disable-static is passed to configure. Minor fix for jpwl compilation.
|
* [vincent] fix output when --disable-shared or --disable-static is passed to configure. Minor fix for jpwl compilation.
|
||||||
|
|
||||||
September 9, 2011
|
September 9, 2011
|
||||||
+ [antonin] added a new indexer functionality to the library. With the new '-jpip' option at encoding, the user can now generate a JP2 file including an XML box with the index used when browsing the image with JPIP.
|
+ [antonin] added a new indexer functionality to the library. With the new '-jpip' option at encoding, the user can now generate a JP2 file including an XML box with the index used when browsing the image with JPIP.
|
||||||
|
|
|
@ -26,9 +26,13 @@ ltmain.sh \
|
||||||
missing
|
missing
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
CMake/CheckHaveGetopt.cmake \
|
CMake/CTestCustom.cmake.in \
|
||||||
|
CMake/FindFCGI.cmake \
|
||||||
|
CMake/FindLCMS2.cmake \
|
||||||
|
CMake/FindLCMS.cmake \
|
||||||
CMake/OpenJPEGConfig.cmake.in \
|
CMake/OpenJPEGConfig.cmake.in \
|
||||||
CMakeLists.txt \
|
CMakeLists.txt \
|
||||||
|
CTestConfig.cmake \
|
||||||
AUTHORS \
|
AUTHORS \
|
||||||
CHANGES \
|
CHANGES \
|
||||||
INSTALL \
|
INSTALL \
|
||||||
|
@ -39,7 +43,7 @@ THANKS \
|
||||||
bootstrap.sh \
|
bootstrap.sh \
|
||||||
libopenjpeg1.pc.cmake \
|
libopenjpeg1.pc.cmake \
|
||||||
libopenjpeg1.pc.in \
|
libopenjpeg1.pc.in \
|
||||||
opj_configh.cmake.in \
|
opj_config.h.cmake.in \
|
||||||
m4/opj_check_lib.m4 \
|
m4/opj_check_lib.m4 \
|
||||||
m4/opj_doxygen.m4 \
|
m4/opj_doxygen.m4 \
|
||||||
m4/pkg.m4
|
m4/pkg.m4
|
||||||
|
|
|
@ -59,7 +59,7 @@ mj2_to_frames_CPPFLAGS = \
|
||||||
@LCMS1_CFLAGS@ \
|
@LCMS1_CFLAGS@ \
|
||||||
-DOPJ_STATIC
|
-DOPJ_STATIC
|
||||||
mj2_to_frames_CFLAGS =
|
mj2_to_frames_CFLAGS =
|
||||||
mj2_to_frames_LDADD = @LCMS2_LIBS@ @LCMS1_LIBS@
|
mj2_to_frames_LDADD = @LCMS2_LIBS@ @LCMS1_LIBS@ -lm
|
||||||
mj2_to_frames_SOURCES = \
|
mj2_to_frames_SOURCES = \
|
||||||
$(OPJ_SRC) \
|
$(OPJ_SRC) \
|
||||||
../common/color.c \
|
../common/color.c \
|
||||||
|
|
|
@ -50,6 +50,7 @@ dwt.h \
|
||||||
event.h \
|
event.h \
|
||||||
fix.h \
|
fix.h \
|
||||||
image.h \
|
image.h \
|
||||||
|
indexbox_manager.h \
|
||||||
int.h \
|
int.h \
|
||||||
j2k.h \
|
j2k.h \
|
||||||
j2k_lib.h \
|
j2k_lib.h \
|
||||||
|
|
Loading…
Reference in New Issue