diff options
author | alfred <alfred@FreeBSD.org> | 2014-12-25 03:15:56 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2014-12-25 03:15:56 +0000 |
commit | e257fca333058f943de24b04757f44f53c7788dc (patch) | |
tree | d851fffc9d50800b9c87f453d337669b26f4621f | |
parent | b61b2d2e422efaebb1b87808e0bb834f7b53c8b4 (diff) | |
download | FreeBSD-src-e257fca333058f943de24b04757f44f53c7788dc.zip FreeBSD-src-e257fca333058f943de24b04757f44f53c7788dc.tar.gz |
Move libxo to /lib
Update ObsoleteFiles to reflect libxo move.
Reviewed by: ngie
Differential Revision: https://reviews.freebsd.org/D1370
-rw-r--r-- | ObsoleteFiles.inc | 3 | ||||
-rw-r--r-- | lib/libxo/Makefile | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ObsoleteFiles.inc b/ObsoleteFiles.inc index 70b76b8..4078a30 100644 --- a/ObsoleteFiles.inc +++ b/ObsoleteFiles.inc @@ -38,6 +38,9 @@ # xargs -n1 | sort | uniq -d; # done +# 20141224: libxo moved to /lib +OLD_FILES+=usr/lib/libxo.a +OLD_FILES+=usr/lib/libxo_p.a # 20141223: remove in6_gif.h, in_gif.h and if_stf.h OLD_FILES+=usr/include/net/if_stf.h OLD_FILES+=usr/include/netinet/in_gif.h diff --git a/lib/libxo/Makefile b/lib/libxo/Makefile index fbe7857..770db20 100644 --- a/lib/libxo/Makefile +++ b/lib/libxo/Makefile @@ -7,6 +7,8 @@ LIBXO= ${.CURDIR:H:H}/contrib/libxo LIB= xo SHLIB_MAJOR=0 +SHLIBDIR?= /lib + SRCS= libxo.c CFLAGS+=-I${LIBXO}/libxo |