[trunk] fix 'distcheck' rule
This commit is contained in:
parent
4d4b29ea94
commit
cee4505172
3
CHANGES
3
CHANGES
|
@ -5,6 +5,9 @@ What's New for OpenJPEG
|
||||||
! : changed
|
! : changed
|
||||||
+ : added
|
+ : added
|
||||||
|
|
||||||
|
October 10, 2011
|
||||||
|
* [vincent] fix 'distcheck' rule
|
||||||
|
|
||||||
October 07, 2011
|
October 07, 2011
|
||||||
* [mickael] WIP: correct mistake in text output inside set_decoded_area function (credit to Winfried)
|
* [mickael] WIP: correct mistake in text output inside set_decoded_area function (credit to Winfried)
|
||||||
+ [mickael] WIP: update jp2 dump functions with the new V2 framework
|
+ [mickael] WIP: update jp2 dump functions with the new V2 framework
|
||||||
|
|
|
@ -22,9 +22,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 \
|
||||||
|
@ -35,7 +39,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
|
||||||
|
|
|
@ -25,7 +25,6 @@ event_mgr_handler.c \
|
||||||
event_mgr_handler.h \
|
event_mgr_handler.h \
|
||||||
idxjp2_manager.c \
|
idxjp2_manager.c \
|
||||||
j2k_decoder.c \
|
j2k_decoder.c \
|
||||||
indexbox_manager.h \
|
|
||||||
ext_libopenjpeg/phix_manager.c \
|
ext_libopenjpeg/phix_manager.c \
|
||||||
ext_libopenjpeg/ppix_manager.c \
|
ext_libopenjpeg/ppix_manager.c \
|
||||||
ext_libopenjpeg/thix_manager.c \
|
ext_libopenjpeg/thix_manager.c \
|
||||||
|
|
|
@ -60,7 +60,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 \
|
||||||
|
|
|
@ -14,11 +14,9 @@ lib_LTLIBRARIES = libopenjpeg.la
|
||||||
libopenjpeg_la_CPPFLAGS = \
|
libopenjpeg_la_CPPFLAGS = \
|
||||||
-I. \
|
-I. \
|
||||||
-I$(top_srcdir)/libopenjpeg \
|
-I$(top_srcdir)/libopenjpeg \
|
||||||
-I$(top_builddir)/libopenjpeg \
|
-I$(top_builddir)/libopenjpeg
|
||||||
@LCMS1_CFLAGS@ \
|
|
||||||
@LCMS2_CFLAGS@
|
|
||||||
libopenjpeg_la_CFLAGS =
|
libopenjpeg_la_CFLAGS =
|
||||||
libopenjpeg_la_LIBADD = @LCMS1_LIBS@ @LCMS2_LIBS@
|
libopenjpeg_la_LIBADD = -lm
|
||||||
libopenjpeg_la_LDFLAGS = -no-undefined -version-info @lt_version@
|
libopenjpeg_la_LDFLAGS = -no-undefined -version-info @lt_version@
|
||||||
|
|
||||||
libopenjpeg_la_SOURCES = \
|
libopenjpeg_la_SOURCES = \
|
||||||
|
@ -53,6 +51,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