From owner-freebsd-ports@FreeBSD.ORG Mon Jul 22 19:21:44 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 75F51781 for ; Mon, 22 Jul 2013 19:21:44 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: from mail-qc0-f172.google.com (mail-qc0-f172.google.com [209.85.216.172]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3C55C2FA4 for ; Mon, 22 Jul 2013 19:21:43 +0000 (UTC) Received: by mail-qc0-f172.google.com with SMTP id j10so3856449qcx.31 for ; Mon, 22 Jul 2013 12:21:37 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-originating-ip:in-reply-to:references:date :message-id:subject:from:to:cc:content-type:x-gm-message-state; bh=jQrH0jqZuC+MQp/Yq6lAJpBNYM0B7qvpkXnNV9xBsAg=; b=ICdbgisW5+G1O49pqhzHjj/3XLH16N/Wudy6kmiA63WvmjnMvpDfkhivdRYQDWauAR JD2kRKtBQtVtEN9PbRJpL/EjCUyoXSgVoNKt3cSAQuPNANYN/4SEGmufQlSTDK1bYlzL CuHNKPp/CJzK7cR25JPirrw+/EcuC5ASdI6lPVix1dBy7ssTfXqL30lWOEFC1D5Btwi4 3RyL8W8cRQ5UtsRsOHpT8aomQHGEdT21g8zPTzwxvjSBQ1nV6uc32rZMQBCrW3pLlRMj ydv0Zl61Nx8ivzP7LSIk9u+E0CjwSbgKJ81cZjQJfo/u+2ZvhYVL9LfCAtftHdJo10YE uRMg== MIME-Version: 1.0 X-Received: by 10.49.71.14 with SMTP id q14mr33875046qeu.90.1374520897285; Mon, 22 Jul 2013 12:21:37 -0700 (PDT) Received: by 10.49.61.97 with HTTP; Mon, 22 Jul 2013 12:21:37 -0700 (PDT) X-Originating-IP: [203.99.129.1] In-Reply-To: <2134917558.51385593.1374336600814.JavaMail.root@k-state.edu> References: <51E9CE72.9050800@FreeBSD.org> <2134917558.51385593.1374336600814.JavaMail.root@k-state.edu> Date: Tue, 23 Jul 2013 07:21:37 +1200 Message-ID: Subject: Re: FreeBSD Port: www/chromium From: Jonathan Chen To: "Lawrence K. Chen, P.Eng." Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQkQC/UAdHIYB7hxgvymHZl6+D6Z0j8ec/17CYkJfLHV+DGkjc+2ABhkrt/69vw5B5DTiyOa Cc: ports@freebsd.org, chromium@freebsd.org, Mike Jakubik , Jung-uk Kim X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jul 2013 19:21:44 -0000 On 21 July 2013 04:10, Lawrence K. Chen, P.Eng. wrote: > While it compiles....it doesn't run very well... > > Certain pages/sites....some or all of the links will be unclickable. > > For example....in Zimbra web interface, I could not reply to this message until I reverted back to previous version of chromium. While I could navigate folders and such, the message bar buttons would work....reply button wouldn't work. > > In nagios....none of the links could be clicked at all (made it hard to acknowledge a downed service....) The behaviour you're seeing is because you've run out of shared-memory. Chromium doesn't reliably release the IPC resources when it exits or dies. If you log out and do a "ipcs", you'll see shared-memory segments still assigned to you. Removing the segments will restore chromium's ability to display web-pages. Cheers. -- Jonathan Chen