blob: aa359bb31976c7c8489aec9d2bde795e81956cb8 (
plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
dnl Process this file with autoconf to produce a configure script.
dnl Initialize autoconf and automake. Version number here!
AC_INIT(plugin~.c)
AM_INIT_AUTOMAKE(plugin~, 0.2)
AC_CANONICAL_HOST
AM_MAINTAINER_MODE
# I don't use libtool. This is only a hack because automake wants
# libtool, and only for installation... Works for automake 1.4, BTW.
LIBTOOL="\$(SHELL) \$(top_builddir)/libtoolkludge"
AC_SUBST(LIBTOOL)
dnl Look for Pd.
AC_PREFIX_PROGRAM(pd)
PDDIR=$prefix/pd
AC_ARG_WITH(pddir,
[ --with-pddir=... enter absolute path to Pd (PREFIX/pd by default)],
[if expr x"$withval" : "x/" >/dev/null; then
PDDIR=$withval
AC_MSG_RESULT(Installing Pd files in $PDDIR.)
else
AC_MSG_ERROR(Illegal value given to --with-pddir. Give an absolute path.)
fi]
)
AC_SUBST(PDDIR)
dnl Checks for programs.
AC_PROG_CC
AC_PROG_LD
AC_PROG_INSTALL
dnl Checks for libraries.
AC_CHECK_LIB(c, printf)
AC_CHECK_LIB(m, sin)
AC_CHECK_LIB(dl, dlopen)
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(dirent.h dlfcn.h string.h sys/types.h unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
dnl Checks for library functions.
AC_CHECK_FUNCS(dlopen)
dnl Output the makefile and version information file.
AC_OUTPUT(Makefile version.h ladspa/Makefile vst/Makefile win/Makefile)
|