Displaying 7 results from an estimated 7 matches for "fsid_t".
2009 Jun 11
8
[Bug 1607] New: compile errors buliding OpenSSH for older Red Hat
...ly be easily fixed in the
configuration script.
(1) My version of /usr/include/netinet/in.h did not define in_port_t,
causing compiler to fail on channels.c line 2472. Worked around
by changing in_port_t to uint16_t on that line.
(2) sftp-server.c line 507
buffer_put_int64(&msg, FSID_TO_ULONG(st->f_fsid));
got "incompatible type" error. FSID_HAS_VAL was not defined:
checking if f_fsid has val members... no
causing FSID_TO_ULONG to be defined in defines.h:
# define FSID_TO_ULONG(f) ((f))
but I don't see how this could work---was...
2023 Jan 14
1
[klibc:time64] time: Use 64-bit time types on all architectures
...aders always #define FD_ZERO __FD_ZERO, etc, in
<linux/time.h> but not all architectures define the
diff --git a/usr/include/sys/types.h b/usr/include/sys/types.h
index e17bc87f..d698ae5b 100644
--- a/usr/include/sys/types.h
+++ b/usr/include/sys/types.h
@@ -46,7 +46,7 @@ typedef __kernel_fsid_t fsid_t;
*/
#ifndef _TIME_T
#define _TIME_T
-typedef __kernel_time_t time_t;
+typedef __kernel_time64_t time_t;
#endif
#ifndef _CLOCK_T
diff --git a/usr/klibc/SYSCALLS.def b/usr/klibc/SYSCALLS.def
index d46bb548..660efc66 100644
--- a/usr/klibc/SYSCALLS.def
+++ b/usr/klibc/SYSCALLS.def
@@ -1...
2006 Aug 17
2
dovecot on OSF/1 4.0
Hi,,
In src/lib/mountpoint.c:53 the following had to be commented out:
// point_r->type = p_strdup(pool, buf.f_fstypename);
because f_fstypename is undeclared on this OS.
Also the following errors occur with the DEC C compiler (which
compiles the other files just fine):
source='file-cache.c' object='file-cache.o' libtool=no DEPDIR=.deps
depmode=none
2016 Jan 31
4
configure warning on SunOS 4.1.4
Hi,
I was told to do so by configure of openssh-7.1p2 -:)
...
configure: WARNING: sys/audit.h: present but cannot be compiled
configure: WARNING: sys/audit.h: check for missing prerequisite headers?
configure: WARNING: sys/audit.h: see the Autoconf documentation
configure: WARNING: sys/audit.h: section "Present But Cannot Be
Compiled"
configure: WARNING: sys/audit.h:
2012 May 15
5
[PATCH 0/5] resubmitting pending patches
Hi,
I?ve gone through the mailing list archives and hereby want
to resubmit my pending patches. Most are independent of each
other, except the m68k patch which will only be complete if
sigsuspend is also fixed. (It can be applied before that,
though.)
http://www.zytor.com/pipermail/klibc/2012-January/003173.html
[PATCH] fix m68k support
Resubmitted here as 0005. While there was a question from
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo. (I am not
allocating RBP to any virtual register, the instances of RBP in function
foo are in the machine code when my register allocator starts.)
Function foo calls function bar. Register RBP is not saved across the
call, though it is live after the call. Function bar includes a virtual
register. The code that I'm using to
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
...signed int __uid_t;
typedef unsigned int __gid_t;
typedef unsigned long int __ino_t;
typedef unsigned long int __ino64_t;
typedef unsigned int __mode_t;
typedef unsigned long int __nlink_t;
typedef long int __off_t;
typedef long int __off64_t;
typedef int __pid_t;
typedef struct { int __val[2]; } __fsid_t;
typedef long int __clock_t;
typedef unsigned long int __rlim_t;
typedef unsigned long int __rlim64_t;
typedef unsigned int __id_t;
typedef long int __time_t;
typedef unsigned int __useconds_t;
typedef long int __suseconds_t;
typedef int __daddr_t;
typedef long int __swblk_t;
typedef int __key_t;
t...