Bump the library version numbers for the following libraries:

/lib/{libm,libreadline}
	/usr/lib/{libhistory,libopie,libpcap}

in preparation for doing the same thing to RELENG_5.  HUGE amounts of
help for determining what to bump provided by kris.

Discussed on:	freebsd-current
Approved by:	re (not required for commit but something like this should be)
This commit is contained in:
Ken Smith 2004-10-01 15:38:07 +00:00
parent 8c7ff1f331
commit 85a8b887df
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=136027
5 changed files with 19 additions and 3 deletions

View File

@ -23,6 +23,21 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 6.x IS SLOW:
developers choose to disable these features on build machines
to maximize performance.
20041001:
The following libraries had their version number bumped up:
/lib/libm.so.2 -> libm.so.3
/lib/libreadline.so.4 -> libreadline.so.5
/usr/lib/libhistory.so.4 -> libhistory.so.5
/usr/lib/libopie.so.2 -> libopie.so.3
/usr/lib/libpcap.so.2 -> libpcap.so.3
FreeBSD 4.10 versions of these libraries will be added to the
compat4x collection. If you expect to be able to run old 4.X
executables you will need to remove the old versions of these
libraries. However note that any 5.X executables you have built
will stop working once you remove those old libraries. You should
have all your ports/packages rebuilt before removing the old
libraries.
20040929:
The pfil API has gained an additional argument to pass an inpcb.
You should rebuild all pfil consuming modules: ipfw, ipfilter

View File

@ -1,6 +1,6 @@
# $FreeBSD$
SHLIB_MAJOR=4
SHLIB_MAJOR=5
RL_LIBRARY_VERSION=4.3
SRCDIR= ${.CURDIR}/../../../../contrib/libreadline

View File

@ -4,7 +4,7 @@
#
OPIE_DIST?= ${.CURDIR}/../../contrib/opie
DIST_DIR= ${OPIE_DIST}/${.CURDIR:T}
SHLIB_MAJOR= 2
SHLIB_MAJOR= 3
KEYFILE?= \"/etc/opiekeys\"

View File

@ -19,7 +19,7 @@ CFLAGS+=-DHAVE_SNPRINTF -DHAVE_VSNPRINTF
CFLAGS+=-DINET6
.endif
SHLIB_MAJOR=2
SHLIB_MAJOR=3
#
# Magic to grab sources out of src/contrib

View File

@ -68,6 +68,7 @@ CFLAGS+= -D_IEEE_LIBM
LIB= m
SHLIBDIR?= /lib
SHLIB_MAJOR= 3
COMMON_SRCS= b_exp.c b_log.c b_tgamma.c \
e_acos.c e_acosf.c e_acosh.c e_acoshf.c e_asin.c e_asinf.c \
e_atan2.c e_atan2f.c e_atanh.c e_atanhf.c e_cosh.c e_coshf.c e_exp.c \