diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2009-10-24 17:38:06 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2009-10-24 17:38:06 +0200 |
commit | 10c9f030e02ccec5c002abc42776f994c124c574 (patch) | |
tree | f0c20a5c4bcbf72d330cfa47e3916763be841036 /apt-pkg | |
parent | 5cbf7810a2d9f8905015d8a7879df095cfb6d6ea (diff) |
Bumped libapt version and excluded eglibc from SONAME. (Closes: #448249)
Backported from lp:~mvo/apt/debian-experimental
Based on patch by Eugene V. Lyubimkin
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/init.h | 4 | ||||
-rw-r--r-- | apt-pkg/makefile | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/apt-pkg/init.h b/apt-pkg/init.h index 44d1d107c..44a57eb45 100644 --- a/apt-pkg/init.h +++ b/apt-pkg/init.h @@ -18,8 +18,8 @@ // See the makefile #define APT_PKG_MAJOR 4 -#define APT_PKG_MINOR 8 -#define APT_PKG_RELEASE 1 +#define APT_PKG_MINOR 9 +#define APT_PKG_RELEASE 0 extern const char *pkgVersion; extern const char *pkgLibVersion; diff --git a/apt-pkg/makefile b/apt-pkg/makefile index 7816ecf0d..80038e28e 100644 --- a/apt-pkg/makefile +++ b/apt-pkg/makefile @@ -12,9 +12,8 @@ include ../buildlib/defaults.mak # The library name, don't forget to update init.h and the copy in # methods/makefile - FIXME LIBRARY=apt-pkg -LIBEXT=$(GLIBC_VER)$(LIBSTDCPP_VER) -MAJOR=4.8 -MINOR=1 +MAJOR=4.9 +MINOR=0 SLIBS=$(PTHREADLIB) $(INTLLIBS) -lutil -ldl APT_DOMAIN:=libapt-pkg$(MAJOR) |