Skip to content
Snippets Groups Projects
Commit 07f68e04 authored by Mark Grondona's avatar Mark Grondona
Browse files

o add -ldl to common/Makefile.am for now for systems where we don't

   get dlopen() for free.

 o Test for untested definitions of inet_* functions
parent 71189715
No related branches found
No related tags found
No related merge requests found
......@@ -67,7 +67,14 @@ dnl checks for library functions.
dnl
AC_FUNC_MALLOC
AC_FUNC_STRERROR_R
AC_CHECK_FUNCS([strerror, mtrace, strsignal])
AC_CHECK_FUNCS( \
strerror \
mtrace \
strsignal \
inet_aton \
inet_ntop \
inet_pton \
)
AC_CHECK_DECLS([strsignal, sys_siglist])
......
......@@ -73,5 +73,5 @@ libeio_la_SOURCES = \
EXTRA_libcommon_la_SOURCES = \
qsw.c qsw.h
libcommon_la_LIBADD = $(SSL_LIBS) $(ELAN_LIBS)
libcommon_la_LIBADD = $(SSL_LIBS) $(ELAN_LIBS) -ldl
libcommon_la_LDFLAGS = $(SSL_LDFLAGS)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment