Add support for text macros with arguments.
[iverilog.git] / tgt-vvp / configure.in
blob62e06d9f10cb974490a3f414c1f3c2baa306f3bc
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(vvp.c)
3 AC_CONFIG_HEADER(vvp_config.h)
5 dnl Checks for programs.
6 AC_PROG_CC
8 AC_PROG_INSTALL
10 AC_CANONICAL_HOST
11 # $host
13 # Combined check for Microsoft-related bogosities; sets WIN32 if found
14 AX_WIN32
16 AC_CHECK_HEADERS(malloc.h stdint.h)
18 # may modify CPPFLAGS and CFLAGS
19 AX_CPP_PRECOMP
21 # Do some more operating system specific setup.
22 case "${host}" in
23     *-*-linux*)
24         AC_DEFINE([_LARGEFILE_SOURCE], [1], [Indicates LFS (i.e. the ability to create files larger than 2 GiB on 32-bit operating systems).])
25         AC_DEFINE([_LARGEFILE64_SOURCE], [1], [Indicates LFS (i.e. the ability to create files larger than 2 GiB on 32-bit operating systems).])
26         ;;
27 esac
29 AC_CHECK_FUNCS(fopen64)
31 # Compiler option for position independent code, needed when making shared objects.
32 AX_C_PICFLAG
34 # linker options when building a shared library
35 AX_LD_SHAREDLIB_OPTS
37 AX_CPP_IDENT
39 AC_OUTPUT(Makefile)