From 936dfb80f81df9f688cd37fbc1d93dc7b3f1d905 Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Mon, 27 Jul 2009 16:13:03 +0200 Subject: [PATCH] rename HAVE_BYTESWAP_H to CONFIG_BYTESWAP_H Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- bswap.h | 4 ++-- configure | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bswap.h b/bswap.h index 864bbeb..06de544 100644 --- a/bswap.h +++ b/bswap.h @@ -11,7 +11,7 @@ #include #else -#ifdef HAVE_BYTESWAP_H +#ifdef CONFIG_BYTESWAP_H #include #else @@ -47,7 +47,7 @@ (uint64_t)(((uint64_t)(__x) & (uint64_t)0xff00000000000000ULL) >> 56) )); \ }) -#endif /* !HAVE_BYTESWAP_H */ +#endif /* !CONFIG_BYTESWAP_H */ static inline uint16_t bswap16(uint16_t x) { diff --git a/configure b/configure index ac8273e..68dda0d 100755 --- a/configure +++ b/configure @@ -1541,7 +1541,7 @@ else int main(void) { return bswap_32(0); } EOF if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then - echo "#define HAVE_BYTESWAP_H 1" >> $config_host_h + echo "#define CONFIG_BYTESWAP_H 1" >> $config_host_h fi cat > $TMPC << EOF #include -- 2.7.4