diff options
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | codec/dirent.h | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -5,6 +5,9 @@ What's New for OpenJPEG ! : changed + : 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 * [antonin] fixed a bug in j2k.c (j2k_write_sod) that allowed to get negative rates, thanks zhong1985624 for pointing this. diff --git a/codec/dirent.h b/codec/dirent.h index a2b9176f..037569df 100644 --- a/codec/dirent.h +++ b/codec/dirent.h @@ -118,7 +118,7 @@ # define HAVE_SYS_DIR_H
# elif defined(__hpux) /* HP-UX */
# define HAVE_DIRENT_H
-# elif defined(__alpha) || defined(__alpha__) /* Alpha OSF1 */
+# elif (defined(__alpha) || defined(__alpha__)) && !defined(__linux__) /* Alpha OSF1 */
# error "not implemented"
# elif defined(__sgi) /* Silicon Graphics */
# define HAVE_DIRENT_H
|
