From owner-freebsd-current@FreeBSD.ORG Wed Aug 31 10:23:05 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A2A3106564A for ; Wed, 31 Aug 2011 10:23:05 +0000 (UTC) (envelope-from pkubaj@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 0CA7B8FC16 for ; Wed, 31 Aug 2011 10:23:04 +0000 (UTC) Received: by bkat8 with SMTP id t8so938645bka.13 for ; Wed, 31 Aug 2011 03:23:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=fUZA1OzQCIUe7JCyK9dEPxddwLiqlqDtajGQ1ycxA2g=; b=puc3EDk2iAdVtMgvOZND+VAYr0/jQWs50+R4nAfQWgWfyK1yXeTlibI7Xq42osztN7 izQVS9gIZRibLOg2VpHYPZrlpgSvXb2Oc4R1qAIuI/xYkOwb84Hc4qTFisFeKE9Fl7Pg k3EzNb/2I6lXnu0rWhJoxQVCHDsenFcnqTOpE= MIME-Version: 1.0 Received: by 10.204.135.24 with SMTP id l24mr129886bkt.276.1314784643409; Wed, 31 Aug 2011 02:57:23 -0700 (PDT) Received: by 10.204.40.8 with HTTP; Wed, 31 Aug 2011 02:57:23 -0700 (PDT) Date: Wed, 31 Aug 2011 11:57:23 +0200 Message-ID: From: Piotr Kubaj To: freebsd-current@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Mailman-Approved-At: Wed, 31 Aug 2011 11:12:21 +0000 Subject: multimedia/gnome-mplayer doesn't compile X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2011 10:23:05 -0000 I use 9.0-BETA1 on my two PCs (amd64). On both of them, I can't upgrade gnome-mplayer to 1.0.0_2, after recent bump. My default compiler on both PCs is clang (version 20110717), but the same error happens when using the default GCC. The error message is: gui.c:475:58: error: too many arguments to function call, expected 3, have 4 "gnome-mplayer", NULL); ^~~~ /usr/include/sys/_null.h:32:14: note: expanded from: #define NULL ((void *)0) ^~~~~~~~~~~ /usr/local/include/libnotify/notification.h:114:1: note: 'notify_notification_new' declared here NotifyNotification *notify_notification_new (const char *summary, ^ gui.c:478:17: warning: implicit declaration of function 'notify_notification_attach_to_status_icon' is invalid in C99 [-Wimplicit-function-declaration] notify_notification_attach_to_status_icon(notification, status_icon); ^ gui.c:6420:22: warning: unused variable 'recent_filter' [-Wunused-variable] GtkRecentFilter *recent_filter; ^