-
Notifications
You must be signed in to change notification settings - Fork 140
Do use ALL_CFLAGS in hdr-check #129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
On Windows, we define a specific set of pre-processor macros, among other reasons: to avoid including syslog.h (which is not available on Windows). The hdr-check target did not use those definitions, resulting in a failure to include said syslog.h. To fix that, let's let the hdr-check target make use of ALL_CFLAGS, which does include the pre-processor macros that would e.g. skip the conditional block including syslog.h. Signed-off-by: Johannes Schindelin <[email protected]>
/submit |
Submitted as [email protected] |
On the Git mailing list, Junio C Hamano wrote (reply to this):
|
This branch is now known as |
This patch series was integrated into pu via git@3dc66a3. |
This patch series was integrated into pu via git@620ba34. |
This patch series was integrated into pu via git@eda4733. |
This patch series was integrated into pu via git@7625976. |
This patch series was integrated into pu via git@48be1a6. |
This patch series was integrated into pu via git@2b8d1ab. |
This patch series was integrated into next via git@fcd9ee9. |
This patch series was integrated into pu via git@ecf2cf7. |
This patch series was integrated into pu via git@9e043c3. |
This patch series was integrated into pu via git@63f7b78. |
This patch series was integrated into pu via git@101e772. |
My patch was superseded by git@b503a2d. |
When I was playing with the
Makefile
targethdr-check
, it looked as if it missed the correctCFLAGS
. Without them, on Windows an attempt is made to includesyslog.h
, which does not make sense at all.This patch addresses that.