svn commit: r236185 - head/lib/libkiconv

Gabor Kovesdan gabor at FreeBSD.org
Mon May 28 14:45:13 UTC 2012


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 at 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
 


More information about the svn-src-head mailing list