comparison src/librsb.mk @ 5895:2db7f803d55d release

librsb: Update to version 1.2.0.10 (bug #60042). * src/librsb.mk: Update version and checksum. Remove work-around for fixed bug.
author Markus Mützel <markus.muetzel@gmx.de>
date Sun, 19 Sep 2021 14:32:07 +0200
parents 2734b3818171
children 97c5f8da5036
comparison
equal deleted inserted replaced
5886:5d6c81bb0237 5895:2db7f803d55d
1 # This file is part of MXE. 1 # This file is part of MXE.
2 # See index.html for further information. 2 # See index.html for further information.
3 3
4 PKG := librsb 4 PKG := librsb
5 $(PKG)_IGNORE := 5 $(PKG)_IGNORE :=
6 $(PKG)_VERSION := 1.2.0.9 6 $(PKG)_VERSION := 1.2.0.10
7 $(PKG)_CHECKSUM := b35201470e6691d55c32e941969cd890c1076520 7 $(PKG)_CHECKSUM := 44856577ab31080951f2b18fa9f84d7dc626b2cd
8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) 8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz 9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
10 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$($(PKG)_FILE) 10 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$($(PKG)_FILE)
11 $(PKG)_DEPS := 11 $(PKG)_DEPS :=
12 ifeq ($(USE_SYSTEM_GCC),no) 12 ifeq ($(USE_SYSTEM_GCC),no)
18 $(SED) -n 's|.*librsb-\([0-9\.]*[-rc0-9]*\)\.tar.gz\/download.*|\1|p' | \ 18 $(SED) -n 's|.*librsb-\([0-9\.]*[-rc0-9]*\)\.tar.gz\/download.*|\1|p' | \
19 head -1 19 head -1
20 endef 20 endef
21 21
22 define $(PKG)_BUILD 22 define $(PKG)_BUILD
23 # This is a work-around for a bug in version 1.2.0.9.
24 # Remove the following command once this is fixed upstream.
25 $(SED) -i 's/.A.=.rsb__real.*\([,;]\)/1\1/g' $(1)/rsb_eps.c
26
27 cd '$(1)' && autoreconf -fi && ./configure \ 23 cd '$(1)' && autoreconf -fi && ./configure \
28 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \ 24 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
29 --prefix='$(HOST_PREFIX)' \ 25 --prefix='$(HOST_PREFIX)' \
30 $(ENABLE_SHARED_OR_STATIC) \ 26 $(ENABLE_SHARED_OR_STATIC) \
31 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \ 27 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \