Skip to content

Commit c71fb13

Browse files
committed
Check for a few more dependencies in configure.ac.
1 parent 2e0f51a commit c71fb13

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

configure.ac

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ AC_HEADER_RESOLV
3030
AC_CHECK_HEADERS([arpa/inet.h fcntl.h limits.h netinet/in.h stddef.h stdint.h stdlib.h string.h sys/socket.h sys/time.h unistd.h])
3131
AC_CHECK_HEADER([event2/event.h],,
3232
[AC_MSG_ERROR([libevent headers could not be found])])
33+
AC_CHECK_HEADER([gflags/gflags.h],,
34+
[AC_MSG_ERROR([gflags headers could not be found])])
35+
AC_CHECK_HEADER([glog/logging.h],,
36+
[AC_MSG_ERROR([glog headers could not be found])])
37+
AC_CHECK_HEADER([google/protobuf/message.h],,
38+
[AC_MSG_ERROR([protobuf headers could not be found])])
39+
AC_CHECK_HEADER([ldns/ldns.h],,
40+
[AC_MSG_ERROR([ldns headers could not be found])])
3341

3442
# Check for working GTest/GMock.
3543
saved_CPPFLAGS="$CPPFLAGS"

0 commit comments

Comments
 (0)