diff options
Diffstat (limited to 'debian/patches/38_hppa.patch')
-rw-r--r-- | debian/patches/38_hppa.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/debian/patches/38_hppa.patch b/debian/patches/38_hppa.patch new file mode 100644 index 0000000..99c9970 --- /dev/null +++ b/debian/patches/38_hppa.patch @@ -0,0 +1,17 @@ +Description: fix double definition of BYTE_ORDER on hppa +Author: Helge Deller <deller@gmx.de> +Bug-Debian: https://bugs.debian.org/808990 + +Index: nss/nss/lib/dbm/include/mcom_db.h +=================================================================== +--- nss.orig/nss/lib/dbm/include/mcom_db.h ++++ nss/nss/lib/dbm/include/mcom_db.h +@@ -110,7 +110,7 @@ typedef PRUint32 uint32; + #endif /* !BYTE_ORDER */ + #endif /* __sun */ + +-#if defined(__hpux) || defined(__hppa) ++#if defined(__hpux) + #define BYTE_ORDER BIG_ENDIAN + #define BIG_ENDIAN 4321 + #define LITTLE_ENDIAN 1234 /* LSB first: i386, vax, all NT risc */ |