Displaying 20 results from an estimated 36 matches for "ftello64".
2013 Mar 05
3
2GB limit patch
..._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 including these...
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
...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:...
2013 Mar 10
0
flac 1.3.0pre2 pre-release
...-
--- 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/
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.
2005 May 19
0
problems with truncate() with files > 2Gb under Windows (PR#7880)
...ARGEFILE 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@blackmesacapital.com wrote:
> Th...
2012 Oct 25
0
Compiling Samba4 RC3 on AIX 6.1 with IBM vac
...tion on line 325 of
"/usr/include/stdio.h".
"/usr/include/stdio.h", line 532.12: 1506-377 (I) The type "const long
long*" of parameter 2 differs from the previous type "const long*".
"/usr/include/stdio.h", line 533.16: 1506-343 (S) Redeclaration of ftello64
differs from previous declaration on line 472 of "/usr/include/stdio.h".
"/usr/include/stdio.h", line 533.16: 1506-050 (I) Return type "long long"
in redeclaration is not compatible with the previous return type "long".
"/usr/include/unistd.h", line...
2015 Dec 18
1
Assistance much appreciated
...*);
+ 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
2002 Dec 25
1
Trouble installing samba
...king 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... no
> che...
2001 Nov 07
1
Configuring 2.2.2 (or 2.0.7) on Digital Unix 4.0f fails - "No locking"
...at64... 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 usleep... yes
checking for strcasecmp... yes
checking for fc...
2002 Oct 21
1
compilation probs...
...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... no
checking for strcasecmp... no
checking for fcvt... no...
2002 Oct 29
1
Problem running ./configure
...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... no checking for strcasecmp... no checking for fcvt... no...
2003 Jun 02
2
./configure --with-pam fails allways
...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
configure:5809: checking for rand
configure:5809: checking for setenv
confi...
2002 Nov 21
0
please can someone help me?
..... 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 usleep... yes
checking for strcasecmp... yes
checking for fcv...
2015 Dec 17
3
Assistance much appreciated
On 2015-12-17 19:30, peter dalgaard wrote:
> Presumably the file in question is one of
>
> Peter-Dalgaards-MacBook-Air:BUILD pd$ grep -r "^Package: tools" *
> library/tools/DESCRIPTION:Package: tools
> src/library/tools/DESCRIPTION:Package: tools
>
> so the first thing I'd do is to have a good look at those files and see if they got somehow corrupted.
>
>
2002 Jul 26
1
creating unicode_map.437 and unicode_map.ISO8859-1?
Hello,
I am running HP-UX 11 with Samba 2.2.5 binaries for HPUX and I keep getting
the error that Samba can't
find the unicode_map.xxx file. Well, I notice that all I have in
/usr/local/samba/lib/codepages
is codepage type files, not unicode. Why do the binaries not include a
compiled make_unicodemap?
I did download the source and found the .c file for the command. When I try
to run
2002 Oct 11
0
[Fwd: samba-2.2.5 in Tru64 unix v4.0e]
...g for grantpt... (cached) yes
checking for dup2... (cached) yes
checking for lseek64... (cached) no
checking for ftruncate64... (cached) no
checking for readdir64... (cached) no
checking for fseek64... (cached) no
checking for fseeko64... (cached) no
checking for ftell64... (cached) no
checking for ftello64... (cached) no
checking for setluid... (cached) no
checking for getpwanam... (cached) no
checking for setlinebuf... (cached) yes
checking for srandom... (cached) yes
checking for random... (cached) yes
checking for srand... (cached) yes
checking for rand... (cached) yes
checking for setenv... (cach...