summaryrefslogtreecommitdiff
path: root/m4/ac_define_if.m4
blob: 961ca64452bb07f9122ec03565836cb8da050522 (plain)
1
2
3
4
5
6
7
dnl use: AC_DEFINE_IF(id, testcond, val, comment)
AC_DEFUN([AC_DEFINE_IF],
[
if $2; then
   AC_DEFINE($1, $3, $4)
fi
])