Improve some sieve-related translations
[claws.git] / m4 / check-type.m4
blob7ea7c89e8a18cca52f98fe5981f0258be1e22cf3
1 dnl CLAWS_CHECK_TYPE(TYPE, DEFAULT [, INCLUDES, COMMENT])
2 dnl
3 dnl Like AC_CHECK_TYPE, but in addition to `sys/types.h', `stdlib.h' and
4 dnl `stddef.h' checks files included by INCLUDES, which should be a
5 dnl series of #include statements.  If TYPE is not defined, define it
6 dnl to DEFAULT.
7 dnl
8 dnl Copyright (C) 2003 Free Software Foundation, Inc.
9 dnl This file is free software; the Free Software Foundation
10 dnl gives unlimited permission to copy and/or distribute it,
11 dnl with or without modifications, as long as this notice is preserved.
12 AC_DEFUN([CLAWS_CHECK_TYPE],
13 [AC_MSG_CHECKING(for $1)
14 AC_CACHE_VAL(claws_cv_type_$1,
15 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
16 #include <sys/types.h>
17 #if STDC_HEADERS
18 #include <stdlib.h>
19 #include <stddef.h>
20 #endif
22 ]], [[
23 #undef $1
24 int a = sizeof($1);
25 ]])],[claws_cv_type_$1=yes],[claws_cv_type_$1=no])])dnl
26 AC_MSG_RESULT($claws_cv_type_$1)
27 if test $claws_cv_type_$1 = no; then
28   AC_DEFINE($1, $2, $4)