You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
406 B

11 years ago
  1. AC_INIT
  2. orig_CFLAGS="$CFLAGS"
  3. AC_CONFIG_SRCDIR([ev_epoll.c])
  4. AM_INIT_AUTOMAKE(libev,4.15) dnl also update ev.h!
  5. AC_CONFIG_HEADERS([config.h])
  6. AM_MAINTAINER_MODE
  7. AC_PROG_CC
  8. dnl Supply default CFLAGS, if not specified
  9. if test -z "$orig_CFLAGS"; then
  10. if test x$GCC = xyes; then
  11. CFLAGS="-g -O3"
  12. fi
  13. fi
  14. AC_PROG_INSTALL
  15. AC_PROG_LIBTOOL
  16. m4_include([libev.m4])
  17. AC_CONFIG_FILES([Makefile])
  18. AC_OUTPUT