2005-08-17 03:17:28 +02:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
|
AC_INIT(edif.conf)
|
|
|
|
|
|
|
|
|
|
dnl Checks for programs.
|
|
|
|
|
AC_PROG_CC
|
|
|
|
|
AC_PROG_RANLIB
|
|
|
|
|
AC_PROG_INSTALL
|
2006-05-08 06:33:35 +02:00
|
|
|
AC_CHECK_PROGS(MAN,man,none)
|
|
|
|
|
AC_CHECK_PROGS(PS2PDF,ps2pdf,none)
|
2005-08-17 03:17:28 +02:00
|
|
|
|
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
|
# $host
|
|
|
|
|
|
2008-11-20 07:39:10 +01:00
|
|
|
AX_ENABLE_SUFFIX
|
|
|
|
|
|
2005-08-17 03:17:28 +02:00
|
|
|
# Combined check for Microsoft-related bogosities; sets WIN32 if found
|
|
|
|
|
AX_WIN32
|
|
|
|
|
|
|
|
|
|
AC_CHECK_HEADERS(malloc.h)
|
|
|
|
|
|
|
|
|
|
# may modify CPPFLAGS and CFLAGS
|
|
|
|
|
AX_CPP_PRECOMP
|
|
|
|
|
|
2007-02-26 20:51:38 +01:00
|
|
|
# Compiler option for position independent code, needed when making shared objects.
|
2005-08-17 03:17:28 +02:00
|
|
|
AX_C_PICFLAG
|
|
|
|
|
|
|
|
|
|
# linker options when building a shared library
|
|
|
|
|
AX_LD_SHAREDLIB_OPTS
|
|
|
|
|
|
|
|
|
|
AC_OUTPUT(Makefile)
|