From 2e4fccde0254bcd096b81adc88ae59319ee76e9d Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Mon, 1 Oct 2012 03:04:25 +0000 Subject: [PATCH] fix ifdef elif in attribute BUG=none TEST=none git-svn-id: http://libyuv.googlecode.com/svn/trunk@383 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- README.chromium | 2 +- include/libyuv/basic_types.h | 3 +-- include/libyuv/version.h | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.chromium b/README.chromium index 40ca7272e..d0593eb7d 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 382 +Version: 383 License: BSD License File: LICENSE diff --git a/include/libyuv/basic_types.h b/include/libyuv/basic_types.h index f0be3c1ba..62d2488bc 100644 --- a/include/libyuv/basic_types.h +++ b/include/libyuv/basic_types.h @@ -85,8 +85,7 @@ typedef signed char int8; #else #define LIBYUV_API #endif // LIBYUV_BUILDING_SHARED_LIBRARY -#else // WIN32 -#if defined(__GNUC__) && __GNUC__ >= 4 && \ +#elif defined(__GNUC__) && __GNUC__ >= 4 && \ (defined(LIBYUV_BUILDING_SHARED_LIBRARY) || \ defined(LIBYUV_USING_SHARED_LIBRARY)) #define LIBYUV_API __attribute__ ((visibility ("default"))) diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 00cc17fb6..6fb5a4243 100644 --- a/include/libyuv/version.h +++ b/include/libyuv/version.h @@ -11,6 +11,6 @@ #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #define INCLUDE_LIBYUV_VERSION_H_ -#define LIBYUV_VERSION 382 +#define LIBYUV_VERSION 383 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT