Rafaël Carré | 6832c63 | 2013-01-16 21:37:01 +0000 | [diff] [blame] | 1 | # -*- Autoconf -*- |
2 | # Process this file with autoconf to produce a configure script. | ||||
3 | |||||
4 | AC_PREREQ([2.65]) | ||||
5 | AC_INIT([mingw-w64-winstorecompat], [1.0], [mingw-w64-public@lists.sf.net]) | ||||
6 | AC_CONFIG_AUX_DIR([build-aux]) | ||||
7 | AC_CONFIG_SRCDIR([src/CreateEventW.c]) | ||||
8 | |||||
9 | AM_INIT_AUTOMAKE([foreign subdir-objects]) | ||||
10 | AM_MAINTAINER_MODE | ||||
11 | |||||
12 | # Checks for programs. | ||||
13 | AC_PROG_CC | ||||
14 | AC_PROG_RANLIB | ||||
15 | AC_CHECK_TOOLS([AR], [ar], [:]) | ||||
16 | |||||
17 | AC_CONFIG_FILES([Makefile]) | ||||
18 | AC_OUTPUT |