From: Tim-Philipp Müller Date: Sun, 13 Aug 2017 09:50:05 +0000 (+0100) Subject: libcheck: fix build failure X-Git-Tag: 1.16.2~689 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=208d500c67e3022f7cc2253927a933837302a623;p=platform%2Fupstream%2Fgstreamer.git libcheck: fix build failure Need to define CK_DLL_EXP to extern as well in libcompat.h which gets included before the internal-check.h where the other fallback definition for CK_DLL_EXP is. duplicate symbol _check_minor_version in: libcheckinternal.a(libcheckinternal_la-check.o) libcheckinternal.a(libcheckinternal_la-check_log.o) --- diff --git a/libs/gst/check/libcheck/libcompat/libcompat.h b/libs/gst/check/libcheck/libcompat/libcompat.h index d0eedaf..a263ad2 100644 --- a/libs/gst/check/libcheck/libcompat/libcompat.h +++ b/libs/gst/check/libcheck/libcompat/libcompat.h @@ -51,7 +51,7 @@ * on the command line. */ #ifndef CK_DLL_EXP -#define CK_DLL_EXP +#define CK_DLL_EXP extern #endif #if _MSC_VER