-fix test FTBFS
[oweals/gnunet.git] / m4 / ac_define_dir.m4
1 dnl @synopsis AC_DEFINE_DIR(VARNAME, DIR [, DESCRIPTION])\r
2 dnl\r
3 dnl This macro _AC_DEFINEs VARNAME to the expansion of the DIR\r
4 dnl variable, taking care of fixing up ${prefix} and such.\r
5 dnl\r
6 dnl VARNAME is offered as both a C preprocessor symbol, and an output\r
7 dnl variable.\r
8 dnl\r
9 dnl Note that the 3 argument form is only supported with autoconf 2.13\r
10 dnl and later (i.e. only where _AC_DEFINE supports 3 arguments).\r
11 dnl\r
12 dnl Examples:\r
13 dnl\r
14 dnl    AC_DEFINE_DIR(DATADIR, datadir)\r
15 dnl    AC_DEFINE_DIR(PROG_PATH, bindir, [Location of installed binaries])\r
16 dnl\r
17 dnl @category Misc\r
18 dnl @author Stepan Kasal <kasal@ucw.cz>\r
19 dnl @author Andreas Schwab <schwab@suse.de>\r
20 dnl @author Guido Draheim <guidod@gmx.de>\r
21 dnl @author Alexandre Oliva\r
22 dnl @version 2005-01-17\r
23 dnl @license AllPermissive\r
24 \r
25 AC_DEFUN([AC_DEFINE_DIR], [\r
26   prefix_NONE=\r
27   exec_prefix_NONE=\r
28   test "x$prefix" = xNONE && prefix_NONE=yes && prefix=$ac_default_prefix\r
29   test "x$exec_prefix" = xNONE && exec_prefix_NONE=yes && exec_prefix=$prefix\r
30   eval ac_define_dir="\"[$]$2\""\r
31   AC_SUBST($1, "$ac_define_dir")\r
32   AC_DEFINE_UNQUOTED($1, "$ac_define_dir", [$3])\r
33   test "$prefix_NONE" && prefix=NONE\r
34   test "$exec_prefix_NONE" && exec_prefix=NONE\r
35 ])\r