2007-05-30 [colin] 2.9.2cvs17
[claws.git] / m4 / gnupg.m4
1 # gnupg.m4 - autoconf macros as used by GnuPG.
2 # Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
3 #
4 # This file is free software; as a special exception the author gives
5 # unlimited permission to copy and/or distribute it, with or without
6 # modifications, as long as this notice is preserved.
7 #
8 # This file is distributed in the hope that it will be useful, but
9 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
10 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11
12
13
14 dnl Stolen from gcc
15 dnl Define MKDIR_TAKES_ONE_ARG if mkdir accepts only one argument instead
16 dnl of the usual 2.
17 AC_DEFUN([GNUPG_FUNC_MKDIR_TAKES_ONE_ARG],
18 [AC_CHECK_HEADERS(sys/stat.h unistd.h direct.h)
19 AC_CACHE_CHECK([if mkdir takes one argument], gnupg_cv_mkdir_takes_one_arg,
20 [AC_TRY_COMPILE([
21 #include <sys/types.h>
22 #ifdef HAVE_SYS_STAT_H
23 # include <sys/stat.h>
24 #endif
25 #ifdef HAVE_UNISTD_H
26 # include <unistd.h>
27 #endif
28 #ifdef HAVE_DIRECT_H
29 # include <direct.h>
30 #endif], [mkdir ("foo", 0);],
31         gnupg_cv_mkdir_takes_one_arg=no, gnupg_cv_mkdir_takes_one_arg=yes)])
32 if test $gnupg_cv_mkdir_takes_one_arg = yes ; then
33   AC_DEFINE(MKDIR_TAKES_ONE_ARG,1,
34             [Defined if mkdir() does not take permission flags])
35 fi
36 ])
37