aboutsummaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2019-06-01 19:45:45 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2019-06-01 20:06:42 +0300
commit2c93aa35f75d41aac2dd19bbb3e3935c88a3b80a (patch)
tree287776e8d22e1aac0fff57c32858007a2e74f1e7 /m4
parent2db0eabd118370fd2937bd9021ade9b0e40473fa (diff)
downloadlibmicrohttpd-2c93aa35f75d41aac2dd19bbb3e3935c88a3b80a.tar.gz
libmicrohttpd-2c93aa35f75d41aac2dd19bbb3e3935c88a3b80a.zip
Added .gitattributes, fixed line endings in ac_define_dir.m4,
updated ac_define_dir.m4 to new version.
Diffstat (limited to 'm4')
-rw-r--r--m4/ac_define_dir.m469
1 files changed, 34 insertions, 35 deletions
diff --git a/m4/ac_define_dir.m4 b/m4/ac_define_dir.m4
index f7e028fc..e15cea2c 100644
--- a/m4/ac_define_dir.m4
+++ b/m4/ac_define_dir.m4
@@ -1,35 +1,34 @@
1dnl @synopsis AC_DEFINE_DIR(VARNAME, DIR [, DESCRIPTION]) 1dnl @synopsis AC_DEFINE_DIR(VARNAME, DIR [, DESCRIPTION])
2dnl 2dnl
3dnl This macro _AC_DEFINEs VARNAME to the expansion of the DIR 3dnl This macro sets VARNAME to the expansion of the DIR variable,
4dnl variable, taking care of fixing up ${prefix} and such. 4dnl taking care of fixing up ${prefix} and such.
5dnl 5dnl
6dnl VARNAME is offered as both a C preprocessor symbol, and an output 6dnl VARNAME is then offered as both an output variable and a C
7dnl variable. 7dnl preprocessor symbol.
8dnl 8dnl
9dnl Note that the 3 argument form is only supported with autoconf 2.13 9dnl Example:
10dnl and later (i.e. only where _AC_DEFINE supports 3 arguments). 10dnl
11dnl 11dnl AC_DEFINE_DIR([DATADIR], [datadir], [Where data are placed to.])
12dnl Examples: 12dnl
13dnl 13dnl @category Misc
14dnl AC_DEFINE_DIR(DATADIR, datadir) 14dnl @author Stepan Kasal <kasal@ucw.cz>
15dnl AC_DEFINE_DIR(PROG_PATH, bindir, [Location of installed binaries]) 15dnl @author Andreas Schwab <schwab@suse.de>
16dnl 16dnl @author Guido U. Draheim <guidod@gmx.de>
17dnl @category Misc 17dnl @author Alexandre Oliva
18dnl @author Stepan Kasal <kasal@ucw.cz> 18dnl @version 2006-10-13
19dnl @author Andreas Schwab <schwab@suse.de> 19dnl @license AllPermissive
20dnl @author Guido Draheim <guidod@gmx.de> 20
21dnl @author Alexandre Oliva 21AC_DEFUN([AC_DEFINE_DIR], [
22dnl @version 2005-01-17 22 prefix_NONE=
23dnl @license AllPermissive 23 exec_prefix_NONE=
24 24 test "x$prefix" = xNONE && prefix_NONE=yes && prefix=$ac_default_prefix
25AC_DEFUN([AC_DEFINE_DIR], [ 25 test "x$exec_prefix" = xNONE && exec_prefix_NONE=yes && exec_prefix=$prefix
26 prefix_NONE= 26dnl In Autoconf 2.60, ${datadir} refers to ${datarootdir}, which in turn
27 exec_prefix_NONE= 27dnl refers to ${prefix}. Thus we have to use `eval' twice.
28 test "x$prefix" = xNONE && prefix_NONE=yes && prefix=$ac_default_prefix 28 eval ac_define_dir="\"[$]$2\""
29 test "x$exec_prefix" = xNONE && exec_prefix_NONE=yes && exec_prefix=$prefix 29 eval ac_define_dir="\"$ac_define_dir\""
30 eval ac_define_dir="\"[$]$2\"" 30 AC_SUBST($1, "$ac_define_dir")
31 AC_SUBST($1, "$ac_define_dir") 31 AC_DEFINE_UNQUOTED($1, "$ac_define_dir", [$3])
32 AC_DEFINE_UNQUOTED($1, "$ac_define_dir", [$3]) 32 test "$prefix_NONE" && prefix=NONE
33 test "$prefix_NONE" && prefix=NONE 33 test "$exec_prefix_NONE" && exec_prefix=NONE
34 test "$exec_prefix_NONE" && exec_prefix=NONE 34])
35])