mirror of
https://github.com/mfontanini/libtins
synced 2026-01-23 02:35:57 +01:00
17 lines
268 B
Plaintext
17 lines
268 B
Plaintext
AC_INIT(myconfig, 0.2)
|
|
|
|
AC_PROG_CXX()
|
|
AC_LANG(C++)
|
|
|
|
if test -n "$debug"
|
|
then
|
|
CFLAGS="-DDEBUG -g"
|
|
else
|
|
CFLAGS="-O3"
|
|
fi
|
|
|
|
AC_CHECK_HEADERS([pcap.h])
|
|
AC_CHECK_LIB(pcap, pcap_loop, [], [AC_MSG_ERROR([pcap library is needed!])])
|
|
AC_SUBST(CFLAGS)
|
|
AC_OUTPUT(Makefile)
|