File: ax_arg_default_enable_disable.m4

package info (click to toggle)
pdns-recursor 4.1.11-1%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 7,936 kB
  • sloc: cpp: 54,211; javascript: 26,587; sh: 11,872; makefile: 453; xml: 37
file content (21 lines) | stat: -rw-r--r-- 567 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
AC_DEFUN([AX_ARG_DEFAULT_ENABLE], [
AC_ARG_ENABLE([$1], AS_HELP_STRING([--disable-$1], [$2 (default is ENABLED$3)]))
AX_PARSE_VALUE([$1], [y])
])

AC_DEFUN([AX_ARG_DEFAULT_DISABLE], [
AC_ARG_ENABLE([$1], AS_HELP_STRING([--enable-$1], [$2 (default is DISABLED$3)]))
AX_PARSE_VALUE([$1], [n])
])

dnl This function should not be called outside of this file
AC_DEFUN([AX_PARSE_VALUE], [
AS_IF([test "x$enable_$1" = "xno"], [
    ax_cv_$1="n"
], [test "x$enable_$1" = "xyes"], [
    ax_cv_$1="y"
], [test -z $ax_cv_$1], [
    ax_cv_$1="$2"
])
$1=$ax_cv_$1
AC_SUBST($1)])