mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-28 11:43:25 +02:00
gdbm: Update to version 1.20
- Update from 1.8.3 (2002) to 1.20 (2021) - Update rootfile - There is no longer a make process for make install-compat To have the compat libraries you have to add --enable-libgdbm-compat to the configure command but then you don't get the non compat libraries. So the full configure, make, make install has to be run twice with --enable-libgdbm-compat added to the second instance. - Both static and shared libs are built by default so added --disable-static to both build instances - Nothing flagged from find-dependencies run against the old library versions - Changelog is too large to include here but full details can be found from the ChangeLog file in the source tarball. Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
This commit is contained in:
committed by
Peter Müller
parent
c478bdc2e4
commit
8bf6f0e88c
17
lfs/gdbm
17
lfs/gdbm
@@ -24,7 +24,7 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 1.8.3
|
||||
VER = 1.20
|
||||
|
||||
THISAPP = gdbm-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = 1d1b1d5c0245b1c00aff92da751e9aa1
|
||||
$(DL_FILE)_MD5 = 006c19b8b60828fd6916a16f3496bd3c
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
@@ -71,9 +71,18 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
$(UPDATE_AUTOMAKE)
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr --disable-nls
|
||||
cd $(DIR_APP) && ./configure \
|
||||
--prefix=/usr \
|
||||
--disable-nls \
|
||||
--disable-static
|
||||
cd $(DIR_APP) && make $(MAKETUNING)
|
||||
cd $(DIR_APP) && make BINOWN=root BINGRP=root install
|
||||
cd $(DIR_APP) && ./configure \
|
||||
--prefix=/usr \
|
||||
--disable-nls \
|
||||
--disable-static \
|
||||
--enable-libgdbm-compat
|
||||
cd $(DIR_APP) && make $(MAKETUNING)
|
||||
cd $(DIR_APP) && make BINOWN=root BINGRP=root install
|
||||
cd $(DIR_APP) && make BINOWN=root BINGRP=root install-compat
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
|
||||
Reference in New Issue
Block a user