Merge pull request #6637 from orbea/flac

Makefile.common: Fix segfaults with --disable-builtinflac.
This commit is contained in:
Twinaphex 2018-04-27 19:02:09 +02:00 committed by GitHub
commit e52bb69b35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -1463,7 +1463,8 @@ ifeq ($(HAVE_BUILTINFLAC),1)
endif
OBJ += $(FLACOBJ)
else ifeq ($(HAVE_FLAC),1)
LIBS += $(FLAC_LIBS)
DEFINES += -DHAVE_FLAC
LIBS += $(FLAC_LIBS)
endif
ifeq ($(HAVE_ZLIB), 1)