blob: ede6c7e0e24391992eaf67457c39b521fd954339 [file] [log] [blame]
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
m4_define(WIDL_VERSION,regexp(m4_include(VERSION),[version \([-.0-9A-Za-z]+\)],[\1]))
AC_PREREQ([2.69])
AC_INIT([widl],[WIDL_VERSION],[mingw-w64-public@lists.sourceforge.net])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_SRCDIR([src/widl.c])
AC_CONFIG_HEADERS([include/config.h])
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE([foreign subdir-objects])
AM_MAINTAINER_MODE
AC_ARG_PROGRAM
AC_MSG_CHECKING([for widl includedir])
AC_ARG_WITH([widl-includedir],
[AS_HELP_STRING([--with-widl-includedir=DIR],
[Make widl look for includes in this directory, relative to the bin directory (default: <includedir>/../<target>/include)])],
[],
[with_widl_includedir="\$(includedir)/../\$(target)/include"])
AC_MSG_RESULT([$with_widl_includedir])
AS_VAR_SET([WIDL_INCLUDEDIR],[$with_widl_includedir])
AC_SUBST([WIDL_INCLUDEDIR])
# Checks for programs.
AC_PROG_CC
AS_CASE([$target],
[*-mingw*],[],
[AC_MSG_ERROR([Unsupported target: $target. Only *-mingw32 targets are supported])])
AS_CASE([$host],
[*-mingw*],[CFLAGS="$CFLAGS -Wno-pedantic-ms-format"])
# Checks for libraries.
# Checks for header files.
AC_CHECK_HEADERS([getopt.h io.h fcntl.h inttypes.h libintl.h limits.h malloc.h stddef.h stdlib.h string.h sys/time.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_INLINE
AC_TYPE_INT16_T
AC_TYPE_INT32_T
AC_TYPE_INT8_T
AC_TYPE_OFF_T
AC_TYPE_SIZE_T
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT8_T
AC_CHECK_TYPES([long long])
# Checks for library functions.
AC_FUNC_ERROR_AT_LINE
AC_CHECK_FUNCS([atexit gettimeofday getopt_long_only memmove memset mkstemps strcasecmp strchr strdup strerror strncasecmp strrchr strtol strtoul strtoull])
AH_TOP([#define __WINE_CONFIG_H])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT