Try to fix error on solaris

Add vm_core.h before builtin.h to pack.c for VM_CORE_H_EC_DEFINED.

https://rubyci.org/logs/rubyci.s3.amazonaws.com/solaris11s-sunc/ruby-master/log/20191112T102505Z.fail.html.gz
```
compiling dmyenc.c
linking miniruby
Undefined			first referenced
 symbol  			    in file
rb_vm_lvar_exposed                  pack.o
ld: fatal: symbol referencing errors
gmake: *** [miniruby] Error 2
```
This commit is contained in:
Kazuhiro NISHIYAMA 2019-11-13 09:55:54 +09:00
parent ae33f93836
commit 00d56bdf66
No known key found for this signature in database
GPG Key ID: 262ED8DBB4222F7A

1
pack.c
View File

@ -15,6 +15,7 @@
#include <ctype.h> #include <ctype.h>
#include <errno.h> #include <errno.h>
#include <float.h> #include <float.h>
#include "vm_core.h"
#include "builtin.h" #include "builtin.h"
/* /*