Displaying 20 results from an estimated 20 matches for "have_fseeko".
2007 Aug 27
1
fix for broken largefile seek() on 32-bit linux (PR#9883)
...uot;3gigabytefile.dat", "rb")
> seek(f, 3e9, "start", "r")
[1] 0 ## correct
> seek(f, NA, "start", "r")
[1] 0 ## should be 3e+09
DIAGNOSIS
Typo: the compile-time tests for large file support use "HAVE_SEEKO" instead of
"HAVE_FSEEKO", and so fail.
The same typo appears in one of the extra/zlib files, so I'm fixing
it in the patch below, but I haven't tested whether that actually
produces a bug.
PATCH
Index: src/extra/zlib/gzio.c
===================================================================
--- src/extra/...
2013 Mar 10
0
flac 1.3.0pre2 pre-release
...libFLAC/metadata_iterators.c:442:4: warning: implicit declaration
of function 'ftello' [-Wimplicit-function-declaration]
Same with ftello, it's all over the source code.
Curiously, config.h contains:
/* Define to 1 if fseeko (and presumably ftello) exists and is
declared. */
/* #undef HAVE_FSEEKO */
for me, but FLAC doesn't seem to care...
Here's a patch i've used. Compiles (mingw.org i386 gcc 4.7.2 + MSYS),
passes the testsuite.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (MingW32)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iQEcBAEBAgAGBQJRPCQ...
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 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/
2012 Mar 31
2
Libvirt source code cannot built with libnettle.
...version 2.4?
VIM command line for show data in config.log. it's show as below.
739 | #define __EXTENSIONS__ 1
740 | #define _ALL_SOURCE 1
741 | #define _DARWIN_C_SOURCE 1
742 | #define _GNU_SOURCE 1
743 | #define _POSIX_PTHREAD_SEMANTICS 1
744 | #define _TANDEM_SOURCE 1
745 | #define HAVE_FSEEKO 1
746 | #define STDC_HEADERS 1
747 | /* end confdefs.h. */
748 | #include <nettle/ripemd160.h>
749 | int
750 | main ()
751 | {
752 | ripemd160_init (0)
753 | ;
754 | return 0;
755 | }
756 configure:8887: result: no
757 configure:8913: error:
758 ***
759 *** Libnettle 2....
2014 Jun 16
1
Include directories
...nce my last patch
in 2012 and add other important tweaks:
* Account for the updates to UTF-8 on Windows.
* Add missing object and library entries to the system to ensure all
components link properly.
* Add USE_LROUND and USE_FSEEKO Makefile variables to allow clean
addressing of the HAVE_LROUND and HAVE_FSEEKO conditional sections,
normally resolved elsewhere in the full build system.
* Add Makefile variables CCFLAGS and CCCFLAGS to specify gcc-only and
g++-only flags, respectively. This was done to eliminate the following
warnings, which were repeated for every g++ invocation:
>cc1plus.exe: warning:...
2014 Jun 16
2
Include directories
Erik de Castro Lopo wrote:
> lvqcl wrote:
>
> > Some projects/makefiles add both 'include' and 'include/share'
> > to the list of additional include directories.
>
> I think that is suboptimal.
>
> > For example, src/share/utf8/utf8.c includes 'include/share/alloc.h'
> > as "share/alloc.h" but
2005 Feb 08
0
Compiling R as a shared library
...| #define HAVE_F77_UNDERSCORE 1
| #define HAVE_DOUBLE_COMPLEX 1
| #define SHLIB_EXT ".so"
| #define HAVE_OFF_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_ACCESS 1
| #define HAVE_CHDIR 1
| #define HAVE_EXPM1 1
| #define HAVE_FCNTL 1
| #define HAVE_FINITE 1
| #define HAVE_FSEEKO 1
| #define HAVE_FTELLO 1
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETCWD 1
| #define HAVE_GETGRGID 1
| #define HAVE_GETPWUID 1
| #define HAVE_GETUID 1
| #define HAVE_HYPOT 1
| #define HAVE_ISASCII 1
| #define HAVE_LOG1P 1
| #define HAVE_MATHERR 1
| #define HAVE_MKFIFO 1
| #define HAVE_POPEN 1
| #...
2013 May 04
5
Bug fix and compatibility patches for 1.3.0pre4
...AC__off_t __int64 /* use this 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...
2001 May 21
1
2.9p1 patches
...grade to a fixed glibc.
+
+ AC_CACHE_CHECK([for fseeko], ac_cv_func_fseeko,
+ [ac_cv_func_fseeko=no
+ AC_TRY_LINK([#include <stdio.h>],
+ [return fseeko && fseeko (stdin, 0, 0);],
+ [ac_cv_func_fseeko=yes])])
+ if test $ac_cv_func_fseeko != no; then
+ AC_DEFINE(HAVE_FSEEKO, 1,
+ [Define if fseeko (and presumably ftello) exists and is declared.])
+ fi])
2019 Oct 29
0
auth logging or auditing
...OEXISTS
?? HAVE_FAMOPEN2
?? HAVE_FAM_H_FAMCODES_TYPEDEF
?? HAVE_FCHMOD
?? HAVE_FCHOWN
?? HAVE_FCNTL_LOCK
?? HAVE_FCVT
?? HAVE_FDATASYNC
?? HAVE_FDATASYNC_DECL
?? HAVE_FDOPENDIR
?? HAVE_FLAGS_IN_KRB5_CREDS
?? HAVE_FLOCK
?? HAVE_FREEADDRINFO
?? HAVE_FREEIFADDRS
?? HAVE_FREE_CHECKSUM
?? HAVE_FRSIZE
?? HAVE_FSEEKO
?? HAVE_FSID_INT
?? HAVE_FSTATAT
?? HAVE_FSYNC
?? HAVE_FTRUNCATE
?? HAVE_FTRUNCATE_EXTEND
?? HAVE_FUNCTION_MACRO
?? HAVE_FUSE
?? HAVE_FUSE_MOUNT
?? HAVE_FUTIMENS
?? HAVE_FUTIMES
?? HAVE_F_SETLEASE_DECL
?? HAVE_GAI_STRERROR
?? HAVE_GCC_VOLATILE_MEMORY_PROTECTION
?? HAVE_GCRY_CONTROL
?? HAVE_GETADDRI...
2013 May 14
3
frequent tdb corruption
...EXTATTR_LIST_FILE
HAVE_EXTATTR_LIST_LINK
HAVE_EXTATTR_SET_FD
HAVE_EXTATTR_SET_FILE
HAVE_EXTATTR_SET_LINK
HAVE_E_DATA_POINTER_IN_KRB5_ERROR
HAVE_FCHMOD
HAVE_FCHOWN
HAVE_FCNTL_LOCK
HAVE_FDOPENDIR
HAVE_FREEADDRINFO
HAVE_FREEIFADDRS
HAVE_FREE_AP_REQ
HAVE_FRSIZE
HAVE_FSEEKO
HAVE_FSID_INT
HAVE_FSYNC
HAVE_FTRUNCATE
HAVE_FTRUNCATE_EXTEND
HAVE_FUNCTION_ATTRIBUTE_DESTRUCTOR
HAVE_FUNCTION_MACRO
HAVE_FUTIMES
HAVE_GAI_STRERROR
HAVE_GETADDRINFO
HAVE_GETCWD
HAVE_GETDENTS
HAVE_GETDIRENTRIES
HAVE_GETGRENT
HAVE_GETGRENT_R
HAVE_GETGRENT_...
2005 Apr 19
0
R 2.0.1 install problem on Solaris 9
...| #define HAVE_F77_UNDERSCORE 1
| #define HAVE_DOUBLE_COMPLEX 1
| #define SHLIB_EXT ".so"
| #define HAVE_OFF_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_ACCESS 1
| #define HAVE_CHDIR 1
| #define HAVE_EXPM1 1
| #define HAVE_FCNTL 1
| #define HAVE_FINITE 1
| #define HAVE_FSEEKO 1
| #define HAVE_FTELLO 1
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETCWD 1
| #define HAVE_GETGRGID 1
| #define HAVE_GETPWUID 1
| #define HAVE_GETUID 1
| #define HAVE_HYPOT 1
| #define HAVE_ISASCII 1
| #define HAVE_LOG1P 1
| #define HAVE_MATHERR 1
| #define HAVE_MKFIFO 1
| #define HAVE_POPEN 1
| #...
2020 May 29
2
get_ea_dos_attribute: Cannot get attribute from EA on file .: Error = No data available
Samba 4.12.1, single server with AD+DC on Ubuntu 18.04. Filesystem:
/dev/sdb1 on /home type ext4 (rw,relatime,stripe=32750,data=ordered)
It all work as expected, but I occasionally get the error in subject which denies access to shares. Restarting Samba will restore functionality.
What can be the cause of this problem?
Thanks.
[2020/05/27 18:24:35.795379, 8]
2008 Jan 08
2
[LLVMdev] Adding ClamAV to the llvm testsuite (long)
...ME_R_2 1 */
>
> /* ctime_r takes 3 arguments */
> /* #undef HAVE_CTIME_R_3 */
>
> /* Define to 1 if you have the <dlfcn.h> header file. */
> /* #define HAVE_DLFCN_H 1 */
>
> /* Define to 1 if fseeko (and presumably ftello) exists and is
> declared. */
> #define HAVE_FSEEKO 1
>
> /* gethostbyname_r takes 3 arguments */
> /* #undef HAVE_GETHOSTBYNAME_R_3 */
>
> /* gethostbyname_r takes 5 arguments */
> /* #undef HAVE_GETHOSTBYNAME_R_5 */
>
> /* gethostbyname_r takes 6 arguments */
> /* #undef HAVE_GETHOSTBYNAME_R_6 */
>
> /* Define to 1...
2020 Jun 03
3
get_ea_dos_attribute: Cannot get attribute from EA on file .: Error = No data available
...TE
HAVE_FALLOC_FL_PUNCH_HOLE
HAVE_FALLTHROUGH_ATTRIBUTE
HAVE_FCHMOD
HAVE_FCHOWN
HAVE_FCNTL_LOCK
HAVE_FCVT
HAVE_FDATASYNC
HAVE_FDOPENDIR
HAVE_FLAGS_IN_KRB5_CREDS
HAVE_FLOCK
HAVE_FMEMOPEN
HAVE_FREEADDRINFO
HAVE_FREEIFADDRS
HAVE_FREE_CHECKSUM
HAVE_FRSIZE
HAVE_FSEEKO
HAVE_FSID_INT
HAVE_FSTATAT
HAVE_FSYNC
HAVE_FTRUNCATE
HAVE_FTRUNCATE_EXTEND
HAVE_FUNCTION_MACRO
HAVE_FUTIMENS
HAVE_FUTIMES
HAVE_F_OWNER_EX
HAVE_F_SETLEASE_DECL
HAVE_GAI_STRERROR
HAVE_GCC_VOLATILE_MEMORY_PROTECTION
HAVE_GETADDRINFO
HAVE_GETAUXVAL
HAVE_GETC...
2007 Dec 18
0
[LLVMdev] Adding ClamAV to the llvm testsuite (long)
Chris Lattner wrote:
> One way to do this is to add a "cut down" version of the app to the
> test suite.
I disabled optional features in clamav-config.h
>
>> 2. GPL license. Chris?
>
> Any open source license that allows unrestricted redistribution is
> fine in llvm-test
Ok, I have created a script that automatically checks out ClamAV
0.92-stable source code
2012 Apr 17
0
samba 3.6.4 smbd dies on solaris 10 sparc64
..._ENCTYPE_ARCFOUR_HMAC
HAVE_ENDNETGRENT
HAVE_ENDNETGRENT_PROTOTYPE
HAVE_ERRNO_DECL
HAVE_EXECL
HAVE_EXPLICIT_LARGEFILE_SUPPORT
HAVE_FCHMOD
HAVE_FCHOWN
HAVE_FCNTL_LOCK
HAVE_FCVT
HAVE_FDATASYNC
HAVE_FDATASYNC_DECL
HAVE_FDOPENDIR
HAVE_FREEADDRINFO
HAVE_FRSIZE
HAVE_FSEEKO
HAVE_FSID_INT
HAVE_FSTAT64
HAVE_FSYNC
HAVE_FTRUNCATE
HAVE_FTRUNCATE_EXTEND
HAVE_FUNCTION_ATTRIBUTE_DESTRUCTOR
HAVE_FUNCTION_MACRO
HAVE_FUTIMENS
HAVE_GAI_STRERROR
HAVE_GETADDRINFO
HAVE_GETCWD
HAVE_GETDENTS
HAVE_GETGRENT
HAVE_GETGRENT_R
HAVE_GETGRENT_R_DEC...
2007 Dec 18
3
[LLVMdev] Adding ClamAV to the llvm testsuite (long)
On Mon, 17 Dec 2007, Evan Cheng wrote:
> We always welcome more tests. But it looks like there are two issues
> here.
>
> 1. The autoconf requirement. Is it possible to get one configuration
> working without the need for autoconf?
One way to do this is to add a "cut down" version of the app to the test
suite.
> 2. GPL license. Chris?
Any open source license that
2011 Jun 07
3
builder-debian febootstrap success d6d144eab55388d4117880f2d3a7e8c2571c9d9a
This is an automatic message generated by the builder on
builder-debian for febootstrap. Log files from the build
follow below.
Linux builder-debian.home.annexia.org 2.6.36-trunk-amd64 #1 SMP Wed Oct 27 14:28:29 UTC 2010 x86_64 GNU/Linux
Tue Jun 7 20:00:01 BST 2011
-----
+ git pull --rebase git://git.annexia.org/git/febootstrap.git master
>From git://git.annexia.org/git/febootstrap
*