string hack for msvc6
authorJosh Coalson <jcoalson@users.sourceforce.net>
Mon, 9 Sep 2002 05:06:51 +0000 (05:06 +0000)
committerJosh Coalson <jcoalson@users.sourceforce.net>
Mon, 9 Sep 2002 05:06:51 +0000 (05:06 +0000)
src/libFLAC/format.c

index 4e35c43..736668e 100644 (file)
 #endif
 #define min(a,b) ((a)<(b)?(a):(b))
 
+#if defined _MSC_VER || defined __MINW32__
+/* yet one more hack because of MSVC6: */
+const FLAC__byte *FLAC__VENDOR_STRING = "reference libFLAC 1.0.4_beta 20020823";
+#else
 const FLAC__byte *FLAC__VENDOR_STRING = "reference libFLAC " FLAC__VERSION_STRING " 20020823";
+#endif
+
 const FLAC__byte FLAC__STREAM_SYNC_STRING[4] = { 'f','L','a','C' };
 const unsigned FLAC__STREAM_SYNC = 0x664C6143;
 const unsigned FLAC__STREAM_SYNC_LEN = 32; /* bits */;