From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RamWA-00041v-15 for garchives@archives.gentoo.org; Wed, 14 Dec 2011 10:56:58 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 882FB21C24A; Wed, 14 Dec 2011 10:56:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 55B6A21C0D2 for ; Wed, 14 Dec 2011 10:56:50 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B4F4A1B401A for ; Wed, 14 Dec 2011 10:56:49 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2230) id 82A452004C; Wed, 14 Dec 2011 10:56:48 +0000 (UTC) From: "Tomas Chvatal (scarabeus)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, scarabeus@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-util/cppunit/files: cppunit-1.12.1-warnings.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: cppunit-1.12.1-warnings.patch X-VCS-Directories: dev-util/cppunit/files X-VCS-Committer: scarabeus X-VCS-Committer-Name: Tomas Chvatal Content-Type: text/plain; charset=utf8 Message-Id: <20111214105648.82A452004C@flycatcher.gentoo.org> Date: Wed, 14 Dec 2011 10:56:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: cbd5622b-a7d7-4132-9b80-ffae3f51dd72 X-Archives-Hash: 98d60d8ed0cb5200ea28e7c6d81b7cfa scarabeus 11/12/14 10:56:48 Added: cppunit-1.12.1-warnings.patch Log: Revision bump to shutup annoying warnings when using cppunit in your co= de (pretty simple patch :)). =20 (Portage version: 2.2.0_alpha80/cvs/Linux x86_64) Revision Changes Path 1.1 dev-util/cppunit/files/cppunit-1.12.1-warnings.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cppunit/f= iles/cppunit-1.12.1-warnings.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cppunit/f= iles/cppunit-1.12.1-warnings.patch?rev=3D1.1&content-type=3Dtext/plain Index: cppunit-1.12.1-warnings.patch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- misc/cppunit-1.12.1/include/cppunit/plugin/TestPlugIn.h 2007-01-12 05= :54:34.000000000 +0100 +++ misc/build/cppunit-1.12.1/include/cppunit/plugin/TestPlugIn.h 2009-12= -02 15:33:29.639857272 +0100 @@ -151,9 +151,7 @@ #include #endif #define CPPUNIT_PLUGIN_IMPLEMENT_MAIN() \ - BOOL APIENTRY DllMain( HANDLE hModule, \ - DWORD ul_reason_for_call, \ - LPVOID lpReserved ) \ + BOOL APIENTRY DllMain( HANDLE, DWORD, LPVOID ) \ { \ return TRUE; \ } \ @@ -162,7 +160,7 @@ // Unix #elif defined(CPPUNIT_HAVE_UNIX_DLL_LOADER) || defined(CPPUNIT_HAVE_UNIX= _SHL_LOADER) #define CPPUNIT_PLUGIN_IMPLEMENT_MAIN() \ - int main( int argc, char *argv[] ) \ + int main( int, char *[] ) \ { \ return 0; \ } \