File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ PHP 4 NEWS
70
70
handler). (Tony)
71
71
- Fixed bug #29944 (Function defined in switch, crashes). (Dmitry)
72
72
- Fixed bug #29338 (unencoded spaces get ignored after certain tags). (Ilia)
73
+ - Fixed bug #28605 (Need to use -[m]ieee option for Alpha CPUs). (Jani)
73
74
74
75
31 Mar 2005, Version 4.3.11
75
76
- Added Oracle Instant Client support. (cjbj at hotmail dot com, Tony)
Original file line number Diff line number Diff line change @@ -180,6 +180,17 @@ PHP_C_BIGENDIAN
180
180
dnl Platform-specific compile settings.
181
181
dnl -------------------------------------------------------------------------
182
182
183
+ dnl See bug # 28605
184
+ case $host_cpu in
185
+ alpha* )
186
+ if test " $GCC " = " yes" ; then
187
+ CFLAGS=" $CFLAGS -mieee"
188
+ else
189
+ CFLAGS=" $CFLAGS -ieee"
190
+ fi
191
+ ;;
192
+ esac
193
+
183
194
case $host_alias in
184
195
* solaris* )
185
196
CPPFLAGS=" $CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
You can’t perform that action at this time.
0 commit comments