1
0
mirror of https://github.com/RPCS3/soundtouch.git synced 2024-11-08 12:02:28 +01:00

source/SoundTouchDLL: don't clobber CXXFLAGS, LDFLAGS

automake warns about this, telling us to set AM_CXXFLAGS and AM_LDFLAGS instead.

This fixes respecting LDFLAGS in particular (the CXXFLAGS one was harmless).

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James 2024-03-24 07:41:49 +00:00
parent 17b63eeb3e
commit 02c22eceea
No known key found for this signature in database
GPG Key ID: 738409F520DF9190

View File

@ -34,7 +34,7 @@ libSoundTouchDll_la_SOURCES=../SoundTouch/AAFilter.cpp ../SoundTouch/FIRFilter.c
# Compiler flags
# Modify the default 0.0.0 to LIB_SONAME.0.0
LDFLAGS=-version-info @LIB_SONAME@
AM_LDFLAGS=$(LDFLAGS) -version-info @LIB_SONAME@
if X86
CXXFLAGS1=-mstackrealign -msse
@ -44,4 +44,4 @@ if X86_64
CXXFLAGS2=-fPIC
endif
CXXFLAGS+=$(AM_CXXFLAGS) $(CXXFLAGS1) $(CXXFLAGS2) -shared -DDLL_EXPORTS -fvisibility=hidden
AM_CXXFLAGS=$(CXXFLAGS) $(CXXFLAGS1) $(CXXFLAGS2) -shared -DDLL_EXPORTS -fvisibility=hidden