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