diff options
author | shin <shin@FreeBSD.org> | 2000-02-14 03:55:27 +0000 |
---|---|---|
committer | shin <shin@FreeBSD.org> | 2000-02-14 03:55:27 +0000 |
commit | 4cef96843ac207db88da42b8b176b3c413008c45 (patch) | |
tree | 807c56e90a8be266edc253b658b57670954fe3f6 /lib/libutil | |
parent | 9d118bd000724cf55b1e2d3bf4d0679d0d78f0fe (diff) | |
download | FreeBSD-src-4cef96843ac207db88da42b8b176b3c413008c45.zip FreeBSD-src-4cef96843ac207db88da42b8b176b3c413008c45.tar.gz |
Update major version.
Now libutil depends on libc.so.4, so needs to update the major version.
Without this, old binaries which use libutil and build with libc.so.3
will coredump on recent 4.0.
Solicited comment for cvs-committers and there seems to be no objection.
Approved by: jkh
Diffstat (limited to 'lib/libutil')
-rw-r--r-- | lib/libutil/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libutil/Makefile b/lib/libutil/Makefile index 44b4ce8..3b83b41e 100644 --- a/lib/libutil/Makefile +++ b/lib/libutil/Makefile @@ -2,8 +2,8 @@ # $FreeBSD$ LIB= util -SHLIB_MAJOR= 2 -SHLIB_MINOR= 2 +SHLIB_MAJOR= 3 +SHLIB_MINOR= 0 CFLAGS+=-Wall -DLIBC_SCCS -I${.CURDIR} -I${.CURDIR}/../../sys CFLAGS+=-DINET6 SRCS= login.c login_tty.c logout.c logwtmp.c pty.c setproctitle.c \ |