Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 May 2008 03:41:23 GMT
From:      John Birrell <jb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 142353 for review
Message-ID:  <200805270341.m4R3fNm5029847@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=142353

Change 142353 by jb@freebsd3 on 2008/05/27 03:41:17

	Put KSE back in.

Affected files ...

.. //depot/projects/dtrace7/src/share/mk/bsd.own.mk#6 edit

Differences ...

==== //depot/projects/dtrace7/src/share/mk/bsd.own.mk#6 (text+ko) ====

@@ -1,4 +1,4 @@
-# $FreeBSD: src/share/mk/bsd.own.mk,v 1.74 2008/03/29 17:44:39 ru Exp $
+# $FreeBSD: src/share/mk/bsd.own.mk,v 1.67.2.4 2008/01/28 08:42:15 dougb Exp $
 #
 # The include file <bsd.own.mk> set common variables for owner,
 # group, mode, and directories. Defaults are in brackets.
@@ -162,6 +162,8 @@
 NLSGRP?=	${SHAREGRP}
 NLSMODE?=	${NOBINMODE}
 
+DEFAULT_THREAD_LIB?=	libthr
+
 INCLUDEDIR?=	/usr/include
 
 # Common variables
@@ -326,6 +328,7 @@
     KVM \
     LIB32 \
     LIBPTHREAD \
+    LIBKSE \
     LIBTHR \
     LOCALES \
     LPR \
@@ -356,8 +359,8 @@
     TOOLCHAIN \
     USB \
     WPA_SUPPLICANT_EAPOL \
-    ZFS \
-    ZONEINFO
+    ZONEINFO \
+    ZFS
 .if defined(WITH_${var}) && defined(WITHOUT_${var})
 .error WITH_${var} and WITHOUT_${var} can't both be set.
 .endif
@@ -396,10 +399,11 @@
 # Order is somewhat important.
 #
 .if ${MK_LIBPTHREAD} == "no"
+MK_LIBKSE:=	no
 MK_LIBTHR:=	no
 .endif
 
-.if ${MK_LIBTHR} == "no"
+.if ${MK_LIBKSE} == "no" && ${MK_LIBTHR} == "no"
 MK_BIND:=	no
 .endif
 



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