diff options
author | nwhitehorn <nwhitehorn@FreeBSD.org> | 2013-12-15 15:51:05 +0000 |
---|---|---|
committer | nwhitehorn <nwhitehorn@FreeBSD.org> | 2013-12-15 15:51:05 +0000 |
commit | d5851002a967e1ff42d077865f02f4bee392d6f9 (patch) | |
tree | 98348e4418428e9b17ff80b200c1416927187159 | |
parent | 34f582be39760f7764781757155bf0c45e2b2c9a (diff) | |
download | FreeBSD-src-d5851002a967e1ff42d077865f02f4bee392d6f9.zip FreeBSD-src-d5851002a967e1ff42d077865f02f4bee392d6f9.tar.gz |
Bump libcam shared library version forgotten in r259397.
Submitted by: kib
-rw-r--r-- | ObsoleteFiles.inc | 2 | ||||
-rw-r--r-- | lib/libcam/Makefile | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/ObsoleteFiles.inc b/ObsoleteFiles.inc index 41801c1..07c35e1 100644 --- a/ObsoleteFiles.inc +++ b/ObsoleteFiles.inc @@ -38,6 +38,8 @@ # xargs -n1 | sort | uniq -d; # done +# 20131215: libcam version bumped +OLD_LIBS+=lib/libcam.so.6 usr/lib32/libcam.so.6 # 20131202: libcapsicum and libcasper moved to /lib/ OLD_LIBS+=usr/lib/libcapsicum.so.0 OLD_LIBS+=usr/lib/libcasper.so.0 diff --git a/lib/libcam/Makefile b/lib/libcam/Makefile index 9a21dde..1621fe6 100644 --- a/lib/libcam/Makefile +++ b/lib/libcam/Makefile @@ -42,6 +42,6 @@ MLINKS+= cam.3 cam_open_device.3 \ SDIR= ${.CURDIR}/../../sys CFLAGS+= -I${.CURDIR} -I${SDIR} -SHLIB_MAJOR= 6 +SHLIB_MAJOR= 7 .include <bsd.lib.mk> |