info: Cut down src file names for MinGW too
authorРуслан Ижбулатов <lrn1986@gmail.com>
Wed, 18 Apr 2012 10:12:16 +0000 (14:12 +0400)
committerSebastian Dröge <slomo@circular-chaos.org>
Thu, 18 Jul 2013 12:21:06 +0000 (14:21 +0200)
Fixes #674320

gst/gstinfo.c

index 93cb188..26670b7 100644 (file)
@@ -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