Fix WITH_APU_CRYPTO check on 32-bit Linux platform

All of the apr flags needed to compile APU_HAVE_CRYPTO check
in configure.ac aren't passed.  While this works fine for 64-bit
machines (because _LARGEFILE64_SOURCE is already defined),
this does not work on 32-bit.  This in-turn breaks the apr_off_t
definition in apr.h.

By passing along the apr --cflags and --cppflags to compile,
32-bit machines will allow WITH_APU_CRYPTO to be set if there's
support for it.
This commit is contained in:
Kurt Newman
2015-05-05 16:04:23 -05:00
committed by Felipe Zimmerle
parent 2e7ae24b16
commit 9dbb31b6ce
2 changed files with 12 additions and 1 deletions

View File

@@ -1,6 +1,8 @@
DD mmm YYYY - X.Y.Z (To be released)
------------------------------------
* Fix apr_crypto.h check on 32-bit Linux platform
[Issue #882 - Kurt Newman]
* Fix variable resolution duration (Content of the DURATION variable).
[Issue #662 - Andrew Elble]
* Fix crash while adding empty keys to persistent collections.