From 767a8b19a97c17aa7077d7d97c76c84e93154bc9 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Fri, 19 Sep 2014 11:06:37 +0200 Subject: [PATCH] configure: unify macro naming for available headers --- configure | 4 ++-- sysincl.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index f8db0f1..e717e31 100755 --- a/configure +++ b/configure @@ -436,11 +436,11 @@ else fi if test_code '' 'stdint.h' '' '' ''; then - add_def HAS_STDINT_H + add_def HAVE_STDINT_H fi if test_code '' 'inttypes.h' '' '' ''; then - add_def HAS_INTTYPES_H + add_def HAVE_INTTYPES_H fi if [ $feat_ipv6 = "1" ] && \ diff --git a/sysincl.h b/sysincl.h index 2ecccb7..adf1997 100644 --- a/sysincl.h +++ b/sysincl.h @@ -62,9 +62,9 @@ #include #include -#ifdef HAS_INTTYPES_H +#ifdef HAVE_INTTYPES_H #include -#elif HAS_STDINT_H +#elif HAVE_STDINT_H #include #else /* Tough */