mirror of /home/gitosis/repositories/libev.git
Mirror of :pserver:anonymous@cvs.schmorp.de/schmorpforge libev
http://software.schmorp.de/pkg/libev.html
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.
27 lines
411 B
27 lines
411 B
dnl also update ev.h! |
|
AC_INIT([libev], [4.25]) |
|
|
|
orig_CFLAGS="$CFLAGS" |
|
|
|
AC_CONFIG_SRCDIR([ev_epoll.c]) |
|
AM_INIT_AUTOMAKE |
|
|
|
AC_CONFIG_HEADERS([config.h]) |
|
AM_MAINTAINER_MODE |
|
|
|
AC_PROG_CC |
|
|
|
dnl Supply default CFLAGS, if not specified |
|
if test -z "$orig_CFLAGS"; then |
|
if test x$GCC = xyes; then |
|
CFLAGS="-g -O3" |
|
fi |
|
fi |
|
|
|
AC_PROG_INSTALL |
|
AC_PROG_LIBTOOL |
|
|
|
m4_include([libev.m4]) |
|
|
|
AC_CONFIG_FILES([Makefile]) |
|
AC_OUTPUT
|
|
|