Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Jul 2018 23:49:57 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
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
Message-ID:  <201807202349.w6KNnvXf089032@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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