2001-08-28 06:14:20 +02:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
|
AC_INIT(fpga.c)
|
|
|
|
|
|
|
|
|
|
dnl Checks for programs.
|
|
|
|
|
AC_PROG_CC
|
|
|
|
|
|
|
|
|
|
AC_PROG_INSTALL
|
2006-05-08 06:33:35 +02:00
|
|
|
AC_CHECK_PROGS(MAN,man,none)
|
|
|
|
|
AC_CHECK_PROGS(PS2PDF,ps2pdf,none)
|
2001-08-28 06:14:20 +02:00
|
|
|
|
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
|
# $host
|
|
|
|
|
|
2004-02-15 04:17:36 +01:00
|
|
|
# Combined check for Microsoft-related bogosities; sets WIN32 if found
|
|
|
|
|
AX_WIN32
|
|
|
|
|
|
2001-09-15 20:27:04 +02:00
|
|
|
AC_CHECK_HEADERS(malloc.h)
|
2001-08-28 06:14:20 +02:00
|
|
|
|
2004-09-28 00:34:10 +02:00
|
|
|
# may modify CPPFLAGS and CFLAGS
|
|
|
|
|
AX_CPP_PRECOMP
|
2001-11-17 18:57:58 +01:00
|
|
|
|
2007-02-26 20:51:38 +01:00
|
|
|
# Compiler option for position independent code, needed when making shared objects.
|
2004-09-28 00:34:10 +02:00
|
|
|
AX_C_PICFLAG
|
2001-08-28 06:14:20 +02:00
|
|
|
|
2004-09-28 00:34:10 +02:00
|
|
|
# linker options when building a shared library
|
|
|
|
|
AX_LD_SHAREDLIB_OPTS
|
2001-08-28 06:14:20 +02:00
|
|
|
|
2004-01-15 21:52:32 +01:00
|
|
|
AX_CPP_IDENT
|
2002-08-12 02:27:10 +02:00
|
|
|
|
2001-08-28 06:14:20 +02:00
|
|
|
AC_OUTPUT(Makefile)
|