From e3643cb4802f4ec4bf2c520eeb827c4ad0bdec18 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sat, 22 Dec 2018 14:00:14 +0100 Subject: [PATCH] build: Fix CPPFLAGS for openssl. The effect of the wrong file name was that --with-openssl-headers was effectively ignored. This bug was introduced one year ago in commit a4c2c4f9c7cd (crypt: Rename RSA functions) which renamed the crypt.c file to openssl.c but missed to adjust the Makefile accordingly. --- Makefile.real | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.real b/Makefile.real index dae48f0e..f313b98a 100644 --- a/Makefile.real +++ b/Makefile.real @@ -191,7 +191,7 @@ $(object_dir)/spx%.o: CPPFLAGS += $(speex_cppflags) $(object_dir)/flac%.o: CPPFLAGS += $(flac_cppflags) $(object_dir)/mp3_afh.o: CPPFLAGS += $(id3tag_cppflags) -$(object_dir)/crypt.o: CPPFLAGS += $(openssl_cppflags) +$(object_dir)/openssl.o: CPPFLAGS += $(openssl_cppflags) $(object_dir)/gcrypt.o: CPPFLAGS += $(gcrypt_cppflags) $(object_dir)/ao_write.o: CPPFLAGS += $(ao_cppflags) $(object_dir)/alsa%.o: CPPFLAGS += $(alsa_cppflags) -- 2.39.2