diff options
author | rodrigc <rodrigc@FreeBSD.org> | 2015-11-04 07:20:55 +0000 |
---|---|---|
committer | rodrigc <rodrigc@FreeBSD.org> | 2015-11-04 07:20:55 +0000 |
commit | cdebd1493781d90cea8fff176eb886cd1ac46fa5 (patch) | |
tree | d184be2dacc8ca4944af23a5d4a03481bb46ebaa /usr.bin/mandoc | |
parent | 0974676404a428964d36967cf69f12e677a77038 (diff) | |
download | FreeBSD-src-cdebd1493781d90cea8fff176eb886cd1ac46fa5.zip FreeBSD-src-cdebd1493781d90cea8fff176eb886cd1ac46fa5.tar.gz |
Rename libohash to libopenbsd.
libopenbsd is an internal library which
to bring in compatibility stuff from OpenBSD.
This will allow us to bring in more
OpenBSD utilities into the FreeBSD base system.
We similarly use libnetbsd for bringing in stuff from NetBSD.
Reviewed by: bapt
Differential Revision: https://reviews.freebsd.org/D4078
Diffstat (limited to 'usr.bin/mandoc')
-rw-r--r-- | usr.bin/mandoc/Makefile | 4 | ||||
-rw-r--r-- | usr.bin/mandoc/Makefile.depend | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mandoc/Makefile b/usr.bin/mandoc/Makefile index faa46ed..9160dc0 100644 --- a/usr.bin/mandoc/Makefile +++ b/usr.bin/mandoc/Makefile @@ -82,8 +82,8 @@ SRCS+= ${DB_SRCS} WARNS?= 2 CFLAGS+= -DHAVE_CONFIG_H \ - -I${.CURDIR}/../../lib/libohash/ \ + -I${.CURDIR}/../../lib/libopenbsd/ \ -I${.CURDIR}/../../contrib/sqlite3 -LIBADD= ohash sqlite3 z +LIBADD= openbsd sqlite3 z .include <bsd.prog.mk> diff --git a/usr.bin/mandoc/Makefile.depend b/usr.bin/mandoc/Makefile.depend index e3848e3..7c705f5 100644 --- a/usr.bin/mandoc/Makefile.depend +++ b/usr.bin/mandoc/Makefile.depend @@ -9,7 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libohash \ + lib/libopenbsd \ lib/libsqlite3 \ lib/libthr \ lib/libz \ |