From owner-svn-src-user@FreeBSD.ORG Fri Nov 21 17:23:16 2014 Return-Path: Delivered-To: svn-src-user@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 06A39BF5; Fri, 21 Nov 2014 17:23:16 +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 E7D38E93; Fri, 21 Nov 2014 17:23:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sALHNFA0050175; Fri, 21 Nov 2014 17:23:15 GMT (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sALHNFIv050174; Fri, 21 Nov 2014 17:23:15 GMT (envelope-from marcel@FreeBSD.org) Message-Id: <201411211723.sALHNFIv050174@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marcel set sender to marcel@FreeBSD.org using -f From: Marcel Moolenaar Date: Fri, 21 Nov 2014 17:23:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r274801 - user/marcel/libvdsk X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Nov 2014 17:23:16 -0000 Author: marcel Date: Fri Nov 21 17:23:15 2014 New Revision: 274801 URL: https://svnweb.freebsd.org/changeset/base/274801 Log: Make sure to provide defaults for BINDIR, SHLIB_MAJOR and WARNS. These come from lib/Makefile.inc and usr.sbin/Makefile.inc in the FreeBSD source tree. Things don't quite work the same without them. While here again: columnize. Modified: user/marcel/libvdsk/Makefile.inc Modified: user/marcel/libvdsk/Makefile.inc ============================================================================== --- user/marcel/libvdsk/Makefile.inc Fri Nov 21 17:08:28 2014 (r274800) +++ user/marcel/libvdsk/Makefile.inc Fri Nov 21 17:23:15 2014 (r274801) @@ -1,5 +1,9 @@ # $FreeBSD$ -CFLAGS+=-I${.CURDIR}/../libvdsk -LDFLAGS+=-L${.OBJDIR}/../libvdsk -LIBVDSK?=${.OBJDIR}/../libvdsk/libvdsk.a +CFLAGS += -I${.CURDIR}/../libvdsk +LDFLAGS += -L${.OBJDIR}/../libvdsk +LIBVDSK ?= ${.OBJDIR}/../libvdsk/libvdsk.a + +BINDIR ?= /usr/sbin +SHLIB_MAJOR ?= 5 +WARNS ?= 6