From owner-svn-src-all@FreeBSD.ORG Sun Jan 25 03:08:22 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B4F62420; Sun, 25 Jan 2015 03:08:22 +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 A1DA58A3; Sun, 25 Jan 2015 03:08:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0P38MMP072950; Sun, 25 Jan 2015 03:08:22 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0P38M7I072948; Sun, 25 Jan 2015 03:08:22 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201501250308.t0P38M7I072948@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sun, 25 Jan 2015 03:08:22 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r277674 - head/sbin/rcorder 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.18-1 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: Sun, 25 Jan 2015 03:08:22 -0000 Author: ngie Date: Sun Jan 25 03:08:21 2015 New Revision: 277674 URL: https://svnweb.freebsd.org/changeset/base/277674 Log: Fix building rcorder with -DDEBUG by using libutil.h instead of util.h from usr.bin/make MFC after: 1 week Sponsored by: EMC / Isilon Storage Division Modified: head/sbin/rcorder/Makefile head/sbin/rcorder/rcorder.c Directory Properties: head/ (props changed) head/sbin/ (props changed) Modified: head/sbin/rcorder/Makefile ============================================================================== --- head/sbin/rcorder/Makefile Sun Jan 25 03:02:29 2015 (r277673) +++ head/sbin/rcorder/Makefile Sun Jan 25 03:08:21 2015 (r277674) @@ -7,13 +7,8 @@ MAN= rcorder.8 LIBADD= util -# XXX hack for make's hash.[ch] -CFLAGS+= -DORDER -I. +CFLAGS+= -DORDER -SRCS+= util.h -CLEANFILES+= util.h - -util.h: - ln -sf ${.CURDIR}/../../lib/libutil/libutil.h ${.TARGET} +#CFLAGS+= -DDEBUG .include Modified: head/sbin/rcorder/rcorder.c ============================================================================== --- head/sbin/rcorder/rcorder.c Sun Jan 25 03:02:29 2015 (r277673) +++ head/sbin/rcorder/rcorder.c Sun Jan 25 03:08:21 2015 (r277674) @@ -42,10 +42,10 @@ __FBSDID("$FreeBSD$"); #include #include +#include #include #include #include -#include #include "ealloc.h" #include "sprite.h"