Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
flac
Commits
37d9fb1a
Commit
37d9fb1a
authored
Jan 31, 2007
by
Josh Coalson
Browse files
bump requisite _MSC_VER to <=1600 for fseeko/ftello hack
parent
e3ec2ad5
Changes
9
Hide whitespace changes
Inline
Side-by-side
src/flac/decode.c
View file @
37d9fb1a
...
...
@@ -28,7 +28,7 @@
#endif
#if defined _MSC_VER || defined __MINGW32__
#include <sys/types.h>
/* for off_t */
#if _MSC_VER <= 1
2
00
/* @@@ [2G limit] */
#if _MSC_VER <= 1
6
00
/* @@@ [2G limit] */
#define fseeko fseek
#define ftello ftell
#endif
...
...
src/flac/encode.c
View file @
37d9fb1a
...
...
@@ -28,7 +28,7 @@
#endif
#if defined _MSC_VER || defined __MINGW32__
#include <sys/types.h>
/* for off_t */
#if _MSC_VER <= 1
2
00
/* @@@ [2G limit] */
#if _MSC_VER <= 1
6
00
/* @@@ [2G limit] */
#define fseeko fseek
#define ftello ftell
#endif
...
...
src/libFLAC/metadata_iterators.c
View file @
37d9fb1a
...
...
@@ -46,7 +46,7 @@
#endif
#include <io.h>
/* for chmod() */
#include <sys/types.h>
/* for off_t */
#if _MSC_VER <= 1
2
00 || defined __BORLANDC__
/* @@@ [2G limit] */
#if _MSC_VER <= 1
6
00 || defined __BORLANDC__
/* @@@ [2G limit] */
#define fseeko fseek
#define ftello ftell
#endif
...
...
src/libFLAC/stream_decoder.c
View file @
37d9fb1a
...
...
@@ -47,7 +47,7 @@
#include <sys/stat.h>
/* for stat() */
#include <sys/types.h>
/* for off_t */
#if defined _MSC_VER || defined __BORLANDC__ || defined __MINGW32__
#if _MSC_VER <= 1
2
00 || defined __BORLANDC__
/* @@@ [2G limit] */
#if _MSC_VER <= 1
6
00 || defined __BORLANDC__
/* @@@ [2G limit] */
#define fseeko fseek
#define ftello ftell
#endif
...
...
src/libFLAC/stream_encoder.c
View file @
37d9fb1a
...
...
@@ -47,7 +47,7 @@
#include <string.h>
/* for memcpy() */
#include <sys/types.h>
/* for off_t */
#if defined _MSC_VER || defined __BORLANDC__ || defined __MINGW32__
#if _MSC_VER <= 1
2
00 || defined __BORLANDC__
/* @@@ [2G limit] */
#if _MSC_VER <= 1
6
00 || defined __BORLANDC__
/* @@@ [2G limit] */
#define fseeko fseek
#define ftello ftell
#endif
...
...
src/test_libFLAC++/decoders.cpp
View file @
37d9fb1a
...
...
@@ -25,7 +25,7 @@
#include <stdlib.h>
#include <string.h>
#if defined _MSC_VER || defined __MINGW32__
#if _MSC_VER <= 1
2
00
/* @@@ [2G limit] */
#if _MSC_VER <= 1
6
00
/* @@@ [2G limit] */
#define fseeko fseek
#define ftello ftell
#endif
...
...
src/test_libFLAC++/metadata_manip.cpp
View file @
37d9fb1a
...
...
@@ -26,7 +26,7 @@
#if defined _MSC_VER || defined __MINGW32__
#include <sys/utime.h>
/* for utime() */
#include <io.h>
/* for chmod() */
#if _MSC_VER <= 1
2
00
/* @@@ [2G limit] */
#if _MSC_VER <= 1
6
00
/* @@@ [2G limit] */
#define fseeko fseek
#define ftello ftell
#endif
...
...
src/test_libFLAC/decoders.c
View file @
37d9fb1a
...
...
@@ -25,7 +25,7 @@
#include <stdlib.h>
#include <string.h>
#if defined _MSC_VER || defined __MINGW32__
#if _MSC_VER <= 1
2
00
/* @@@ [2G limit] */
#if _MSC_VER <= 1
6
00
/* @@@ [2G limit] */
#define fseeko fseek
#define ftello ftell
#endif
...
...
src/test_libFLAC/metadata_manip.c
View file @
37d9fb1a
...
...
@@ -26,7 +26,7 @@
#if defined _MSC_VER || defined __MINGW32__
#include <sys/utime.h>
/* for utime() */
#include <io.h>
/* for chmod() */
#if _MSC_VER <= 1
2
00
/* @@@ [2G limit] */
#if _MSC_VER <= 1
6
00
/* @@@ [2G limit] */
#define fseeko fseek
#define ftello ftell
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment