mirror of
https://github.com/opnsense/src.git
synced 2026-03-03 13:51:30 -05:00
11 lines
242 B
Text
11 lines
242 B
Text
dnl
|
|
dnl $Id: dlopen.m4 15433 2005-06-16 19:40:59Z lha $
|
|
dnl
|
|
|
|
AC_DEFUN([rk_DLOPEN], [
|
|
AC_FIND_FUNC_NO_LIBS(dlopen, dl,[
|
|
#ifdef HAVE_DLFCN_H
|
|
#include <dlfcn.h>
|
|
#endif],[0,0])
|
|
AM_CONDITIONAL(HAVE_DLOPEN, test "$ac_cv_funclib_dlopen" != no)
|
|
])
|