From owner-svn-src-stable@freebsd.org Fri Mar 11 22:45:25 2016 Return-Path: Delivered-To: svn-src-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EFB00ACDC93; Fri, 11 Mar 2016 22:45:24 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 C1585679; Fri, 11 Mar 2016 22:45:24 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2BMjNwC092020; Fri, 11 Mar 2016 22:45:23 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2BMjNMA092019; Fri, 11 Mar 2016 22:45:23 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201603112245.u2BMjNMA092019@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Fri, 11 Mar 2016 22:45:23 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r296686 - stable/9/usr.sbin/ntp/ntp-keygen X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Mar 2016 22:45:25 -0000 Author: jkim Date: Fri Mar 11 22:45:23 2016 New Revision: 296686 URL: https://svnweb.freebsd.org/changeset/base/296686 Log: Link ntp-keygen(8) with pthread. Note this is a direct commit to stable/9 because head and stable/10 were fixed differently with r280849 and r285612, respectively. Modified: stable/9/usr.sbin/ntp/ntp-keygen/Makefile Modified: stable/9/usr.sbin/ntp/ntp-keygen/Makefile ============================================================================== --- stable/9/usr.sbin/ntp/ntp-keygen/Makefile Fri Mar 11 22:37:12 2016 (r296685) +++ stable/9/usr.sbin/ntp/ntp-keygen/Makefile Fri Mar 11 22:45:23 2016 (r296686) @@ -20,8 +20,8 @@ CFLAGS+= -I${.CURDIR}/../../../contrib/n -I${.CURDIR}/../../../lib/libc/${MACHINE_ARCH} \ -I${.CURDIR}/../ -DPADD= ${LIBNTP} ${LIBOPTS} -LDADD= ${LIBNTP} ${LIBOPTS} +DPADD= ${LIBNTP} ${LIBOPTS} ${LIBPTHREAD} +LDADD= ${LIBNTP} ${LIBOPTS} -lpthread .if ${MK_OPENSSL} != "no" DPADD+= ${LIBCRYPTO}