Control: reassign -1 jemalloc Control: tags -1 patch On 12/10/2015 06:06 PM, John Paul Adrian Glaubitz wrote: > On 12/10/2015 06:04 PM, Andreas Schwab wrote: >>> nghttp2 is currently BD-Uninstallable on m68k as it build-depends on >>> jemalloc which currently FTBFS on this architecture [1]. >> >> jemalloc builds fine and passes the testsuite if you pass >> --with-lg-quantum=3 to configure. > > Ah, good to know. We should probably retitle this bug report and > reassign it to jemalloc itself.
Alright, verified. The patch is actually very simple as the debian/rules file already contains adjustments for lg-quantum for other architectures already and I just needed to add m68k to the same line where "or1k" is already matched. Attaching a patch. Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913
--- debian/rules.orig 2015-12-10 20:51:32.000000000 +0100 +++ debian/rules 2015-12-13 13:56:40.218115041 +0100 @@ -10,7 +10,7 @@ DEB_CPPFLAGS_MAINT_APPEND += -DLG_QUANTUM=4 endif -ifneq (,$(findstring $(DEB_BUILD_ARCH),or1k)) +ifneq (,$(findstring $(DEB_BUILD_ARCH),m68k or1k)) DEB_CPPFLAGS_MAINT_APPEND += -DLG_QUANTUM=3 endif