summaryrefslogtreecommitdiffstats
path: root/lang/python/python-crypto/patches/002-fix-endianness-detect.patch
blob: 38e5a5b624d72f7fee10adf8577a6a4bfa2d942b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- a/setup.py
+++ b/setup.py
@@ -100,6 +100,10 @@ def PrintErr(*args, **kwd):
         w(kwd.get("end", "\n"))
 
 def endianness_macro():
+    if os.environ["CONFIG_BIG_ENDIAN"] == "y":
+        return ('PCT_BIG_ENDIAN', 1)
+    else:
+        return ('PCT_LITTLE_ENDIAN', 1)
     s = struct.pack("@I", 0x33221100)
     if s == "\x00\x11\x22\x33".encode():     # little endian
         return ('PCT_LITTLE_ENDIAN', 1)