diff options
author | Malcolm Lashley <malc@gentoo.org> | 2004-07-27 20:48:32 +0000 |
---|---|---|
committer | Malcolm Lashley <malc@gentoo.org> | 2004-07-27 20:48:32 +0000 |
commit | 746a829b4c006267b53e3a6c6a817bb22b999a13 (patch) | |
tree | 0a71e6cb60cae53412c0ff254cb710ab3ef173d9 /net-analyzer/hping/files | |
parent | oh! a new ebuild (Manifest recommit) (diff) | |
download | gentoo-2-746a829b4c006267b53e3a6c6a817bb22b999a13.tar.gz gentoo-2-746a829b4c006267b53e3a6c6a817bb22b999a13.tar.bz2 gentoo-2-746a829b4c006267b53e3a6c6a817bb22b999a13.zip |
Teach bytesex.h to know __x86_64__ fix bug #57834
Diffstat (limited to 'net-analyzer/hping/files')
-rw-r--r-- | net-analyzer/hping/files/amd64-header-fix.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/net-analyzer/hping/files/amd64-header-fix.patch b/net-analyzer/hping/files/amd64-header-fix.patch new file mode 100644 index 000000000000..af176dfe1741 --- /dev/null +++ b/net-analyzer/hping/files/amd64-header-fix.patch @@ -0,0 +1,10 @@ +--- bytesex.h 2003-07-28 10:00:55.000000000 +0100 ++++ /tmp/bytesex.h 2004-07-27 21:40:30.502635352 +0100 +@@ -9,6 +9,7 @@ + + #if defined(__i386__) \ + || defined(__alpha__) \ ++ || defined(__x86_64__) \ + || (defined(__mips__) && (defined(MIPSEL) || defined (__MIPSEL__))) + #define BYTE_ORDER_LITTLE_ENDIAN + #elif defined(__mc68000__) \ |