1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-25 03:31:36 +01:00
Files
libtins/tests/configure.ac
2011-09-15 10:22:15 -03:00

13 lines
312 B
Plaintext

AC_INIT(myconfig, 0.1)
AC_PROG_CXX()
AC_LANG(C++)
CFLAGS="-DDEBUG -g"
AC_CHECK_HEADERS([pcap.h gtest/gtest.h])
AC_CHECK_LIB(pcap, pcap_loop, [], [AC_MSG_ERROR([pcap library is needed!])])
#AC_CHECK_LIB([gtest_main], [main], [], [AC_MSG_ERROR([gtest library is needed!])])
AC_SUBST(CFLAGS)
AC_OUTPUT(Makefile)