mirror of
https://github.com/google/brotli.git
synced 2026-09-22 14:45:51 +00:00
autoconf: Include statements should be in CPPFLAGS, not CFLAGS #220
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @rcanavan on GitHub (Mar 26, 2018).
When updating brotli from an older version, build may fail with
error: ‘BROTLI_DECODER_PARAM_LARGE_WINDOW’ undeclaredbecause the Include statements for the brotli headers use the installed location first when invoking the compiler. This can be fixed by moving the include statement for brotli's own header files from AM_CFLAGS to AM_CPPFLAGS.@eustas commented on GitHub (Mar 28, 2018):
Can not reproduce.
What I do:
Tried replacing
AM_CFLAGSwithAM_CPPFLAGS, but found that the place where-Ixxxis inserted is not changed.Could you provide the steps to reproduce the problem?