The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.

This URL has Read-Only access.

Statistics
| Branch: | Revision:

main_repo / deps / libeio / configure.ac @ c5183738

History | View | Annotate | Download (331 Bytes)

1
AC_PREREQ(2.59)
2
AC_INIT
3
AC_CONFIG_SRCDIR([eio.h])
4
AC_CONFIG_HEADERS([config.h])
5

    
6
AM_INIT_AUTOMAKE(libeio,1.0)
7
AM_MAINTAINER_MODE
8
AC_PROG_LIBTOOL
9

    
10
AC_PROG_CC
11

    
12
if test "x$GCC" = xyes ; then
13
  CFLAGS="$CFLAGS -O3"
14
fi
15

    
16
dnl somebody will forgive me
17
CFLAGS="-D_GNU_SOURCE"
18

    
19
m4_include([libeio.m4])
20

    
21
AC_CONFIG_FILES([Makefile])
22
AC_OUTPUT