Date: Tue, 18 Jun 2013 16:46:51 +0000 (UTC) From: William Grzybowski <wg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321204 - head/x11/lxpanel Message-ID: <201306181646.r5IGkpTv029839@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wg Date: Tue Jun 18 16:46:51 2013 New Revision: 321204 URL: http://svnweb.freebsd.org/changeset/ports/321204 Log: x11/lxpanel: fix build with clang - Fix build with clang, -Wno-return-type, gnu89 - Take maintainership Reported by: Kenta Suzumoto <kentas@hush.com> Approved by: culot / jpaetzel (mentors, implicit) Modified: head/x11/lxpanel/Makefile Modified: head/x11/lxpanel/Makefile ============================================================================== --- head/x11/lxpanel/Makefile Tue Jun 18 16:25:47 2013 (r321203) +++ head/x11/lxpanel/Makefile Tue Jun 18 16:46:51 2013 (r321204) @@ -6,7 +6,7 @@ PORTVERSION= 0.5.12 CATEGORIES= x11 MASTER_SITES= SF/lxde/LXPanel%20%28desktop%20panel%29/LXPanel%20${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= wg@FreeBSD.org COMMENT= Lightweight X11 desktop panel LIB_DEPENDS= menu-cache.1:${PORTSDIR}/x11/menu-cache @@ -24,7 +24,8 @@ CONFIGURE_ARGS= --prefix=${PREFIX} \ --with-plugins=volume,deskno,kbled,xkb,batt\ CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" -CFLAGS+= -I${WRKSRC} +CFLAGS+= -I${WRKSRC} -Wno-return-type +USE_CSTD= gnu89 USE_GMAKE= yes MAN1= lxpanel.1 lxpanelctl.1
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306181646.r5IGkpTv029839>