1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

complex.c: ruby/config.h must be included before math.h

because it defines _LARGE_FILES on AIX and _LARGE_FILES
must be defined before sys/types.h is included from math.h.
[Bug #11483]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51922 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
odaira 2015-09-23 15:08:47 +00:00
parent f9a9193ae0
commit c3b02d572c
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,10 @@
Thu Sep 24 00:00:17 2015 Rei Odaira <Rei.Odaira@gmail.com>
* complex.c: ruby/config.h must be included before math.h
because it defines _LARGE_FILES on AIX and _LARGE_FILES
must be defined before sys/types.h is included from math.h.
[Bug #11483]
Wed Sep 23 22:22:38 2015 Zachary Scott <zzak@ruby-lang.org>
* ext/openssl/ossl_pkcs12*: Remove svn commit id macro

View file

@ -5,6 +5,7 @@
which is written in ruby.
*/
#include "ruby/config.h"
#if defined _MSC_VER
/* Microsoft Visual C does not define M_PI and others by default */
# define _USE_MATH_DEFINES 1