From owner-svn-src-all@FreeBSD.ORG Thu Feb 27 13:29:27 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4EF055F8; Thu, 27 Feb 2014 13:29:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3A5C1180F; Thu, 27 Feb 2014 13:29:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1RDTR8G064292; Thu, 27 Feb 2014 13:29:27 GMT (envelope-from loos@svn.freebsd.org) Received: (from loos@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1RDTRdp064291; Thu, 27 Feb 2014 13:29:27 GMT (envelope-from loos@svn.freebsd.org) Message-Id: <201402271329.s1RDTRdp064291@svn.freebsd.org> From: Luiz Otavio O Souza Date: Thu, 27 Feb 2014 13:29:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r262561 - head/sys/modules/geom/geom_uncompress X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 13:29:27 -0000 Author: loos Date: Thu Feb 27 13:29:26 2014 New Revision: 262561 URL: http://svnweb.freebsd.org/changeset/base/262561 Log: Fix a leftover of r260523. Remove the unnecessary dependency to zlib.h. Approved by: adrian (mentor) Modified: head/sys/modules/geom/geom_uncompress/Makefile Modified: head/sys/modules/geom/geom_uncompress/Makefile ============================================================================== --- head/sys/modules/geom/geom_uncompress/Makefile Thu Feb 27 13:27:04 2014 (r262560) +++ head/sys/modules/geom/geom_uncompress/Makefile Thu Feb 27 13:29:26 2014 (r262561) @@ -12,6 +12,6 @@ CFLAGS+= -I${.CURDIR}/../../../geom/unco -I${.CURDIR}/../../../contrib/xz-embedded/linux/lib/xz/ SRCS= g_uncompress.c xz_crc32.c xz_dec_bcj.c xz_dec_lzma2.c xz_dec_stream.c \ xz_malloc.c -SRCS+= xz.h xz_config.h xz_lzma2.h xz_malloc.h xz_private.h xz_stream.h zlib.h +SRCS+= xz.h xz_config.h xz_lzma2.h xz_malloc.h xz_private.h xz_stream.h .include