fixed a bug in dirent.h that prevented codec on Linux Alpha Systems to compile correctly. Thanks to RobinC.
This commit is contained in:
parent
295ad6b112
commit
846bd364be
|
@ -5,6 +5,9 @@ What's New for OpenJPEG
|
||||||
! : changed
|
! : changed
|
||||||
+ : added
|
+ : added
|
||||||
|
|
||||||
|
June 12, 2008
|
||||||
|
* [antonin] fixed a bug in dirent.h that prevented codec on Linux Alpha Systems to compile correctly. Thanks to RobinC.
|
||||||
|
|
||||||
May 22, 2008
|
May 22, 2008
|
||||||
* [antonin] fixed a bug in j2k.c (j2k_write_sod) that allowed to get negative rates, thanks zhong1985624 for pointing this.
|
* [antonin] fixed a bug in j2k.c (j2k_write_sod) that allowed to get negative rates, thanks zhong1985624 for pointing this.
|
||||||
|
|
||||||
|
|
|
@ -118,7 +118,7 @@
|
||||||
# define HAVE_SYS_DIR_H
|
# define HAVE_SYS_DIR_H
|
||||||
# elif defined(__hpux) /* HP-UX */
|
# elif defined(__hpux) /* HP-UX */
|
||||||
# define HAVE_DIRENT_H
|
# define HAVE_DIRENT_H
|
||||||
# elif defined(__alpha) || defined(__alpha__) /* Alpha OSF1 */
|
# elif (defined(__alpha) || defined(__alpha__)) && !defined(__linux__) /* Alpha OSF1 */
|
||||||
# error "not implemented"
|
# error "not implemented"
|
||||||
# elif defined(__sgi) /* Silicon Graphics */
|
# elif defined(__sgi) /* Silicon Graphics */
|
||||||
# define HAVE_DIRENT_H
|
# define HAVE_DIRENT_H
|
||||||
|
|
Loading…
Reference in New Issue