From owner-svn-ports-all@FreeBSD.ORG Fri May 9 23:38:07 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6D0C135A; Fri, 9 May 2014 23:38:07 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 40B57238; Fri, 9 May 2014 23:38:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s49Nc74u043399; Fri, 9 May 2014 23:38:07 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s49Nc6QF043392; Fri, 9 May 2014 23:38:06 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201405092338.s49Nc6QF043392@svn.freebsd.org> From: Jung-uk Kim Date: Fri, 9 May 2014 23:38:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353540 - in head/emulators: virtualbox-ose-additions virtualbox-ose-kmod X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 May 2014 23:38:07 -0000 Author: jkim Date: Fri May 9 23:38:06 2014 New Revision: 353540 URL: http://svnweb.freebsd.org/changeset/ports/353540 QAT: https://qat.redports.org/buildarchive/r353540/ Log: Make sure to set --disable-docs and --disable-libvpx. Modified: head/emulators/virtualbox-ose-additions/Makefile head/emulators/virtualbox-ose-kmod/Makefile Modified: head/emulators/virtualbox-ose-additions/Makefile ============================================================================== --- head/emulators/virtualbox-ose-additions/Makefile Fri May 9 23:31:53 2014 (r353539) +++ head/emulators/virtualbox-ose-additions/Makefile Fri May 9 23:38:06 2014 (r353540) @@ -30,9 +30,10 @@ USE_PYTHON_BUILD= yes MAKE_JOBS_UNSAFE= yes HAS_CONFIGURE= yes -CONFIGURE_ARGS+=--with-gcc="${CC}" --with-g++="${CXX}" --nofatal \ - --disable-xpcom --disable-sdl-ttf --disable-pulse \ - --disable-alsa --disable-dbus --disable-python +CONFIGURE_ARGS+=--with-gcc="${CC}" --with-g++="${CXX}" --nofatal +CONFIGURE_ARGS+=--disable-alsa --disable-dbus --disable-docs \ + --disable-libvpx --disable-pulse --disable-python \ + --disable-sdl-ttf --disable-xpcom CONFLICTS_INSTALL= virtualbox-ose-additions-devel-[3,4]* virtualbox-ose-[3,4]* virtualbox-ose-devel-[3,4]* virtualbox-ose-legacy-[3,4]* Modified: head/emulators/virtualbox-ose-kmod/Makefile ============================================================================== --- head/emulators/virtualbox-ose-kmod/Makefile Fri May 9 23:31:53 2014 (r353539) +++ head/emulators/virtualbox-ose-kmod/Makefile Fri May 9 23:38:06 2014 (r353540) @@ -26,10 +26,11 @@ USE_RC_SUBR= vboxnet ONLY_FOR_ARCHS= i386 amd64 HAS_CONFIGURE= yes -CONFIGURE_ARGS+=--with-gcc="${CC}" --with-g++="${CXX}" --nofatal \ - --disable-xpcom --disable-sdl-ttf --disable-pulse \ - --disable-alsa --disable-dbus --disable-python \ - --build-headless +CONFIGURE_ARGS+=--with-gcc="${CC}" --with-g++="${CXX}" --nofatal +CONFIGURE_ARGS+=--disable-alsa --disable-dbus --disable-docs \ + --disable-libvpx --disable-pulse --disable-python \ + --disable-sdl-ttf --disable-xpcom +CONFIGURE_ARGS+=--build-headless CONFLICTS_INSTALL= virtualbox-ose-kmod-devel-4* virtualbox-ose-kmod-legacy-4*