From: Andre Noll Date: Sat, 22 Dec 2018 13:00:14 +0000 (+0100) Subject: build: Fix CPPFLAGS for openssl. X-Git-Tag: v0.6.3~52 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=e3643cb4802f4ec4bf2c520eeb827c4ad0bdec18 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. --- 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)