2
0
Fork 0

Fix configure.ac to detect missing libev

This commit is contained in:
Stefan Bühler 2009-08-31 00:24:36 +02:00
parent 56ff7ca32a
commit 94e33528fe
1 changed files with 4 additions and 1 deletions

View File

@ -52,7 +52,10 @@ AC_CHECK_HEADERS([ev.h],[
AC_CHECK_LIB([ev], [ev_loop], [
AC_SUBST(LIBEV_CFLAGS, [])
AC_SUBST(LIBEV_LIBS, [-lev])
])],[
],[
AC_MSG_ERROR([libev not found])
]
)],[
AC_MSG_ERROR([libev not found])
]
)