mirror of
https://github.com/opnsense/src.git
synced 2026-02-24 02:10:45 -05:00
9 lines
243 B
Text
9 lines
243 B
Text
dnl $Id: find-func.m4,v 1.1 1997/12/14 15:58:58 joda Exp $
|
|
dnl
|
|
dnl AC_FIND_FUNC(func, libraries, includes, arguments)
|
|
AC_DEFUN(AC_FIND_FUNC, [
|
|
AC_FIND_FUNC_NO_LIBS([$1], [$2], [$3], [$4])
|
|
if test -n "$LIB_$1"; then
|
|
LIBS="$LIB_$1 $LIBS"
|
|
fi
|
|
])
|