From: Руслан Ижбулатов Date: Wed, 18 Apr 2012 10:12:16 +0000 (+0400) Subject: info: Cut down src file names for MinGW too X-Git-Tag: 1.1.3~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=143f30bfcb6251e38d7a855dde6f92d47d189cfe;p=platform%2Fupstream%2Fgstreamer.git info: Cut down src file names for MinGW too Fixes #674320 --- diff --git a/gst/gstinfo.c b/gst/gstinfo.c index 93cb188..26670b7 100644 --- a/gst/gstinfo.c +++ b/gst/gstinfo.c @@ -438,7 +438,7 @@ gst_debug_log (GstDebugCategory * category, GstDebugLevel level, va_end (var_args); } -#ifdef _MSC_VER +#ifdef G_OS_WIN32 /* based on g_basename(), which we can't use because it was deprecated */ static inline const gchar * gst_path_basename (const gchar * file_name) @@ -494,7 +494,7 @@ gst_debug_log_valist (GstDebugCategory * category, GstDebugLevel level, /* The predefined macro __FILE__ is always the exact path given to the * compiler with MSVC, which may or may not be the basename. We work * around it at runtime to improve the readability. */ -#ifdef _MSC_VER +#ifdef G_OS_WIN32 file = gst_path_basename (file); #endif