quick fix for SF#1601812 where an error of exactly 0 (very rare) in FLAC__lpc_compute...
[platform/upstream/flac.git] / src / libFLAC / format.c
index 8e28480..af384ea 100644 (file)
 /* VERSION should come from configure */
 FLAC_API const char *FLAC__VERSION_STRING = VERSION;
 
-#if defined _MSC_VER || defined __MINW32__
+#if defined _MSC_VER || defined __BORLANDC__ || defined __MINW32__
 /* yet one more hack because of MSVC6: */
-FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC 1.1.3 20060831";
+FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC 1.1.3 20061120";
 #else
-FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC " VERSION " 20060831";
+FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC " VERSION " 20061120";
 #endif
 
 FLAC_API const FLAC__byte FLAC__STREAM_SYNC_STRING[4] = { 'f','L','a','C' };