We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 445dffa commit 2b9d424Copy full SHA for 2b9d424
NEWS
@@ -2,6 +2,9 @@ PHP NEWS
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
?? ??? 2013, PHP 5.4.19
4
5
+- Core.
6
+ . Improve fix for bug #63186 (compile failure on netbsd). (Matteo)
7
+
8
- Session:
9
. Fixed bug #62129 (rfc1867 crashes php even though turned off). (gxd305 at
10
gmail dot com)
main/streams/cast.c
@@ -33,7 +33,7 @@
33
#if defined(HAVE_FUNOPEN) && !defined(HAVE_FOPENCOOKIE)
34
35
/* NetBSD 6.0+ uses off_t instead of fpos_t in funopen */
36
-# if defined(__NetBSD__) && (__NetBSD_Version__ > 600000000)
+# if defined(__NetBSD__) && (__NetBSD_Version__ >= 600000000)
37
# define PHP_FPOS_T off_t
38
# else
39
# define PHP_FPOS_T fpos_t
0 commit comments