aclocal/bsp.ac
changeset 0 2b3e5ec03512
equal deleted inserted replaced
-1:000000000000 0:2b3e5ec03512
       
     1 dnl
       
     2 dnl Autoconf support for Bundle Security Protocol
       
     3 dnl
       
     4 
       
     5 AC_DEFUN(AC_CONFIG_BSP, [
       
     6     ac_bsp='no'
       
     7     AC_ARG_WITH(bsp,
       
     8         AC_HELP_STRING([--with-bsp],
       
     9     		   	[enable Bundle Security Protocol support (EXPERIMENTAL)]),
       
    10         ac_bsp=$withval)
       
    11     dnl
       
    12     dnl First make sure we even want it
       
    13     dnl
       
    14     if test "$ac_bsp" = no; then
       
    15         BSP_ENABLED=0
       
    16     else
       
    17         BSP_ENABLED=1
       
    18         AC_DEFINE_UNQUOTED(BSP_ENABLED, 1, [whether Bundle Security Protocol support is enabled])
       
    19     fi # BSP_ENABLED
       
    20 ])