configure.ac
branchstable-1.5
changeset 2532 bdadf6da4914
parent 2526 2eff7c993a63
child 2540 fca12d7035d1
equal deleted inserted replaced
2531:193443bcd7dc 2532:bdadf6da4914
   924     [siiassign=0]
   924     [siiassign=0]
   925 )
   925 )
   926 
   926 
   927 if test "x${siiassign}" = "x1"; then
   927 if test "x${siiassign}" = "x1"; then
   928     AC_DEFINE([EC_SII_ASSIGN], [1], [Assign SII to PDI])
   928     AC_DEFINE([EC_SII_ASSIGN], [1], [Assign SII to PDI])
       
   929     AC_MSG_RESULT([yes])
       
   930 else
       
   931     AC_MSG_RESULT([no])
       
   932 fi
       
   933 
       
   934 #------------------------------------------------------------------------------
       
   935 # syslog output in realtime context
       
   936 #------------------------------------------------------------------------------
       
   937 
       
   938 AC_MSG_CHECKING([whether to syslog in realtime context])
       
   939 
       
   940 AC_ARG_ENABLE([rt-syslog],
       
   941     AS_HELP_STRING([--enable-rt-syslog],
       
   942                    [Enable RT syslog (default: yes)]),
       
   943     [
       
   944         case "${enableval}" in
       
   945             yes) rtsyslog=1
       
   946                 ;;
       
   947             no) rtsyslog=0
       
   948                 ;;
       
   949             *) AC_MSG_ERROR([Invalid value for --enable-rt-syslog])
       
   950                 ;;
       
   951         esac
       
   952     ],
       
   953     [rtsyslog=1]
       
   954 )
       
   955 
       
   956 if test "x${rtsyslog}" = "x1"; then
       
   957     AC_DEFINE([EC_RT_SYSLOG], [1], [Output to syslog in RT context])
   929     AC_MSG_RESULT([yes])
   958     AC_MSG_RESULT([yes])
   930 else
   959 else
   931     AC_MSG_RESULT([no])
   960     AC_MSG_RESULT([no])
   932 fi
   961 fi
   933 
   962