[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
|
||||
+ : added
|
||||
|
||||
October 10, 2011
|
||||
* [vincent] fix 'distcheck' rule
|
||||
|
||||
October 07, 2011
|
||||
* [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
|
||||
|
|
|
@ -22,9 +22,13 @@ ltmain.sh \
|
|||
missing
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMake/CheckHaveGetopt.cmake \
|
||||
CMake/CTestCustom.cmake.in \
|
||||
CMake/FindFCGI.cmake \
|
||||
CMake/FindLCMS2.cmake \
|
||||
CMake/FindLCMS.cmake \
|
||||
CMake/OpenJPEGConfig.cmake.in \
|
||||
CMakeLists.txt \
|
||||
CTestConfig.cmake \
|
||||
AUTHORS \
|
||||
CHANGES \
|
||||
INSTALL \
|
||||
|
@ -35,7 +39,7 @@ THANKS \
|
|||
bootstrap.sh \
|
||||
libopenjpeg1.pc.cmake \
|
||||
libopenjpeg1.pc.in \
|
||||
opj_configh.cmake.in \
|
||||
opj_config.h.cmake.in \
|
||||
m4/opj_check_lib.m4 \
|
||||
m4/opj_doxygen.m4 \
|
||||
m4/pkg.m4
|
||||
|
|
|
@ -25,7 +25,6 @@ event_mgr_handler.c \
|
|||
event_mgr_handler.h \
|
||||
idxjp2_manager.c \
|
||||
j2k_decoder.c \
|
||||
indexbox_manager.h \
|
||||
ext_libopenjpeg/phix_manager.c \
|
||||
ext_libopenjpeg/ppix_manager.c \
|
||||
ext_libopenjpeg/thix_manager.c \
|
||||
|
|
|
@ -60,7 +60,7 @@ mj2_to_frames_CPPFLAGS = \
|
|||
@LCMS1_CFLAGS@ \
|
||||
-DOPJ_STATIC
|
||||
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 = \
|
||||
$(OPJ_SRC) \
|
||||
../common/color.c \
|
||||
|
|
|
@ -14,11 +14,9 @@ lib_LTLIBRARIES = libopenjpeg.la
|
|||
libopenjpeg_la_CPPFLAGS = \
|
||||
-I. \
|
||||
-I$(top_srcdir)/libopenjpeg \
|
||||
-I$(top_builddir)/libopenjpeg \
|
||||
@LCMS1_CFLAGS@ \
|
||||
@LCMS2_CFLAGS@
|
||||
-I$(top_builddir)/libopenjpeg
|
||||
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_SOURCES = \
|
||||
|
@ -53,6 +51,7 @@ dwt.h \
|
|||
event.h \
|
||||
fix.h \
|
||||
image.h \
|
||||
indexbox_manager.h \
|
||||
int.h \
|
||||
j2k.h \
|
||||
j2k_lib.h \
|
||||
|
|
Loading…
Reference in New Issue