search for: int_limit

Displaying 4 results from an estimated 4 matches for "int_limit".

Did you mean: idt_limit
2017 Jul 21
1
Problem compiling dovecot 2.2.31 on Solaris
.../usr/include/stdint.h from SUNWhea on S10 and system/header on S11. Nevertheless it's missing on Solaris 8 and 9. You can make your own, this worked for me on Solaris 9 at least once, untested recently: #ifndef _STDINT_H #define _STDINT_H #include <sys/int_types.h> #include <sys/int_limits.h> #include <sys/int_const.h> #endif /* _STDINT_H */ Or just #define what you think it needs, it's not complex.
2017 Jul 21
3
Problem compiling dovecot 2.2.31 on Solaris
I'm trying to compile under SunOS 5.8 Generic_117350-28 sun4u sparc SUNW,Ultra-5_10 (I know it's a bit oldish :-) and I get this error: /bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -std=gnu99 -g -O2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -fno-builtin-strftime
2008 Jan 30
4
btrfs and git-reflog
I was just playing with git 1.5.3.8 and btrfs 0.11, and I noticed something odd. If I prepare a very simple repository: $ mkdir foo $ cd foo $ git init Initialized empty Git repository in .git/ $ echo hi > blort $ git add . $ git commit -m create Created initial commit 4ae9415: create 1 files changed, 1 insertions(+), 0 deletions(-) create mode 100644 blort and then
2008 Jul 20
26
[PATCH] NFS support for btrfs - v2
Hi, Here''s an implementation of NFS support for btrfs. It does not work in one particular case as described in http://www.mail-archive.com/linux-btrfs@vger.kernel.org/msg00298.html. This uses the btrfs_iget helper introduced previously. Comments ? --- Signed-off-by: Balaji Rao <balajirrao@gmail.com> diff -r 3f0eee804974 Makefile --- a/Makefile Thu Jun 26 10:34:20 2008 -0400