blob: 5ec799777c3a9df0367634f4a11c62e18bcac5cc [file] [log] [blame]
NightStrikece40cdd2010-02-26 14:22:07 +00001# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
NightStrike4bf3e492013-04-09 19:38:12 +00004AC_PREREQ([2.69])
NightStrikece40cdd2010-02-26 14:22:07 +00005AC_INIT([mingw-w64-genidl],[1.0],[mingw-w64-public@lists.sourceforge.net])
6AC_CONFIG_AUX_DIR([build-aux])
7AC_CONFIG_SRCDIR([src/genidl.c])
8AC_CONFIG_HEADERS([config.h])
9
10AM_INIT_AUTOMAKE([foreign subdir-objects])
NightStrikec6641c52010-03-05 19:25:18 +000011AM_MAINTAINER_MODE
NightStrikece40cdd2010-02-26 14:22:07 +000012
13AC_CANONICAL_HOST
14
15# Checks for programs.
16AC_PROG_CC
17
18# Checks for libraries.
19
20# Checks for header files.
21AC_CHECK_HEADERS([malloc.h memory.h stdint.h stdlib.h string.h])
22
23# Checks for typedefs, structures, and compiler characteristics.
24AC_TYPE_INT16_T
25AC_TYPE_INT32_T
26AC_TYPE_INT64_T
27AC_TYPE_SIZE_T
28AC_TYPE_UINT16_T
29AC_TYPE_UINT32_T
30AC_TYPE_UINT64_T
31
32# Checks for library functions.
Ozkan Sezerb340a3e2022-09-25 15:55:32 +030033#AC_FUNC_MALLOC
34#AC_FUNC_REALLOC
NightStrikece40cdd2010-02-26 14:22:07 +000035AC_CHECK_FUNCS([memset strchr strdup strrchr strstr])
36
37AC_CONFIG_FILES([Makefile])
38AC_OUTPUT