search for: fseeko64

Displaying 20 results from an estimated 39 matches for "fseeko64".

2013 Mar 05
3
2GB limit patch
...k offset to off_t when calling fseeko(), it gets truncated to 32bit on Win32 even if you use _fseeki64(). This change results in ABI break, but luckily it seems there's only one metadata function that uses off_t in public API. 2. i686-pc-mingw also needs fseeko()/ftello() definitions (only fseeko64() and ftello64() available). 3. stat()/fstat() must be also taken care of, when it is used to get file size. 4. In some place, size of off_t is checked to see if FLAC binary is compiled with large file support. These also need modification. I have made a fork on https://github.com/nu774/FLAC...
2008 Jun 18
3
v1.1.rc11 released
http://dovecot.org/releases/1.1/rc/dovecot-1.1.rc11.tar.gz http://dovecot.org/releases/1.1/rc/dovecot-1.1.rc11.tar.gz.sig This is the final v1.1 RC. Tomorrow I'll change only the version number, update the documentation and call it v1.1.0. But please test this anyway to make sure I didn't happen to break anything since rc10 :) - dovecot-uidlist is now recreated if it results in file
2008 Jun 18
3
v1.1.rc11 released
http://dovecot.org/releases/1.1/rc/dovecot-1.1.rc11.tar.gz http://dovecot.org/releases/1.1/rc/dovecot-1.1.rc11.tar.gz.sig This is the final v1.1 RC. Tomorrow I'll change only the version number, update the documentation and call it v1.1.0. But please test this anyway to make sure I didn't happen to break anything since rc10 :) - dovecot-uidlist is now recreated if it results in file
2013 Mar 05
0
2GB limit patch
...lling fseeko(), it gets truncated to 32bit on Win32 even if you use > _fseeki64(). > This change results in ABI break, but luckily it seems there's only one > metadata function that uses off_t in public API. > > 2. i686-pc-mingw also needs fseeko()/ftello() definitions (only > fseeko64() and ftello64() available). > > 3. stat()/fstat() must be also taken care of, when it is used to get > file size. > > 4. In some place, size of off_t is checked to see if FLAC binary is > compiled with large file support. These also need modification. > > > I have made a...
2013 Mar 10
0
flac 1.3.0pre2 pre-release
...--- next part -------------- --- flac-1.3.0pre2/include/share/compat.h.orig 2013-03-08 13:22:15 +0400 +++ flac-1.3.0pre2/include/share/compat.h 2013-03-10 09:30:43 +0400 @@ -55,6 +55,12 @@ #ifndef ftello #define ftello ftell #endif +#else +/* MinGW */ +#if !defined(HAVE_FSEEKO) +# define fseeko fseeko64 +# define ftello ftello64 +#endif #endif #endif
2013 Mar 14
2
flac 1.3.0pre2 pre-release
Janne Hyv?rinen wrote: > The patch was made from the published pre2 version. It missed the MinGW > changes that were applied to git version. Patch applied. Thanks. Erik -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/
2008 Oct 05
2
Attn Ivo. Re patches 15347 and 15376
...IN32 is defined. Unfortunately, MinGW (or at least the Linux -> Win32 cross compiler I'm using) defines _WIN32 but isn't aware of _fseeki64. I have therefore modified your solution a little and commited it as rev 15376. The code now looks like this: #ifdef __MINGW32__ return fseeko64(f,off,whence); #elif defined (_WIN32) return _fseeki64(f,off,whence); #else return fseek(f,off,whence); #endif which should work for MinGW and the windows compilers. However, since I don't have access to windows, can you please check and confirm that this hasn't br...
2013 Mar 04
2
2GB limit patch
On 04-03-13 23:19, Erik de Castro Lopo wrote: > Link please? http://www.hydrogenaudio.org/forums/index.php?showtopic=99757 > Err, thats a link to a post talking about flac's WAV reader being limited > to 4Gig files. Problem is, *all* WAV files greater than 4Gig are mal-formed. > Due to limitations in the way WAV files are specified, no valid WAV file > can ever be over 4Gig.
2006 May 13
1
[LLVMdev] Building Tools on MinGW from CVS
...++.a(misc-inst.o):misc-inst.cc:(.text$_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE7seekoffExSt12_Ios_SeekdirSt13_Ios_Openmode[__gnu_cxx::stdio_sync_filebuf<char, std::char_traits<char> >::seekoff(long long, std::_Ios_Seekdir, std::_Ios_Openmode)]+0x54): undefined reference to `fseeko64' collect2: ld returned 1 exit status make[2]: *** [/usr/home/llvm/build/Debug/bin/tblgen.exe] Error 1 make[2]: Leaving directory `/usr/home/llvm/build/utils/TableGen' make[1]: *** [install] Error 1 make[1]: Leaving directory `/usr/home/llvm/build/utils' make: *** [install] Error 1 P.S...
2005 May 19
0
problems with truncate() with files > 2Gb under Windows (PR#7880)
__USE_LARGEFILE is a standard Unix way to allow > 2Gb files on 32-bit OSes by using f{seek,tell}o Take a look at the definition of f_tell: #if defined(HAVE_OFF_T) && defined(__USE_LARGEFILE) #define f_seek fseeko #define f_tell ftello #else #ifdef Win32 #define f_seek fseeko64 #define f_tell ftello64 #else #define f_seek fseek #define f_tell ftell #endif #endif Windows support for > 2Gb files seemed flaky, but we did not think it was R's job to report OS deficiencies. I've now used off64_t in file_seek under Windows. On Thu, 19 May 2005 tplate@blackmesacap...
2012 Oct 25
0
Compiling Samba4 RC3 on AIX 6.1 with IBM vac
...ious declaration on line 323 of "/usr/include/stdio.h". "/usr/include/stdio.h", line 528.12: 1506-377 (I) The type "long long*" of parameter 2 differs from the previous type "long*". "/usr/include/stdio.h", line 531.12: 1506-343 (S) Redeclaration of fseeko64 differs from previous declaration on line 471 of "/usr/include/stdio.h". "/usr/include/stdio.h", line 531.12: 1506-377 (I) The type "long long" of parameter 2 differs from the previous type "long". "/usr/include/stdio.h", line 532.12: 1506-343 (S) R...
2015 Dec 18
1
Assistance much appreciated
...; - extern int fsetpos64(FILE *, const fpos_t *); + extern int fsetpos(FILE *, const fpos_t *); extern long ftell(FILE *); extern void rewind(FILE *); extern void perror(const char *); @@ -2841,8 +2834,8 @@ extern void flockfile(FILE *); extern void funlockfile(FILE *); - extern int fseeko64(FILE *, off_t, int); - extern off_t ftello64(FILE *); + extern int fseeko(FILE *, off_t, int); + extern off_t ftello(FILE *); extern int ftrylockfile(FILE *); extern void funlockfile(FILE *); # 470 "/opt/lib/gcc/powerpc-ibm-aix5.3.0.0/4.7.4/include-fixed/stdio.h" 3 4
2013 Mar 09
9
flac 1.3.0pre2 pre-release
Hi all, Second and hopefully final pre-release is here: http://downloads.xiph.org/releases/flac/beta/ I have personally tested this code on: x86-linux x86_64-linux powerpc-linux armhf-linux i386-freebsd9.1 i386-openbsd5.2 I also cross-compiled from Linux to 32 bit Windows and the compile ran to completion (the test suite requires a bunch of hacking before it can
2013 May 04
5
Bug fix and compatibility patches for 1.3.0pre4
...instead of off_t to fix the 2 GB limit */ #if !defined __MINGW32__ -#define fseeko _fseeki64 -#define ftello _ftelli64 +#define fseeko(f, p, o) _lseeki64((f)->_file, (p), (o)) +#define ftello(f) _lseeki64((f)->_file, 0, SEEK_CUR) #else /* MinGW */ #if !defined(HAVE_FSEEKO) #define fseeko fseeko64 -------------- next part -------------- diff -Naur flac-1.3.0pre4/src/libFLAC/bitwriter.c flac-1.3.0pre4-patched/src/libFLAC/bitwriter.c --- flac-1.3.0pre4/src/libFLAC/bitwriter.c 2013-04-07 02:39:36 +0000 +++ flac-1.3.0pre4-patched/src/libFLAC/bitwriter.c 2013-05-03 13:54:21 +0000 @@ -857,6 +857,7...
2002 Dec 25
1
Trouble installing samba
...cking for lstat64... no > checking for fopen64... no > checking for atexit... no > checking for grantpt... no > checking for dup2... no > checking for lseek64... no > checking for ftruncate64... no > checking for readdir64... no > checking for fseek64... no > checking for fseeko64... no > checking for ftell64... no > checking for ftello64... no > checking for setluid... no > checking for getpwanam... no > checking for setlinebuf... no > checking for srandom... no > checking for random... no > checking for srand... no > checking for rand... no >...
2001 Nov 07
1
Configuring 2.2.2 (or 2.0.7) on Digital Unix 4.0f fails - "No locking"
...tat64... no checking for fstat64... no checking for lstat64... no checking for fopen64... no checking for atexit... yes checking for grantpt... yes checking for dup2... yes checking for lseek64... no checking for ftruncate64... no checking for readdir64... no checking for fseek64... no checking for fseeko64... no checking for ftell64... no checking for ftello64... no checking for setluid... no checking for getpwanam... no checking for setlinebuf... yes checking for srandom... yes checking for random... yes checking for srand... yes checking for rand... yes checking for setenv... yes checking for uslee...
2002 Oct 21
1
compilation probs...
...r stat64... no checking for fstat64... no checking for lstat64... no checking for fopen64... no checking for atexit... no checking for grantpt... no checking for dup2... no checking for lseek64... no checking for ftruncate64... no checking for readdir64... no checking for fseek64... no checking for fseeko64... no checking for ftell64... no checking for ftello64... no checking for setluid... no checking for getpwanam... no checking for setlinebuf... no checking for srandom... no checking for random... no checking for srand... no checking for rand... no checking for setenv... no checking for usleep... n...
2002 Oct 29
1
Problem running ./configure
...r stat64... no checking for fstat64... no checking for lstat64... no checking for fopen64... no checking for atexit... no checking for grantpt... no checking for dup2... no checking for lseek64... no checking for ftruncate64... no checking for readdir64... no checking for fseek64... no checking for fseeko64... no checking for ftell64... no checking for ftello64... no checking for setluid... no checking for getpwanam... no checking for setlinebuf... no checking for srandom... no checking for random... no checking for srand... no checking for rand... no checking for setenv... no checking for usleep... n...
2003 Jun 02
2
./configure --with-pam fails allways
...r fopen64 configure:5699: checking for atexit configure:5699: checking for grantpt configure:5699: checking for dup2 configure:5699: checking for lseek64 configure:5699: checking for ftruncate64 configure:5699: checking for readdir64 configure:5754: checking for fseek64 configure:5754: checking for fseeko64 configure:5754: checking for ftell64 configure:5754: checking for ftello64 configure:5754: checking for setluid configure:5754: checking for getpwanam configure:5754: checking for setlinebuf configure:5809: checking for srandom configure:5809: checking for random configure:5809: checking for srand...
2002 Nov 21
0
please can someone help me?
..... yes checking for fstat64... yes checking for lstat64... yes checking for fopen64... yes checking for atexit... yes checking for grantpt... yes checking for dup2... yes checking for lseek64... yes checking for ftruncate64... yes checking for readdir64... no checking for fseek64... no checking for fseeko64... yes checking for ftell64... no checking for ftello64... yes checking for setluid... no checking for getpwanam... no checking for setlinebuf... no checking for srandom... yes checking for random... yes checking for srand... yes checking for rand... yes checking for setenv... no checking for uslee...