From owner-svn-src-all@FreeBSD.ORG Mon May 28 14:45:13 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0AFFF1065674; Mon, 28 May 2012 14:45:12 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D98728FC17; Mon, 28 May 2012 14:45:12 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4SEjCDe017122; Mon, 28 May 2012 14:45:12 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4SEjCsK017120; Mon, 28 May 2012 14:45:12 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201205281445.q4SEjCsK017120@svn.freebsd.org> From: Gabor Kovesdan Date: Mon, 28 May 2012 14:45:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r236185 - head/lib/libkiconv X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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: Mon, 28 May 2012 14:45:13 -0000 Author: gabor Date: Mon May 28 14:45:12 2012 New Revision: 236185 URL: http://svn.freebsd.org/changeset/base/236185 Log: - Include forgotten bsd.own.mk and fix condition Reported by: Jan Beich Modified: head/lib/libkiconv/Makefile Modified: head/lib/libkiconv/Makefile ============================================================================== --- head/lib/libkiconv/Makefile Mon May 28 14:33:15 2012 (r236184) +++ head/lib/libkiconv/Makefile Mon May 28 14:45:12 2012 (r236185) @@ -1,5 +1,7 @@ # $FreeBSD$ +.include + LIB= kiconv SHLIBDIR?= /lib SRCS= kiconv_sysctl.c xlat16_iconv.c xlat16_sysctl.c @@ -17,7 +19,7 @@ CFLAGS+= -I${.CURDIR}/../../sys WARNS?= 1 -.if !defined(MK_ICONV) +.if ${MK_ICONV} == "no" CFLAGS+= -DICONV_DLOPEN .endif