Add support for MIPS architecture to config.h

This commit is contained in:
Michal Toman 2015-09-04 14:23:36 +02:00 committed by Vít Ondruch
commit 5de5e64fb6
2 changed files with 9 additions and 0 deletions

View file

@ -44,6 +44,14 @@
#include "ruby/config-sparc.h"
#elif defined(__aarch64__)
#include "ruby/config-aarch64.h"
#elif defined(__mips64) && defined(__MIPSEL__)
#include "ruby/config-mips64el.h"
#elif defined(__mips64)
#include "ruby/config-mips64.h"
#elif defined(__mips) && defined(__MIPSEL__)
#include "ruby/config-mipsel.h"
#elif defined(__mips)
#include "ruby/config-mips.h"
#else
#error "The ruby-devel package is not usable with the architecture."
#endif

View file

@ -893,6 +893,7 @@ make check TESTS="-v $DISABLE_TESTS"
- Fix directory ownership.
- Fix the git BR following the git package split.
- Move gemified net-telnet into subpackage.
- Add support for MIPS architecture to config.h
* Tue Feb 03 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.0-5
- Make operating_system.rb more robust.