From owner-freebsd-gecko@freebsd.org Tue Aug 25 18:36:15 2015 Return-Path: Delivered-To: freebsd-gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DBFB499A319 for ; Tue, 25 Aug 2015 18:36:15 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from gw.catspoiler.org (unknown [IPv6:2602:304:b010:ef20::f2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "gw.catspoiler.org", Issuer "gw.catspoiler.org" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id BF82097C for ; Tue, 25 Aug 2015 18:36:12 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.15.2/8.15.2) with ESMTP id t7PICQg9011400 for ; Tue, 25 Aug 2015 11:12:30 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Message-Id: <201508251812.t7PICQg9011400@gw.catspoiler.org> Date: Tue, 25 Aug 2015 11:12:26 -0700 (PDT) From: Don Lewis Subject: libxul and thunderbird build failing on 11.0-CURRENT, but firefox is ok To: freebsd-gecko@FreeBSD.org MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Aug 2015 18:36:16 -0000 I'm trying to use poudriere to build libxul and thunderbird on 11.0-CURRENT r286998 amd64. The system has the latest jemalloc and __FreeBSD_version is 1100079. The ports tree is r395181, which has all but the most recent Dragonfly tweak to Mk/bsd.gecko.mk. I'm seeing the following error in the thunderbird build: In file included from /wrkdirs/usr/ports/mail/thunderbird/work/comm-esr38/obj-x8 6_64-portbld-freebsd11.0/memory/mozalloc/Unified_cpp_memory_mozalloc0.cpp:2: /wrkdirs/usr/ports/mail/thunderbird/work/comm-esr38/mozilla/memory/mozalloc/moza lloc.cpp:212:12: error: use of undeclared identifier 'malloc_usable_size'; did y ou mean 'moz_malloc_usable_size'? return malloc_usable_size(ptr); ^~~~~~~~~~~~~~~~~~ moz_malloc_usable_size /wrkdirs/usr/ports/mail/thunderbird/work/comm-esr38/mozilla/memory/mozalloc/moza lloc.cpp:204:1: note: 'moz_malloc_usable_size' declared here moz_malloc_usable_size(void *ptr) ^ The libxul build failure is very similar: In file included from /wrkdirs/usr/ports/www/libxul/work/mozilla-esr38/obj-x86_6 4-portbld-freebsd11.0/memory/mozalloc/Unified_cpp_memory_mozalloc0.cpp:2: /wrkdirs/usr/ports/www/libxul/work/mozilla-esr38/memory/mozalloc/mozalloc.cpp:21 2:12: error: use of undeclared identifier 'malloc_usable_size'; did you mean 'mo z_malloc_usable_size'? return malloc_usable_size(ptr); ^~~~~~~~~~~~~~~~~~ moz_malloc_usable_size /wrkdirs/usr/ports/www/libxul/work/mozilla-esr38/memory/mozalloc/mozalloc.cpp:20 4:1: note: 'moz_malloc_usable_size' declared here moz_malloc_usable_size(void *ptr) ^ The firefox build succeeds.