correct nightly crash on all platform linked to merge operation and missing opj_getopt command
This commit is contained in:
parent
9a89e2f162
commit
5213675ba8
3
CHANGES
3
CHANGES
|
@ -5,6 +5,9 @@ What's New for OpenJPEG
|
||||||
! : changed
|
! : changed
|
||||||
+ : added
|
+ : added
|
||||||
|
|
||||||
|
September 2, 2011
|
||||||
|
! [mickael] correct nightly crash on all platform linked to merge operation and missing opj_getopt command
|
||||||
|
|
||||||
September 1st, 2011
|
September 1st, 2011
|
||||||
! [antonin] renamed getopt.{c/h} to opj_getopt.{c/h} and forced the use of these files rather than the system ones. This fixed issue 78. Credit to Winfried.
|
! [antonin] renamed getopt.{c/h} to opj_getopt.{c/h} and forced the use of these files rather than the system ones. This fixed issue 78. Credit to Winfried.
|
||||||
|
|
||||||
|
|
|
@ -74,7 +74,7 @@ int parse_cmdline_cmp(int argc, char **argv, test_cmp_parameters* param)
|
||||||
param->test_filename = NULL;
|
param->test_filename = NULL;
|
||||||
|
|
||||||
opj_opterr = 0;
|
opj_opterr = 0;
|
||||||
while ((c = getopt(argc, argv, optlist)) != -1)
|
while ((c = opj_getopt(argc, argv, optlist)) != -1)
|
||||||
switch (c)
|
switch (c)
|
||||||
{
|
{
|
||||||
case 'b':
|
case 'b':
|
||||||
|
|
|
@ -51,8 +51,6 @@ FOREACH(filepath ${OPJ_DATA_NR_LIST})
|
||||||
# PROPERTIES DEPENDS
|
# PROPERTIES DEPENDS
|
||||||
# NR-${filename}-decode)
|
# NR-${filename}-decode)
|
||||||
|
|
||||||
<<<<<<< .working
|
|
||||||
ENDFOREACH(filepath)=======
|
|
||||||
ENDFOREACH(filepath)
|
ENDFOREACH(filepath)
|
||||||
|
|
||||||
|
|
||||||
|
@ -209,8 +207,3 @@ FOREACH(OPJ_TEST_ENC_CMD_LINE ${OPJ_TEST_ENC_CMD_LINE_LIST})
|
||||||
ENDIF(NOT IGNORE_LINE_FOUND)
|
ENDIF(NOT IGNORE_LINE_FOUND)
|
||||||
|
|
||||||
ENDFOREACH(OPJ_TEST_ENC_CMD_LINE)
|
ENDFOREACH(OPJ_TEST_ENC_CMD_LINE)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
>>>>>>> .merge-right.r907
|
|
||||||
|
|
Loading…
Reference in New Issue