]> git.tuebingen.mpg.de Git - paraslash.git/commit - Makefile.in
build: Fix --with-gcrypt-headers and --with-vorbis-headers.
authorAndre Noll <maan@systemlinux.org>
Fri, 2 May 2014 20:07:24 +0000 (22:07 +0200)
committerAndre Noll <maan@systemlinux.org>
Thu, 31 Jul 2014 18:01:14 +0000 (20:01 +0200)
commit99d094f7464a783789cf3505b6ff57a3813839cd
treeb21d613f79cbf0567685035f512d878fc59715c0
parent093dda1824631372587d107d64601389027c6187
build: Fix --with-gcrypt-headers and --with-vorbis-headers.

The configure script sets the autoconf output variable gcrypt_cppflags
according to the configure option --with-gcrypt-headers, but
gcrypt_cppflags is never used for the build.  Hence, if libgcrypt is
installed in a non-standard location, and that location is specified
as the argument to --with-gcrypt-headers, configure detects the gcrypt
header correctly, but the build fails nevertheless.

The same type of bug also exists for the --with-vorbis-headers option.

To fix this omission this patch sets both variables in Makefile.in
and references it in Makefile.real to compile the affected objects
with the correct flags.
Makefile.in
Makefile.real
configure.ac