From owner-svn-src-stable@freebsd.org Sun Aug 12 08:42:07 2018 Return-Path: Delivered-To: svn-src-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A74D310691FA; Sun, 12 Aug 2018 08:42:07 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 589A97F1A7; Sun, 12 Aug 2018 08:42:07 +0000 (UTC) (envelope-from kib@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3967F23C29; Sun, 12 Aug 2018 08:42:07 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7C8g7D8026830; Sun, 12 Aug 2018 08:42:07 GMT (envelope-from kib@FreeBSD.org) Received: (from kib@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7C8g6EC026827; Sun, 12 Aug 2018 08:42:06 GMT (envelope-from kib@FreeBSD.org) Message-Id: <201808120842.w7C8g6EC026827@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kib set sender to kib@FreeBSD.org using -f From: Konstantin Belousov Date: Sun, 12 Aug 2018 08:42:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r337681 - in stable/11: . lib/ofed/libibverbs lib/ofed/libmlx5 X-SVN-Group: stable-11 X-SVN-Commit-Author: kib X-SVN-Commit-Paths: in stable/11: . lib/ofed/libibverbs lib/ofed/libmlx5 X-SVN-Commit-Revision: 337681 X-SVN-Commit-Repository: base 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.27 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: Sun, 12 Aug 2018 08:42:07 -0000 Author: kib Date: Sun Aug 12 08:42:06 2018 New Revision: 337681 URL: https://svnweb.freebsd.org/changeset/base/337681 Log: MFC r336568: Move OFED libraries libmlx5.so.1 and libibverbs.so.1 to /lib. Modified: stable/11/ObsoleteFiles.inc stable/11/lib/ofed/libibverbs/Makefile stable/11/lib/ofed/libmlx5/Makefile Directory Properties: stable/11/ (props changed) Modified: stable/11/ObsoleteFiles.inc ============================================================================== --- stable/11/ObsoleteFiles.inc Sun Aug 12 07:47:44 2018 (r337680) +++ stable/11/ObsoleteFiles.inc Sun Aug 12 08:42:06 2018 (r337681) @@ -38,6 +38,9 @@ # xargs -n1 | sort | uniq -d; # done +# 20180812: move of libmlx5.so.1 and libibverbs.so.1 +OLD_LIBS+=usr/lib/libmlx5.so.1 +OLD_LIBS+=usr/lib/libibverbs.so.1 # 20180714: new clang import which bumps version from 6.0.0 to 6.0.1. OLD_FILES+=usr/lib/clang/6.0.0/include/sanitizer/allocator_interface.h OLD_FILES+=usr/lib/clang/6.0.0/include/sanitizer/asan_interface.h Modified: stable/11/lib/ofed/libibverbs/Makefile ============================================================================== --- stable/11/lib/ofed/libibverbs/Makefile Sun Aug 12 07:47:44 2018 (r337680) +++ stable/11/lib/ofed/libibverbs/Makefile Sun Aug 12 08:42:06 2018 (r337681) @@ -5,7 +5,7 @@ _spath= ${SRCTOP}/contrib/ofed/libibverbs LIB= ibverbs SHLIB_MAJOR= 1 -SHLIBDIR?= /usr/lib +SHLIBDIR?= /lib MK_PROFILE= no VERSION_MAP= ${_spath}/libibverbs.map Modified: stable/11/lib/ofed/libmlx5/Makefile ============================================================================== --- stable/11/lib/ofed/libmlx5/Makefile Sun Aug 12 07:47:44 2018 (r337680) +++ stable/11/lib/ofed/libmlx5/Makefile Sun Aug 12 08:42:06 2018 (r337681) @@ -3,7 +3,7 @@ _spath= ${SRCTOP}/contrib/ofed/libmlx5 .PATH: ${_spath} -SHLIBDIR?= /usr/lib +SHLIBDIR?= /lib LIB= mlx5 SHLIB_MAJOR= 1 MK_PROFILE= no