From owner-svn-src-all@freebsd.org Fri Jul 20 23:49:59 2018 Return-Path: Delivered-To: svn-src-all@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 316C7102A22C; Fri, 20 Jul 2018 23:49:59 +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 D684571B83; Fri, 20 Jul 2018 23:49:58 +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 A9879170D0; Fri, 20 Jul 2018 23:49:58 +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 w6KNnwIQ089035; Fri, 20 Jul 2018 23:49:58 GMT (envelope-from kib@FreeBSD.org) Received: (from kib@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6KNnvXf089032; Fri, 20 Jul 2018 23:49:57 GMT (envelope-from kib@FreeBSD.org) Message-Id: <201807202349.w6KNnvXf089032@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kib set sender to kib@FreeBSD.org using -f From: Konstantin Belousov Date: Fri, 20 Jul 2018 23:49:57 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r336568 - in head: . lib/ofed/libibverbs lib/ofed/libmlx5 X-SVN-Group: head X-SVN-Commit-Author: kib X-SVN-Commit-Paths: in head: . lib/ofed/libibverbs lib/ofed/libmlx5 X-SVN-Commit-Revision: 336568 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jul 2018 23:49:59 -0000 Author: kib Date: Fri Jul 20 23:49:57 2018 New Revision: 336568 URL: https://svnweb.freebsd.org/changeset/base/336568 Log: Move OFED libraries libmlx5.so.1 and libibverbs.so.1 to /lib. The is required because libpcap.so depends on the libraries when OFED is enabled. Reviewed by: bdrewery, hselasky Sponsored by: Mellanox Technologies MFC after: 2 weeks Differential revision: https://reviews.freebsd.org/D16230 Modified: head/ObsoleteFiles.inc head/lib/ofed/libibverbs/Makefile head/lib/ofed/libmlx5/Makefile Modified: head/ObsoleteFiles.inc ============================================================================== --- head/ObsoleteFiles.inc Fri Jul 20 22:50:21 2018 (r336567) +++ head/ObsoleteFiles.inc Fri Jul 20 23:49:57 2018 (r336568) @@ -38,6 +38,9 @@ # xargs -n1 | sort | uniq -d; # done +# 20180721: move of libmlx5.so.1 and libibverbs.so.1 +OLD_LIBS+=usr/lib/libmlx5.so.1 +OLD_LIBS+=usr/lib/libibverbs.so.1 # 20180710: old numa cleanup OLD_FILES+=usr/include/sys/numa.h OLD_FILES+=usr/share/man/man2/numa_getaffinity.2.gz Modified: head/lib/ofed/libibverbs/Makefile ============================================================================== --- head/lib/ofed/libibverbs/Makefile Fri Jul 20 22:50:21 2018 (r336567) +++ head/lib/ofed/libibverbs/Makefile Fri Jul 20 23:49:57 2018 (r336568) @@ -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: head/lib/ofed/libmlx5/Makefile ============================================================================== --- head/lib/ofed/libmlx5/Makefile Fri Jul 20 22:50:21 2018 (r336567) +++ head/lib/ofed/libmlx5/Makefile Fri Jul 20 23:49:57 2018 (r336568) @@ -3,7 +3,7 @@ _spath= ${SRCTOP}/contrib/ofed/libmlx5 .PATH: ${_spath} -SHLIBDIR?= /usr/lib +SHLIBDIR?= /lib LIB= mlx5 SHLIB_MAJOR= 1 MK_PROFILE= no