openbsc/configure.ac: check for pcap/pcap.h.

The build process requires pcap/pcap.h in openbsc/src/utils/meas_pcap2db.c, but
the configure script did not check for that file.
This commit is contained in:
Neels Hofmeyr 2015-09-15 11:39:47 +02:00 committed by Holger Hans Peter Freyther
parent 4b4a187b4f
commit 51cf69cdb4
1 changed files with 1 additions and 0 deletions

View File

@ -88,6 +88,7 @@ dnl checks for header files
AC_HEADER_STDC
AC_CHECK_HEADERS(dahdi/user.h,,AC_MSG_WARN(DAHDI input driver will not be built))
AC_CHECK_HEADERS(dbi/dbd.h,,AC_MSG_ERROR(DBI library is not installed))
AC_CHECK_HEADERS(pcap/pcap.h,,AC_MSG_ERROR(PCAP library is not installed))
found_cdk=yes
AC_CHECK_HEADERS(cdk/cdk.h,,found_cdk=no)