diff options
Diffstat (limited to 'net-libs/http-parser')
| -rw-r--r-- | net-libs/http-parser/files/http-parser-2.9.4-non-x86-test.patch | 20 | ||||
| -rw-r--r-- | net-libs/http-parser/http-parser-2.9.4.ebuild | 4 |
2 files changed, 24 insertions, 0 deletions
diff --git a/net-libs/http-parser/files/http-parser-2.9.4-non-x86-test.patch b/net-libs/http-parser/files/http-parser-2.9.4-non-x86-test.patch new file mode 100644 index 000000000000..8bcbbf3589a4 --- /dev/null +++ b/net-libs/http-parser/files/http-parser-2.9.4-non-x86-test.patch @@ -0,0 +1,20 @@ +diff --git a/test.c b/test.c +index 53a3163..49c4b7a 100644 +--- a/test.c ++++ b/test.c +@@ -4343,7 +4343,13 @@ main (void) + printf("http_parser v%u.%u.%u (0x%06lx)\n", major, minor, patch, version); + + printf("sizeof(http_parser) = %u\n", (unsigned int)sizeof(http_parser)); +- assert(sizeof(http_parser) == 4 + 4 + 8 + 2 + 2 + 4 + sizeof(void *)); ++ ++#if defined(__i386__) || defined(__x86_64__) ++ /* Should be 32 on both 32 bits and 64 bits x86 because of struct padding, ++ * see https://github.com/nodejs/http-parser/issues/507. ++ */ ++ assert(sizeof(http_parser) == 24 + sizeof(void*)); ++#endif + + //// API + test_preserve_data(); + diff --git a/net-libs/http-parser/http-parser-2.9.4.ebuild b/net-libs/http-parser/http-parser-2.9.4.ebuild index c335060fa9a8..01dcd50e086f 100644 --- a/net-libs/http-parser/http-parser-2.9.4.ebuild +++ b/net-libs/http-parser/http-parser-2.9.4.ebuild @@ -12,6 +12,10 @@ LICENSE="MIT" SLOT="0/2.9.0" KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x64-macos ~x64-solaris" +PATCHES=( + "${FILESDIR}"/${P}-non-x86-test.patch +) + src_prepare() { default tc-export CC AR |
