aboutsummaryrefslogtreecommitdiff
path: root/configure.in
blob: 202503ec32f5da157daa109ca3996be775101093 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# http://cvs.sourceforge.net/viewcvs.py/avisynth2/avisynth/build/linux/Attic/configure.in?rev=1.1.2.6.4.17&only_with_tag=avisynth_3_0&view=auto

dnl Process this file with autoconf to produce a configure script.

# get rid of that stupid cache mechanism
rm -f config.cache

AC_INIT(configure.in)
AC_ISC_POSIX

AC_ESPIK_VERSION
AM_INIT_AUTOMAKE(espik, $GITVERSION)
AM_CONFIG_HEADER(config.h)

AC_PROG_CC
AM_PROG_CC_STDC
AC_HEADER_STDC
AC_C_CONST
AC_C_INLINE

dnl espik specific check (include in m4)
AC_C___ATTRIBUTE__

VL_LIB_READLINE
VL_LIB_ECORE
VL_LIB_ECORE_CON
VL_LIB_ECORE_CONFIG

AC_OUTPUT([
  Makefile
  sh/Makefile
  src/Makefile
])