Add support for ppc64le arch (rhbz#1053263).
This commit is contained in:
parent
e11dee8544
commit
199081935e
5
config.h
5
config.h
@ -20,7 +20,12 @@
|
|||||||
#elif defined(__ia64__)
|
#elif defined(__ia64__)
|
||||||
#include "ruby/config-ia64.h"
|
#include "ruby/config-ia64.h"
|
||||||
#elif defined(__powerpc64__)
|
#elif defined(__powerpc64__)
|
||||||
|
#include <endian.h>
|
||||||
|
#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||||
#include "ruby/config-ppc64.h"
|
#include "ruby/config-ppc64.h"
|
||||||
|
#else
|
||||||
|
#include "ruby/config-ppc64le.h"
|
||||||
|
#endif
|
||||||
#elif defined(__powerpc__)
|
#elif defined(__powerpc__)
|
||||||
#include "ruby/config-ppc.h"
|
#include "ruby/config-ppc.h"
|
||||||
#elif defined(__s390x__)
|
#elif defined(__s390x__)
|
||||||
|
@ -924,10 +924,11 @@ OPENSSL_ENABLE_MD5_VERIFY=1 make check TESTS="-v $DISABLE_TESTS"
|
|||||||
%{ruby_libdir}/tkextlib
|
%{ruby_libdir}/tkextlib
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Jan 10 2014 Vít Ondruch <vondruch@redhat.com> - 2.1.0-18
|
* Wed Jan 15 2014 Vít Ondruch <vondruch@redhat.com> - 2.1.0-18
|
||||||
- Don't generate documentation on unexpected places.
|
- Don't generate documentation on unexpected places.
|
||||||
- Detect if rubygems are running under rpmbuild and install gem binary
|
- Detect if rubygems are running under rpmbuild and install gem binary
|
||||||
extensions into appropriate place.
|
extensions into appropriate place.
|
||||||
|
- Add support for ppc64le arch (rhbz#1053263).
|
||||||
|
|
||||||
* Thu Jan 02 2014 Vít Ondruch <vondruch@redhat.com> - 2.1.0-17
|
* Thu Jan 02 2014 Vít Ondruch <vondruch@redhat.com> - 2.1.0-17
|
||||||
- Upgrade to Ruby 2.1.0.
|
- Upgrade to Ruby 2.1.0.
|
||||||
|
Loading…
Reference in New Issue
Block a user