Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 28 May 2012 14:45:12 +0000 (UTC)
From:      Gabor Kovesdan <gabor@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r236185 - head/lib/libkiconv
Message-ID:  <201205281445.q4SEjCsK017120@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <jbeich@tormail.org>

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 <bsd.own.mk>
+
 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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201205281445.q4SEjCsK017120>