From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7613F138010 for ; Tue, 4 Sep 2012 05:08:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E27C921C08F; Tue, 4 Sep 2012 05:07:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 8940021C0A0 for ; Tue, 4 Sep 2012 05:07:52 +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 BFFD333D850 for ; Tue, 4 Sep 2012 05:07:51 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2102) id 7BB0A211B8; Tue, 4 Sep 2012 05:07:50 +0000 (UTC) From: "Alfredo Tupone (tupone)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, tupone@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in games-emulation/gngeo/files: gngeo-0.7-zlib.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: gngeo-0.7-zlib.patch X-VCS-Directories: games-emulation/gngeo/files X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20120904050750.7BB0A211B8@flycatcher.gentoo.org> Date: Tue, 4 Sep 2012 05:07:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b215bf21-74cd-4dd0-bb9b-0e04053838f9 X-Archives-Hash: 44f311ce2b12935ef788ff6ee9588120 tupone 12/09/04 05:07:50 Added: gngeo-0.7-zlib.patch Log: Build with latest zlib. Bug #431118 (Portage version: 2.1.11.9/cvs/Linux x86_64) Revision Changes Path 1.1 games-emulation/gngeo/files/gngeo-0.7-zlib.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/gngeo/files/gngeo-0.7-zlib.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/gngeo/files/gngeo-0.7-zlib.patch?rev=1.1&content-type=text/plain Index: gngeo-0.7-zlib.patch =================================================================== --- src/Makefile.am.old 2012-09-04 06:43:21.415398601 +0200 +++ src/Makefile.am 2012-09-04 06:43:37.227461006 +0200 @@ -58,8 +58,8 @@ blitter.h font.h memory.h raze_interf.c \ timer.c effect.h frame_skip.c messages.c \ screen.c timer.h emu.c frame_skip.h \ - messages.h screen.h unzip.c emu.h \ - neocrypt.c sound.c unzip.h generator68k_interf.c \ + messages.h screen.h emu.h \ + neocrypt.c sound.c generator68k_interf.c \ debug.c debug.h neocrypt.h state.c \ state.h video_template.h conf.c conf.h \ transpack.h transpack.c pbar.h pbar.c \ --- src/fileio.c.old 2012-09-04 06:42:03.956194155 +0200 +++ src/fileio.c 2012-09-04 06:42:32.299098500 +0200 @@ -30,7 +30,7 @@ #include #include #include -#include "unzip.h" +#include #include "memory.h" #include "video.h" #include "emu.h" --- src/driver.c.old 2012-09-04 06:49:28.418057327 +0200 +++ src/driver.c 2012-09-04 06:49:58.161055744 +0200 @@ -29,7 +29,7 @@ #include #include #include -#include "unzip.h" +#include #include "driver.h" #include "conf.h" #include "pbar.h" --- configure.in.old 2012-09-04 06:55:46.998493962 +0200 +++ configure.in 2012-09-04 06:56:23.705960317 +0200 @@ -66,6 +66,7 @@ fi AC_CHECK_LIB([SDL_image], [IMG_Load]) +AC_CHECK_LIB([minizip], [unzReadCurrentFile]) AC_CHECK_FUNCS(getopt_long , , [ AC_LIBOBJ(getopt) AC_LIBOBJ(getopt1) ]) AC_CHECK_FUNCS(scandir)