Displaying 4 results from an estimated 4 matches for "goodtab".
Did you mean:
goodman
2008 Jun 19
3
Compile failure on Dovecot 1.1-rc12
...l=no \
DEPDIR=.deps depmode=gcc /bin/bash ../../depcomp \
gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/openssl/include -g
-O2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith
-Wchar-subscripts -Wformat=2 -Wbad-function-cast -c str-find.c
str-find.c:17: field `goodtab' has incomplete type
make[4]: *** [str-find.o] Error 1
This problem has occurred on two separate systems. Have you run into this
issue, or are you aware of this issue?
Dovecot 1.0.14 builds just fine.
Thanks,
-Erinn
2017 Oct 11
1
dovecot-2.2.33 bug report
Hello there,
dovecot-2.2.33/src/lib/str-find.c:86]: (warning) Calling 'sizeof' on 'sizeof'
Source code is
ctx = p_malloc(pool, MALLOC_ADD(sizeof(struct str_find_context),
MALLOC_MULTIPLY(sizeof(ctx->goodtab[0]), key_len)));
Regards
David Binderman
2008 Jan 23
2
PATCH: compile dovecot-1.1.beta14 with gcc 2.95
Hi,
I patched dovecot-1.1.beta14 to compile under gcc 2.95. __builtin_expect
and __attribute__((malloc)) are only available since gcc 3.0, and
__builtin_types_compatible_p since 3.1.
Also the flexible array members (char a[]) are not available for gcc
2.95. So I replaced them with zero-extent arrays (char a[0]), which
should also work, but that is gcc specific. A general pointer (char* a)
should
2008 Jun 13
2
configure error on HP-UX: C99 compatible vsnprintf() call
Hi All,
I tried to build dovecot-1.1.rc9 on a HP-UX machine, but failed to configure with the following message:
configure: error: You don't appear to have C99 compatible vsnprintf() call
The environment is like the following:
- command: ./configure
- uname: HP-UX B.11.23 U ia64
- aCC version: HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003]
Also, I tried to run `./configure CC=c99'