mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-21 00:12:58 +02:00
squid: Link against libatomic on ARM
This package failed to build on ARM because atomic functions are being emulated on ARM32 and the required library was not linked. Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
@@ -34,6 +34,10 @@ TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
|
||||
CXXFLAGS+= -Wno-error=format-truncation
|
||||
|
||||
ifeq "$(BUILD_ARCH)" "armv5tel"
|
||||
LDFLAGS += -latomic
|
||||
endif
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
@@ -77,7 +81,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
cd $(DIR_APP) && autoreconf -vfi
|
||||
cd $(DIR_APP)/libltdl && autoreconf -vfi
|
||||
|
||||
cd $(DIR_APP) && CXXFLAGS="$(CXXFLAGS)" ./configure \
|
||||
cd $(DIR_APP) && CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
|
||||
LDFLAGS="$(LDFLAGS)" ./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc/squid \
|
||||
--datadir=/usr/lib/squid \
|
||||
|
||||
Reference in New Issue
Block a user