summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2017-03-22 21:29:07 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2017-03-22 21:29:07 +0000
commit1cb8145dc549ea627909f60ad343aeb02d479272 (patch)
treee27e6dc9e53bd2630575ee0de0a5c694ab253a5b /configure.ac
parentc57039bc3d829c16fddb7bc49f2e56f65076b772 (diff)
Tweak some comments.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 32260e41..34c2b896 100644
--- a/configure.ac
+++ b/configure.ac
@@ -372,7 +372,7 @@ else
AC_LIBOBJ(err)
fi
-# Look for imsg in libutil. compat/imsg.c is linked by Makefile.am if missing.
+# Look for imsg_init in libutil.
AC_SEARCH_LIBS(imsg_init, util, found_imsg_init=yes, found_imsg_init=no)
if test "x$found_imsg_init" = xyes; then
AC_DEFINE(HAVE_IMSG)
@@ -381,7 +381,9 @@ else
AC_LIBOBJ(imsg-buffer)
fi
-# Look for daemon, compat/daemon.c used if missing.
+# Look for daemon, compat/daemon.c used if missing. Solaris 10 has it in
+# libresolv, but no declaration anywhere, so check for declaration as well as
+# function.
AC_CHECK_FUNC(daemon, found_daemon=yes, found_daemon=no)
AC_CHECK_DECL(
daemon,